/* --- CONFIGURAÇÕES GLOBAIS E RESET --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Fauna One', serif;
    background: #fdf5e8 url('images/fundo-pergamino.jpg') center/cover fixed;
    color: #4a2e1d;
    line-height: 1.7;
}

/* --- ESTRUTURA E CONTAINERS --- */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}

/* --- SEÇÃO HERO (TOPO) --- */
.hero {
    text-align: center;
}
.hero .subtitulo {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Cinzel', serif;
    color: #800f2b;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SEÇÃO VÍDEO --- */
.video-section .container {
    padding-top: 20px;
    padding-bottom: 30px;
}
.video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* --- BOTÕES DE CTA --- */
.cta-inicial, .cta-intermediario, .cta-final {
    padding: 30px 0 60px 0;
    text-align: center;
}
.btn-comprar {
    display: inline-block;
    background: #ff1e00;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.btn-comprar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.pulse {
    animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(161, 60, 47, 0.6); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(161, 60, 47, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(161, 60, 47, 0); }
}

/* --- SEÇÃO MANUAL PROIBIDO (COM IMAGENS) --- */
.manual-prohibido {
    padding: 60px 0;
}
.manual-prohibido h2 {
    font-family: 'Cinzel', serif;
    color: #800f2b;
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
}
.subtitulo-manual {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 50px auto;
}
.manual-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}
.manual-parte {
    flex: 1;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.4);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(74, 46, 29, 0.1);
    transition: all 0.3s ease-in-out;
}
.manual-parte h3 {
    font-family: 'Cinzel', serif;
    color: #4a2e1d;
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.topics-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.topic-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.topic-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}
.topic-text h4 {
    font-family: 'Cinzel', serif;
    color: #4a2e1d;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.topic-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- DESTAQUE ESPECIAL PARA O CARD "O RITUAL" --- */
.destaque-ritual {
    background: #4a2e1d;
    color: #fdf5e8;
    border: 1px solid rgba(253, 245, 232, 0.4);
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}
.destaque-ritual h3 {
    color: #fff;
}
.destaque-ritual .topic-text h4 {
    color: #fff;
}
.destaque-ritual .topic-text p {
    color: #fdf5e8;
    opacity: 0.9;
}

/* --- SEÇÃO CONTEÚDO DETALHADO (VERSÃO FINAL COM VÍDEOS E EMOJIS) --- */
.conteudo-detalhado {
    padding: 60px 0;
    border-top: 1px solid rgba(74, 46, 29, 0.15);
}
.conteudo-detalhado h2 {
    font-family: 'Cinzel', serif;
    color: #800f2b;
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 50px;
}
.grid-conteudo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.conteudo-card {
    background: rgba(255, 255, 255, 0.5);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(74, 46, 29, 0.1);
    display: flex;
    flex-direction: column;
}
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #4a2e1d;
    line-height: 1.4;
}
.lista-topicos {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.lista-topicos li {
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 32px;
    position: relative;
}
.lista-topicos li::before {
    content: var(--emoji);
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.1rem;
}

/* --- SEÇÃO PROVAS SOCIAIS (VERSÃO FINAL E CORRIGIDA) --- */
.provas-sociais {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.4);
}
.provas-sociais h2 {
    font-family: 'Cinzel', serif;
    color: #800f2b;
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 40px;
}
.depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}
@media (min-width: 992px) {
    .depoimentos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.video-depoimento {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background-color: #000;
}

/* --- SEÇÃO CONTADOR DE URGÊNCIA --- */
.contador-urgencia .container {
    padding-bottom: 30px;
    padding-top: 30px;
}
.contador-box {
    position: relative;
    border: 3px solid #4a2e1d;
    padding: 40px 20px;
    background: url('images/velas-contador.jpg') center/cover;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.contador-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.contador-conteudo {
    position: relative;
}
.contador-conteudo h3 {
    font-family: 'Fauna One', serif;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
#timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: 'Cinzel', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
#timer > div {
    display: flex;
    flex-direction: column;
}
#timer span[id] {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
}
#timer small {
    font-size: 0.9rem;
    font-family: 'Fauna One', serif;
    margin-top: 5px;
    text-transform: uppercase;
}

/* --- SEÇÃO OFERTA FINAL --- */
.oferta-final {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(74, 46, 29, 0.1);
}
.oferta-final h2 {
    font-family: 'Cinzel', serif;
    color: #800f2b;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 30px;
}
.oferta-final p {
    max-width: 650px;
    margin: 0 auto 15px auto;
    font-size: 1.1rem;
}
.preco-oferta {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 6vw, 3rem);
    color: #c0392b;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}
.lista-beneficios {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}
.lista-beneficios li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: bold;
}

/* --- SEÇÃO PAGAMENTOS SEGUROS --- */
.pagos-seguros .container {
    padding-top: 0;
    padding-bottom: 30px;
}
.pagos-seguros-img {
    display: block;
    margin: 0 auto;
    max-width: 450px;
    width: 100%;
    height: auto;
}

/* --- SEÇÃO FAQ --- */
.faq {
    padding: 30px 0 60px 0;
}
.faq h2 {
    font-family: 'Cinzel', serif;
    color: #800f2b;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    text-align: center;
    margin-bottom: 40px;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(74, 46, 29, 0.85); /* Fundo marrom escuro, semi-transparente */
    border-bottom: 1px solid rgba(74, 46, 29, 0.2);
    margin-bottom: 10px;
    border-radius: 10px; /* Arredonda todos os cantos */
    transition: background 0.3s ease;
}
/* Faz o fundo ficar sólido quando o item está ativo (aberto) */
.faq-item.active {
    background: #4a2e1d;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Fauna One', serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fdf5e8; /* Cor do texto alterada para pergaminho (claro) */
}
.faq-icon {
    font-size: 1.5rem;
    color: #800f2b;
    transition: transform 0.3s ease;
}
/* COLE ISTO NO LUGAR */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #4a2e1d; /* Fundo marrom escuro do tema */
    border-radius: 0 0 10px 10px; /* Arredonda os cantos de baixo */
}
.faq-answer p {
    padding: 20px; /* Adiciona preenchimento em cima também */
    color: #fdf5e8; /* Cor de pergaminho, para fácil leitura */
}
.faq-item.active .faq-answer {
    max-height: 300px; 
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .destaque-ritual {
        transform: scale(1); /* Remove o zoom no mobile para economizar espaço */
    }

    /* ================================================================
    INÍCIO DA CORREÇÃO DE ESPAÇAMENTO MOBILE
    ================================================================
    */

    /* Reduz o padding principal de quase todas as seções */
    .container {
        padding: 40px 0; /* Era 60px 0 */
    }

    /* Reduz o padding dos botões */
    .cta-inicial, .cta-intermediario, .cta-final {
        padding: 20px 0 40px 0; /* Era 30px 0 60px 0 */
    }
    
    /* Reduz o padding do FAQ e do Rodapé */
    .faq {
        padding: 20px 0 40px 0; /* Era 30px 0 60px 0 */
    }
    footer {
        padding: 30px 0; /* Era 40px 0 */
    }

    /* Ajusta paddings de seções específicas */
    .video-section .container {
        padding-top: 10px;
        padding-bottom: 20px;
    }
    .contador-urgencia .container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .garantia-pagamento .container {
         padding-top: 0;
         padding-bottom: 20px; /* Adiciona um respiro abaixo dos selos */
    }


    /* Reduz margens de títulos e subtítulos */
    .subtitulo-manual,
    .subtitulo-bonus,
    .conteudo-detalhado h2 {
        margin-bottom: 30px; /* Era 50px */
    }

    .provas-sociais h2,
    .faq h2 {
        margin-bottom: 30px; /* Era 40px */
    }
    
    /* Reduz margem abaixo do vídeo da expert */
    .video-explicativo-container {
        margin-bottom: 30px; /* Era 50px */
    }

    /* Reduz o espaçamento entre os cards quando eles empilham */
    .manual-layout,
    .bonus-layout,
    .grid-conteudo {
        gap: 25px; /* Era 40px e 30px */
    }

    /* ================================================================
    FIM DA CORREÇÃO DE ESPAÇAMENTO MOBILE
    ================================================================
    */
}

/* ===== ESTILO FINAL PARA O VÍDEO DO YOUTUBE RESPONSIVO ===== */

/* Este container continua centralizando o vídeo */
.video-explicativo-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto 50px auto;
}

/* Este wrapper é o truque para a responsividade */
.video-responsivo-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* Proporção de 16:9 para o vídeo */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Estilo para o iframe dentro do wrapper */
.video-responsivo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* --- SEÇÃO GARANTIA E PAGAMENTO SEGURO --- */
.garantia-pagamento .container {
    padding-top: 0;
    padding-bottom: 0;
}

.selos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permite que as imagens quebrem a linha no mobile */
    gap: 20px;
}

.selo-imagem {
    max-width: 550px; /* Define um tamanho máximo para as imagens */
    width: 100%;      /* Garante que a imagem seja responsiva */
    height: auto;
}

/* DEIXE A REGRA ASSIM */
footer {
    background: #4a2e1d;
    color: #fdf5e8;
    text-align: center;
    padding: 40px 0;
    border-top: 3px solid #800f2b;
    /* --- EFEITO DE BRILHO ADICIONADO --- */
    box-shadow: 0 -4px 15px rgba(128, 15, 43, 0.6);
}

/* --- SEÇÃO BÔNUS ESPECIAL --- */
.bonus-section {
    padding: 60px 0;
    border-top: 1px solid rgba(74, 46, 29, 0.15);
    background: rgba(255, 255, 255, 0.3); /* Fundo com leve destaque */
}

.bonus-section h2 {
    font-family: 'Cinzel', serif;
    color: #800f2b;
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
}

.subtitulo-bonus {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 50px auto;
}

.bonus-layout {
    display: flex;
    flex-wrap: wrap; /* Faz o texto ir para baixo da imagem no celular */
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(74, 46, 29, 0.1);
}



.bonus-texto {
    flex: 2; /* Ocupa 2/3 do espaço */
    min-width: 300px; /* Largura mínima antes de quebrar */
}

.bonus-texto h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #4a2e1d;
    margin-bottom: 20px;
}

.bonus-texto p {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* Reutilizando o estilo da lista de tópicos que já criamos */
.lista-bonus {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lista-bonus li {
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 32px;
    position: relative;
}

.lista-bonus li::before {
    content: var(--emoji); /* Pega o emoji do HTML */
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.1rem;
}

/* --- ESTILO PARA O VÍDEO BÔNUS --- */
.bonus-video {
    flex: 1; /* Ocupa 1/3 do espaço */
    min-width: 280px; /* Largura mínima antes de quebrar */
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 para o vídeo */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bonus-video .video-bonus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo preencha o espaço */
}