/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (Aesthetics do Print - Light Theme Premium)
   ========================================================================== */
:root {
    /* Cores do Print */
    --bg-primary: #FCFCFA;        /* Fundo off-white limpo do laptop */
    --bg-secondary: #F7F7F5;      /* Fundo de seções alternadas */
    --bg-card: #FFFFFF;           /* Branco puro para cards */
    
    --text-charcoal: #0F172A;     /* Cinza quase preto para títulos muito bold */
    --text-gray: #475569;         /* Cinza médio para descrição e subtítulo */
    --text-muted: #64748B;        /* Muted slate para captions e suportes */
    
    --gold-primary: #AD843D;      /* Dourado/Bronze do botão e de "Paz Financeira" */
    --gold-hover: #967132;        /* Dourado mais escuro para hover */
    --gold-light: rgba(173, 132, 61, 0.08); /* Fundo sutil dourado */
    
    --border-color: rgba(15, 23, 42, 0.06);
    --border-gold: rgba(173, 132, 61, 0.2);
    
    /* Tipografias */
    --font-sans: 'Outfit', 'Inter', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Layout & Transições */
    --container-width: 1120px;
    --container-narrow: 800px;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Sombras Premium */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 10px 30px rgba(173, 132, 61, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.04);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    width: 100%;
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   1. TOP BAR (OFERTA RELÂMPAGO DO PRINT)
   ========================================================================== */
.top-bar {
    background-color: #0F172A; /* Fundo escuro do print */
    color: #FFFFFF;
    padding: 10px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.top-bar-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.lightning-icon {
    font-size: 1.1rem;
}

.offer-title {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.countdown-timer {
    font-family: monospace;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-primary);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-gold);
    font-size: 1rem;
    display: inline-block;
    margin-left: 6px;
}

.top-bar-btn {
    background-color: var(--gold-primary);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.top-bar-btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-1px);
}

/* ==========================================================================
   2. HERO SECTION (CONFORME PRINT DO VÍDEO)
   ========================================================================== */
.hero {
    padding: 100px 0 120px 0;
    background-image: radial-gradient(circle at center, rgba(173, 132, 61, 0.05) 0%, transparent 60%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(173, 132, 61, 0.04) 0%, transparent 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
}

/* Badge de Categoria Centrada */
.hero-badge {
    display: inline-block;
    background-color: var(--gold-light);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

/* Título Gigante e Centralizado (Outfit Bold + Playfair Italic Gold) */
.hero-title {
    font-family: var(--font-sans);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-charcoal);
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.gold-italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--gold-primary);
    letter-spacing: -0.5px;
}

/* Descrição / Subtítulo Centrado */
.hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.6;
    font-weight: 400;
}

/* CTA Dourado com Seta */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--gold-primary);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 40px;
    border-radius: var(--radius-sm); /* Bordas pouco arredondadas do print */
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(173, 132, 61, 0.2);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(173, 132, 61, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 1.1rem;
    line-height: 1;
}

.cta-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   3. SEÇÃO BENEFÍCIOS (O CAMINHO PARA UMA VIDA ABENÇOADA)
   ========================================================================== */
.features-section {
    background-color: var(--bg-primary); /* Fundo branco off-white igual ao resto */
    border: none;
}

.features-section .section-header {
    margin-bottom: 50px;
}

.features-section .section-title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-charcoal);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.features-section .gold-italic-serif {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gold-primary);
}

.features-section .section-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--bg-card);
    border: none;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-color: rgba(173, 132, 61, 0.08);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-charcoal);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ==========================================================================
   4. SEÇÃO "ESTE GUIA É PARA VOCÊ QUE..."
   ========================================================================== */
.pain-section {
    background-color: var(--bg-card);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.pain-content .section-title {
    margin-bottom: 24px;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon-outline {
    width: 24px;
    height: 24px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-item span {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-gray);
}

/* Quote Side */
.pain-visual {
    display: flex;
    justify-content: center;
}

.quote-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-side-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
    color: var(--text-charcoal);
    margin-bottom: 24px;
}

.quote-side-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.quote-side-ref {
    display: block;
    font-size: 0.95rem;
    margin-top: 4px;
}

.quote-side-explanation {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==========================================================================
   6. SEÇÃO OS PILARES
   ========================================================================== */
.pillars-section {
    background-color: var(--bg-card);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.pillar-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.pillar-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(173, 132, 61, 0.1);
    line-height: 1;
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-right: 32px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.highlight-card {
    border: 1.5px solid var(--gold-primary);
    box-shadow: 0 10px 25px rgba(173, 132, 61, 0.05);
}

.text-gold-num {
    color: rgba(173, 132, 61, 0.2) !important;
}

.gold-text-pillar {
    color: var(--gold-primary);
}

.pillars-cta {
    margin-top: 52px;
}

/* ==========================================================================
   5. OS 7 PILARES DA PROSPERIDADE CRISTÃ (DARK THEME)
   ========================================================================== */
.seven-pillars-section {
    background-color: #0B1120;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.seven-pillars-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(173, 132, 61, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.seven-pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.seven-pillars-title {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
}

.seven-pillars-title .gold-text {
    color: var(--gold-primary);
}

.seven-pillars-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.seven-pillar-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.seven-pillar-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D29742 0%, #AD843D 100%);
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(173, 132, 61, 0.3);
}

.seven-pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px 32px;
    flex-grow: 1;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.seven-pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(173, 132, 61, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.seven-pillar-card p {
    color: #E2E8F0;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   7. SEÇÃO DO MENTOR (ÚNICA IMAGEM DA LP)
   ========================================================================== */
.mentor-section {
    background-color: var(--bg-primary); /* Fundo igual ao resto da página */
    border: none;
    padding: 80px 0;
}

.mentor-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
    align-items: center;
    background-color: transparent; /* Removemos o fundo branco do card */
    border-radius: 0;
    padding: 20px 0;
    box-shadow: none;
}

.mentor-image-wrapper {
    position: relative;
    width: 100%;
    justify-self: center;
}

.mentor-image-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 140px;
    height: 140px;
    background-color: #D29742; /* Cor dourada atrás da foto */
    border-radius: 12px;
    z-index: 0;
}

.mentor-img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border: 14px solid #FFFFFF; /* Borda branca grossa exatamente como na foto */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra super sutil */
}

.mentor-content .mentor-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.6rem;
    color: var(--text-charcoal); /* Texto escuro como na imagem */
    margin-bottom: 6px;
    font-weight: 700;
}

.mentor-content .mentor-subtitle {
    color: #D29742; /* Dourado exato */
    margin-bottom: 24px;
    display: block;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.mentor-bio {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mentor-bio p {
    color: var(--text-gray); /* Texto clarinho/cinza */
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   8. SEÇÃO DE BÔNUS EXCLUSIVOS
   ========================================================================== */
.bonuses-section {
    background-color: var(--bg-card);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.bonus-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    position: relative;
    transition: var(--transition-smooth);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-card);
    border-color: var(--border-gold);
}

.bonus-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--gold-primary);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-bottom-left-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 8px;
}

.bonus-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.tag-gold {
    background-color: #0F172A !important;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary) !important;
}

/* ==========================================================================
   9. SEÇÃO VIDAS TRANSFORMADAS (DEPOIMENTOS)
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .stars {
    color: var(--gold-primary);
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-charcoal);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gold-light);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.user-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   10. OFERTA ESPECIAL DE LANÇAMENTO (CHECKOUT)
   ========================================================================== */
.pricing-section {
    background-color: var(--bg-card);
}

.pricing-box {
    max-width: 580px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 52px 36px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 20px;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-sub {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.price-container {
    margin-bottom: 32px;
}

.price-old {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.new-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--gold-primary);
    font-weight: 800;
}

.new-price .currency {
    font-size: 1.4rem;
    margin-top: 0.4rem;
    margin-right: 2px;
}

.new-price .amount {
    font-size: 4.8rem;
    line-height: 1;
}

.new-price .cents {
    font-size: 1.4rem;
    margin-top: 0.4rem;
}

.price-info {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.btn-block {
    width: 100%;
}

.security-seals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.divider-seal {
    color: rgba(0,0,0,0.1);
}

/* ==========================================================================
   11. PERGUNTAS FREQUENTES (FAQ ACCORDION)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-gold);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--text-charcoal);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
}

.faq-toggle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gold-primary);
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(0,0,0,0.01);
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Active FAQ Item */
.faq-item.active {
    border-color: var(--gold-primary);
}

.faq-item.active .faq-answer {
    max-height: 150px; /* Suficiente para respostas curtas */
}

/* ==========================================================================
   12. FOOTER (RODAPÉ)
   ========================================================================== */
.footer {
    background-color: #0F172A;
    color: #FFFFFF;
    padding: 64px 0 32px 0;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-support {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   ANIMAÇÃO E EFEITO SHINE DO PRINT
   ========================================================================== */
@keyframes shine {
    0% { left: -100%; }
    15% { left: 100%; }
    100% { left: 100%; }
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: none;
    animation: shine 4s infinite ease-in-out;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE IMPECÁVEL)
   ========================================================================== */
@media (max-width: 992px) {
    section {
        padding: 72px 0;
    }
    
    .hero-title {
        font-size: 2.85rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .pain-visual {
        order: -1;
    }
    
    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mentor-image-wrapper {
        order: -1;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .bible-verse {
        font-size: 1.65rem;
    }
    
    .pricing-box {
        padding: 40px 20px;
    }
    
    .new-price .amount {
        font-size: 3.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
