/* =========================================
   1. VARIÁVEIS & CONFIGURAÇÕES GERAIS
   ========================================= */
:root {
    --bg-main: #050505;
    --bg-surface: #121212;
    --text-primary: #e0e0e0;
    --text-secondary: #888888;
    --accent: #3b82f6; 
    --accent-glow: rgba(59, 130, 246, 0.3);
    --border-light: rgba(255, 255, 255, 0.08);
    --shadow-elevation: 0 20px 50px -10px rgba(0, 0, 0, 0.7);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }

body {
    background-color: var(--bg-main); color: var(--text-primary);
    font-family: var(--font-body); -webkit-font-smoothing: antialiased;
    overflow: hidden; 
    background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #050505 70%);
    width: 100%;
}
body.loaded { overflow: visible; overflow-x: hidden; }

/* Utilitários Base */
.text-accent { color: var(--accent); }
.no-padding { padding: 0 !important; }
.border-bottom { border-bottom: 1px solid var(--border-light); }
.text-center { text-align: center; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%;}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 0.9; margin-top: 0; }
section { padding: 60px 0; position: relative; }

.section-bordered { 
    margin: 30px 2%; background: var(--bg-surface); border-radius: 40px; 
    border: 1px solid var(--border-light); box-shadow: inset 0 0 50px rgba(0,0,0,0.5); 
}
.section-title { font-size: 2.5rem; color: #fff; margin-bottom: 20px; }
.dot { color: var(--accent); }
.section-tag { color: var(--accent); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; display: block; }
.section-desc { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }

/* =========================================
   2. ANIMAÇÕES GERAIS
   ========================================= */
@keyframes introFadeIn { to { opacity: 1; transform: scale(1); } }
@keyframes pulseText {
    0%, 100% { filter: drop-shadow(0 0 10px var(--accent)); opacity: 1; }
    50% { filter: drop-shadow(0 0 2px var(--accent)); opacity: 0.7; }
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotateX(0) rotateY(0); }
    50% { transform: translateY(-15px) rotateX(2deg) rotateY(-2deg); }
}
@keyframes floatBadge { 
    0%, 100% { transform: translateY(0) translateZ(40px); } 
    50% { transform: translateY(10px) translateZ(40px); } 
}
@keyframes scrollDown { 
    0% { transform: scaleY(0); transform-origin: top; } 
    50% { transform: scaleY(1); transform-origin: top; } 
    100% { transform: scaleY(0); transform-origin: bottom; } 
}

/* Observer Reveal */
.reveal-element {
    opacity: 0; transform: translateY(20px) scale(0.98); 
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; 
    will-change: opacity, transform;
}
.reveal-element.in-view { opacity: 1; transform: translateY(0) scale(1); }

/* =========================================
   3. OVERLAYS & LOADER
   ========================================= */
.intro-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; 
    z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.5s ease;
}
.intro-text {
    font-family: var(--font-display); font-size: 3rem; font-weight: 800; letter-spacing: 5px;
    color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); opacity: 0; transform: scale(0.8);
    animation: introFadeIn 1s ease forwards, pulseText 2s ease-in-out infinite 1s;
}
.curtain-layer {
    position: fixed; left: 0; width: 100%; height: 50%; background: #050505; z-index: 9990;
    transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1); border-color: var(--accent);
}
.layer-top { top: 0; border-bottom: 2px solid var(--accent); }
.layer-bottom { bottom: 0; border-top: 2px solid var(--accent); }

body.loaded .intro-overlay { opacity: 0; pointer-events: none; visibility: hidden; }
body.loaded .layer-top { transform: translateY(-100%); }
body.loaded .layer-bottom { transform: translateY(100%); }

.main-content-wrapper { opacity: 0; transform: scale(1.1); filter: blur(10px); transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s; }
body.loaded .main-content-wrapper { opacity: 1; transform: scale(1); filter: blur(0); }

.noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 50; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E"); }

/* =========================================
   4. HEADER
   ========================================= */
header {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 100;
    background: rgba(15, 15, 15, 0.90); backdrop-filter: blur(15px);
    border: 1px solid var(--border-light); padding: 10px 25px; border-radius: 100px;
    display: flex; align-items: center; gap: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    opacity: 0; transition: opacity 0.8s ease 1s; white-space: nowrap; max-width: 95vw; overflow-x: auto;
}
header::-webkit-scrollbar { display: none; }
body.loaded header { opacity: 1; }

.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; letter-spacing: -1px; flex-shrink: 0; }
.logo svg { width: 22px; height: 22px; filter: drop-shadow(0 0 8px var(--accent-glow)); }
nav ul { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
nav a { text-decoration: none; color: #aaa; font-size: 0.85rem; font-weight: 600; transition: 0.3s; }
nav a:hover { color: #fff; }
.btn-projects { background: var(--accent); color: #050505; border: none; padding: 8px 20px; border-radius: 50px; font-family: var(--font-body); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; transition: all 0.3s ease; display: flex; align-items: center; gap: 6px; text-decoration: none; }
.btn-projects:hover { background: #fff; box-shadow: 0 0 20px var(--accent-glow); color: #000; }
#toggle-mouse-btn { background: transparent; border: 1px solid var(--border-light); color: var(--text-secondary); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; }
#toggle-mouse-btn:hover, body.mouse-aximoz-ativo #toggle-mouse-btn { color: var(--accent); border-color: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }

/* =========================================
   5. HERO & TICKER (ORIGINAIS)
   ========================================= */
#hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; padding-bottom: 60px; }
.hero-bg-grid { position: absolute; inset: 0; background-size: 50px 50px; background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px); z-index: 0; mask-image: radial-gradient(circle at center, black 40%, transparent 80%); -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%); }
.hero-glow-spot { position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%); filter: blur(80px); z-index: 0; }
.hero-split-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.hero-text-content { text-align: left; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 30px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-light); font-size: 0.8rem; color: var(--accent); margin-bottom: 25px; font-weight: 600; }
.display-text { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; font-weight: 700; color: #fff; letter-spacing: -2px; }
.text-gradient { background: linear-gradient(90deg, #fff 0%, var(--text-secondary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-description { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 40px; max-width: 500px; }
.hero-description strong { color: #fff; }
.hero-actions-group { display: flex; align-items: center; gap: 30px; }
.btn-hero.primary { background: var(--accent); color: #000; padding: 16px 32px; font-size: 1rem; box-shadow: 0 0 20px var(--accent-glow); text-decoration: none; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.btn-hero.primary:hover { background: #fff; transform: translateY(-3px); }

.hero-visual-content { display: flex; justify-content: center; perspective: 1000px; }
.glass-dashboard-card { background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-top: 1px solid rgba(255, 255, 255, 0.2); border-radius: 24px; padding: 30px; width: 100%; max-width: 420px; box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05); position: relative; transform-style: preserve-3d; transition: transform 0.1s ease-out; animation: floatCard 6s ease-in-out infinite; }
.card-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.card-title-small { font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.card-balance { font-size: 2.5rem; font-weight: 700; color: #fff; font-family: var(--font-display); }
.card-balance .cents { color: #666; font-size: 1.5rem; }
.card-delta { font-size: 0.9rem; margin-top: 5px; font-weight: 600; }
.card-delta.positive { color: #10b981; }
.card-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 25px 0; }
.assets-list-mini { display: flex; flex-direction: column; gap: 15px; }
.asset-row { display: flex; align-items: center; justify-content: space-between; }
.asset-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 1rem; }
.bg-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.bg-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bg-green { background: linear-gradient(135deg, #10b981, #059669); }
.asset-info { flex: 1; margin-left: 15px; }
.asset-info span { display: block; font-weight: 700; color: #ddd; font-size: 1rem; }
.asset-info small { display: block; font-size: 0.8rem; color: #666; }
.asset-value { font-weight: 600; color: #fff; }
.floating-badge { position: absolute; top: 20px; right: -30px; background: #151515; border: 1px solid #333; padding: 10px 20px; border-radius: 12px; font-size: 0.85rem; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 8px; animation: floatBadge 5s ease-in-out infinite reverse; transform: translateZ(40px); }
.floating-badge i { color: #10b981; }
.scroll-line { position: absolute; bottom: 0; left: 50%; width: 1px; height: 100px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollDown 2s infinite; }

.clients-ticker { position: relative; z-index: 2; padding: 60px 0; border-bottom: 1px solid var(--border-light); border-top: 1px solid var(--border-light); background: #080808; display: flex; flex-direction: column; align-items: center; gap: 30px; margin-top: -1px; }
.clients-grid { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; opacity: 0.6; }
.client-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.client-logo:hover { opacity: 1; color: var(--accent); transform: scale(1.05); }

/* =========================================
   6. FUNCIONALIDADES & PLANOS (BENTO CARDS ORIGINAIS)
   ========================================= */
.bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-top: 50px; }
.bento-card {
    background: linear-gradient(160deg, rgba(30,30,30,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border: 1px solid var(--border-light); padding: 40px; border-radius: 30px;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 320px; box-shadow: var(--shadow-elevation); position: relative; 
    transform-style: preserve-3d; will-change: transform; transition: transform 0.1s ease-out; 
}
.bento-card::after { 
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%); 
    opacity: 0; transition: 0.4s; pointer-events: none; border-radius: 30px;
}
.bento-card .card-content { transform: translateZ(30px); }
.bento-card.large { grid-column: span 2; }
.bento-card:hover { border-color: var(--accent); box-shadow: 0 0 30px var(--accent-glow); }
.bento-card:hover::after { opacity: 1; }

.card-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 25px; text-shadow: 0 0 15px var(--accent-glow); }
.card-title { font-size: 1.6rem; margin-bottom: 15px; color: #fff; }
.card-desc { color: var(--text-secondary); line-height: 1.7; font-size: 1rem; margin-bottom: 20px; }

/* Pricing Grid Original */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 40px; margin-top: 50px; max-width: 900px; margin-left: auto; margin-right: auto; }
.pricing-card { background: linear-gradient(160deg, rgba(30,30,30,0.5) 0%, rgba(10,10,10,0.8) 100%); border: 1px solid var(--border-light); padding: 50px 40px; border-radius: 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-elevation); position: relative; transition: transform 0.3s ease, border-color 0.3s ease; }
.pricing-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.2); }
.pricing-card.pro { border-color: rgba(59, 130, 246, 0.4); background: linear-gradient(160deg, rgba(20,20,20,0.95) 0%, rgba(10,10,10,0.95) 100%); box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(59, 130, 246, 0.15); }
.pricing-card.pro:hover { border-color: var(--accent); }
.pricing-card.pro::after { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%); opacity: 0.5; pointer-events: none; border-radius: 30px; }
.plan-name { font-size: 1.5rem; color: var(--text-secondary); margin-bottom: 15px; font-weight: 500;}
.pricing-card.pro .plan-name { color: var(--accent); font-weight: 700; }
.plan-price { font-size: 3.5rem; color: #fff; font-family: var(--font-display); font-weight: 700; margin-bottom: 15px; display: flex; align-items: baseline; }
.plan-price .currency { font-size: 1.5rem; margin-right: 5px; color: #888; }
.plan-price .period { font-size: 1rem; color: #888; margin-left: 5px; font-weight: 400; }
.plan-desc { color: var(--text-secondary); line-height: 1.5; font-size: 0.95rem; margin-bottom: 30px; min-height: 45px; }
.btn-pricing { width: 100%; text-align: center; padding: 16px; border-radius: 50px; font-family: var(--font-body); font-weight: 700; font-size: 1rem; transition: all 0.3s ease; text-decoration: none; cursor: pointer; position: relative; z-index: 2; display: inline-block; }
.btn-pricing.outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.btn-pricing.outline:hover { background: rgba(255,255,255,0.05); border-color: #fff; }
.btn-pricing.primary { background: var(--accent); color: #000; border: none; box-shadow: 0 0 20px var(--accent-glow); }
.btn-pricing.primary:hover { background: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.5); }

/* Listas (Compartilhado) */
.plan-list { list-style: none; padding: 0; margin-bottom: 40px; flex-grow: 1; }
.plan-list li { margin-bottom: 12px; color: #ddd; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.plan-list li i { color: var(--accent); font-size: 0.8rem; }
.plan-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pricing-features li:last-child { border-bottom: none; }
.badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: #000; padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }

/* =========================================
   7. STUDIO GRIDS & SIMULADOR (Como Funciona e Aprendizado)
   ========================================= */
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 40px;}

.simulator-wrapper {
    background: linear-gradient(160deg, rgba(30,30,30,0.8) 0%, rgba(10,10,10,0.9) 100%); height: auto; 
    border-radius: 20px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: var(--shadow-elevation); position: relative; overflow: hidden;
}
.sim-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; position: relative; z-index: 2; }
.sim-tag { font-size: 0.7rem; background: var(--accent); color: #000; padding: 5px 10px; border-radius: 20px; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; }
.sim-header h4 { font-size: 1.2rem; color: #fff; margin: 0; font-family: var(--font-display); }
.sim-body { position: relative; z-index: 2; }
.range-group { margin-bottom: 20px; }
.range-group label { display: flex; justify-content: space-between; color: #aaa; font-size: 0.9rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 500; }
.range-group input[type=range] { width: 100%; -webkit-appearance: none; background: transparent; cursor: pointer; }
.range-group input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; }
.range-group input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 20px; width: 20px; border-radius: 50%; background: var(--accent); margin-top: -8px; box-shadow: 0 0 10px var(--accent-glow); transition: transform 0.2s; border: 2px solid #fff; }
.range-group input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.sim-result-box { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 15px; text-align: center; margin-top: 10px; }
.sim-result-box p { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 600; }
.sim-result-box h3 { font-size: 2.2rem; color: #fff; margin-bottom: 15px; font-family: var(--font-display); text-shadow: 0 0 10px rgba(255,255,255,0.1); }
.sim-bar-container { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.sim-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #3b82f6, #60a5fa); transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: 0 0 10px var(--accent); }

.academy-card {
    border-radius: 20px; border: 1px solid rgba(59, 130, 246, 0.15); 
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.05), 0 0 0 1px rgba(59, 130, 246, 0.05);
    transition: transform 0.1s ease-out, border-color 0.3s ease, box-shadow 0.3s ease; 
    overflow: hidden; 
}
.academy-card:hover { border-color: var(--accent); box-shadow: 0 0 30px var(--accent-glow), 0 10px 40px rgba(0, 0, 0, 0.5); }
.academy-card::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%);
    opacity: 0; transition: opacity 0.4s; pointer-events: none; border-radius: 20px; z-index: 1; 
}
.academy-card:hover::after { opacity: 1; }
.academy-card .content-floater { position: relative; z-index: 2; }

/* Nova Animação em Cascata (Aprendizado) */
.staggered-list li {
    opacity: 0; transform: translateX(-20px); transition: all 0.5s ease;
}
.reveal-element.in-view .staggered-list li { opacity: 1; transform: translateX(0); }
.reveal-element.in-view .staggered-list li:nth-child(1) { transition-delay: 0.1s; }
.reveal-element.in-view .staggered-list li:nth-child(2) { transition-delay: 0.3s; }
.reveal-element.in-view .staggered-list li:nth-child(3) { transition-delay: 0.5s; }
.reveal-element.in-view .staggered-list li:nth-child(4) { transition-delay: 0.7s; }

/* Nova Animação dos Passos (Como Funciona) */
.step-list { display: flex; flex-direction: column; gap: 15px; margin-top: 25px; }
.step-item {
    display: flex; gap: 20px; align-items: center; background: rgba(255,255,255,0.02);
    padding: 15px 20px; border-radius: 16px; border: 1px solid transparent; transition: 0.3s ease;
}
.step-item:hover {
    background: rgba(59, 130, 246, 0.05); border-color: rgba(59, 130, 246, 0.2); transform: translateX(10px);
}
.step-icon {
    width: 45px; height: 45px; border-radius: 12px; background: #111; border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.2rem; flex-shrink: 0; transition: 0.3s;
}
.step-item:hover .step-icon { background: var(--accent); color: #000; box-shadow: 0 0 15px var(--accent-glow); }
.step-text-content h4 { color: #fff; font-size: 1.1rem; margin-bottom: 5px; font-family: var(--font-body); transition: 0.3s; }
.step-text-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.4; margin: 0; transition: 0.3s; }
.step-item:hover .step-text-content h4 { color: var(--accent); }

/* =========================================
   8. NOVO BLOG / INSIGHTS (Glass Shimmer)
   ========================================= */
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-top: 40px; }
.insight-card {
    background: rgba(255,255,255,0.02); border: 1px solid var(--border-light);
    border-radius: 24px; padding: 35px; text-decoration: none; display: flex; flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden;
}
/* Shimmer (Brilho que passa pelo card) */
.insight-card::before {
    content: ""; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: 0.5s ease; z-index: 1; pointer-events: none;
}
.insight-card:hover { 
    transform: translateY(-8px); border-color: rgba(59, 130, 246, 0.3); 
    background: rgba(20,20,22,0.8); box-shadow: 0 15px 35px rgba(0,0,0,0.5); 
}
.insight-card:hover::before { left: 100%; transition: 0.7s ease; }
.insight-card * { position: relative; z-index: 2; }

.insight-badge { display: inline-block; padding: 5px 12px; background: rgba(59,130,246,0.1); color: var(--accent); border-radius: 6px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; align-self: flex-start; }
.insight-badge.purple { background: rgba(168, 85, 247, 0.1); color: #c084fc; }
.insight-badge.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.insight-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 30px; line-height: 1.4; font-family: var(--font-display); }
.insight-card .read-more { color: var(--text-secondary); font-weight: 600; font-size: 0.9rem; margin-top: auto; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.insight-card:hover .read-more { color: var(--accent); }

/* =========================================
   9. FAQ E FOOTER
   ========================================= */
.faq-grid { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 15px; }
.faq-item { border: 1px solid var(--border-light); border-radius: 10px; background: rgba(255,255,255,0.02); overflow: hidden; transition: 0.3s; }
.faq-item.active { border-color: var(--accent); background: rgba(59, 130, 246, 0.05); }
.faq-question {
    width: 100%; padding: 25px; display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; color: #fff; font-family: var(--font-body); font-size: 1.1rem;
    cursor: pointer; text-align: left;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 25px; }
.faq-answer p { padding-bottom: 25px; color: var(--text-secondary); line-height: 1.6; }
.faq-question i { transition: 0.3s; color: #666; }
.faq-item.active .faq-question i.toggle-icon { transform: rotate(45deg); color: var(--accent); }

footer { padding: 80px 0 40px; background: #050505; border-top: 1px solid var(--border-light); }
.footer-cta {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid var(--border-light); border-radius: 30px; padding: 60px;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 80px; position: relative; overflow: hidden;
}
.footer-cta::after { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 100%; background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05)); pointer-events: none; }
.cta-content h2 { font-size: 3rem; color: #fff; margin-bottom: 15px; line-height: 1.1; }
.cta-content p { color: #888; font-size: 1.1rem; max-width: 400px; }
.cta-action { text-align: center; z-index: 2; }
.cta-action .btn-hero { padding: 18px 40px; font-size: 1.1rem; background: var(--accent); color: #000; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 2fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { color: #666; max-width: 300px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.link-column h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; font-family: var(--font-body); }
.link-column a { display: block; color: #888; text-decoration: none; margin-bottom: 12px; font-size: 0.95rem; transition: 0.3s; }
.link-column a:hover { color: var(--accent); transform: translateX(5px); }
.footer-bottom { margin-top: 40px; text-align: center; color: #444; font-size: 0.9rem; }

/* =========================================
   10. MEDIA QUERIES (RESPONSIVIDADE)
   ========================================= */
@media (max-width: 992px) {
    .hero-split-layout { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-text-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero-actions-group { justify-content: center; flex-direction: column; }
    .hero-description { margin: 0 auto 30px; }
    .floating-badge { right: 0; }
}

@media (max-width: 768px) {
    header { width: 90%; justify-content: space-between; bottom: 25px; padding: 12px 20px; gap: 0; }
    nav ul { display: none; }
    .desktop-only-btn { display: none !important; }
    .bento-card.large { grid-column: span 1; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-cta { flex-direction: column; text-align: center; gap: 40px; padding: 40px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-card { padding: 40px 25px; }
    .plan-price { font-size: 3rem; }
    
    .section-bordered { margin: 20px 10px; padding: 40px 20px; border-radius: 24px; }
    .section-title { font-size: 2rem; margin-bottom: 15px; }
    
    .studio-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .simulator-wrapper { padding: 25px !important; }
    .sim-result-box h3 { font-size: 1.8rem; }
}

/* Desativa Cursor Customizado em Celular */
@media (hover: none) and (pointer: coarse) {
    #cursor-dot, #cursor-outline { display: none !important; opacity: 0 !important; visibility: hidden !important; }
    * { cursor: auto !important; }
}