/*
    CÓDIGO CSS MASTER - VERSÃO 100% COMPLETA E VERIFICADA
*/

/* --- 0. CONFIGURAÇÃO E TEMA --- */
:root {
    --primary-color: #E75480;
    --accent-color: #FFD1DC;
    --success-color: #4CAF50;
    --error-color: #f44336;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --background-color-body: #FDF5E6;
    --card-background: #FFFFFF;
    --border-color: #FFC0CB;
    --gold-accent: #DAA520;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --focus-outline-color: var(--gold-accent);
}

/* --- 1. ESTILOS GLOBAIS E RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Adicione esta regra no início do seu arquivo CSS, junto aos estilos globais */
html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    background: var(--background-color-body);
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color-dark);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><rect width="20" height="20" fill="%23fdf5e6"/><circle cx="5" cy="5" r="2" fill="%23eee"/><circle cx="15" cy="15" r="2" fill="%23ddd"/></svg>');
    background-repeat: repeat;
    opacity: 0.5;
    z-index: -1;
}

h1, h2, h3, h4, h5, p {
    color: var(--text-color-dark);
}

.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--background-color-body);
    display: flex; justify-content: center; align-items: center; z-index: 9999;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
    opacity: 1; visibility: visible;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.spinner {
    border: 8px solid #f3f3f3; border-top: 8px solid var(--primary-color);
    border-radius: 50%; width: 60px; height: 60px; animation: spin 1s linear infinite;
}

/* --- 2. LAYOUT E ESTRUTURA PRINCIPAL --- */
#game-container {
    background-color: var(--card-background);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    width: 100%;
    max-width: 800px; /* Aumentado para acomodar a página de vendas */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: opacity 0.5s ease-in-out;
    margin: 20px auto;
}

#game-header {
    width: 100%; padding: 15px 20px; background-color: var(--primary-color);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    border-radius: 15px 15px 0 0; box-shadow: 0 4px 10px var(--shadow-light);
    transition: top 0.3s ease-in-out;
    flex-shrink: 0;
    position: sticky !important; /* Define que o elemento será "pegajoso" */
    top: 0 !important;           /* Trava o elemento no topo da área visível */
    z-index: 1000 !important;    /* Garante que ele fique acima de outros elementos da página */

}
#progress-bar-container { width: 90%; height: 8px; background-color: var(--accent-color); border-radius: 50px; overflow: hidden; }
#progress-bar { height: 100%; width: 0%; background-color: var(--gold-accent); border-radius: 50px; transition: width 0.5s ease-out; }
#level-indicator { display: none; }

#game-hud {
    background-color: var(--gold-accent); color: var(--text-color-light); padding: 8px 20px;
    margin: 15px auto 0; border-radius: 12px; box-shadow: 0 2px 8px var(--shadow-light);
    border: 1px solid #cc8e00; transition: all 0.3s ease-in-out; display: none;
    align-items: stretch; justify-content: center; gap: 15px;
    flex-shrink: 0;
}
.hud-item { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hud-label { font-size: 0.8em; font-weight: 600; opacity: 0.9; color: var(--text-color-light); }
#balance-state, #bonus-count { font-size: 1.5em; font-weight: 700; color: var(--text-color-light); }
.hud-separator { width: 2px; background-color: rgba(255, 255, 255, 0.3); }
#game-hud.hud-hidden { opacity: 0; visibility: hidden; height: 0; padding: 0 20px; margin-top: 0; }

.game-phase-section {
    padding: 20px;
    width: 100%;
}
.game-phase-section.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.7s ease-out;
    gap: 15px;
}

/* --- 3. COMPONENTE: CARDS --- */
.card { background-color: var(--card-background); border-radius: 15px; padding: 25px; box-shadow: 0 8px 20px var(--shadow-light); width: 100%; text-align: center; border: 1px solid var(--border-color); }
.quiz-card, .bonus-card, .action-card, .chat-simulation-card { max-width: 700px; margin: 0 auto;}
.bonus-unlocked-card { border: 2px solid var(--gold-accent); box-shadow: 0 8px 40px rgba(218, 165, 32, 0.3); }
.bonus-unlocked-card h1 { font-size: 1.6em; color: var(--success-color); }
.card h1, .card h2, .card h3, .card p { margin-bottom: 12px; width: 100%; }
.card h1 { font-size: 1.8em; color: var(--primary-color); font-weight: 900; }
.card h2 { font-size: 1.3em; font-weight: 700; }
.card p { font-size: 1em; line-height: 1.6; }
.bonus-image { max-width: 300px; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 4px 15px var(--shadow-light); }

/* --- 4. COMPONENTE: BOTÕES --- */
.options-container { display: flex; flex-direction: column; width: 90%; max-width: 400px; gap: 10px; margin: 15px auto 0; }
.button { display: inline-flex; align-items: center; justify-content: center; width: 100%; padding: 15px 25px; border-radius: 10px; font-size: 1em; font-weight: bold; text-align: center; cursor: pointer; transition: all 0.3s ease-in-out; border: 1px solid transparent; text-decoration: none; white-space: normal; word-wrap: break-word; }
.button:focus-visible { outline: 3px solid var(--focus-outline-color); outline-offset: 3px; }
.button:hover { transform: translateY(-3px); }
.button--primary { background: linear-gradient(90deg, var(--primary-color), #f73180); color: var(--text-color-light); border-color: var(--primary-color); box-shadow: 0 4px 15px rgba(231, 84, 128, 0.5); }
.button--primary:hover, .button--primary:focus-visible { background: linear-gradient(90deg, #f73180, #cc286c); box-shadow: 0 6px 20px rgba(231, 84, 128, 0.7); transform: translateY(-3px); }
.button--bonus { background-color: var(--gold-accent); color: var(--text-color-light); border-color: #cc8e00; box-shadow: 0 4px 15px rgba(218, 165, 32, 0.5); }
.button--bonus:hover, .button--bonus:focus-visible { background-color: #e0ac10; box-shadow: 0 6px 20px rgba(218, 165, 32, 0.7); transform: translateY(-3px); }
.button--cta { background-color: var(--success-color); color: var(--text-color-light); border-color: #398c3d; box-shadow: 0 4px 15px rgba(76, 175, 80, 0.5); font-size: 1.2em; padding: 18px 25px; }
.button--cta:hover, .button--cta:focus-visible { background-color: #449d48; box-shadow: 0 6px 20px rgba(76, 175, 80, 0.7); transform: translateY(-3px); }
.button.correct { background: var(--success-color) !important; border-color: #398c3d !important; color: var(--text-color-light) !important; box-shadow: 0 0 15px rgba(76, 175, 80, 0.6) !important; transform: scale(1.05); }
.button.incorrect { background: var(--error-color) !important; border-color: #c4322a !important; color: var(--text-color-light) !important; box-shadow: 0 0 15px rgba(244, 67, 54, 0.6) !important; }
.video-container { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background-color: #000; border-radius: 12px; overflow: hidden; margin-bottom: 15px; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/* --- 5. COMPONENTE: QUIZ & FEEDBACK --- */
.explanation-text { margin: 15px auto 0; padding: 15px; background-color: #fff9f0; border-radius: 10px; color: var(--text-color-dark); font-style: italic; font-size: 1em; border-left: 5px solid var(--primary-color); box-shadow: 0 4px 10px var(--shadow-light); width: 90%; max-width: 500px; }

/* --- 6. COMPONENTE: SIMULAÇÃO DE CHAT --- */
.chat-container { display: block; width: 90%; max-width: 500px; margin: 15px auto; }
.chat-message { max-width: 85%; padding: 10px 15px; border-radius: 15px; font-size: 0.95em; box-shadow: 0 2px 5px rgba(0,0,0,0.08); line-height: 1.4; margin-bottom: 8px; display: flex; flex-direction: column; align-items: flex-start; }
.client-message { background-color: #f0f0f0; margin-left: 0; margin-right: auto; }
.your-message { background-color: var(--accent-color); color: var(--text-color-dark); margin-left: auto; margin-right: 0; align-items: flex-end; }
.chat-message .button { width: auto; padding: 8px 15px; font-size: 0.9em; margin-top: 8px; }

/* --- 8. ANIMAÇÕES E EFEITOS --- */
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* --- 9. RESPONSIVIDADE --- */
@media (max-width: 768px) {
    body { padding: 0; }
    #game-container { padding: 0; width: 100%;  min-height: 100vh; max-width: unset; border-radius: 0; box-shadow: none; margin: 0;  overflow-y: auto;}
    .game-phase-section { padding: 15px; }
    .game-phase-section.active { flex: 1; -webkit-overflow-scrolling: touch; }
    #game-header { border-radius: 0; }
    .card { padding: 20px 15px; flex-shrink: 0; }
    .card h1 { font-size: 1.4em; }
    .card h2 { font-size: 1.2em; }
    .card p { font-size: 0.95em; }
    .button { padding: 12px 15px; font-size: 0.95em; }
}

/* --- ESTILOS PARA EDITOR ELEMENTOR --- */
.elementor-editor-active .game-phase-section { display: flex !important; opacity: 1 !important; visibility: visible !important; position: relative !important; min-height: auto !important; margin-bottom: 40px; border: 2px dashed var(--primary-color); padding-top: 40px; padding-bottom: 40px; overflow-y: visible !important; flex: 0 1 auto !important; }
.elementor-editor-active #game-hud { display: flex !important; position: relative !important; }
.elementor-editor-active #game-container { height: auto !important; min-height: 100vh !important; }


/* ===================================================================
   NOVOS ESTILOS PARA A PÁGINA DE VENDAS (FASE 17) 
===================================================================
*/

/* ===================================================================
   ESTILOS PARA A SEÇÃO DA EXPERT (CAROL CONFEITA)
===================================================================
*/

/* 1. O container principal da seção */
.expert-section {
    background-color: #fffafb; /* Um fundo rosa bem claro para destacar a seção */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* 2. O título da seção */
.expert-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* 3. O container que agrupa a foto e o texto */
.expert-bio-container {
    display: flex; /* Coloca a foto ao lado do texto */
    align-items: center; /* Alinha verticalmente a foto com o texto */
    gap: 2.5rem; /* Espaço entre a foto e o texto */
    max-width: 900px; /* Limita a largura para melhor leitura */
    margin: 0 auto; /* Centraliza o container */
}

/* 4. A foto da expert */
.expert-photo {
    width: 250px !important;
    height: 250px !important;
    border-radius: 10% !important; /* Deixa a foto perfeitamente redonda */
    object-fit: cover; /* Garante que a imagem não fique distorcida */
    border: 5px solid var(--gold-accent); /* Borda dourada para um toque premium */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Sombra suave para destacar a foto */
    flex-shrink: 0; /* Impede que a imagem encolha em telas menores */
}

/* 5. O bloco de texto da biografia */
.expert-text {
    text-align: left; /* Alinha o texto à esquerda para facilitar a leitura */
}

.expert-text p {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 1.2rem; /* Espaçamento entre os parágrafos */
    color: #444;
}

.expert-text p:last-child {
    margin-bottom: 0; /* Remove a margem do último parágrafo */
}


/* --- RESPONSIVIDADE PARA CELULARES --- */
@media (max-width: 768px) {
    .expert-bio-container {
        flex-direction: column; /* Coloca a foto em cima do texto */
        text-align: center; /* Centraliza tudo no mobile */
        gap: 1.5rem;
    }

    .expert-photo {
        width: 150px; /* Diminui um pouco a foto no mobile */
        height: 150px;
        margin-bottom: 1rem; /* Adiciona um espaço abaixo da foto */
    }

    .expert-text {
        text-align: center; /* Garante que o texto fique centralizado no mobile */
    }
}

#fase-17.game-phase-section.active {
    padding: 0;
    gap: 0;
}

.sales-page-card {
    padding: 0 !important;
    background: var(--card-background) !important;
    border: none !important;
    box-shadow: none !important;
    width: 100%;
}

.sales-page-card section {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.sales-page-card section:last-of-type {
    border-bottom: none;
}

/* Tipografia e Destaques da Página de Vendas */
.sales-page-card h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.3;
}
.sales-page-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}
.sales-page-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}
.sales-page-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color); /* Alterado para a cor primária (rosa) */
font-weight: 700; /* << ADICIONE ESTA LINHA PARA O NEGRITO */
}

.sales-page-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.sales-page-card .highlight-money { color: var(--success-color); }
.sales-page-card .highlight-purple { color: var(--primary-color); }
.sales-page-card .highlight-angry { color: var(--error-color); }

/* Seção Hero */
.hero-section .subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}
.hero-image-container img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}
/* --- ESTILO PARA O BOTÃO CTA PRINCIPAL (HERO SECTION) --- */
.hero-section .cta-button {
    background-color: var(--success-color);
    background-image: linear-gradient(145deg, var(--success-color), #3fad43);
    color: #FFFFFF;
    padding: 18px 30px;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.hero-section .cta-button:hover {
    background-image: linear-gradient(145deg, #45a049, #3fad43);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.6);
    transform: translateY(-3px);
}
.hero-section .cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.5);
}


/* Seção Dores */
.pain-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.pain-card {
    background-color: var(--background-color-body);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding:  1.5rem;
}

/* Seção Solução e Benefícios */
.product-shot img {
    max-width: 300px;
    margin: 2rem auto;
    display: block;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.benefit-card {
    background-color: #fffafb;
    border: 1px dashed var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
}
.bonus-description-list {
    display: flex;
    flex-direction: column;
    text-align: left; /* Alinha o texto da lista à esquerda */
    gap: 8px; /* Espaço entre os itens da lista */
    margin-top: 1rem;
}
/* --- CLASSE UNIFICADA PARA ÍCONES DE CARD --- */
.card-icon-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px !important;
    margin-bottom: 1rem;
}

/* Seção Prova Social */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.testimonial-card {
    background-color: var(--background-color-body);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}
.testimonial-card.video-testimonial { position: relative; cursor: pointer; }
.testimonial-video-play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 4rem; color: rgba(255,255,255,0.8); text-shadow: 0 0 15px black; pointer-events: none; }
.testimonial-card img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 1rem; object-fit: cover; }
.testimonial-card blockquote { font-size: 1.1rem; font-style: italic; margin: 0 0 1rem 0; padding: 0; border: none; }
.testimonial-card cite { font-weight: 700; font-style: normal; }
.testimonials-grid-prints { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.testimonials-grid-prints img { max-width: 250px; height: auto; border-radius: 10px; box-shadow: 0 5px 15px var(--shadow-light); }

/* Seção "Para Quem É" */
.who-is-it-for-list { list-style: none; padding: 0; max-width: 600px; margin: 0 auto; text-align: left; }
.who-is-it-for-list li { font-size: 1.2rem; padding: 0.75rem 0; font-weight: 500; }

/* Seção Bônus */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.bonus-card { background-color: var(--background-color-body); padding: 2rem; border-radius: 12px; border: 1px solid var(--border-color); }
.bonus-icon-img { width: 100%; max-height: 250px; object-fit: cover; border-radius: 15px !important; margin-bottom: 0.5rem; background-color: #ddd; }

/* ===================================================================
   ESTILOS PARA A VALORIZAÇÃO DOS BÔNUS (DE/POR E SOMA TOTAL)
===================================================================
*/

/* Container para os preços dentro de cada bônus */
.bonus-price-wrapper {
    margin-top: 1.5rem; /* Espaço acima dos preços */
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

/* Estilo para as linhas de preço "De/Por" */
.bonus-price-display {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0.25rem 0; /* Espaço menor entre as linhas de preço */
}

/* Estilo específico para o preço antigo "De R$ XXX" */
.bonus-price-display.old-price span {
    text-decoration: line-through; /* Risca o preço */
    color: var(--error-color) !important; /* Cor cinza para o preço antigo */
}

/* Estilo específico para o preço novo "Por: GRÁTIS!" */
.bonus-price-display.new-price strong {
    color: var(--success-color); /* Cor VERDE DINHEIRO */
    font-size: 1.3em;
    font-weight: 900;
}

/* Seção do valor total dos bônus */
.total-bonus-value-section {
    margin-top: 3rem;
    padding: 2.5rem;
    border: 2px dashed var(--gold-accent);
    border-radius: 15px;
    background-color: #fffafb; /* Fundo rosa bem clarinho */
    text-align: center;
}

.total-bonus-value-section h2 {
    color: var(--primary-color); /* Cor ROXO VIBRANTE (usando a primária do tema) */
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.total-bonus-value-section p {
    font-size: 1.2em;
    line-height: 1.8;
}

/* Destaque para o valor total em R$ */
.highlight-money-large {
    
    display: block; /* Faz o elemento ocupar a própria linha, ficando "sozinho" */
    width: fit-content; /* Faz a largura se ajustar ao conteúdo (para o sublinhado ficar certo) */
    margin: 1rem auto; /* Adiciona espaço em cima/embaixo e centraliza */

    
    font-size: 2em; /* Fonte bem grande */
    font-weight: 900; /* Super negrito */
    color: var(--error-color) !important;     /* Deixa o texto vermelho */
    text-decoration: line-through;    /* Adiciona o sublinhado */
    text-decoration-thickness: 3px; /* Deixa a linha um pouco mais grossa (opcional) */
}

/* 2. ESTA PARTE GARANTE A COR VERMELHA NO TEXTO */
.highlight-money-large,
.highlight-money-large strong {
    color: var(--error-color) !important; /* << FORÇA O VERMELHO NO SPAN E NO STRONG */
}

/* Destaque para a palavra "DE GRAÇA" */
.total-bonus-value-section strong {
    color: var(--success-color); /* Cor VERDE DINHEIRO */
}

/* Seção Oferta */
/* ===================================================================
   ESTILOS PARA A NOVA SEÇÃO DE OFERTA FINAL (ID #offer-final)
===================================================================
*/

/* 1. Container principal da seção */
.offer-section-final {
    background-color: #fffafb; /* Fundo rosa bem claro para destacar toda a área */
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* 2. Caixa de Atenção no topo */
.attention-box {
    background-color: #fffbe6; /* Fundo amarelo de alerta */
    border: 2px solid var(--error-color); /* Borda vermelha forte */
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.attention-box h2 {
    color: var(--text-color-dark);
    font-size: 1.5em;
    margin: 0;
}

.attention-box .highlight-red {
    color: var(--error-color);
}

/* 3. A caixa principal que agrupa bônus e preço */
.price-box-final {
    display: flex; /* Cria o layout de duas colunas */
    background-color: var(--card-background);
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    overflow: hidden; /* Garante que o conteúdo respeite as bordas arredondadas */
}

/* 4. Bloco da lista de bônus (coluna da esquerda) */
.bonuses-list-block {
    flex-basis: 50%; /* Define que a coluna ocupa 50% do espaço */
    padding: 2rem;
    border-right: 1px solid var(--border-color);
}

.bonuses-list-block h3 {
    font-size: 1.3em;
    color: var(--text-color-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonuses-list-block ul {
    list-style: none;
    padding: 0;
}

.bonuses-list-block li {
    font-size: 1em;
    font-weight: 600;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.bonuses-list-block li:last-child {
    border-bottom: none;
}

/* 5. Bloco com os detalhes da oferta (coluna da direita) */
.offer-details-final {
    flex-basis: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--background-color-body);
}

.old-price-final {
    font-size: 1.5em;
    text-decoration: line-through;
    color: var(--error-color);
}

.price-intro-final {
    font-size: 1.2em;
    font-weight: 700;
    margin-top: 1rem;
}

.main-price-final {
    font-size: 1em; /* Resetamos o tamanho aqui */
    font-weight: 900;
    color: var(--success-color)!important;
    line-height: 1.1;
    margin: 0.25rem 0;
    display: flex; /* Usamos flexbox para alinhar os itens */
    align-items: baseline; /* Alinha os textos pela base, fica mais bonito */
    justify-content: center;
    gap: 0.5rem; /* Um pequeno espaço entre as duas partes */
}

/* Estilo para o texto "12x de" (menor) */
.installments-text {
    font-size: 0.9em; /* << Tamanho menor */
    font-weight: 700; /* Um pouco menos de peso que o valor */
}

/* Estilo para o valor "R$ 19,70" (maior) */
.price-value {
    font-size: 2.5em; /* << Tamanho maior para destaque */
    font-weight: 900; /* Super negrito */
}

.or-text-final {
    font-size: 1.2em!important;
    font-weight: 700;
    color: var(--success-color)!;
    letter-spacing: 0.1px;
}

.countdown-timer-final {
    margin: 1.5rem 0;
    font-size: 1.2em;
    font-weight: 700;
    color: var(--error-color);
}

.cta-button-final {
    /* Reutiliza o estilo do botão CTA verde */
    background-color: var(--success-color);
    background-image: linear-gradient(145deg, var(--success-color), #3fad43);
    color: #FFFFFF;
    padding: 18px 10px;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%; /* Faz o botão ocupar toda a largura da coluna */
}

.cta-button-final:hover {
    background-image: linear-gradient(145deg, #45a049, #3fad43);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.6);
    transform: translateY(-3px);
}

.guarantee-seal-final {
    max-width: 120px;
    margin-top: -0.8rem;
}

/* 6. Bloco final de Risco Zero */
.risk-zero-block {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f0fff4; /* Fundo verde bem clarinho */
    border: 2px dashed var(--success-color);
    border-radius: 12px;
    text-align: center;
}

.risk-zero-block h3 {
    font-size: 1.4em;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.risk-zero-block ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    display: inline-block;
    text-align: left;
}

.risk-zero-block li {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* --- RESPONSIVIDADE PARA CELULARES --- */
@media (max-width: 768px) {
    .price-box-final {
        flex-direction: column; /* Coloca as colunas uma sobre a outra */
    }

    .bonuses-list-block {
        border-right: none;
        border-bottom: 1px solid var(--border-color); /* Adiciona uma borda abaixo no mobile */
    }
}
/* Seção Objeções */
.objection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.objection-card { background: #fffafb; padding: 1.5rem; border-radius: 8px; text-align: left; border: 1px solid var(--border-color); }
.objection-card h3 { font-size: 1.2rem; margin-top: 0; color: var(--primary-color);}

/* Seção FAQ */
.faq-container { max-width: 750px; margin: 0 auto; text-align: left; }
.faq-item { background-color: var(--background-color-body); margin-bottom: 1rem; border-radius: 8px; border: 1px solid var(--border-color); }
.faq-item[open] { background-color: #fffafb; }
summary.faq-question { display: block; width: 100%; padding: 1.25rem 1.5rem; font-size: 1.1rem; font-weight: 700; cursor: pointer; position: relative; list-style: none; }
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question::after { content: '+'; position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; color: var(--primary-color); transition: transform 0.3s ease; }
.faq-item[open] > summary.faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.5rem 1.5rem; border-top: 1px solid var(--border-color); }

/* Rodapé da Página de Vendas */
.footer { background-color: var(--background-color-body); padding: 2rem 1.5rem; border-top: 1px solid var(--border-color);}
.footer p { 
    font-size: 0.9rem; 
    color: #888888;
    margin-bottom: 0.5rem; 
}
.footer a { color: var(--primary-color); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* Responsividade da Página de Vendas */
@media (max-width: 768px) {
    .sales-page-card h1 { font-size: 1.8rem; }
    .sales-page-card h2 { font-size: 1.6rem; }
    
    .pain-list-grid,
    .benefits-grid,
    .testimonials-grid,
    .objection-grid {
        grid-template-columns: 1fr;
    }
    .sales-page-card section { padding: 2rem 1rem; }
    .offer-section .price-box { padding: 1.5rem; }
    .offer-section .main-price { font-size: 2.5rem; }
}
