/* ==========================================================================
   DESIGN SYSTEM - PLANILHA + PROPÓSITO
   Futuristic, Sophisticated & Responsive Cyber-Finance Theme
   ========================================================================== */

/* 1. IMPORTS & CONFIGURAÇÃO */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Cores Principais */
    --color-bg: #000000f3;
    --color-bg-alt: #000000f3;
    --color-card-bg: rgba(0, 0, 0, 0.88);
    
    /* Neons e Destaques */
    --color-emerald: #fad70f;
    --color-cyan: #ffa600;
    --color-neon-green: #f7e815;
    --color-neon-blue: #ffa600;
    --color-crimson: #FF416C;
    --color-orange: #FF4B2B;
    
    /* Cores de Texto */
    --color-text-pure: #FFFFFF;
    --color-text-primary: #F1F5F9;
    --color-text-secondary: #94A3B8;
    --color-text-muted: #64748B;
    
    /* Gradientes */
    --grad-primary: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-cyan) 100%);
    --grad-blue: linear-gradient(135deg, #fad70f 0%, #ffa600 100%);
    --grad-dark: linear-gradient(135deg, #ffe601 0%, #ffa600 100%);
    --grad-accent: linear-gradient(135deg, var(--color-crimson) 0%, var(--color-orange) 100%);
    
    /* Sombras & Efeitos */
    --shadow-neon-green: 0 0 25px rgba(245, 188, 0, 0.45);
    --shadow-neon-blue: 0 0 25px rgba(255, 187, 0, 0.45);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --border-glass: 1px solid rgba(255, 255, 255, 0.07);
    --border-neon-hover: 1px solid rgba(221, 208, 31, 0.5);
    
    /* Tipografia */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* 2. BASE & RESET */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #020202 0%, #151307 20%, #020202 40%, #1c1809 60%, #020202 80%, #0d0c06 100%);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: scroll;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-alt);
    border: 2px solid var(--color-bg);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-cyan);
}

/* 3. ESTILOS GERAIS DE LAYOUT */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de Luzes de Fundo (Glowing Orbs) */
.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.orb-primary {
    width: 450px;
    height: 450px;
    background: var(--color-cyan);
    top: 10%;
    right: -10%;
    animation: floatOrb 15s ease-in-out infinite alternate;
}

.orb-secondary {
    width: 400px;
    height: 400px;
    background: var(--color-emerald);
    bottom: 15%;
    left: -10%;
    animation: floatOrb 18s ease-in-out infinite alternate-reverse;
}

.orb-tertiary {
    width: 300px;
    height: 300px;
    background: var(--color-neon-blue);
    top: 50%;
    left: 40%;
    opacity: 0.08;
    animation: floatOrb 22s ease-in-out infinite alternate;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.15); }
}

/* 4. TIPOGRAFIA & CABEÇALHOS */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-pure);
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-text-accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-cyan);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.text-center {
    text-align: center;
}

/* 5. GLASSMORPHISM CARDS & ELEMENTOS */
.glass-card {
    background: var(--color-card-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

/* 6. BOTÕES & INTERATIVIDADE */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: #02040a;
    box-shadow: var(--shadow-neon-green);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 35px rgba(250, 215, 15, 0.7);
    letter-spacing: 0.5px;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-pure);
    border: var(--border-glass);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Efeito Glow Pulsante no Botão */
.glow-pulse {
    animation: buttonPulse 2.5s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 15px rgba(250, 215, 15, 0.4); }
    50% { box-shadow: 0 0 30px rgba(255, 166, 0, 0.7); }
    100% { box-shadow: 0 0 15px rgba(250, 215, 15, 0.4); }
}

/* 7. HEADER & STICKY BANNER */
.sticky-header {
    background: rgba(6, 8, 19, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-glass);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-pure);
}

.logo span {
    color: var(--color-emerald);
}

.header-badge {
    background: rgba(250, 215, 15, 0.1);
    border: 1px solid rgba(250, 215, 15, 0.2);
    color: var(--color-emerald);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-emerald);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-emerald);
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* 8. SEÇÃO HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 166, 0, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--color-cyan);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.hero-cta-btn {
    width: 100%;
    max-width: 400px;
}

.hero-trust-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-item i {
    color: var(--color-emerald);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-container {
    position: relative;
    z-index: 10;
    animation: floatBook 6s ease-in-out infinite;
}

@keyframes floatBook {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.ebook-mockup {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(250, 215, 15, 0.15));
    border-radius: 12px;
}

.glowing-circle {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(250, 215, 15, 0.1) 0%, rgba(255, 166, 0, 0.05) 50%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.neon-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 166, 0, 0.1);
    border-radius: 50%;
    animation: rotateLines 20s linear infinite;
    z-index: 1;
}

.neon-lines-2 {
    position: absolute;
    width: 90%;
    height: 90%;
    border: 1px dashed rgba(250, 215, 15, 0.15);
    border-radius: 50%;
    animation: rotateLines 15s linear infinite reverse;
    z-index: 1;
}

@keyframes rotateLines {
    100% { transform: rotate(360deg); }
}

/* 9. SEÇÃO VOCÊ SE IDENTIFICA (PROBLEMAS) */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.problem-card {
    border: var(--border-glass);
    transition: var(--transition-smooth);
    background: var(--color-card-bg);
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 65, 108, 0.3);
    box-shadow: 0 10px 30px -10px rgba(255, 65, 108, 0.15);
}

.problem-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 65, 108, 0.1);
    border: 1px solid rgba(255, 65, 108, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* 10. SEÇÃO VIRADA DE CHAVE */
.shift {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 166, 0, 0.04) 50%, transparent 100%);
    position: relative;
}

.shift-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-wrapper {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(250, 215, 15, 0.04) 0%, rgba(255, 166, 0, 0.04) 100%);
    border: var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.quote-icon {
    font-size: 4rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    position: absolute;
    opacity: 0.15;
}

.quote-icon-left {
    top: 20px;
    left: 30px;
}

.quote-icon-right {
    bottom: -10px;
    right: 30px;
    transform: rotate(180deg);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-pure);
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-emerald);
}

/* 11. SEÇÃO CONTEÚDO (MÓDULOS) */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.module-card {
    border: var(--border-glass);
    transition: var(--transition-smooth);
}

.module-card:hover {
    transform: translateY(-8px);
    border: var(--border-neon-hover);
    box-shadow: 0 15px 40px -15px rgba(250, 215, 15, 0.15);
}

.module-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.module-card:hover .module-number {
    opacity: 0.8;
    transform: scale(1.1);
}

.module-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.module-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* 12. SEÇÃO ESTE EBOOK É PARA VOCÊ (CHECKLIST) */
.checklist-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.checklist-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: 18px;
    transition: var(--transition-smooth);
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
    border-color: rgba(255, 166, 0, 0.3);
}

.checklist-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(250, 215, 15, 0.1);
    border: 1px solid rgba(250, 215, 15, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(250, 215, 15, 0.2);
}

.checklist-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

/* Ilustração Tecnológica */
.tech-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-grid-sphere {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 166, 0, 0.15) 0%, transparent 70%);
    position: relative;
    border: 1px solid rgba(255, 166, 0, 0.2);
    animation: rotateSphere 30s linear infinite;
}

@keyframes rotateSphere {
    100% { transform: rotate(360deg); }
}

.tech-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--color-emerald) 0%, transparent 60%);
    filter: blur(20px);
    opacity: 0.6;
    animation: bounceOrb 8s ease-in-out infinite;
}

@keyframes bounceOrb {
    0%, 100% { transform: translate(50px, 50px); }
    50% { transform: translate(-50px, -50px); }
}

/* 13. SEÇÃO PROVA SOCIAL (DEPOIMENTOS) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    border: var(--border-glass);
    background: var(--color-card-bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #FBBF24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-text-primary);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(250, 215, 15, 0.2), rgba(255, 166, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-cyan);
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* 14. SEÇÃO OFERTA PRINCIPAL (CHECKOUT) */
.offer {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(255, 166, 0, 0.08) 0%, rgba(0, 0, 0, 0) 80%);
}

.offer-card-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.offer-card-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-emerald), var(--color-cyan), var(--color-emerald));
    border-radius: 32px;
    z-index: -1;
    opacity: 0.25;
    filter: blur(10px);
}

.offer-card {
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 8, 3, 0.95) 0%, rgba(6, 8, 19, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.offer-tag {
    background: rgba(255, 65, 108, 0.1);
    border: 1px solid rgba(255, 65, 108, 0.25);
    color: #FF4D79;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 24px;
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    from { box-shadow: 0 0 10px rgba(255, 65, 108, 0.2); }
    to { box-shadow: 0 0 25px rgba(255, 65, 108, 0.5); }
}

.offer-title {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.offer-subtitle {
    font-size: 1.25rem;
    color: var(--color-emerald);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 30px;
}

.price-box {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-old {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-new {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text-pure);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
}

.price-new span {
    font-size: 1.8rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 4px;
}

.price-details {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.offer-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.offer-btn {
    width: 100%;
    max-width: 480px;
    font-size: 1.25rem;
    padding: 22px 40px;
    box-shadow: 0 0 30px rgba(250, 215, 15, 0.3);
}

.offer-btn:hover {
    box-shadow: 0 0 45px rgba(250, 215, 15, 0.6);
}

.offer-security {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-item i {
    color: var(--color-emerald);
}

/* 15. SEÇÃO GARANTIA */
.guarantee {
    position: relative;
}

.guarantee-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.guarantee-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.guarantee-shield-wrapper {
    position: relative;
    z-index: 10;
}

.guarantee-shield {
    font-size: 7.5rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(250, 215, 15, 0.3));
    animation: floatBook 8s ease-in-out infinite;
}

.guarantee-badge-7 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #060813;
    z-index: 15;
}

.guarantee-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.guarantee-content p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* 16. SEÇÃO FAQ (DÚVIDAS FREQUENTES) */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: 20px;
    background: var(--color-card-bg);
    border: var(--border-glass);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(255, 166, 0, 0.25);
    background: rgba(0, 0, 0, 0.95);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-pure);
    user-select: none;
    transition: var(--transition-fast);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-cyan);
    transition: var(--transition-smooth);
    border: var(--border-glass);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--grad-primary);
    color: #060813;
    border: none;
    box-shadow: 0 0 15px rgba(250, 215, 15, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 30px 24px 30px;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* 17. FINAL CALL TO ACTION & FOOTER */
.final-cta {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 166, 0, 0.06) 100%);
    padding: 120px 0;
    text-align: center;
}

.final-cta-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.final-cta-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.footer {
    background: #030409;
    border-top: var(--border-glass);
    padding: 40px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-cyan);
}

/* 18. CRONÔMETRO DE URGÊNCIA (HEADER BANNER) */
.urgency-banner {
    background: linear-gradient(90deg, #FF416C, #FF4B2B);
    color: var(--color-text-pure);
    text-align: center;
    padding: 8px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-heading);
    z-index: 101;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-digits {
    background: rgba(0,0,0,0.25);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

/* 19. SISTEMA DE ANIMAÇÕES DE SCROLL (REVEAL) */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Delays para animação escalonada */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* 20. RESPONSIVIDADE (MEDIA QUERIES) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-wrapper {
        gap: 40px;
    }
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero {
        padding: 100px 0 60px 0;
        min-height: auto;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        align-items: center;
    }
    .hero-badge {
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-description {
        margin-bottom: 30px;
    }
    .hero-ctas {
        align-items: center;
    }
    .hero-trust-info {
        justify-content: center;
    }
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .checklist-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tech-illustration {
        order: -1;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .offer-card {
        padding: 40px 20px;
    }
    .offer-title {
        font-size: 2rem;
    }
    .price-new {
        font-size: 3.8rem;
    }
    .guarantee-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .guarantee-shield {
        font-size: 6rem;
    }
    .guarantee-badge-7 {
        font-size: 1.8rem;
    }
    .faq-question {
        padding: 20px 24px;
        font-size: 1.05rem;
    }
    .final-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .urgency-banner {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 5px;
    }
    .sticky-header {
        padding: 10px 0;
    }
    .logo {
        font-size: 1.15rem;
    }
    .header-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    .offer-security {
        flex-direction: column;
        gap: 10px;
    }
}
