/* ====================================================
   Design System: Identidade Premium Dra. Mariana Arteiro
   Paleta Fiel à Referência: Bordeaux Escuro (#690000 / #500000), Gold/Bege Ouro (#FAEABC) e Off-White Bege (#F9F5F0)
   ==================================================== */
:root {
    /* Cores */
    --color-bordeaux: #4F112A;         /* Nova cor Bordeaux */
    --color-bordeaux-dark: #1E0008;    /* Nova cor de detalhes/Bordeaux escuro */
    --color-gold: #FAEABC;             
    --color-bg-light: #F5EAAA;         /* Nova cor para os fundos Bege */
    --color-bg-white: #FFFFFF;
    --color-text-dark: #201f1f;
    --color-text-light: #FFFFFF;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-bege-border: #E8DFD5;

    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Variables */
    --section-padding: 80px 20px;
}

/* ====================================================
   Reset & Globals
   ==================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 16px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ====================================================
   Layout Utilities
   ==================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }

/* Divider Line (Bordeaux) */
.divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-bordeaux);
    margin: 0 auto 30px;
}
.divider.left {
    margin: 0 0 30px 0;
}

/* ====================================================
   Buttons & CTA
   ==================================================== */
.btn-primary {
    display: inline-block;
    background-color: var(--color-bordeaux);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 36px;
    border: 2px solid var(--color-bordeaux);
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 6px 15px rgba(105, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-bordeaux-dark);
    border-color: var(--color-bordeaux-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(105, 0, 0, 0.4);
}

/* ====================================================
   Hero Section (Dobra 1)
   ==================================================== */
.hero-section {
    position: relative;
    padding: 0;
    height: 100vh; /* Ocupa exatamente a tela inteira */
    display: flex;
    align-items: center; /* Centraliza verticalmente todo o conteúdo da tela */
    background: linear-gradient(135deg, var(--color-bordeaux) 0%, var(--color-bordeaux-dark) 100%);
    overflow: hidden;
    color: #FFFFFF;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Balanço simétrico ideal */
    gap: 50px;
    align-items: center; /* Centralização vertical simétrica */
    height: 100%;
    width: 100%;
    max-width: 1200px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 0; /* Padding uniforme */
}

.live-tag {
    display: inline-block;
    font-size: 1.15rem; /* Aumentado em 20% (de 0.95rem) */
    font-weight: 600;
    color: var(--color-gold); /* Dourado / Bege da Referência */
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 5px;
    margin-bottom: 28px;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 3.8rem; /* Aumentado em 20% (de 3.2rem) */
    color: #FFFFFF;
    margin-bottom: 28px;
    line-height: 1.15;
}

/* Título 20% maior específico para a V2 e V3 que se adapta corretamente no mobile */
.hero-content h1.hero-title-large {
    font-size: 4.56rem;
}

.hero-description {
    font-size: 1.45rem; /* Aumentado em 20% (de 1.2rem) */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 42px;
    max-width: 650px;
    line-height: 1.5;
}

.hero-cta-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

/* Botão Vazado Ouro com texto Ouro na dobra vermelha conforme a referência */
.hero-cta-box .btn-primary {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: none;
    padding: 22px 46px; /* Aumentado em 20% */
    font-size: 1.3rem; /* Aumentado em 20% (de 1.1rem) */
}

.hero-cta-box .btn-primary:hover {
    background-color: var(--color-gold);
    color: var(--color-bordeaux);
    transform: translateY(-2px);
}

.live-subtag {
    font-size: 1rem; /* Aumentado em 20% (de 0.85rem) */
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
    letter-spacing: 1px;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: flex-end; /* Encosta a imagem no canto direito */
    align-items: center; /* Centraliza a foto verticalmente para casar com o texto */
    z-index: 2;
    height: 100%;
}

/* Iluminação de fundo atrás da doutora para gerar contraste premium (Mais Visível) */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(250, 234, 188, 0.45) 0%, rgba(105, 0, 0, 0) 70%); /* Opacidade de 0.2 para 0.45 para ser mais brilhante */
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

.image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    z-index: 2;
}

.dra-photo {
    width: 156%;
    max-width: 715px;
    height: auto;
    max-height: 98vh;
    display: block;
    object-fit: contain;
    transform: translateY(5%); /* Subiu 5% (agora em 5% para baixo em vez de 10%) */
}


/* ====================================================
   Benefits Section (Dobra 2)
   ==================================================== */
.benefits-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
}

.section-title {
    font-size: 2.4rem;
    color: var(--color-text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--color-bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-bege-border);
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-bordeaux);
    box-shadow: 0 15px 35px rgba(105, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--color-bordeaux);
    margin-bottom: 20px;
}

.benefit-card p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* ====================================================
   Bonus Section (Dobra 3)
   ==================================================== */
.bonus-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-bege-border);
    border-bottom: 1px solid var(--color-bege-border);
}

.bonus-container {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: center;
}

.bonus-badge {
    display: inline-block;
    background-color: var(--color-bordeaux);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bonus-content h2 {
    font-size: 2.6rem;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.bonus-content p {
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

.bonus-icon-large {
    font-size: 6.5rem;
    color: var(--color-bordeaux);
    text-align: center;
}

/* ====================================================
   CTA / Registration Section (Dobra 4)
   ==================================================== */
.cta-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
}

.cta-header h2 {
    font-size: 2.6rem;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.cta-sub {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.form-container {
    background-color: var(--color-bg-light);
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid var(--color-bege-border);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    margin-top: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid var(--color-bege-border);
    padding: 20px;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-bordeaux);
    box-shadow: 0 0 10px rgba(105, 0, 0, 0.15);
}

.btn-submit {
    width: 100%;
    background-color: var(--color-bordeaux);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px;
    border: 1px solid var(--color-bordeaux);
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--color-bordeaux-dark);
    transform: translateY(-2px);
}

.form-footer {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-top: 20px;
}

/* ====================================================
   Footer
   ==================================================== */
.footer {
    padding: 30px 0;
    text-align: center;
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-bege-border);
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

/* ====================================================
   Responsiveness
   ==================================================== */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 0 30px; /* Reduzi o padding superior para a imagem subir */
        display: flex;
        align-items: center;
    }

    .hero-container {
        display: flex;
        flex-direction: column-reverse; /* Inverte a ordem: imagem no topo e texto embaixo */
        text-align: center;
        gap: 30px;
        align-items: center;
    }

    .hero-content {
        padding-bottom: 0;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.15rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-box {
        align-items: center;
    }

    .hero-cta-box .btn-primary {
        padding: 16px 36px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
    }

    .hero-image-container {
        justify-content: center;
        width: 100%;
        margin-top: 0;
        margin-bottom: -110px; /* Subiu os textos consideravelmente em direção à doutora */
        position: relative;
    }

    /* Removemos o pseudo-elemento ::after que criava a sombra escura no meio */

    .dra-photo {
        width: 100%;
        max-width: 484px; 
        max-height: 57vh; 
        display: block;
        object-fit: contain;
        transform: translateY(0);
        position: relative;
        z-index: 2;
        
        /* Ajustado o degradê para iniciar mais acima (50%) e suavizar de forma mais esfumaçada */
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 90%);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 90%);
    }

    .hero-image-container::before {
        width: 250px;
        height: 250px;
        transform: translate(-50%, -50%);
    }

    .bonus-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bonus-icon-large {
        order: -1;
        font-size: 5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1, 
    .hero-content h1.hero-title-large {
        font-size: 2rem; /* Mantém o título legível e enquadrado em celulares */
    }

    .section-title {
        font-size: 1.8rem;
    }

    .bonus-content h2 {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 30px 20px;
    }
    
    .highlight-section p {
        font-size: 1.2rem !important;
    }
}
