/* --- RESET E CONFIGURAÇÕES GLOBAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a080f;
    background-image: linear-gradient(180deg, #2c0e18 0%, #1a080f 100%);
    color: #f0e6e6;
    line-height: 1.7;
}

/* --- FONTES E TIPOGRAFIA --- */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #ff8fab;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(229, 57, 141, 0.3);
}

p {
    margin-bottom: 1rem;
}

strong {
    color: #ff8fab;
    font-weight: 600;
}

.highlight {
    color: #e5398d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* --- LAYOUT --- */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* --- HERO SECTION --- */
.hero {
    height: 65vh;
    background-image: url('img/banner.png'); 
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 50px;
    background-color: #1a080f; /* Cor de fundo caso a imagem não carregue */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 8, 15, 1) 5%, rgba(26, 8, 15, 0.1) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* --- BOTÃO DE CHAMADA (CTA) --- */
.cta-button {
    display: inline-block;
    background: #e5398d;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(229, 57, 141, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(229, 57, 141, 0.6);
}

.cta-button.primary-cta {
    font-size: 1.2rem;
    padding: 18px 50px;
}

/* --- ESTILO GLASSMORPHISM --- */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* --- SEÇÃO SOBRE COM IMAGEM --- */
.sobre-content { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.sobre-text { flex: 2; text-align: center; }
.sobre-image { flex: 1; text-align: center; max-width: 300px; }
.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- SEÇÃO "O QUE VAI APRENDER" --- */
#aprendizado ul { list-style: none; padding-left: 0; }
#aprendizado li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
#aprendizado li::before { content: '✦'; position: absolute; left: 0; top: -2px; color: #e5398d; font-size: 1.2rem; }

/* --- CONTEÚDO PROGRAMÁTICO --- */
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.module-card { text-align: center; padding: 25px; }
.module-card h3 { font-size: 1.2rem; color: #f0e6e6; }
.module-card p { margin: 0; color: #ff8fab; font-weight: 300; }

/* --- SEÇÃO DE INSCRIÇÃO FINAL --- */
.cta-card {
    background: #2c0e18;
    border-radius: 20px;
    text-align: center;
    padding: 40px;
    overflow: hidden;
    border: 1px solid rgba(229, 57, 141, 0.2);
}
.cta-image { width: 250px; height: 250px; border-radius: 15px; margin-bottom: 30px; box-shadow: 0 0 25px rgba(0, 0, 0, 0.5); }
.price-box { margin: 30px 0; background: rgba(0,0,0,0.2); padding: 20px; border-radius: 10px; }
.price-box .installments { font-size: 1.8rem; margin: 0; font-weight: 300; }
.price-box .installments strong { font-size: 2.5rem; font-weight: 600; }
.price-box .full-price { margin: 5px 0 0 0; opacity: 0.8; }
.safe-purchase { margin-top: 15px; font-size: 0.9rem; opacity: 0.7; }

/* --- NOVA SEÇÃO DIFERENCIADA: SOBRE O SACERDOTE --- */
#sacerdote {
    background-color: #11070b; /* Cor de fundo sutilmente diferente */
    padding-top: 1px; /* Hack para margem não colapsar */
    padding-bottom: 1px;
}
.sacerdote-content {
    text-align: center;
}
.sacerdote-content h2 { color: #fff; }
.sacerdote-content p { max-width: 700px; margin-left: auto; margin-right: auto; }

/* --- SEÇÃO UNIVERSO EAD --- */
.universo-card {
    text-align: center; /* Centraliza todo o conteúdo interno, INCLUSIVE o botão */
    padding: 30px;
    background-color: transparent; /* Remove o fundo para ser mais integrado */
    border: 1px solid rgba(229, 57, 141, 0.2);
    border-radius: 20px;
}
.universo-card h2 { color: #ff8fab; }

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- RESPONSIVIDADE --- */
@media (min-width: 768px) {
    .sobre-content { flex-direction: row; text-align: left; }
    .sobre-text { text-align: left; }
}
@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .hero { height: 50vh; }
    .cta-button.primary-cta { font-size: 1rem; padding: 15px 40px; }
    .container { padding: 40px 15px; }
    .cta-card { padding: 30px 20px; }
}