/* ==========================================================================
   Design System - Ebook & Curso Filé Mignon Lucrativo
   ========================================================================== */

:root {
    /* Paleta de Cores Premium - Laranja Páprica & Verde Musgo Editorial */
    --color-off-white: #FAF6F0;       /* Fundo creme marfim aquecido */
    --color-sand-beige: #F4EFE6;      /* Fundo bege claro para alternância */
    --color-stone-beige: #E5DDD0;     /* Bege Pedra suave */
    --color-card-bg: #FCFAF6;         /* Fundo de cards iluminado */
    --color-white: #FCFAF6;           
    
    /* Tipografia e Títulos */
    --color-grafite: #2E2823;         /* Marrom Espresso Profundo */
    --color-dark-brown: #4A423B;      /* Títulos de apoio */
    --color-natural-brown: #6E6659;   /* Marrom madeira para corpo de texto */
    
    /* Bordas e Divisões */
    --color-border: #E5DDD0;          
    
    /* Cores de Destaque com Pegada Laranja Gastronômico */
    --color-terracotta-light: #E07A5F; /* Laranja Páprica Suave */
    --color-terracotta: #C85227;       /* Laranja Cobre Quente (Botões e destaques) */
    --color-terracotta-dark: #A63F1B;  /* Laranja Queimado Escuro (Hover) */
    --color-green-moss: #4A5847;       /* Verde Musgo Nobre (Barra do topo) */

    /* Mapeamento Semântico */
    --primary-brand: var(--color-terracotta);
    --primary-brand-dark: var(--color-terracotta-dark);
    --accent-gold: var(--color-border);
    --bg-clean: var(--color-off-white);
    --bg-panel: var(--color-sand-beige);
    --white: var(--color-card-bg);
    --bg-dark-contrast: var(--color-grafite);
    --urgency-bar-bg: var(--color-green-moss);
    --text-main: var(--color-grafite);
    --text-body: var(--color-natural-brown);
    --text-muted: #8C8273;
    --border-color: var(--color-border);
    --terracota: var(--color-terracotta);
    --gold: var(--color-border);

    /* Tipografia de Alta Costura / Editorial */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', sans-serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing & Layout */
    --section-padding: 140px;          
    --container-width: 1100px;
    --border-radius-lg: 12px;          /* Arredondamento mais refinado, menos infantil */
    --border-radius-md: 8px;           
    --border-radius-sm: 4px;
    
    /* Sombras Premium de Luxo Silencioso (Extremamente suaves) */
    --shadow-premium: 0 4px 20px rgba(114, 105, 83, 0.04); 
    --shadow-strong: 0 10px 40px rgba(114, 105, 83, 0.06);  
}

/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-clean);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius-md);
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Títulos de Seção */
.section-title {
    font-size: 3.2rem;
    text-align: center;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    font-weight: 400; /* Serifas leves transmitem mais luxo */
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.8rem;
    font-family: var(--font-heading);
}

.section-title::after {
    content: '❦';
    font-family: serif;
    font-size: 1.2rem;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-terracotta-light); /* Terracota Claro para o ramo sutil */
    background-color: transparent;
    padding: 0 10px;
    z-index: 2;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: var(--color-border); /* Linha Bege Pedra */
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em; /* Espaçamento largo editorial */
    font-family: var(--font-body);
    font-weight: 500;
    margin-top: -0.2rem;
    margin-bottom: 4.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Faixa de Urgência no Topo (Editorial Announcement Bar) */
.urgency-banner {
    background: var(--urgency-bar-bg);
    color: #FFFFFF;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em; /* Estilo de cabeçalho de marca de grife */
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.banner-dot {
    width: 4px;
    height: 4px;
    background-color: var(--color-terracotta); /* Detalhe terracota sutil */
    border-radius: 50%;
    display: inline-block;
}

.banner-text {
    display: inline-block;
}

.old-price-banner {
    text-decoration: line-through;
    opacity: 0.55;
    margin-right: 4px;
}

/* Botões de Ação (CTA) */
.cta-button {
    display: inline-block;
    background-color: var(--primary-brand);
    color: var(--white);
    padding: 1.25rem 3.4rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.15em; /* Espaçamento de luxo */
    box-shadow: 0 4px 15px rgba(114, 105, 83, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-button:hover {
    background-color: var(--primary-brand-dark);
    color: var(--white);
    border-color: var(--border-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(80, 77, 62, 0.2);
    letter-spacing: 0.17em; /* Micro-expansão no hover */
}

.cta-button.large {
    font-size: 1.05rem;
    padding: 1.45rem 4.2rem;
}

/* Animação Pulse Reescrita como Brilho de Luxo Silencioso */
.pulse {
    animation: luxury-glow 3s infinite ease-in-out;
}

@keyframes luxury-glow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(114, 105, 83, 0.12); 
    }
    50% { 
        box-shadow: 0 8px 25px rgba(114, 105, 83, 0.25); 
    }
}

/* ==========================================================================
   HERO SECTION / CABEÇALHO
   ========================================================================== */

.hero {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-sand-beige) 100%);
    color: var(--text-main);
    padding: 7.5rem 0 9.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.tagline {
    display: inline-block;
    border: 1px solid #D8C7B2; /* Borda elegante */
    color: #8A5A44; /* Terracota superior */
    padding: 6px 18px;
    font-size: 0.75rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.22em; /* Espaçamento largo de luxo */
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-body);
    background-color: #EFE8DC; /* Fundo Bege Areia quente */
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.12;
    margin-bottom: 1.8rem;
    letter-spacing: -1px;
    color: #3F342C; /* Marrom espresso profundo e elegante */
    font-weight: 400; /* Serifas elegantes e leves */
    font-family: var(--font-heading);
}

.hero .highlight {
    background: linear-gradient(135deg, #C98F78 0%, #A9644F 50%, #7A4A3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    border-bottom: 1px solid #C98F78; /* Linha decorativa sutil */
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #726953; /* Marrom Madeira quente e elegante */
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Video Frame */
.video-wrapper {
    max-width: 760px;
    margin: 0 auto 3.5rem;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-strong);
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.video-wrapper::before {
    display: none; /* Remove a borda dupla antiga para manter o minimalismo */
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
    position: relative;
    z-index: 2;
}

.hero-price-info {
    margin-top: 1.8rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.old-price-small {
    text-decoration: line-through;
    opacity: 0.65;
}

.hero-price-info strong {
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 700;
}

.gold-badge {
    background: var(--color-stone-beige);
    color: var(--color-grafite);
    border: 1px solid var(--border-color);
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 8px;
    border-radius: var(--border-radius-sm);
}

/* ==========================================================================
   GALERIA DE PRATOS
   ========================================================================== */

.gallery {
    padding: var(--section-padding) 0;
    background-color: var(--color-off-white);
    border-bottom: 1px solid var(--border-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.upcoming-recipe {
    grid-column: span 2;
}

@media(min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.2rem;
    }
    .upcoming-recipe {
        grid-column: 2 / span 2;
    }
}

.gallery-item {
    background-color: var(--white);
    border-radius: 0px; /* Borda quadrada normal */
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 5; /* Formato vertical que imita perfeitamente as janelas da fachada */
    object-fit: cover;
    border-radius: 0px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-icon-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-sand-beige);
    color: var(--color-green);
    font-size: 2.8rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-icon-placeholder {
    background-color: var(--color-grafite);
    color: var(--white);
}

.upcoming-recipe .gallery-icon-placeholder {
    background-color: var(--color-sand-beige);
    color: var(--color-terracotta);
}

.upcoming-recipe:hover .gallery-icon-placeholder {
    background-color: var(--color-terracotta);
    color: var(--white);
}

.gallery-caption {
    background: var(--white);
    color: var(--color-grafite);
    padding: 16px 12px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    font-weight: 500;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    border-top: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-natural-brown);
    box-shadow: var(--shadow-strong);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-cta-container {
    text-align: center;
    margin-top: 4.5rem;
}

/* ==========================================================================
   BENEFÍCIOS / APRESENTAÇÃO DO CURSO
   ========================================================================== */

.intro-course {
    padding: var(--section-padding) 0;
    background-color: var(--color-sand-beige);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 3.5rem 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-natural-brown);
    box-shadow: var(--shadow-strong);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--color-green-olive); /* Verde Oliva elegante de paisagismo */
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover i {
    transform: scale(1.08);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.benefit-card p {
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ==========================================================================
   CURRICULUM (MÓDULOS DO CURSO)
   ========================================================================== */
.curriculum {
    padding: var(--section-padding) 0;
    background-color: var(--color-off-white); /* Fundo Off White */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.module {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-premium);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-natural-brown);
}

.module-header {
    background-color: var(--color-sand-beige); /* Fundo Bege Areia */
    color: var(--color-grafite);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.module-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-terracotta-light); /* Detalhe em terracota clara nos números */
    font-weight: 300;
    line-height: 1;
}

.module-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
    color: var(--color-grafite);
    text-transform: none;
    font-weight: 500;
}

.module-content {
    list-style: none;
    padding: 2rem;
}

.module-content li {
    margin-bottom: 1.2rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-body);
    line-height: 1.5;
}

.module-content li i {
    color: var(--color-terracotta); /* Detalhes em terracota nos checks */
    margin-top: 4px;
    font-size: 0.9rem;
}

/* ==========================================================================
   PROVA DE LUCRATIVIDADE (PROFIT PROOF)
   ========================================================================== */
.profit-proof {
    padding: var(--section-padding) 0;
    background-color: var(--color-stone-beige); /* Fundo Bege Pedra */
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.profit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.profit-grid img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.profit-grid img:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-natural-brown);
}

.profit-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
}

.profit-final-text {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
}

.profit-content strong {
    color: var(--color-grafite);
    font-weight: 700;
}

/* ==========================================================================
   BÔNUS EXCLUSIVOS
   ========================================================================== */
.bonus {
    padding: var(--section-padding) 0;
    background-color: var(--color-off-white); /* Fundo Off White */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.2rem;
}

.bonus-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-natural-brown);
}

.bonus-tag {
    display: inline-block;
    background: var(--color-stone-beige);
    color: var(--color-grafite);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.7rem;
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.15em; /* Espaçamento sofisticado */
}

.bonus-card h3 {
    margin-bottom: 1.2rem;
    color: var(--color-grafite);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500; /* Peso elegante e mais leve */
    text-transform: none;
}

.bonus-card p {
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ==========================================================================
   DEPOIMENTOS & ANÁLISE DE CLIENTES
   ========================================================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--color-sand-beige); /* Fundo Bege Areia */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 5rem 2.2rem 3rem;
    border-radius: var(--border-radius-md);
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-natural-brown);
    box-shadow: var(--shadow-strong);
}

.testimonial-card::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--color-terracotta-light); /* Detalhe terracota claro nas aspas */
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    opacity: 0.25; /* Aspas suaves de luxo */
}

.stars {
    color: var(--color-terracotta-light); /* Estrelas elegantes em terracota claro */
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

.testimonial-card .author {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    z-index: 1;
}

.client-feedback-section {
    text-align: center;
    margin-top: 4rem;
}

.client-feedback-section h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-grafite);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.feedback-grid {
    display: flex;
    gap: 1.8rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.feedback-grid img {
    height: 420px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    flex-shrink: 0;
    scroll-snap-align: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}

.feedback-grid img:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: var(--color-natural-brown);
    box-shadow: var(--shadow-strong);
}

/* Feedback Scrollbar */
.feedback-grid::-webkit-scrollbar {
    height: 8px;
}

.feedback-grid::-webkit-scrollbar-track {
    background: var(--color-sand-beige);
    border-radius: 4px;
}

.feedback-grid::-webkit-scrollbar-thumb {
    background: var(--color-terracotta-light);
    border-radius: 4px;
}

/* ==========================================================================
   OFFER SECTION / CAIXA DE OFERTA
   ========================================================================== */
.offer {
    padding: var(--section-padding) 0;
    background-color: var(--color-off-white); /* Fundo Off White */
    text-align: center;
}

.offer-box {
    background: var(--white);
    color: var(--text-body);
    max-width: 650px;
    margin: 0 auto;
    padding: 4.5rem 3rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-strong);
    position: relative;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--border-color); /* Detalhe discreto da borda interna */
    pointer-events: none;
    border-radius: calc(var(--border-radius-md) - 6px);
}

.offer-label {
    display: inline-block;
    background: var(--color-stone-beige);
    color: var(--color-grafite);
    border: 1px solid var(--border-color);
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
}

.offer-box h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    line-height: 1.15;
    color: var(--color-grafite);
    font-family: var(--font-heading);
    font-weight: 400;
}

.price-container {
    margin-bottom: 2.5rem;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.new-price {
    display: block;
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-grafite); /* Cor escura elegante para preço, não berrante */
    line-height: 1;
    font-family: var(--font-heading);
}

.installments {
    display: block;
    font-size: 1.4rem;
    color: var(--color-natural-brown);
    font-weight: 600;
    margin-top: 0.5rem;
    font-family: var(--font-body);
}

.offer-features {
    list-style: none;
    text-align: left;
    max-width: 420px;
    margin: 0 auto 3rem;
}

.offer-features li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
}

.offer-features i {
    color: var(--color-terracotta); /* Ícone de check em terracota */
    font-size: 1.1rem;
}

.guarantee {
    margin-top: 2rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee i {
    color: var(--color-green-olive); /* Escudo em verde oliva */
}

.urgency-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-terracotta);
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq {
    padding: var(--section-padding) 0;
    background-color: var(--color-stone-beige); /* Fundo Bege Pedra */
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--white);
    margin-bottom: 1.2rem;
    border-radius: var(--border-radius-md);
    padding: 1.6rem;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

details:hover {
    border-color: var(--color-natural-brown);
    box-shadow: var(--shadow-strong);
}

details[open] {
    border-color: var(--color-natural-brown);
}

summary {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-grafite);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-natural-brown);
    font-weight: 300;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1.2rem;
    color: var(--text-body);
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
    font-size: 0.96rem;
    line-height: 1.6;
}

/* ==========================================================================
   FINAL CTA / BOTTOM BANNER
   ========================================================================== */
.final-cta {
    padding: 6.5rem 0;
    background-color: var(--color-off-white); /* Fundo Off White */
    color: var(--text-main);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.final-cta h2 {
    color: var(--color-grafite);
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-transform: none;
    font-weight: 400; /* Serifas leves */
}

.final-cta p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
footer {
    background-color: var(--color-stone-beige); /* Fundo claro Bege Pedra */
    color: var(--color-grafite);
    padding: 3.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color); /* Linha fina no rodapé */
    font-family: var(--font-body);
}

footer p {
    opacity: 0.8;
}

.footer-links {
    margin-top: 1.2rem;
    opacity: 0.55;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Responsividade Mobile
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .container { 
        padding: 0 20px; 
    }
    
    .hero { 
        padding: 5rem 0 6rem; 
    }
    
    .hero h1 { 
        font-size: 2.3rem; 
        line-height: 1.2; 
    }
    
    .hero-subtitle { 
        font-size: 1.05rem; 
        margin-bottom: 2.5rem;
    }
    
    .section-title { 
        font-size: 2.2rem; 
    }
    
    .section-subtitle { 
        font-size: 0.8rem; 
        letter-spacing: 0.12em;
        margin-bottom: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .gallery-item {
        border-radius: 0px; /* Borda quadrada no mobile */
    }

    .gallery-caption {
        font-size: 0.68rem;
        min-height: 65px;
        padding: 10px 6px;
    }
    
    .modules-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .module-header {
        padding: 1.5rem;
    }

    .module-header h3 {
        font-size: 1.2rem;
    }

    .module-content {
        padding: 1.5rem;
    }
    
    .cta-button { 
        width: 100%; 
        text-align: center; 
        padding: 1.15rem 1.5rem; 
        font-size: 0.9rem; 
        white-space: normal; 
        line-height: 1.3; 
    }
    
    .intro-course, .curriculum, .profit-proof, .gallery, .bonus, .testimonials, .offer, .faq { 
        padding: 5rem 0; 
    }
    
    .benefits-grid, .profit-grid { 
        gap: 1.8rem; 
    }
    
    .offer-box { 
        padding: 3rem 1.5rem; 
        border-width: 1px;
    }
    
    .offer-box h2 { 
        font-size: 2.1rem; 
    }
    
    .new-price { 
        font-size: 3.2rem; 
    }

    .feedback-grid img {
        height: 310px;
    }
}

/* ==========================================================================
   SEÇÃO UPSELL EXCLUSIVO (Aviso no Topo - Layout Limpo e Objetivo)
   ========================================================================== */
.upsell-section {
    background-color: var(--color-sand-beige);
    border-bottom: 1px solid var(--border-color);
    padding: 4.5rem 0 4rem;
    text-align: center;
    position: relative;
}

.upsell-content-clean {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.upsell-tagline-top {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--color-terracotta);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.upsell-title-clean {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1.15;
    color: #3F342C;
    font-weight: 400;
    margin-bottom: 1.8rem;
    letter-spacing: -0.5px;
}

.upsell-title-clean .highlight {
    font-style: italic;
    color: var(--color-terracotta-dark);
    position: relative;
    border-bottom: 1.5px solid var(--color-terracotta-light);
    display: inline-block;
    padding-bottom: 2px;
}

.upsell-subtitle-clean {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-natural-brown);
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.upsell-scroll-prompt-clean {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-grafite);
    opacity: 0.9;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .upsell-section {
        padding: 3rem 0 2.5rem;
    }
    .upsell-tagline-top {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }
    .upsell-title-clean {
        font-size: 2.1rem;
        margin-bottom: 1.2rem;
    }
    .upsell-subtitle-clean {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    .upsell-scroll-prompt-clean {
        font-size: 0.85rem;
    }
}

/* Estilização e Alinhamento dos Containers do Hotmart Sales Funnel Widget */
.hotmart-sales-funnel {
    margin: 1.8rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 650px;
    min-height: 40px;
}