/* 
   Página de Vendas: Insônia - A Verdade por Trás do Óbvio
   Design Sensorial: Calma, Pausa, Respiro, Desaceleração, Aconchego
*/

/* ----------------------------------------------------
   1. TOKENS DE DESIGN (VARIÁVEIS)
---------------------------------------------------- */
:root {
    /* Cores */
    --off-white: #FAF9F6;
    --light-beige: #F5F0E6;
    --warm-cream: #EFE9DB;
    --dark-green: #2C3E35;
    --dark-green-hover: #1E2D26;
    --deep-forest: #16241D;
    
    /* Tons Noturnos Leves */
    --night-sky-start: #121C17;
    --night-sky-end: #1B2621;
    --night-card-bg: rgba(27, 38, 33, 0.4);
    
    /* Luz Indireta (Acentos) */
    --lamp-glow: rgba(250, 208, 158, 0.15);
    --lamp-light: #FAD09E;
    --accent-gold: #E6B77E;
    
    /* Cores de Texto */
    --text-dark: #202E27;
    --text-muted: #5C6E64;
    --text-light: #F5F0E6;
    
    /* Tipografia */
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    
    /* Transições */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.25s ease;
}

/* ----------------------------------------------------
   2. RESET & ESTILOS GLOBAIS
---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--off-white);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Textura Clean - Grain Noise sutil */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
}

/* Tipografia */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.25;
    color: var(--dark-green);
}

p {
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

p.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
}

/* ----------------------------------------------------
   3. ELEMENTOS DE LAYOUT & AJUDANTES
---------------------------------------------------- */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.small-container {
    max-width: 750px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
}

.text-center {
    text-align: center;
}

.text-green {
    color: var(--dark-green);
}

.text-white {
    color: var(--text-light);
}

.accent-text {
    color: var(--accent-gold);
    font-style: italic;
}

/* Fundos */
.beige-bg {
    background-color: var(--light-beige);
}

.offwhite-bg {
    background-color: var(--off-white);
}

.green-bg {
    background-color: var(--dark-green);
    /* Textura Clean nas seções escuras */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.01'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------
   4. COMPONENTES E BOTÕES
---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 18px 36px;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(44, 62, 53, 0.15);
    text-align: center;
}

.btn-primary {
    background-color: var(--dark-green);
    color: var(--off-white);
}

.btn-primary:hover {
    background-color: var(--dark-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(22, 36, 29, 0.25);
    color: var(--accent-gold);
}

.btn:active {
    transform: scale(0.97) translateY(0);
    box-shadow: 0 4px 10px rgba(44, 62, 53, 0.15);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 3px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-large {
    width: 100%;
    max-width: 480px;
    padding: 22px 40px;
}

/* Animação de pulso sutil nos botões */
@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 183, 126, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(230, 183, 126, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 183, 126, 0);
    }
}

.btn-pulse {
    animation: softPulse 2.5s infinite;
}

/* Subtítulo de seção */
.section-subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.subtitle-light {
    color: var(--accent-gold);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* Listas customizadas */
.styled-list {
    list-style: none;
    margin: 30px 0;
}

.styled-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.styled-list li::before {
    content: "•";
    color: var(--accent-gold);
    font-size: 1.8rem;
    position: absolute;
    left: 8px;
    top: -4px;
}

/* ----------------------------------------------------
   5. BLOCO 1 — HERO SECTION (HEADLINE & JANELA)
---------------------------------------------------- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--night-sky-start) 0%, var(--night-sky-end) 100%);
    color: var(--off-white);
    padding: 120px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(230, 183, 126, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 3.2rem;
    color: var(--off-white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .accent-text {
    display: block;
    margin-top: 5px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-highlight-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-gold);
    padding: 20px 25px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 40px;
    backdrop-filter: blur(5px);
}

.hero-highlight-box p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--off-white);
}

/* Ilustração de Janela / Quarto */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.window-illustration {
    position: relative;
    width: 380px;
    height: 440px;
    background-color: #0b110e;
    border: 14px solid var(--dark-green);
    border-radius: 180px 180px 20px 20px; /* Janela em arco */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                inset 0 0 40px rgba(0,0,0,0.8);
    overflow: hidden;
}

.sky-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #090e0c 0%, #15221b 100%);
    z-index: 1;
}

.moon {
    position: absolute;
    top: 70px;
    right: 70px;
    width: 45px;
    height: 45px;
    background-color: #f7ecd5;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(247, 236, 213, 0.4),
                inset -8px -8px 0 rgba(0,0,0,0.05);
    opacity: 0.85;
}

/* Chuva caindo */
.rain-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.rain-drop {
    position: absolute;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.25));
    width: 1px;
    height: 25px;
    opacity: 0.7;
    transform: rotate(15deg);
    animation: rainFall linear infinite;
}

@keyframes rainFall {
    0% {
        transform: translateY(-30px) translateX(0) rotate(15deg);
    }
    100% {
        transform: translateY(450px) translateX(-50px) rotate(15deg);
    }
}

/* Moldura interna da janela */
.window-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 0.8fr;
    pointer-events: none;
    z-index: 3;
}

.window-pane {
    border: 2px solid rgba(44, 62, 53, 0.4);
}

/* Interior do quarto */
.room-interior {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    z-index: 2;
    background: linear-gradient(to top, rgba(14, 22, 18, 0.95) 70%, rgba(14, 22, 18, 0.4) 100%);
    pointer-events: none;
}

.bed-outline {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 40px;
    background-color: #0b110e;
    border-radius: 4px 4px 0 0;
}

.pillow {
    position: absolute;
    top: -12px;
    left: 15px;
    width: 45px;
    height: 12px;
    background-color: #080c0a;
    border-radius: 4px 4px 2px 2px;
}

.blanket {
    position: absolute;
    top: -6px;
    right: 5px;
    width: 70%;
    height: 15px;
    background-color: #0a0f0d;
    border-radius: 4px 0 0 0;
}

/* Abajur com Luz Indireta pulsando */
.bedside-lamp {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 14px;
    height: 30px;
}

.bedside-lamp::before {
    /* Haste */
    content: '';
    position: absolute;
    bottom: 0;
    left: 6px;
    width: 2px;
    height: 20px;
    background-color: #070a09;
}

.bedside-lamp::after {
    /* Cúpula */
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 14px;
    height: 10px;
    background-color: #0c1310;
    border-radius: 3px;
}

.lamp-glow {
    position: absolute;
    top: -15px;
    left: -33px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(250, 208, 158, 0.25) 0%, rgba(250, 208, 158, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: glowBreath 4s ease-in-out infinite alternate;
}

@keyframes glowBreath {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    z-index: 3;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--off-white);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 1px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.8s infinite;
}

@keyframes mouseScroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 8px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.7rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--off-white);
}

/* Responsividade Hero */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-highlight-box {
        border-left: none;
        border-top: 3px solid var(--accent-gold);
        border-radius: 0 0 16px 16px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-visual {
        order: -1; /* Janela aparece primeiro no mobile */
        margin-bottom: 20px;
    }
    
    .window-illustration {
        width: 260px;
        height: 300px;
        border-width: 10px;
    }
    
    .window-illustration .moon {
        top: 45px;
        right: 45px;
        width: 30px;
        height: 30px;
    }
    
    .window-illustration .bedside-lamp {
        bottom: 20px;
        left: 20px;
        transform: scale(0.8);
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px 0;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .window-illustration {
        width: 180px;
        height: 210px;
        border-width: 8px;
    }
    
    .window-illustration .moon {
        top: 30px;
        right: 30px;
        width: 22px;
        height: 22px;
    }
    
    .window-illustration .bedside-lamp {
        bottom: 15px;
        left: 15px;
        transform: scale(0.65);
    }
    
    .window-illustration .bed-outline {
        height: 25px;
    }
    
    .window-illustration .pillow {
        top: -8px;
        width: 25px;
        height: 8px;
    }
    
    .window-illustration .blanket {
        top: -4px;
        height: 10px;
    }
}

/* ----------------------------------------------------
   8. BLOCO 2 — IDENTIFICAÇÃO COM A DOR
---------------------------------------------------- */
.dor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.dor-card {
    background-color: var(--off-white);
    border: 1px solid rgba(44, 62, 53, 0.06);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 62, 53, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.dor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(44, 62, 53, 0.06);
    border-color: rgba(44, 62, 53, 0.15);
}

.dor-card-icon {
    font-size: 1.5rem;
    background-color: var(--light-beige);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.dor-card p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--text-dark);
}

.full-width-card {
    grid-column: 1 / -1;
    justify-content: center;
    background-color: var(--warm-cream);
}

@media (max-width: 768px) {
    .full-width-card {
        grid-column: auto;
        justify-content: flex-start;
    }
}

.dor-conclusion {
    margin-top: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dor-conclusion .lead-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 10px;
}

.highlight-quote {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--dark-green);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 25px;
}

.conclusion-h3 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    border-top: 1px solid rgba(44, 62, 53, 0.1);
    padding-top: 25px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .highlight-quote {
        font-size: 1.8rem;
    }
    .dor-conclusion {
        margin-top: 50px;
    }
}

/* ----------------------------------------------------
   9. BLOCO 3 — EXPLICAÇÃO DO PROBLEMA
---------------------------------------------------- */
.two-column-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.column-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.column-callout {
    display: flex;
    justify-content: center;
}

.safe-sleep-box {
    background-color: var(--light-beige);
    border: 1px solid rgba(44, 62, 53, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(44, 62, 53, 0.04);
    position: relative;
    max-width: 400px;
}

.box-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.box-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0;
}

.box-divider {
    border: none;
    border-top: 1px solid rgba(44, 62, 53, 0.15);
    margin: 25px auto;
    width: 60%;
}

.box-highlight {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--dark-green);
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .safe-sleep-box {
        max-width: 100%;
        width: 100%;
    }
}

/* ----------------------------------------------------
   10. BLOCO 4 — APRESENTAÇÃO DO EBOOK
---------------------------------------------------- */
.ebook-showcase {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.ebook-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; /* Efeito 3D */
}

.ebook-mockup {
    width: 100%;
    max-width: 320px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(15px 25px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: rotateY(-10deg) rotateX(5deg);
}

.ebook-visual:hover .ebook-mockup {
    transform: rotateY(-2deg) rotateX(2deg) translateY(-8px);
}

.ebook-shadow {
    position: absolute;
    bottom: -10px;
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
    z-index: 1;
}

.ebook-info .lead-text {
    color: var(--dark-green);
    margin-bottom: 25px;
}

.ebook-benefits-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.benefit-check {
    color: var(--dark-green);
    font-weight: 700;
    background-color: var(--warm-cream);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.quote-style {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    border-left: 2px solid var(--accent-gold);
    padding-left: 20px;
    margin: 30px 0;
    color: var(--dark-green);
    font-style: italic;
}

.ebook-footer-box {
    background-color: var(--warm-cream);
    border-radius: 24px;
    padding: 35px 40px;
    max-width: 850px;
    margin: 0 auto;
}

.footer-box-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark-green);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .ebook-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ebook-visual {
        order: -1;
    }
    
    .ebook-mockup {
        max-width: 260px;
    }
}

/* ----------------------------------------------------
   11. BLOCO 5 — O QUE VOCÊ VAI APRENDER + BÔNUS
---------------------------------------------------- */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.learning-card {
    background-color: var(--light-beige);
    border: 1px solid rgba(44, 62, 53, 0.05);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    transition: var(--transition-smooth);
}

.learning-card:hover {
    transform: translateY(-5px);
    background-color: var(--warm-cream);
    border-color: rgba(44, 62, 53, 0.15);
}

.card-num {
    position: absolute;
    top: 30px;
    right: 35px;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: rgba(44, 62, 53, 0.08);
    font-weight: 600;
}

.learning-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-right: 40px;
    color: var(--dark-green);
}

.learning-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Caixa de Bônus Especial */
.bonus-container {
    margin-top: 60px;
}

.bonus-box {
    background-color: var(--light-beige);
    border: 1.5px dashed var(--accent-gold);
    border-radius: 30px;
    padding: 60px 50px;
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(230, 183, 126, 0.06);
}

.bonus-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-green);
    color: var(--accent-gold);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(22, 36, 29, 0.2);
}

.bonus-title {
    font-size: 1.8rem;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.35;
}

.bonus-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.bonus-bold-intro {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-green);
    margin-bottom: 15px;
    text-align: center;
}

.bonus-list {
    list-style: none;
    max-width: 550px;
    margin: 0 auto;
}

.bonus-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.bonus-list li span {
    color: var(--accent-gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .bonus-box {
        padding: 50px 30px;
    }
    
    .bonus-title {
        font-size: 1.5rem;
        margin-top: 10px;
    }
}

/* ----------------------------------------------------
   12. BLOCO 6 — TRANSFORMAÇÃO
---------------------------------------------------- */
.transformacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.transformacao-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.transformacao-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--accent-gold);
}

.transformacao-icon {
    font-size: 1.4rem;
    color: var(--accent-gold);
}

.transformacao-item p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 0;
    color: var(--text-light);
}

.transformacao-callout {
    margin-top: 60px;
}

.callout-italic {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .callout-italic {
        font-size: 1.4rem;
    }
}

/* ----------------------------------------------------
   13. BLOCO 7 — SOBRE AUTORA
---------------------------------------------------- */
.autora-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.autora-image-container {
    display: flex;
    justify-content: center;
}

.autora-image-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1/1.1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 62, 53, 0.12);
}

.autora-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.autora-image-frame:hover .autora-image {
    transform: scale(1.05);
}

.autora-role {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.autora-text-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .autora-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .autora-image-frame {
        max-width: 280px;
    }
}

/* ----------------------------------------------------
   14. BLOCO 8 — CTA / OFERTA
---------------------------------------------------- */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--night-sky-start) 0%, var(--night-sky-end) 100%);
    color: var(--off-white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(230, 183, 126, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.relative-content {
    position: relative;
    z-index: 2;
}

.cta-intro-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-headline {
    font-size: 3rem;
    color: var(--off-white);
    line-height: 1.25;
    margin-bottom: 30px;
}

.cta-headline .accent-text {
    display: block;
    margin-top: 10px;
}

.cta-sub-text {
    font-size: 1.15rem;
    color: var(--text-light);
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.pricing-box {
    margin-bottom: 40px;
}

.price-before {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.price-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.price-value {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--off-white);
    line-height: 1;
}

@media (max-width: 768px) {
    .cta-headline {
        font-size: 2.2rem;
    }
    
    .price-value {
        font-size: 3.5rem;
    }
}

/* ----------------------------------------------------
   15. BLOCO 9 — GARANTIA
---------------------------------------------------- */
.garantia-card {
    background-color: var(--off-white);
    border: 1px solid rgba(44, 62, 53, 0.1);
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(44, 62, 53, 0.04);
}

.garantia-badge {
    background-color: var(--dark-green);
    color: var(--accent-gold);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(22, 36, 29, 0.15);
}

.badge-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 500;
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.garantia-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.garantia-info p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.garantia-info p:last-of-type {
    margin-bottom: 20px;
}

.garantia-footer {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--dark-green) !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .garantia-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .garantia-badge {
        width: 100px;
        height: 100px;
    }
    
    .badge-number {
        font-size: 2.2rem;
    }
}

/* ----------------------------------------------------
   16. BLOCO 10 — PERGUNTAS FREQUENTES (FAQ)
---------------------------------------------------- */
.faq-accordion-group {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--off-white);
    border: 1px solid rgba(44, 62, 53, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    outline: none;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-green);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--light-beige);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 30px;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    padding-bottom: 24px;
}

/* Estado Ativo do FAQ */
.faq-item.active {
    border-color: rgba(44, 62, 53, 0.2);
    box-shadow: 0 8px 25px rgba(44, 62, 53, 0.04);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    br.hide-mobile {
        display: none;
    }
}

/* ----------------------------------------------------
   17. FOOTER
---------------------------------------------------- */
.footer {
    background-color: var(--night-sky-start);
    color: rgba(255, 255, 255, 0.4);
    padding: 60px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.footer-credits {
    margin-bottom: 25px;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 0.75rem;
}

/* ----------------------------------------------------
   18. EFEITOS DE ANIMAÇÃO DE SCROLL
---------------------------------------------------- */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animação inicial no Hero */
.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-2 {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
