/* --- Variáveis e Reset --- */
:root {
    --primary-color: #E91E63; /* Rosa Vibrante */
    --secondary-color: #00B0FF; /* Azul Ciano */
    --secondary-dark: #007bb2;
    --dark-text: #2c3e50;
    --mid-text: #546e7a;
    --light-bg: #f4f9fc;
    --white: #ffffff;
    --section-spacing: 80px;
    --border-radius: 12px;
    --font-stack: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-stack);
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* --- Utilitários --- */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: var(--section-spacing) 0; }
.bg-light { background-color: var(--light-bg); }
.centered-text { text-align: center; }
.highlight-pink { color: var(--primary-color); }
.highlight-cyan { color: var(--secondary-color); }
.img-placeholder {
    background-color: #ddd; border: 2px dashed #aaa; display: flex;
    justify-content: center; align-items: center; color: #666; font-weight: bold; text-align: center;
}
.center-block { margin-left: auto; margin-right: auto; }
.align-center { align-items: center; }

/* --- Tipografia --- */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2.section-title { font-size: 2rem; margin-bottom: 15px; color: var(--primary-color); }
.subtitle { font-size: 1.1rem; color: var(--mid-text); margin-bottom: 30px; }
.section-subtitle { font-size: 1.2rem; margin-bottom: 50px; }

/* --- Botões --- */
.btn {
    display: inline-block; padding: 12px 30px; background-color: var(--primary-color);
    color: var(--white); text-decoration: none; font-weight: 700; border-radius: 50px;
    transition: all 0.3s ease; border: none; cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}
.btn:hover {
    transform: translateY(-3px); box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    background-color: #d81557;
}
.btn-large { font-size: 1.1rem; padding: 15px 40px; text-transform: uppercase; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }

/* --- Navbar --- */
.navbar { padding: 15px 0; position: absolute; width: 100%; top: 0; z-index: 10; }
.nav-container { display: flex; justify-content: flex-start; align-items: flex-start; }
.nav-logo { height: 68px; width: auto; object-fit: contain; margin-top: 15px; }

/* --- Hero Section --- */
.hero-section {
    padding-top: 145px; padding-bottom: 150px;
    background: linear-gradient(135deg, #fff 0%, #fceef5 100%); position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.cta-wrapper { display: flex; flex-direction: column; align-items: flex-start; }
.security-note { font-size: 0.85rem; color: var(--mid-text); margin-top: 10px; display: block; text-align: left; }
.hero-image { width: 100%; height: auto; border-radius: 20px; box-shadow: none; }
.wave-bottom { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; }
.wave-bottom svg { width: 100%; height: auto; }

/* --- SESSÃO 2: PROBLEMAS --- */
.checklist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-bottom: 50px; }
.checklist-item {
    background: var(--white); padding: 30px 20px; border-radius: var(--border-radius);
    text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s ease;
}
.checklist-item:hover { transform: translateY(-5px); }
.icon-box {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px auto;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; transition: transform 0.3s ease;
}
.icon-box i { color: inherit; }
.checklist-item:hover .icon-box { transform: scale(1.1); }
.pink-bg { background-color: rgba(233, 30, 99, 0.1); color: var(--primary-color); }
.cyan-bg { background-color: rgba(0, 176, 255, 0.1); color: var(--secondary-color); }
.checklist-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.truth-bomb {
    max-width: 700px; margin: 0 auto; font-size: 1.2rem; background: var(--primary-color);
    color: var(--white); padding: 40px 30px; border-radius: 20px;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.3); position: relative; overflow: hidden;
}
.truth-bomb::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(30deg); pointer-events: none;
}

/* --- General Layouts --- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-left { text-align: left; }

/* --- SESSÃO 3: MÉTODO --- */
.scenarios-list { margin-top: 25px; display: flex; flex-direction: column; gap: 15px; }
.scenario-item { display: flex; align-items: flex-start; gap: 15px; }
.scenario-icon { color: var(--secondary-color); font-size: 1.2rem; margin-top: 4px; flex-shrink: 0; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.feature-card {
    background-color: var(--white); padding: 15px 20px; border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.03);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.feature-card span { font-weight: 600; font-size: 0.95rem; color: var(--dark-text); line-height: 1.3; }
.feature-icon { font-size: 1.5rem; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
.pink-text { color: var(--primary-color); }
.cyan-text { color: var(--secondary-color); }

/* --- SESSÃO 4: AUTORIDADE --- */
.author-name { font-size: 1.8rem; margin-bottom: 5px; }
.author-credentials {
    font-size: 1rem; color: var(--mid-text); font-weight: 500; margin-bottom: 25px;
    display: inline-block; border-bottom: 2px solid var(--secondary-color); padding-bottom: 5px;
}
.author-bio p { margin-bottom: 15px; color: var(--dark-text); }
.bio-summary { font-size: 1.05rem; font-weight: 400; }
.authority-image-wrapper { display: flex; justify-content: center; align-items: center; }
.authority-image { width: 100%; max-width: 480px; height: auto; border-radius: 20px; object-fit: cover; box-shadow: none; }
.quote-box-blue {
    background-color: #e1f5fe; border-left: 4px solid var(--secondary-color);
    padding: 20px 20px 20px 30px; font-style: italic; color: var(--secondary-dark);
    font-weight: 600; margin-top: 30px; border-radius: 0 12px 12px 0;
}

/* --- SESSÃO 5: BÔNUS --- */
.bonus-section { background-color: var(--secondary-color); padding: 80px 0; }
.bonus-card {
    background: var(--white); border-radius: 20px; overflow: hidden; 
    box-shadow: 0 20px 50px rgba(0, 100, 150, 0.25); max-width: 1000px; margin: 0 auto;
}
.bonus-header { background: linear-gradient(135deg, var(--primary-color), #ff5f9d); color: var(--white); padding: 30px 20px; text-align: center; }
.bonus-badge {
    background: #ffeb3b; color: #333; padding: 6px 18px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    display: inline-block; margin-bottom: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.bonus-header h2 { color: white; margin: 0; font-size: 1.8rem; }
.bonus-body { padding: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; text-align: left; }
.bonus-content { order: 1; }
.bonus-image-container { order: 2; display: flex; justify-content: center; }
.ebook-image { max-width: 100%; width: 420px; height: auto; transform: rotate(3deg); transition: transform 0.3s ease; }
.ebook-image:hover { transform: rotate(0deg) scale(1.02); }
.bonus-content h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary-color); }
.bonus-lead { font-size: 1.1rem; color: var(--mid-text); margin-bottom: 30px; line-height: 1.6; }
.bonus-features-wrapper { background: #f8f9fa; padding: 25px; border-radius: 12px; width: 100%; margin-bottom: 30px; }
.bonus-list { list-style: none; }
.bonus-list li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; }
.bonus-list li:last-child { margin-bottom: 0; }
.bonus-list li i { color: var(--secondary-color); font-size: 1.4rem; margin-top: 3px; }
.bonus-list li span { font-size: 1rem; color: var(--dark-text); }
.bonus-price-box {
    border: 2px dashed var(--primary-color); border-radius: 10px; padding: 15px;
    display: inline-flex; flex-direction: column; gap: 5px; background: #fff0f6;
}
.old-price { text-decoration: line-through; color: #888; font-size: 0.9rem; }
.free-tag { color: var(--primary-color); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; }

/* --- SESSÃO 6: OFERTA FINAL (High-End Design) --- */
.offer-container { max-width: 580px; margin: 0 auto; }

.offer-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.15); /* Sombra mais difusa e elegante */
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: transform 0.3s ease;
}

.offer-card:hover { transform: translateY(-5px); }

.offer-header {
    background: linear-gradient(135deg, var(--primary-color), #ff5f9d);
    color: white;
    padding: 35px 20px;
    text-align: center;
    position: relative;
}

.offer-label {
    background-color: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.4);
}

.offer-header h3 { font-size: 1.9rem; margin-bottom: 5px; line-height: 1.2; }
.offer-header p { font-size: 1.05rem; opacity: 0.95; }

.offer-body { padding: 40px; text-align: left; } /* Texto alinhado à esquerda fica mais organizado */

.offer-checklist { 
    list-style: none; 
    margin-bottom: 30px; 
}

.offer-checklist li {
    margin-bottom: 0;
    padding: 12px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start; /* Alinha no topo se o texto quebrar */
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.04); /* Linha divisória sutil */
    color: var(--dark-text);
}

.offer-checklist li:last-child { border-bottom: none; }

.offer-checklist li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Caixa de Preço Renovada */
.price-box {
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(to right, #fff0f6, #ffffff);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.discount-badge {
    display: inline-block;
    background-color: #27ae60; /* Verde sucesso */
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.price-anchor { text-decoration: line-through; color: #888; font-size: 1rem; margin-bottom: 5px;}
.price-installments { font-size: 2.4rem; font-weight: 700; color: var(--primary-color); line-height: 1.1; margin-bottom: 5px; }
.price-cash { color: var(--dark-text); font-weight: 600; font-size: 1.1rem; }

.btn-offer {
    font-size: 1.2rem;
    padding: 18px 20px;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Garantia High-End */
.guarantee-box {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.shield-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0; /* Impede que o ícone amasse */
}

.guarantee-text strong { display: block; color: var(--dark-text); font-size: 1rem; margin-bottom: 3px; }
.guarantee-text p { font-size: 0.85rem; color: var(--mid-text); line-height: 1.4; margin: 0; }

.security-seals {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- Footer --- */
footer { padding: 50px 0; background: var(--dark-text); color: rgba(255,255,255,0.7); }

/* --- Animações --- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3); }
    50% { box-shadow: 0 0 25px rgba(233, 30, 99, 0.7); transform: scale(1.02); }
    100% { box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3); }
}
.pulse { animation: pulse 2s infinite; }

/* --- Responsividade (Mobile) --- */
@media (max-width: 768px) {
    .nav-logo { display: none; }
    h1 { font-size: 2rem; }
    h2.section-title { font-size: 1.6rem; }
    
    .hero-grid, .split-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-section { padding-top: 60px; padding-bottom: 100px; text-align: center; }
    .hero-content { order: 1; } .hero-image-container { order: 2; }
    .cta-wrapper { align-items: center; }
    .security-note { text-align: center; }
    
    .reverse-mobile { display: flex; flex-direction: column-reverse; }
    .text-left { text-align: center; }
    .mobile-centered { text-align: center; }
    .authority-header.mobile-centered { display: flex; flex-direction: column; align-items: center; }
    .quote-box-blue { text-align: center; margin-top: 20px; }
    .authority-image { max-width: 350px; margin-bottom: 30px; }
    
    .benefits-list li { text-align: left; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 20px; }
    
    .offer-header h3 { font-size: 1.5rem; }
    
    /* Bônus Mobile */
    .bonus-body { display: flex; flex-direction: column; padding: 30px 20px; text-align: center; }
    .bonus-image-container { order: 1; margin-bottom: 30px; }
    .bonus-content { order: 2; }
    .ebook-image { width: 100%; max-width: 340px; }

    /* OFERTA Mobile - Escudo Grande */
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    /* Aumentando o ícone do escudo no mobile conforme pedido */
    .shield-icon {
        width: 65px; /* Bem maior */
        height: 65px;
    }
    
    .price-installments { font-size: 2rem; }
}

/* --- SESSÃO FAQ (Accordion Profissional) --- */

.faq-container {
    max-width: 800px; /* Mais estreito para facilitar leitura */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre as perguntas */
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra suave */
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden; /* Importante para a animação */
    transition: all 0.3s ease;
}

/* Estado Ativo (Quando aberto) */
.faq-item.active {
    box-shadow: 0 10px 25px rgba(0, 176, 255, 0.15); /* Sombra azulada destaque */
    border-color: rgba(0, 176, 255, 0.3);
}

/* O Botão da Pergunta */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-stack);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

/* Ícone da Seta */
.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.4s ease; /* Rotação suave */
}

/* Gira a seta quando ativo */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Área da Resposta (Escondida inicialmente) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); /* Animação "slide" profissional */
    background-color: #fafafa; /* Fundo levemente diferente para resposta */
}

.answer-content {
    padding: 0 25px 25px 25px;
    color: var(--mid-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .answer-content {
        padding: 0 20px 20px 20px;
    }
}