@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800;900&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --neon-green: #00FF9D;
  --neon-hover: #00E58F;
  --neon-glow: rgba(0, 255, 157, 0.2);
  --bg-dark: #0A0D14;
  --card-bg: #121620;
  --card-border: #1E2532;
  --white: #F8F9FA;
  --grey-text: #9BA3B5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}



/* Background Glows */
.glow-bg { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 255, 157, 0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: -1; }
.glow-top { top: -200px; left: -100px; }
.glow-right { top: 40%; right: -200px; }
.glow-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; }

/* Utils */
.container { max-width: 1100px; width: 100%; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-neon { color: var(--neon-green); }
.text-grey { color: var(--grey-text); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* Floating Crypto Bubbles */
.crypto-bubble { position: absolute; border-radius: 50%; opacity: 0; pointer-events: none; z-index: 1; animation: popIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.crypto-bubble img { display: block; animation: float 6s ease-in-out infinite; }
.bubble-btc { top: 15%; left: 10%; animation-delay: 0.1s; }
.bubble-btc img { animation-delay: 0s; }
.bubble-eth { bottom: 20%; right: 15%; animation-delay: 0.3s; }
.bubble-eth img { animation-delay: -2s; }
.bubble-sol { top: 35%; right: 10%; animation-delay: 0.5s; }
.bubble-sol img { animation-delay: -4s; }
.bubble-doge { bottom: 15%; left: 15%; animation-delay: 0.2s; }
.bubble-doge img { animation-delay: -1s; }
.bubble-lite { top: 40%; left: 5%; animation-delay: 0.4s; }
.bubble-lite img { animation-delay: -3s; }
.bubble-usdt { top: 20%; right: 5%; animation-delay: 0.2s; }
.bubble-usdt img { animation-delay: -1.5s; }
.bubble-bnb { bottom: 10%; left: 8%; animation-delay: 0.4s; }
.bubble-bnb img { animation-delay: -3.5s; }

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.3) translateY(100px); }
  100% { opacity: 0.25; transform: scale(1) translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-40px) rotate(5deg); }
  100% { transform: translateY(0) rotate(-5deg); }
}

/* Buttons */
.btn-neon { background-color: var(--neon-green); color: #000; font-family: 'Inter', sans-serif; font-weight: 700; padding: 16px 32px; border: none; border-radius: 50px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 0 15px var(--neon-glow); transition: all 0.3s ease; font-size: 1.05rem; }
.btn-neon:hover { background-color: var(--neon-hover); box-shadow: 0 0 30px var(--neon-glow); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--neon-green); border: 1px solid var(--neon-green); padding: 12px 24px; border-radius: 50px; cursor: pointer; font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; }
.btn-outline:hover { background: rgba(0,255,157,0.1); }

/* Header */
.topbar { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 100; }
.brand-logo { height: 32px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-link { color: var(--grey-text); text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.nav-link:hover { color: var(--neon-green); }

/* Sections */
section { padding: 100px 0; position: relative; }
.section-title { font-size: 2.8rem; margin-bottom: 20px; }
.section-subtitle { font-size: 1.15rem; color: var(--grey-text); max-width: 800px; margin: 0 auto; }

/* HERO */
.hero { padding: 140px 0 180px 0; position: relative; }
.hero-glow { position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(0, 255, 157, 0.12) 0%, transparent 65%); z-index: -1; filter: blur(90px); pointer-events: none; }
.hero-content { text-align: center; }
.hero-tag { display: inline-block; font-size: 0.85rem; font-weight: 700; color: var(--neon-green); background: rgba(0,255,157,0.05); padding: 8px 16px; border-radius: 50px; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.5px;}
.hero h1 { font-size: 3.8rem; margin-bottom: 20px; letter-spacing: -1.2px; }
.hero-p { font-size: 1.25rem; color: var(--white); font-weight: 500; margin-bottom: 16px; }
.hero-sub { color: #d0d5e0; font-size: 1.05rem; margin-bottom: 40px; }
.text-orange { color: #FF9D00; font-weight: 600; }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* Cards & Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 40px 32px; transition: all 0.3s ease; text-align: left; }
.card:hover { border-color: rgba(0,255,157,0.3); transform: translateY(-5px); }
.card-icon { font-size: 2.2rem; margin-bottom: 20px; background: rgba(0,255,157,0.05); width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 16px; color: var(--neon-green); border: 1px solid rgba(0,255,157,0.1);}
.card-title { font-size: 1.4rem; margin-bottom: 12px; }
.card-text { color: var(--grey-text); font-size: 0.95rem; }



/* Jogo da Verdade Layout (Vizzonlab + Capital World Blend) */
.jv-container { max-width: 1050px; margin: 40px auto 0; display: flex; flex-direction: column; position: relative; z-index: 10; padding: 0 20px;}
.jv-row { display: grid; grid-template-columns: 1.3fr 1.6fr 50px 1.8fr; gap: 0 16px; align-items: stretch; margin-bottom: 0;}
.jv-col-feature { display: flex; align-items: center; font-size: 1.05rem; font-weight: 600; color: #a0aab2; padding: 20px 20px 20px 0; border-bottom: 1px dashed rgba(255,255,255,0.06); }
.jv-col-bad { display: flex; align-items: center; background: rgba(15, 17, 22, 0.7); border-left: 1px solid rgba(255,255,255,0.03); border-right: 1px solid rgba(255,255,255,0.03); padding: 22px 24px; color: #88929c; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.02); }
.jv-col-good { display: flex; align-items: center; background: linear-gradient(180deg, rgba(0,255,157,0.04) 0%, rgba(0,255,157,0.01) 100%); border-left: 1px solid rgba(0, 255, 157, 0.2); border-right: 1px solid rgba(0, 255, 157, 0.2); border-bottom: 1px solid rgba(0,255,157,0.05); padding: 22px 28px; color: var(--white); font-size: 1.05rem; font-weight: 600; position: relative; transition: all 0.2s;}

/* Rounded corners for the pillars */
.jv-row:nth-child(2) .jv-col-bad { border-top: 1px solid rgba(255,255,255,0.03); border-radius: 16px 16px 0 0; }
.jv-row:nth-child(2) .jv-col-good { border-top: 1px solid rgba(0,255,157,0.2); border-radius: 16px 16px 0 0; }
.jv-row:last-child .jv-col-bad { border-bottom: 1px solid rgba(255,255,255,0.03); border-radius: 0 0 16px 16px; }
.jv-row:last-child .jv-col-good { border-bottom: 1px solid rgba(0,255,157,0.2); border-radius: 0 0 16px 16px; box-shadow: 0 20px 50px rgba(0,255,157,0.05); }

/* Pillar hover states */
.jv-col-good:hover { border-color: rgba(0,255,157,0.5); box-shadow: 0 0 40px rgba(0,255,157,0.1) inset; background: rgba(0,255,157,0.06); }
.jv-col-bad:hover { background: rgba(20, 22, 28, 0.9); }

.jv-col-vs { display: flex; align-items: center; justify-content: center; }
.vs-circle { width: 40px; height: 40px; background: #13161c; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 900; color: #444; border: 1px solid rgba(255,255,255,0.03); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }

/* Headers */
.jv-bad-header { display: flex; align-items: center; justify-content: center; background: #0D1014; border-radius: 16px; padding: 18px; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #555; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.jv-good-header { display: flex; align-items: center; justify-content: center; background: linear-gradient(90deg, #00C67A 0%, #00FF9D 100%); border-radius: 16px; padding: 18px; font-weight: 900; font-size: 1rem; text-transform: uppercase; letter-spacing: 1.5px; color: #000; box-shadow: 0 20px 40px rgba(0,255,157,0.3); position: relative; }
.vip-badge { position: absolute; top: -14px; right: 20px; background: #050505; color: #00FF9D; font-size: 0.65rem; font-weight: 900; padding: 5px 14px; border-radius: 50px; border: 1px solid #00FF9D; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0,255,157,0.2); }

/* Icons */
.jv-x { color: #FF4C4C; margin-right: 12px; font-weight: 900; font-size: 1.1rem; width: 24px; height: 24px; text-align: center; }
.jv-v { color: #00FF9D; margin-right: 12px; font-weight: 900; font-size: 1rem; width: 22px; height: 22px; text-align: center; background: rgba(0,255,157,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 10px rgba(0,255,157,0.2); }

.mobile-label { display: none; }
@media (max-width: 900px) {
    .jv-container { overflow-x: auto; padding-bottom: 20px;}
    .jv-row { min-width: 850px; }
}

/* Evolution Growth Chart */
.evolution-chart { max-width: 960px; margin: 40px auto 0; }
.evo-svg { width: 100%; height: auto; display: block; }

/* KPI Floating Cards */
.kpi-card { background: rgba(10, 20, 30, 0.7); backdrop-filter: blur(12px); border: 1px solid rgba(0, 255, 157, 0.15); border-radius: 12px; padding: 14px 18px; color: white; font-family: 'Inter', sans-serif; }
.kpi-card--highlight { border-color: rgba(0, 255, 157, 0.3); background: rgba(0, 255, 157, 0.06); }
.kpi-card--glow { border-color: rgba(0, 255, 157, 0.5); background: rgba(0, 255, 157, 0.08); box-shadow: 0 0 30px rgba(0, 255, 157, 0.15); }
.kpi-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; margin-bottom: 4px; }
.kpi-value { font-size: 22px; font-weight: 900; color: #00FF9D; line-height: 1.2; }
.kpi-sub { font-size: 11px; color: rgba(0, 255, 157, 0.7); font-weight: 600; margin-top: 4px; }

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    position: relative;
}

@media (max-width: 992px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}

@media (max-width: 600px) {
    .steps-grid { grid-template-columns: 1fr; gap: 32px; }
}

.step-card {
    background: rgba(10, 20, 30, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 16px 40px rgba(0, 255, 157, 0.1);
    background: rgba(10, 20, 30, 0.6);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00FF9D, rgba(0, 255, 157, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 0px;
    right: 16px;
    line-height: 1;
    user-select: none;
}

.step-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 255, 157, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FF9D;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.1);
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.step-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.step-time {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00FF9D;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    margin-top: 24px;
}

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.faq-item { background: transparent; border-bottom: 1px solid var(--card-border); padding: 24px 0; text-align: left; }
.faq-item h4 { font-size: 1.15rem; margin-bottom: 12px; color: var(--white); }
.faq-item p { color: var(--grey-text); font-size: 0.95rem; }

/* Footer */
.footer { border-top: 1px solid var(--card-border); padding: 30px 0; text-align: center; }

/* Form */
.form-container { max-width: 700px; margin: 0 auto; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 40px; }
.progress-bar-bg { width: 100%; height: 6px; background: #222; border-radius: 10px; overflow: hidden; margin-top: 12px; }
.progress-bar { height: 100%; background: var(--neon-green); transition: width 0.4s ease; }
.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.form-group { margin-bottom: 24px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.95rem; color: #E0E0E0; }
.form-control { width: 100%; background: var(--bg-dark); border: 1px solid var(--card-border); color: #FFF; padding: 18px 24px; border-radius: 50px; font-family: 'Inter', sans-serif; font-size: 1rem; transition: all 0.3s; }
.form-control:focus { outline: none; border-color: var(--neon-green); box-shadow: 0 0 10px rgba(0,255,157,0.1); }
select.form-control { appearance: none; background-image: url('data:image/svg+xml;utf8,<svg fill="%2300FF9D" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); background-repeat: no-repeat; background-position: calc(100% - 20px) center; }

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .faq-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; margin-bottom: 40px;}
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { align-items: center; }
  .topbar { padding: 24px; }
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
}

/* Seamless List Layout */
.minimal-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 40px;
    border-radius: 16px;
    background: transparent;
    transition: all 0.4s ease;
    border-left: 3px solid rgba(255, 255, 255, 0.05);
}
.feature-row:hover {
    background: rgba(0, 255, 157, 0.03);
    border-left-color: #00FF9D;
    transform: translateX(12px);
}
.feature-icon {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 0 15px rgba(0, 255, 157, 0.15));
    flex-shrink: 0;
}
.feature-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: #fff;
}
.feature-content p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}
/* --- COMPREHENSIVE MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    /* Hero & Header */
    .topbar { flex-direction: row; gap: 0; padding: 16px 24px; justify-content: space-between; align-items: center; }
    .nav-links { gap: 0; }
    .hide-mobile { display: none !important; }
    .brand-logo { height: 26px; }
    .btn-nav { padding: 8px 16px; font-size: 0.75rem; border-width: 1px; }
    
    .hero { padding: 60px 0 80px 0; }
    .hero-glow { width: 400px; height: 400px; filter: blur(40px); }
    .hero h1 { font-size: 2.2rem; margin-bottom: 16px; line-height: 1.1; }
    .hero-sub { font-size: 0.95rem; margin-bottom: 32px; line-height: 1.5; }
    .hero-p { font-size: 1.1rem; margin-bottom: 16px; line-height: 1.4; }
    .hero-actions { width: 100%; }
    .btn-neon { padding: 14px 24px; font-size: 0.9rem; width: 100%; text-align: center; }
    .crypto-bubble { transform: scale(0.6); opacity: 0.08 !important; }
    
    /* Comparativo (Jogo da Verdade) - Vertical Layout Instead of Swipeable */
    .jv-container { display: flex; flex-direction: column; gap: 16px; padding: 0; overflow-x: visible; margin-top: 32px; }
    .jv-row { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 0; min-width: unset; background: rgba(15, 17, 22, 0.4); margin-bottom: 0px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
    .jv-row.jv-header { display: none; }
    .jv-col-feature { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 16px; justify-content: center; text-align: center; font-size: 1.15rem; color: #fff; border-radius: 16px 16px 0 0; background: rgba(255,255,255,0.02); }
    .jv-col-bad, .jv-col-good { border: none !important; padding: 16px 20px; justify-content: flex-start; align-items: center; border-radius: 0 !important; font-size: 0.95rem; line-height: 1.4; }
    .jv-col-bad { border-bottom: 1px dashed rgba(255,255,255,0.05) !important; background: transparent !important; }
    .jv-col-good { background: linear-gradient(180deg, rgba(0,255,157,0.1) 0%, rgba(0,255,157,0.02) 100%) !important; border-radius: 0 0 16px 16px !important; box-shadow: none !important; margin-bottom: 0; }
    .jv-col-vs { display: none; }
    
    .jv-col-bad .jv-x { margin-right: 8px; font-size: 1.2rem; }
    .jv-col-good .jv-v { margin-right: 8px; width: 24px; height: 24px; font-size: 1rem; }
    
    .mobile-label { display: inline-block; font-weight: 800; font-size: 0.75rem; text-transform: uppercase; margin-right: 8px; letter-spacing: 1px; }
    .mobile-label.bad-label { color: rgba(255,255,255,0.4); }
    .mobile-label.good-label { color: #00FF9D; }
    
    /* Diferenciais */
    .feature-row { flex-direction: column; gap: 12px; padding: 24px 20px; align-items: center; text-align: center; }
    .feature-row:hover { transform: translateY(-4px); }
    .feature-icon { font-size: 3rem; margin-bottom: 8px; }

    /* Form */
    .form-container { padding: 24px 16px; }
    .form-control { padding: 14px 20px; font-size: 0.9rem; }
}

/* Escalar Headline Highlight */
.highlight-escalar {
    position: relative;
    display: inline-block;
    color: var(--neon-green);
    font-style: italic;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
}
.highlight-escalar::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -5%;
    width: 110%;
    height: 16px;
    background: rgba(0, 255, 157, 0.3);
    transform: skewX(-15deg) rotate(-2deg);
    z-index: -1;
    filter: blur(2px);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
