/* ========================================================= */
/* ================ VARIAVEIS DE DESIGN GLOBAL ============= */
/* ========================================================= */
:root {
    /* Paleta de Cores Otimizada para Impacto e Emoção */
    --primary-color: #7B2CBF;      /* Púrpura Profissional: Autoridade, Sabedoria, Mistério */
    --secondary-color: #FF9E00;    /* Laranja Vibrante: Energia, Entusiasmo, Ação (para CTAs) */
    --accent-color: #FFD23F;       /* Amarelo Brilhante: Destaque, Alerta, Otimismo (para highlights e sucesso) */
    --danger-color: #E63946;       /* Vermelho Intenso: Urgência, Atenção, Perda (para escassez) */
    --success-color: #4CAF50;      /* Verde Esperança: Sucesso, Confirmação, Ganhos */
    --info-color: #2196F3;         /* Azul Informação: Confiança, Claridade, Credibilidade */
    
    /* Escala de Grises Otimizada para Leitura e Contraste */
    --text-dark: #212529;          /* Preto Quase Total: Para títulos e textos principais */
    --text-light: #F8F9FA;         /* Branco Off-White: Para textos em fundos escuros */
    --bg-light: #F0F2F5;           /* Cinza Muito Claro: Para seções de fundo leve */
    --bg-dark: #1A0933;            /* Púrpura Escuro Quase Preto: Para fundos de alto contraste (Hero, Testimonials) */
    --gray-light: #E0E0E0;         /* Cinza Claro: Para bordas, separadores e backgrounds sutis */
    --gray-medium: #6c757d;        /* Cinza Médio: Para textos de apoio, legendas */
    
    /* Sombras e Elevação para Profundidade */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);    /* Sombra Leve */
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);   /* Sombra Média */
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.25);  /* Sombra Forte para Elementos Chave */
    
    /* Bordas Arredondadas para Suavidade */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px; /* Um pouco mais arredondado para modernidade */
    
    /* Transições Suaves para Interatividade */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.4s ease-in-out; /* Um pouco mais longa para fluidez */
    --transition-slow: 0.6s ease;
}

/* ========================================================= */
/* ================ RESET BROWSER APRIMORADO =============== */
/* ========================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Garante que padding e border não aumentem o tamanho final do elemento */
}

html {
    scroll-behavior: smooth; /* Rolagem suave para âncoras */
    scroll-padding-top: 20px; /* Espaçamento ao rolar para uma seção */
}

body {
    font-family: 'Poppins', sans-serif; /* Fonte principal para o corpo do texto */
    line-height: 1.6; /* Aumenta um pouco para melhor legibilidade */
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased; /* Suaviza as fontes em navegadores WebKit */
    overflow-x: hidden; /* Evita rolagem horizontal indesejada */
}

a {
    text-decoration: none; /* Remove sublinhado padrão dos links */
    color: inherit; /* Links herdam a cor do texto pai por padrão */
}

ul {
    list-style: none; /* Remove marcadores de lista padrão */
}

img {
    max-width: 100%; /* Imagens responsivas */
    height: auto;
    display: block; /* Remove espaço extra abaixo das imagens */
}

/* ========================================================= */
/* ================ TIPOGRAFIA PERSUASIVA ================== */
/* ========================================================= */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif; /* Fonte para títulos, mais impactante */
    font-weight: 900; /* Peso extra para maior impacto */
    line-height: 1.15; /* Um pouco mais apertado para grandes títulos */
    margin-bottom: 1.2rem;
    text-align: center; /* Títulos centralizados por padrão */
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem); /* Título responsivo e grande */
    background: linear-gradient(90deg, var(--primary-color), #C77DFF); /* Gradiente para o título */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Torna o texto transparente para o gradiente aparecer */
    margin-bottom: 2.5rem;
    padding: 0 10px; /* Padding para evitar corte em telas pequenas */
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    position: relative;
    display: block; /* Garante que o pseudo-elemento AFTER se posicione corretamente */
    margin-bottom: 3.5rem;
    color: var(--text-dark);
}

/* Sublinhado animado para H2 */
h2::after {
    content: '';
    position: absolute;
    bottom: -15px; /* Posiciona abaixo do texto */
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Mais largo para destaque */
    height: 5px; /* Mais espesso */
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color)); /* Gradiente marcante */
    border-radius: 3px;
    transition: width var(--transition-normal); /* Animação ao passar o mouse (se for o caso) */
}

/* Destaques de texto */
.highlight {
    color: var(--accent-color);
    font-weight: 900;
}

.highlight-primary {
    color: var(--primary-color);
    font-weight: 900;
}

.highlight-secondary {
    color: var(--secondary-color);
    font-weight: 900;
}

.text-underline-pain {
    text-decoration-color: var(--danger-color); /* Sublinhado em vermelho para dor */
    text-decoration-thickness: 3px;
}

.text-underline-benefit {
    text-decoration-color: var(--success-color); /* Sublinhado em verde para benefício */
    text-decoration-thickness: 3px;
}

.text-bold-emphasis {
    font-weight: 900;
    color: var(--primary-color); /* Para dar um destaque mais forte em frases */
}

/* ========================================================= */
/* ================ ESTRUTURAS COMUNS E SEÇÕES ============= */
/* ========================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px; /* Padding um pouco maior nas laterais */
}

.content-section {
    padding: 100px 0; /* Padding padrão para todas as seções de conteúdo */
    text-align: center; /* Centraliza conteúdo por padrão */
}

.section-title {
    margin-bottom: 4rem; /* Mais espaço após o título da seção */
}

.section-description {
    font-size: 1.15rem; /* Um pouco menor para não competir com h2 */
    max-width: 850px; /* Um pouco mais largo */
    margin: -3rem auto 50px; /* Ajuste para espaçamento com o h2 */
    color: var(--gray-medium);
    opacity: 0.95;
    line-height: 1.7;
}

/* ========================================================= */
/* ================ BOTÕES OTIMIZADOS ====================== */
/* ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Mais espaço entre ícone e texto */
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    text-transform: uppercase; /* Maiúsculas para CTAs */
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #9D4EDD);
    color: white;
    padding: 18px 40px; /* Um pouco mais de padding */
    font-size: 1.15rem; /* Levemente maior */
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9D4EDD, var(--primary-color));
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-5px); /* Mais impacto no hover */
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary .btn-icon {
    font-size: 1.3em; /* Ícone um pouco maior */
}

.btn-secondary {
    background: var(--accent-color); /* Mudado para accent-color para melhor contraste e destaque */
    color: var(--primary-color); /* Texto em púrpura */
    padding: 15px 35px;
    border: 2px solid var(--accent-color); /* Borda da mesma cor do background */
    font-size: 1.05rem;
    font-weight: 800; /* Mais peso */
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.big-btn {
    padding: 22px 50px; /* Mais padding para botões grandes */
    font-size: 1.4rem; /* Maior tamanho de fonte */
    margin: 30px auto;
    display: block;
    width: fit-content;
    border-radius: var(--radius-lg); /* Manter o border-radius grande */
}

/* ========================================================= */
/* ================ HERO SECTION =========================== */
/* ========================================================= */
.hero-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #4A1D96 100%);
    color: var(--text-light);
    padding: 120px 0 80px; /* Mais padding superior e inferior */
    position: relative;
    overflow: hidden;
    min-height: 700px; /* Altura mínima para garantir espaço */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efeito de fundo sutil de luz */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%; /* Posição do gradiente */
    left: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.15) 0%, transparent 60%); /* Cor mais visível */
    z-index: 0;
    animation: rotateBackground 20s linear infinite; /* Animação de rotação */
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.hero-section .container {
    position: relative;
    z-index: 1; /* Garante que o conteúdo fique acima do background animado */
}

.hero-section .headline {
    font-size: clamp(3rem, 6vw, 4.8rem); /* Ainda maior */
    line-height: 1.1;
    margin-bottom: 1.8rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra mais pronunciada */
}

.hero-section .subheadline {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    max-width: 900px; /* Mais largo para acomodar o texto */
    margin: 0 auto 3.5rem;
    opacity: 0.9;
}

/* ========================================================= */
/* ================ CONTAINER DE VÍDEO ===================== */
/* ========================================================= */
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg); /* Sombra mais forte */
    transform: perspective(1000px) rotateX(2deg); /* Rotação mais sutil */
    transition: transform var(--transition-normal);
    cursor: pointer;
}

.video-container:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-size: cover;
    background-position: center;
    background-color: var(--gray-medium); /* Cor de fallback */
    display: flex; /* Para centralizar o botão de play */
    align-items: center;
    justify-content: center;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2; /* Garante que o iframe fique acima do thumbnail */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px; /* Maior */
    height: 90px;
    background-color: rgba(255, 255, 255, 0.95); /* Mais opaco */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 1; /* Acima do thumbnail, abaixo do iframe */
    animation: pulse-light 2s infinite ease-in-out; /* Animação mais suave */
}

.play-button::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 18px solid transparent; /* Triângulo maior */
    border-bottom: 18px solid transparent;
    border-left: 30px solid var(--primary-color);
    margin-left: 8px; /* Ajuste para centralizar visualmente */
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: white;
}

/* Animação de pulso para o botão de play */
@keyframes pulse-light {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.video-caption {
    font-size: 1.05rem;
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    opacity: 0.9;
}

.video-caption strong {
    color: var(--accent-color);
}

/* ========================================================= */
/* ================ CAIXA DE PREÇO (CTA) =================== */
/* ========================================================= */
.cta-price-box {
    background: white;
    padding: 3rem; /* Mais espaçoso */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); /* Sombra mais proeminente */
    max-width: 550px; /* Um pouco mais largo */
    margin: 3rem auto; /* Mais espaçamento */
    border: 4px solid var(--accent-color); /* Borda mais grossa e amarela */
    position: relative;
    overflow: hidden;
    transform: scale(1.02); /* Levemente ampliado para destaque */
    transition: transform var(--transition-normal);
}

.cta-price-box:hover {
    transform: scale(1.03); /* Leve aumento no hover */
}

/* Fita de "Oferta" */
.cta-price-box::before {
    content: '¡OFERTA ÚNICA!'; /* Texto mais impactante */
    position: absolute;
    top: 25px; /* Ajuste de posição */
    right: -40px;
    background-color: var(--danger-color);
    color: white;
    padding: 0.4rem 2.5rem; /* Mais padding */
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 1rem; /* Maior */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center; /* Alinha no centro */
    gap: 1.2rem; /* Mais espaço */
    margin-bottom: 0.8rem;
}

.price-old {
    font-size: 1.3rem; /* Um pouco maior */
    color: var(--gray-medium);
    text-decoration: line-through;
    font-weight: 600;
}

.price-discount {
    background-color: var(--danger-color);
    color: white;
    padding: 0.3rem 1rem; /* Mais padding */
    border-radius: 50px;
    font-weight: 800; /* Mais forte */
    font-size: 1rem; /* Maior */
    animation: bounceIn 1s ease-out; /* Animação ao carregar */
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

.price-value {
    font-size: clamp(3rem, 6vw, 4.2rem); /* Preço principal muito grande */
    font-weight: 900;
    color: var(--primary-color);
    margin: 0.8rem 0;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1); /* Sombra sutil no texto */
}

.price-value .currency {
    font-size: 0.6em; /* Tamanho da moeda menor em relação ao número */
    vertical-align: super;
}

.price-installments {
    font-size: 1.15rem;
    color: var(--gray-medium);
    margin-bottom: 2rem; /* Mais espaço antes do CTA */
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px; /* Mais espaço */
    font-size: 1rem;
    color: var(--gray-medium);
    font-weight: 600;
}

.guarantee-badge img {
    width: 25px; /* Ícone maior */
    height: 25px;
}

/* ========================================================= */
/* ================ BARRA DE URGÊNCIA ====================== */
/* ========================================================= */
.urgency-bar {
    background: linear-gradient(90deg, var(--danger-color), #FF6B8B);
    color: white;
    padding: 1.5rem; /* Mais padding */
    border-radius: var(--radius-md);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem; /* Mais espaço entre elementos */
    max-width: 650px; /* Um pouco mais largo */
    margin: 3rem auto 0;
    box-shadow: 0 6px 20px rgba(255, 62, 109, 0.4); /* Sombra mais intensa */
    border: 2px dashed rgba(255,255,255,0.5); /* Borda tracejada para visual de "selo" */
}

.urgency-text {
    font-size: 1.2rem; /* Maior */
    font-weight: 800; /* Mais forte */
    margin: 0;
    text-align: center;
}

.fire-icon {
    font-size: 1.3em; /* Ícone de fogo maior */
    vertical-align: middle;
    animation: flame 1.5s infinite alternate;
}

/* Animação para o ícone de fogo */
@keyframes flame {
    0% { opacity: 0.8; transform: scale(1) translateY(0); }
    50% { opacity: 1; transform: scale(1.1) translateY(-2px); }
    100% { opacity: 0.8; transform: scale(1) translateY(0); }
}

.countdown {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Timer grande e responsivo */
    font-weight: 900;
    color: var(--accent-color); /* Cor de destaque para o timer */
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    display: flex;
    gap: 0.8rem; /* Mais espaço entre os números */
    background-color: rgba(0, 0, 0, 0.15); /* Fundo sutil para os números */
    padding: 5px 15px;
    border-radius: 5px;
}

.countdown.urgent-time {
    color: white; /* Cor branca para o texto quando o tempo estiver quase esgotado */
    background-color: var(--accent-color); /* Fundo amarelo para o tempo urgente */
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    animation: blink-bg 1s infinite alternate; /* Animação de piscar para o fundo */
}

@keyframes blink-bg {
    0% { background-color: var(--accent-color); }
    100% { background-color: var(--danger-color); }
}

/* ========================================================= */
/* ================ SEÇÃO DE PROBLEMAS ===================== */
/* ========================================================= */
.problem-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Mínimo um pouco maior */
    gap: 40px; /* Mais espaço */
    margin: 60px auto;
}

.problem-item {
    background: white;
    padding: 35px; /* Mais padding */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
    border-top: 5px solid var(--danger-color); /* Borda superior vermelha para problemas */
    display: flex; /* Para centralizar o conteúdo verticalmente */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.problem-item:hover {
    transform: translateY(-8px); /* Mais movimento no hover */
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 90px; /* Ícone maior */
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 4px solid var(--danger-color); /* Borda do ícone vermelha */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.problem-item h3 {
    font-size: 1.45rem;
    color: var(--danger-color); /* Título em vermelho */
    margin-bottom: 15px;
}

.problem-item p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.emotional-transition {
    background-color: var(--bg-dark); /* Fundo escuro para mais impacto */
    color: var(--text-light);
    padding: 40px; /* Mais padding */
    border-radius: var(--radius-lg);
    margin: 80px auto 0; /* Mais espaçamento */
    max-width: 900px;
    text-align: center;
    font-size: 1.3rem; /* Texto maior */
    font-style: italic;
    border-left: 6px solid var(--accent-color); /* Borda amarela mais grossa */
    box-shadow: var(--shadow-md);
}

.emotional-transition strong {
    color: var(--accent-color); /* Destaque em amarelo */
}

/* ========================================================= */
/* ================ SEÇÃO DE SOLUÇÃO (ANTES/DEPOIS) ======== */
/* ========================================================= */
.solution-section {
    background-color: var(--gray-light);
    padding: 100px 0;
}

.before-after-grid { /* Renomeada para grid */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Garante que se adapte */
    gap: 40px; /* Mais espaço */
    margin: 60px auto;
    max-width: 1000px;
}

.before-column, .after-column {
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.before-column:hover, .after-column:hover {
    transform: translateY(-8px);
}

.before-column {
    background-color: #FEECEB; /* Tom pastel de vermelho */
    border: 2px solid var(--danger-color);
}

.after-column {
    background-color: #E6F3E6; /* Tom pastel de verde */
    border: 2px solid var(--success-color);
}

.column-title {
    font-size: 1.8rem; /* Título maior */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%; /* Centraliza o sublinhado */
    transform: translateX(-50%);
    width: 60px; /* Mais largo */
    height: 4px;
    border-radius: 2px;
}

.bad-color { /* Nova classe para cores específicas do título ANTES */
    color: var(--danger-color);
}

.bad-color::after {
    background-color: var(--danger-color);
}

.good-color { /* Nova classe para cores específicas do título DEPOIS */
    color: var(--success-color);
}

.good-color::after {
    background-color: var(--success-color);
}

.pain-list, .benefit-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left; /* Alinha o texto da lista à esquerda */
}

.pain-list li, .benefit-list li {
    padding: 12px 0; /* Mais padding */
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start; /* Alinha o ícone com o topo do texto */
    gap: 12px;
    line-height: 1.5;
}

.pain-list li::before {
    content: '❌';
    font-size: 1.3rem; /* Ícone maior */
    margin-top: 2px; /* Ajuste vertical */
}

.benefit-list li::before {
    content: '✅';
    font-size: 1.3rem; /* Ícone maior */
    margin-top: 2px; /* Ajuste vertical */
}

.before-after-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: 20px; /* Espaço entre lista e imagem */
}

.intermediate-cta {
    text-align: center;
    margin-top: 60px;
}

.small-text {
    font-size: 0.95rem; /* Levemente maior */
    color: var(--gray-medium);
    margin-top: 15px;
}

.arrow {
    font-size: 2.5rem; /* Seta grande e visível */
    color: var(--primary-color);
    margin: 0 15px;
    display: inline-block; /* Para centralizar verticalmente */
    vertical-align: middle;
}

/* ========================================================= */
/* ================ SEÇÃO DE MÓDULOS ======================= */
/* ========================================================= */
.modules-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajuste de tamanho */
    gap: 35px; /* Mais espaço */
    margin: 60px auto;
}

.module-item {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-color); /* Borda superior púrpura */
    text-align: left; /* Alinha o texto à esquerda */
}

.module-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.module-number {
    position: absolute;
    top: 15px; /* Ajuste de posição */
    right: 15px;
    font-size: 3.5rem; /* Número maior */
    font-weight: 900;
    color: rgba(123, 44, 191, 0.08); /* Mais opaco */
    line-height: 1;
    z-index: 0;
}

.module-item h3 {
    font-size: 1.6rem; /* Título maior */
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-right: 60px; /* Espaço para o número */
    position: relative;
    z-index: 1; /* Garante que o título esteja acima do número */
}

.module-item p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.module-benefits {
    list-style: none;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.module-benefits li {
    padding: 10px 0; /* Mais padding */
    font-size: 1rem; /* Levemente maior */
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.module-benefits li::before {
    content: '✔️';
    font-size: 1.1rem; /* Ícone maior */
    color: var(--success-color);
    margin-top: 2px;
}

/* ========================================================= */
/* ================ SEÇÃO DE TESTEMUNHOS =================== */
/* ========================================================= */
.testimonials-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #3C096C 100%);
    padding: 100px 0;
    color: var(--text-light);
}

.testimonials-section .section-title {
    color: var(--text-light);
}

.social-proof-tag {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 10px 18px; /* Mais padding */
    border-radius: 50px;
    font-size: 0.95rem; /* Levemente maior */
    font-weight: 800;
    display: inline-block;
    margin-left: 20px; /* Mais espaço */
    vertical-align: middle;
    box-shadow: var(--shadow-sm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Tamanho mínimo maior */
    gap: 35px; /* Mais espaço */
    margin: 60px auto;
}

.testimonial-card {
    background: white;
    padding: 35px; /* Mais padding */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-align: left; /* Alinha o texto à esquerda */
    border: 1px solid var(--gray-light); /* Borda sutil */
}

.testimonial-card::before {
    content: '“'; /* Aspas tipográficas */
    position: absolute;
    top: -20px; /* Ajuste de posição */
    left: 10px;
    font-size: 10rem; /* Aspas bem grandes */
    color: rgba(123, 44, 191, 0.08); /* Cor sutil das aspas */
    font-family: 'Montserrat', sans-serif; /* Fonte das aspas */
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 18px; /* Mais espaço */
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.profile-pic {
    width: 80px; /* Avatar maior */
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color); /* Borda do avatar em amarelo */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.testimonial-header h4 {
    font-size: 1.4rem; /* Nome maior */
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: left; /* Alinha o nome à esquerda */
}

.source {
    font-size: 0.95rem; /* Levemente maior */
    color: var(--gray-medium);
    text-align: left;
}

.stars {
    color: #FFD700; /* Cor dourada para estrelas */
    font-size: 1.3rem; /* Estrelas maiores */
    margin-top: 5px;
    letter-spacing: 2px; /* Mais espaçamento entre estrelas */
}

.testimonial-text {
    font-style: italic;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    font-size: 1.05rem; /* Texto do depoimento levemente maior */
    color: var(--text-dark);
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px; /* Mais espaço */
    font-size: 0.85rem;
}

.social-badge {
    padding: 5px 12px; /* Mais padding */
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-badge.facebook { background-color: #3b5998; color: white; }
.social-badge.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: white; } /* Gradiente Instagram */
.social-badge.whatsapp { background-color: #25D366; color: white; }

.testimonial-date {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
}

/* ========================================================= */
/* ================ SEÇÃO DE BÔNUS ========================= */
/* ========================================================= */
.bonuses-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.bonuses-header {
    text-align: center;
    margin-bottom: 60px;
}

.bonuses-counter {
    max-width: 600px; /* Mais largo */
    margin: 40px auto;
    background-color: white;
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--accent-color); /* Borda amarela */
}

.counter-bar {
    height: 12px; /* Mais espesso */
    background-color: var(--gray-light);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.counter-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color)); /* Gradiente de bônus */
    border-radius: 6px;
    transition: width var(--transition-normal); /* Animação de progresso */
}

.counter-text {
    font-size: 1rem; /* Maior */
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajuste de tamanho */
    gap: 35px; /* Mais espaço */
    margin: 60px auto;
}

.bonus-item {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gray-light); /* Borda sutil */
    text-align: left; /* Alinha o texto à esquerda */
}

.bonus-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.bonus-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color); /* Badge de bônus em primary-color */
    color: white;
    padding: 8px 20px; /* Mais padding */
    font-size: 0.9rem;
    font-weight: 800;
    border-bottom-left-radius: 12px; /* Mais arredondado */
    z-index: 1;
}

.bonus-img {
    width: 100%;
    height: 200px; /* Altura maior para as imagens */
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.bonus-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    min-height: 60px; /* Altura mínima para evitar desalinhamento */
    display: flex; /* Para alinhar verticalmente */
    align-items: center;
    text-align: left;
}

.bonus-value {
    font-size: 1rem;
    color: var(--danger-color); /* Valor do bônus em danger-color para contraste */
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
}

.bonus-item p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bonus-features {
    list-style: none;
    margin-top: 20px;
}

.bonus-features li {
    padding: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bonus-features li::before {
    content: '✔️';
    font-size: 1.1rem;
    color: var(--success-color);
    margin-top: 2px;
}

.bonuses-cta {
    text-align: center;
    margin-top: 60px;
}

.bonuses-disclaimer {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-top: 15px;
}

.bonuses-disclaimer strong {
    color: var(--danger-color);
}

/* ========================================================= */
/* ================ SEÇÃO DE GARANTIA ====================== */
/* ========================================================= */
.guarantee-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.guarantee-card {
    background: white;
    padding: 60px; /* Mais padding */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); /* Sombra mais forte */
    max-width: 850px; /* Mais largo */
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 4px dashed var(--accent-color); /* Borda tracejada e amarela */
}

.guarantee-badge {
    width: 120px; /* Selo maior */
    height: auto;
    margin-bottom: 35px;
    animation: bounce 2s infinite ease-in-out; /* Animação de bounce sutil */
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.guarantee-content {
    max-width: 700px; /* Conteúdo mais largo */
    margin: 0 auto;
}

.guarantee-text {
    font-size: 1.15rem; /* Texto maior */
    line-height: 1.8;
    margin-bottom: 35px;
    color: var(--gray-medium);
}

.guarantee-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px; /* Mais espaço */
    margin: 40px 0;
}

.guarantee-feature {
    display: flex;
    flex-direction: column; /* Ícone em cima do texto */
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.guarantee-feature img {
    width: 40px; /* Ícone maior */
    height: 40px;
}

.guarantee-cta-text {
    font-size: 1.4rem; /* Texto maior */
    margin-top: 40px;
    color: var(--text-dark);
}

.guarantee-cta-text strong {
    color: var(--primary-color);
}

/* ========================================================= */
/* ================ SEÇÃO FAQ (ACORDEÃO) =================== */
/* ========================================================= */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.faq-accordion {
    max-width: 850px; /* Mais largo */
    margin: 60px auto;
}

.faq-item {
    margin-bottom: 18px; /* Mais espaço entre os itens */
    border-radius: var(--radius-md);
    overflow: hidden; /* Garante que as bordas arredondadas funcionem bem */
    box-shadow: var(--shadow-sm); /* Sombra para cada item */
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 22px 60px 22px 25px; /* Mais padding e espaço para o ícone */
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem; /* Levemente maior */
    position: relative;
    transition: background-color var(--transition-normal);
    text-align: left; /* Alinha texto da pergunta à esquerda */
    border-radius: var(--radius-md); /* Borda arredondada no topo */
}

.faq-question:hover {
    background-color: #6a1b9a;
}

.faq-toggle:checked + .faq-question {
    border-bottom-left-radius: 0; /* Remove a borda inferior quando aberto */
    border-bottom-right-radius: 0;
}

.faq-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg); /* Começa em 0 */
    font-size: 1.8rem; /* Ícone maior */
    transition: transform var(--transition-normal);
    color: var(--accent-color); /* Ícone em amarelo */
}

.faq-toggle:checked + .faq-question .faq-icon {
    transform: translateY(-50%) rotate(45deg); /* Gira 45 graus para o "X" */
    color: var(--text-light); /* Muda a cor do ícone quando aberto */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    padding: 0 25px; /* Padding ajustado */
    background-color: white;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sombra sutil apenas na parte de baixo */
    text-align: left; /* Alinha o texto da resposta à esquerda */
}

.faq-answer p {
    padding: 20px 0; /* Padding interno para o texto da resposta */
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-medium);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px; /* Aumenta o max-height para acomodar mais texto se necessário */
    padding-bottom: 25px; /* Mais padding inferior ao abrir */
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* ========================================================= */
/* ================ FOOTER ================================= */
/* ========================================================= */
.footer-section {
    padding: 100px 0 50px; /* Mais padding */
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.footer-urgency {
    background: linear-gradient(90deg, var(--danger-color), #FF6B8B);
    color: white;
    padding: 25px; /* Mais padding */
    border-radius: var(--radius-md);
    max-width: 800px;
    margin: 0 auto 50px; /* Mais espaço */
    box-shadow: 0 8px 25px rgba(255, 62, 109, 0.5); /* Sombra mais forte */
    border: 3px solid rgba(255,255,255,0.7); /* Borda de destaque */
}

.footer-urgency .urgency-text {
    font-size: 1.3rem; /* Maior */
}

.footer-urgency .countdown {
    font-size: clamp(2rem, 4.5vw, 3rem); /* Timer ainda maior no footer */
    color: white;
    background-color: transparent;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

.footer-urgency .countdown.urgent-time {
    color: var(--accent-color); /* Amarelo no modo urgente */
    background-color: transparent;
}


.final-cta {
    margin: 0 auto 40px; /* Mais espaço */
}

.final-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 25px; /* Mais espaço */
    margin-bottom: 40px;
}

.final-price .price-old {
    font-size: 1.6rem; /* Preço antigo maior */
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.final-price .price-current {
    font-size: 3rem; /* Preço atual ainda maior */
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 210, 63, 0.5);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap; /* Permite que os logos quebrem a linha */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Mais espaço */
    margin: 40px 0;
}

.payment-methods p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    width: 100%; /* Ocupa a largura total para o texto */
    margin-bottom: 15px;
}

.payment-methods img {
    height: 35px; /* Logos maiores */
    width: auto;
    opacity: 0.9;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.payment-methods img:hover {
    opacity: 1;
    transform: scale(1.1); /* Efeito de zoom no hover */
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px; /* Mais espaço */
    margin: 40px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
    font-size: 1rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: underline; /* Adiciona sublinhado no hover para links */
}

.copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 900px; /* Mais largo */
    margin: 25px auto 0;
    line-height: 1.7;
}

/* ========================================================= */
/* ================ ANIMAÇÕES ADICIONAIS =================== */
/* ========================================================= */

/* Animação de pulso para CTAs (mais suave) */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(123, 44, 191, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 20px rgba(123, 44, 191, 0); } /* Maior "anel" de pulso */
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(123, 44, 191, 0); }
}

.pulse-effect {
    animation: pulse 2.5s infinite ease-in-out; /* Mais lento e suave */
}

/* ========================================================= */
/* ================ RESPONSIVIDADE AVANÇADA ================ */
/* ========================================================= */

/* Tablet e Telas Médias (max-width: 992px) */
@media (max-width: 992px) {
    .content-section {
        padding: 80px 0; /* Menos padding em seções */
    }
    
    h1 {
        font-size: clamp(2.5rem, 5.5vw, 3.5rem);
    }

    h2 {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .cta-price-box {
        padding: 2rem;
        margin: 2rem auto;
    }

    .video-container {
        margin-bottom: 2.5rem;
    }

    .problem-grid, .module-grid, .bonuses-grid {
        gap: 25px; /* Menos espaço */
    }

    .before-after-grid {
        grid-template-columns: 1fr; /* Colunas empilhadas */
        gap: 30px;
        max-width: 550px; /* Largura máxima para a coluna única */
    }

    .testimonial-card::before { /* Ajusta a posição das aspas */
        font-size: 8rem;
        top: -30px;
        left: -10px;
    }
    
    .faq-accordion {
        max-width: 650px;
    }
}

/* Telas Pequenas e Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: clamp(2.2rem, 6.5vw, 3rem);
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: clamp(1.8rem, 5.5vw, 2.5rem);
        margin-bottom: 2.5rem;
    }

    .section-description {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }

    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-section .subheadline {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        margin-bottom: 2.5rem;
    }

    .cta-price-box {
        padding: 1.5rem;
        border: 3px solid var(--accent-color);
        margin: 1.5rem auto;
    }
    
    .cta-price-box::before { /* Ajuste da fita para mobile */
        top: 15px;
        right: -35px;
        padding: 0.3rem 2rem;
        font-size: 0.9rem;
    }

    .price-value {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
    }

    .price-installments {
        font-size: 1.05rem;
    }

    .btn-primary, .btn-secondary {
        padding: 15px 25px;
        font-size: 1rem;
        gap: 8px;
    }

    .big-btn {
        padding: 18px 35px;
        font-size: 1.2rem;
        width: 90%; /* Botão grande ocupa mais largura */
    }

    .urgency-bar {
        padding: 1rem;
        gap: 1rem;
        max-width: 90%;
    }

    .urgency-text {
        font-size: 1rem;
    }

    .countdown {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .problem-grid {
        grid-template-columns: 1fr; /* Colunas empilhadas */
        gap: 20px;
        max-width: 400px;
    }
    
    .problem-item {
        padding: 25px;
        border-top: 4px solid var(--danger-color);
    }

    .emotional-transition {
        font-size: 1.1rem;
        padding: 30px;
        margin: 50px auto 0;
    }

    .column-title {
        font-size: 1.5rem;
    }

    .pain-list li, .benefit-list li {
        font-size: 1rem;
        padding: 10px 0;
    }

    .module-grid, .testimonials-grid, .bonuses-grid {
        grid-template-columns: 1fr; /* Colunas empilhadas */
        gap: 20px;
        max-width: 450px;
    }

    .module-item, .testimonial-card, .bonus-item {
        padding: 25px;
    }

    .profile-pic {
        width: 60px;
        height: 60px;
        border: 3px solid var(--accent-color);
    }

    .testimonial-header h4 {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .social-proof-tag {
        margin-left: 10px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .guarantee-card {
        padding: 30px;
        border: 3px dashed var(--accent-color);
    }
    
    .guarantee-badge {
        width: 80px;
        margin-bottom: 25px;
    }

    .guarantee-text {
        font-size: 1rem;
    }
    
    .guarantee-cta-text {
        font-size: 1.2rem;
    }

    .faq-question {
        padding: 18px 50px 18px 20px;
        font-size: 1.05rem;
    }
    
    .faq-answer p {
        padding: 15px 0;
    }

    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-urgency {
        padding: 15px;
        margin-bottom: 30px;
    }

    .footer-urgency .urgency-text {
        font-size: 1.1rem;
    }

    .final-price {
        flex-direction: column; /* Preço final em coluna */
        gap: 10px;
    }
    
    .final-price .price-old {
        font-size: 1.3rem;
    }

    .final-price .price-current {
        font-size: 2.5rem;
    }

    .payment-methods {
        gap: 10px;
    }
    
    .payment-methods img {
        height: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Telas Extremamente Pequenas (max-width: 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.7rem;
    }
    
    .hero-section .subheadline {
        font-size: 0.95rem;
    }

    .cta-price-box {
        padding: 1.2rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .big-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .urgency-bar {
        font-size: 0.9rem;
    }

    .countdown {
        font-size: 1.3rem;
    }

    .problem-item h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-card::before {
        font-size: 7rem;
        top: -40px;
        left: -20px;
    }

    .guarantee-card {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px 45px 15px 15px;
    }
    
    .faq-icon {
        font-size: 1.5rem;
    }

    .footer-urgency .urgency-text {
        font-size: 1rem;
    }

    .final-price .price-current {
        font-size: 2.2rem;
    }
}