.elementor-5203 .elementor-element.elementor-element-c16188d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5203 .elementor-element.elementor-element-a33b267{--display:flex;}.elementor-5203 .elementor-element.elementor-element-8e92287{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS */<style>
/* ============================================== */
/* === SEU CÓDIGO CSS ORIGINAL PARA O QUIZ (INTACTO) === */
/* ============================================== */
#game-container {
    background: linear-gradient(135deg, #0d0e1b, #1d0f2b); 
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #e0e0e0;
    min-height: 100vh;
    padding-bottom: 50px;
}

/* Header */
#game-header {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 255, 255, 0.3);
    transition: top 0.3s ease-in-out;
}

#game-header.hidden {
    top: -100px;
}

#progress-bar-container {
    flex-grow: 1;
    background-color: #333;
    border-radius: 10px;
    height: 20px;
    overflow: hidden;
    margin-right: 20px;
}

#progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00ffff, #00b8e6); 
    border-radius: 10px;
    transition: width 0.5s ease-out;
}

#progress-text {
    font-size: 1em;
    font-weight: bold;
    color: #00ffff;
}

/* HUD de Saldo */
#game-hud {
    background-color: rgba(10, 10, 15, 0.9);
    padding: 10px 20px;
    border-radius: 8px;
    margin: 20px auto 0;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.4);
    border: 1px solid #00ff00;
    transition: all 0.3s ease-in-out;
}

#game-hud .hud-label { font-size: 1.1em; color: #b0e0e6; }
#coins-value-hud { font-size: 1.5em; font-weight: bold; color: #ffd700; text-shadow: 0 0 8px rgba(255, 215, 0, 0.8); }

/* Estrutura das Fases */
.game-phase-section {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    min-height: 80vh;
}
.game-phase-section.active {
    display: flex;
    animation: fadeIn 0.7s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-card, .bonus-card, .action-card, .chat-simulation-card {
    background-color: rgba(20, 20, 30, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    max-width: 800px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.5);
}

h2 { font-size: 2.2em; margin-bottom: 20px; color: #00ffff;}
h3 { font-size: 1.6em; margin-bottom: 20px; color: #00ffff; }
p { font-size: 1.1em; line-height: 1.6; margin-bottom: 25px; color: #c0c0c0; }

/* Botões do Quiz com NEON CYANO */
.primary-button, .game-option {
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3em;
    height: auto;
    white-space: normal !important;
    word-wrap: break-word;
}

.primary-button {
    background: linear-gradient(90deg, #00ffff, #00b8e6) !important; 
    color: #1a1a1d !important;
    border-color: #00e6e6 !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}
.primary-button:hover {
    background: linear-gradient(90deg, #00b8e6, #008fcc) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.8);
}
.game-option {
    background-color: rgba(30, 30, 40, 0.9);
    color: #00ffff;
    border-color: rgba(0, 255, 255, 0.3);
    margin: 5px;
}
.game-option:hover {
    background-color: rgba(0, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}
.game-option.selected.correct, .game-option.correct {
    background-color: #00ff00 !important; 
    border-color: #00cc00 !important; 
    color: #1a1a1d !important;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6) !important;
}
.game-option.incorrect {
    background-color: #ff0000 !important; 
    border-color: #cc0000 !important; 
    color: #fff !important; 
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6) !important;
}

/* Feedbacks e Chat do Quiz */
.explanation-text, .feedback-message { 
    margin-top: 20px; 
    padding: 15px; 
    background-color: rgba(10, 10, 20, 0.95);
    border-radius: 10px; 
    color: #00ffff;
    font-style: italic; 
    font-size: 1.1em;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.chat-preview.clickable {
    background-color: rgba(30, 30, 40, 0.9);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 20px;
    margin: 15px auto;
    max-width: 400px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}
.chat-preview.clickable:hover {
    background-color: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6);
}
.chat-preview.clickable h3 {
    font-size: 1.5em;
    color: #00ffff;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}
.chat-preview.clickable p {
    font-size: 1em;
    color: #b0e0e6;
    line-height: 1.4;
    margin-bottom: 0;
}
.chat-preview.completed {
    border-color: #00ff00 !important;
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===================================================================== */
/* === ADIÇÃO: ESTILOS PARA A PÁGINA DE VENDAS ESTRUTURADA (FASE 9) === */
/* ===================================================================== */

#fase-9 .sales-page-card {
    padding: 0;
    max-width: 800px;
    background: none;
    border: none;
    box-shadow: none;
    text-align: center;
}

#fase-9 section {
    padding: 3rem 1.5rem;
    border-bottom: 1px solid #374151; /* Borda escura do tema */
}
#fase-9 section:last-of-type { border-bottom: none; }

/* Títulos da Página de Vendas usando as cores do Quiz */
#fase-9 h1 { font-size: 2.2rem; font-weight: 900; text-align: center; margin-bottom: 1rem; color: #e0e0e0; }
#fase-9 h2 { font-size: 2rem; text-align: center; margin-bottom: 2.5rem; color: #00ffff; } /* Ciano Neon */
#fase-9 p { color: #c0c0c0; line-height: 1.8; font-size: 1.1rem; margin-bottom: 1rem; }
#fase-9 .highlight { color: #00ff00; } /* Verde Neon */

/* Botão CTA (Call to Action) com o estilo VERDE NEON */
#fase-9 .cta-button {
    display: block; width: 100%; max-width: 450px; margin: 2rem auto 0 auto; padding: 1rem;
    background-color: #00ff00;
    color: #1a1a1d;
    font-size: 1.2rem; font-weight: 700; text-align: center; text-decoration: none;
    border-radius: 8px; border: 1px solid #00cc00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    transition: all 0.2s ease;
}
#fase-9 .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 255, 0, 0.7);
}

/* --- Estilos para os componentes da Página de Vendas --- */

#fase-9 .hero-section .subtitle { text-align: center; max-width: 650px; margin: 0 auto; font-size: 1.2rem; color: #c0c0c0; }
#fase-9 .video-container { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background-color: #000; border-radius: 12px; overflow: hidden; }
#fase-9 .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Grade de Dores */
#fase-9 .pain-list-grid { list-style: none; padding: 0; margin: 2rem 0; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
#fase-9 .pain-card { background-color: rgba(20, 20, 30, 0.95); border: 1px solid #374151; border-radius: 12px; padding: 2rem 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
#fase-9 .pain-icon { width: 200px; height: 150px; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; background-color: #374151; }
#fase-9 .pain-card p { color: #c0c0c0; font-size: 1rem; line-height: 1.6; margin-bottom: 0; }

/* Módulos e Bônus */
#fase-9 .modules-grid, #fase-9 .bonus-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
#fase-9 .module-card, #fase-9 .bonus-card { background-color: rgba(20, 20, 30, 0.95); padding: 2rem; border-radius: 12px; border: 1px solid #374151; display: flex; flex-direction: column; align-items: center; text-align: center; }
#fase-9 .card-icon { font-size: 2.5rem; line-height: 1; margin-bottom: 1rem; color: #00ffff; }
#fase-9 .bonus-card .card-icon { color: #FBBF24; } /* Amarelo/Dourado do tema */
#fase-9 .module-card h4, #fase-9 .bonus-card h5 { font-size: 1.3rem; margin-bottom: 0.5rem; color: #e0e0e0; }
#fase-9 .value-text { font-weight: 700; color: #9CA3AF; font-size: 1rem; margin-top: 1rem; }

/* Prova Social */
#fase-9 .testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
#fase-9 .testimonial-card { background-color: rgba(20, 20, 30, 0.95); padding: 2rem; border-radius: 12px; text-align: center; border: 1px solid #374151; }
#fase-9 .testimonial-card img { border-radius: 50%; margin-bottom: 1rem; }
#fase-9 .testimonial-card blockquote { font-size: 1.1rem; font-style: italic; color: #e0e0e0; margin-bottom: 1rem; border: none; padding: 0; }
#fase-9 .testimonial-card cite { font-weight: 700; color: #9CA3AF; font-style: normal; }

/* Oferta e Garantia */
#fase-9 .price-box { background-color: rgba(10, 10, 15, 0.9); border: 2px solid #00ff00; padding: 2.5rem; border-radius: 12px; text-align: center; max-width: 500px; margin: 0 auto; box-shadow: 0 0 30px rgba(0, 255, 0, 0.3); }
#fase-9 .price-box .old-price { text-decoration: line-through; color: #9CA3AF; }
#fase-9 .price-box .main-price { font-size: 3.5rem; font-weight: 900; color: #00ff00; text-shadow: 0 0 10px rgba(0, 255, 0, 0.5); margin: 0.5rem 0; }
#fase-9 .guarantee-section { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
#fase-9 .guarantee-section img { max-width: 120px; }

/* FAQ */
#fase-9 .faq-item { background-color: rgba(20, 20, 30, 0.95); margin-bottom: 1rem; border-radius: 8px; border: 1px solid #374151; overflow: hidden; }
#fase-9 summary.faq-question { display: block; width: 100%; padding: 1.25rem 1.5rem; font-size: 1.1rem; font-weight: 700; text-align: left; color: #e0e0e0; background: none; border: none; cursor: pointer; position: relative; }
#fase-9 summary.faq-question::marker, #fase-9 summary.faq-question::-webkit-details-marker { display: none; }
#fase-9 summary.faq-question::after { content: '+'; position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; color: #9CA3AF; transition: transform 0.3s ease; }
#fase-9 .faq-item[open] > summary.faq-question::after { transform: translateY(-50%) rotate(45deg); }
#fase-9 .faq-answer { padding: 0 1.5rem 1.5rem 1.5rem; border-top: 1px solid #374151; }
#fase-9 .faq-answer p { margin: 1rem 0 0 0; }

/* Seções Finais */
#fase-9 .final-cta-section { text-align: center; }
#fase-9 .final-offer { font-size: 1.2rem; color: #e0e0e0; margin: 2rem 0; }
#fase-9 .footer { text-align: center; padding: 2rem 1.5rem; border-top: 1px solid #374151; }
#fase-9 .footer p { font-size: 0.9rem; color: #9CA3AF; margin-bottom: 0.5rem; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    #game-header { flex-direction: column; gap: 10px; }
    #progress-bar-container { width: 100%; margin: 0 0 10px; }
    .quiz-card, .bonus-card, .action-card { padding: 20px; }
    h2, #fase-9 h1, #fase-9 h2 { font-size: 1.8em; } 
    h3 { font-size: 1.3em; }
    .options-container { display: flex; flex-direction: column; }
    .game-option { width: 100%; margin: 8px 0; }
}

@media (min-width: 768px) {
    #fase-9 .modules-grid, #fase-9 .bonus-grid, #fase-9 .testimonials-grid, #fase-9 .pain-list-grid {
        grid-template-columns: 1fr 1fr;
    }
    #fase-9 .guarantee-section {
        flex-direction: row;
        text-align: left;
    }
}
/* ======================================================= */
/* === ESTILOS PARA OS ÍCONES DE IMAGEM DOS MÓDULOS    === */
/* ======================================================= */

#fase-9 .module-icon {
    width: 200px;           /* Largura da imagem */
    height: 150px;          /* Altura da imagem */
    object-fit: cover;      /* Garante que a imagem preencha o espaço sem distorcer */
    border-radius: 12px;    /* Cantos quadrados arredondados, como os cards */
    margin-bottom: rem;  /* Espaço entre a imagem e o título do módulo */
    background-color: #374151; /* Cor de fundo enquanto a imagem carrega */
}

/* Remove a regra de formatação para o texto que estava no lugar da imagem */
#fase-9 .module-card .card-icon {
    display: none;
}

/* ======================================================= */
/* === ESTILOS PARA AS IMAGENS DOS CARDS DE BÔNUS      === */
/* ======================================================= */

#fase-9 .bonus-icon-img {
    width: 200px;           /* Largura da imagem do bônus */
    height: 150px;          /* Altura da imagem do bônus */
    object-fit: cover;      /* Garante que a imagem preencha o espaço sem distorcer */
    border-radius: 12px;    /* Cantos quadrados arredondados, como os outros ícones */
    margin-bottom: 0rem;  /* Espaço entre a imagem e o título do bônus */
    background-color: #374151; /* Cor de fundo enquanto a imagem carrega */
}

/* Garante que o estilo antigo do ícone de texto não interfira */
#fase-9 .bonus-card .card-icon {
    display: none;
}

#fase-9 .total-bonus-box {
    display: inline-block; /* Faz a caixa se ajustar ao tamanho do texto */
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    border: 2px dashed #00ffff; /* Borda tracejada na cor ciano */
    border-radius: 10px;
    background-color: rgba(0, 255, 255, 0.05); /* Fundo ciano bem sutil */
    font-weight: bold;
    font-size: 1.2em;
    color: #e0e0e0; /* Mantém o texto principal branco para ler bem */
}

/* Para destacar o valor dentro da caixa */
/* CÓDIGO ATUALIZADO (com texto verde neon) */
/* ======================================================= */
/* === ESTILOS PARA O BOX DE TOTAL DE BÔNUS (3 LINHAS) === */
/* ======================================================= */

/* Remove a cor do container principal, pois cada linha terá a sua */
#fase-9 .total-bonus-box {
    color: inherit; 
    text-shadow: none;
}

/* Estilo para as linhas de texto (cima e baixo) */
#fase-9 .bonus-box-line1,
#fase-9 .bonus-box-line3 {
    display: block; /* Força cada um a ficar em sua própria linha */
    font-size: 1em;
    font-weight: bold;
    color: #c0c0c0; /* Um cinza claro para não competir com o valor */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ======================================================= */
/* === CÓDIGO CORRIGIDO PARA O BOX DE TOTAL DE BÔNUS   === */
/* ======================================================= */

/* 1. Estilo para o QUADRADO (a caixa container) */
#fase-9 .total-bonus-box {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border: 2px solid #00ffff; /* Borda sólida na cor ciano */
    border-radius: 10px;
    background-color: rgba(0, 255, 255, 0.05); /* Fundo ciano bem sutil */
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4); /* Sombra neon ao redor */
    text-align: center;
    transition: all 0.3s ease;
}

#fase-9 .total-bonus-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

/* 2. Estilos para o TEXTO DENTRO da caixa */

/* Linhas de cima e de baixo */
#fase-9 .bonus-box-line1,
#fase-9 .bonus-box-line3 {
    display: block;
    font-size: 1em;
    font-weight: bold;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Valor central, agora em vermelho e riscado */
#fase-9 .bonus-box-value {
    display: block;
    font-size: 2.5em; /* Mantido grande para impacto */
    font-weight: 900;
    line-height: 1.2;
    margin: 0.25rem 0;
    color: #ff0000; /* ALTERADO: Cor para vermelho neon */
    text-decoration: line-through; /* ADICIONADO: Traço no meio do texto */
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.6); /* ALTERADO: Brilho vermelho */
}

/* Estilo para o sublinhado NEON da palavra "GRAÇA" */
#fase-9 .bonus-box-line3 u {
    color: #00ff00;                             /* Deixa a palavra "GRAÇA" em verde neon */
    text-decoration-color: #00ff00;             /* Deixa a LINHA do sublinhado verde neon */
    text-decoration-thickness: 2px;             /* Deixa a linha um pouco mais grossa e visível */
    text-underline-offset: 3px;                 /* Adiciona um pequeno espaço entre a palavra e a linha */
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.6);  /* Adiciona o brilho neon na palavra */
    font-weight: bold;                          /* Garante que a palavra fique em negrito */
}

/* ======================================================= */
/* === ESTILOS ATUALIZADOS PARA O BLOCO DE OFERTA FINAL === */
/* ======================================================= */

/* Remove estilos antigos para a lista, se houver */
#fase-9 .offer-list {
    border-bottom: none;
}

/* Nova lista simplificada de itens */
#fase-9 .offer-list-simple {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left; /* Alinha o texto da lista à esquerda */
    max-width: 350px; /* Limita a largura da lista */
    margin-left: auto;
    margin-right: auto;
}

#fase-9 .offer-list-simple li {
    padding: 0.5rem 0;
    font-size: 1.1em;
    color: #c0c0c0;
    font-weight: bold;
}

/* Linha do Valor Total (mantém o estilo anterior) */
#fase-9 .total-value-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    font-size: 1.1em;
    font-weight: bold;
    color: #e0e0e0;
}

#fase-9 .strikethrough-price {
    color: #ff0000; /* Vermelho neon */
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    font-size: 1.2em;
}

/* Texto de ponte (transição) */
#fase-9 .offer-bridge {
    margin: 2rem 0 1rem 0;
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
    color: #e0e0e0;
    font-weight: bold;
}

/* Imagem das bandeiras de pagamento */
#fase-9 .payment-flags {
    display: block;
    margin: 1.5rem auto 0; /* Espaçamento acima da imagem */
    max-width: 250px; /* Largura máxima da imagem das bandeiras */
    height: auto; /* Mantém a proporção */
}

/* Estilo para o texto de reforço abaixo do preço */
#fase-9 .price-clarification {
    font-size: 0.9em;           /* Um pouco menor para não competir com o preço */
    color: #9CA3AF;              /* Cor secundária, mais sutil */
    font-style: italic;           /* Deixa o texto em itálico, como um comentário */
    line-height: 1.5;
    margin-top: 1rem;             /* Espaço entre o preço e este texto */
    padding: 0 1rem;              /* Evita que o texto encoste nas laterais em telas pequenas */
    max-width: 400px;             /* Limita a largura para melhor leitura */
    margin-left: auto;
    margin-right: auto;
}
</style>/* End custom CSS */