/* ════════════════════════════════════════════════════
   VEKTOR WEB — FUTURISTIC THEME v2
   Shared stylesheet for all preview pages
════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── TOKENS ── */
:root {
  --bg:          #030c17;
  --bg-2:        #050e1d;
  --bg-3:        #071426;
  --bg-card:     #060f1e;
  --cyan:        #00c8ff;
  --cyan-b:      #38d9ff;
  --cyan-glow:   rgba(0, 200, 255, 0.14);
  --cyan-line:   rgba(0, 200, 255, 0.12);
  --violet:      #7c4dff;
  --violet-glow: rgba(124, 77, 255, 0.14);
  --green:       #00e676;
  --text:        #e8f0ff;
  --muted:       rgba(232, 240, 255, 0.55);
  --dim:         rgba(232, 240, 255, 0.25);
  --line:        rgba(0, 200, 255, 0.1);
  --grid:        rgba(0, 200, 255, 0.04);
  --fh: 'Space Grotesk', sans-serif;
  --fm: 'Space Mono', monospace;
  --fb: 'Inter', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%; /* prevent iOS auto-zoom */
  text-size-adjust: 100%;
}
body { font-family: var(--fb); background: var(--bg); color: var(--text); overflow-x: hidden; min-height: 100vh; display: flex; flex-direction: column; zoom: 1.3; }
a { text-decoration: none; color: inherit; }
a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent; /* remove iOS tap flash */
  touch-action: manipulation; /* kill 300ms delay on iOS */
}
img { max-width: 100%; display: block; }
main { flex: 1; }
/* iOS momentum scroll in containers */
.mobile-nav { -webkit-overflow-scrolling: touch; }

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--cyan));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 1000; transition: width 0.1s linear;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── TOPBAR ── */
.topbar {
  position: sticky; top: 0; z-index: 400;
  background: rgba(3, 12, 23, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4); /* iOS Safari */
  border-bottom: 1px solid var(--line);
  /* iOS notch support */
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.topbar-inner {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; max-width: 1280px; margin: 0 auto;
  justify-content: space-between;
  padding: 0.3rem clamp(1rem, 3vw, 2.5rem);
}

.brand { display: flex; align-items: center; gap: 0.55rem; }
.brand img { height: 160px; width: auto; object-fit: contain; animation: logoPulse 3s ease-in-out infinite; }
.brand .mascot { height: 128px; width: auto; animation: mascotBounce 2s ease-in-out infinite; }

@keyframes logoPulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 6px rgba(0,200,255,0.35)); }
  50%       { transform: scale(1.07); filter: drop-shadow(0 0 18px rgba(0,200,255,0.85)); }
}
@keyframes mascotBounce { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-4px) } }

.nav-container { flex: 1; display: flex; justify-content: center; }
.nav-main { display: flex; gap: 1rem; list-style: none; align-items: center; flex-wrap: nowrap; justify-content: center; }
.nav-link {
  font-family: var(--fm); font-size: 0.7rem; font-weight: 400;
  color: rgba(190,210,240,0.6); transition: color 0.2s;
  padding: 6px 2px; text-transform: uppercase; letter-spacing: 0.13em;
  white-space: nowrap; position: relative; text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--cyan); }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }

.topbar-actions, .actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* ── TOPBAR BUTTONS: flat terminal style — desktop only ── */
@media (min-width: 901px) {
  .topbar .btn.whatsapp,
  .topbar .btn.burst {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    animation: none;
    text-shadow: none;
    padding: 6px 2px;
    font-family: var(--fm);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border-radius: 0;
  }
  .topbar .btn.whatsapp { color: rgba(0,230,118,0.72); }
  .topbar .btn.burst     { color: rgba(179,136,255,0.72); }
  .topbar .btn.whatsapp:hover {
    color: #00e676; background: transparent; box-shadow: none;
    border-color: transparent; transform: none;
    text-shadow: 0 0 8px rgba(0,230,118,0.45);
  }
  .topbar .btn.burst:hover {
    color: #b388ff; background: transparent; box-shadow: none;
    border-color: transparent; transform: none;
    text-shadow: 0 0 8px rgba(179,136,255,0.45);
  }
  .topbar .btn::after { display: none; }
  .topbar .btn.whatsapp svg { filter: none; width: 13px; height: 13px; flex-shrink: 0; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-family: var(--fh); font-weight: 700; font-size: 0.88rem;
  border-radius: 4px; border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
  text-decoration: none; line-height: 1.2;
  position: relative; overflow: hidden;
  letter-spacing: 0.04em;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
/* shimmer sweep layer */
.btn::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn:hover::after { left: 160%; }

/* WhatsApp — green neon */
.btn.whatsapp {
  background: rgba(0, 18, 9, 0.9);
  color: #00e676;
  border-color: rgba(0, 230, 118, 0.7);
  box-shadow: 0 0 10px rgba(0,230,118,0.2), inset 0 0 10px rgba(0,230,118,0.04);
  text-shadow: 0 0 8px rgba(0,230,118,0.55);
}
.btn.whatsapp svg { flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(0,230,118,0.6)); }
.btn.whatsapp:hover {
  color: #69f0ae;
  border-color: #00e676;
  box-shadow: 0 0 22px rgba(0,230,118,0.45), 0 6px 20px rgba(0,200,83,0.28), inset 0 0 14px rgba(0,230,118,0.06);
  transform: translateY(-2px);
  text-shadow: 0 0 12px rgba(105,240,174,0.7);
}

/* Burst — violet neon (efeito espacial) */
.btn.burst {
  background: rgba(8, 4, 20, 0.9);
  color: #b388ff;
  border-color: rgba(124, 77, 255, 0.7);
  box-shadow: 0 0 10px rgba(124,77,255,0.25), inset 0 0 10px rgba(124,77,255,0.05);
  text-shadow: 0 0 8px rgba(179,136,255,0.55);
  animation: burstPulse 3s ease-in-out infinite;
}
.btn.burst:hover {
  color: #d500f9;
  border-color: rgba(124, 77, 255, 1);
  box-shadow: 0 0 26px rgba(124,77,255,0.6), 0 6px 24px rgba(102,126,234,0.35), inset 0 0 16px rgba(124,77,255,0.08);
  transform: translateY(-2px);
  text-shadow: 0 0 14px rgba(213,0,249,0.7);
  animation: none;
}
@keyframes burstPulse {
  0%,100% { box-shadow: 0 0 10px rgba(124,77,255,0.25), inset 0 0 10px rgba(124,77,255,0.05); }
  50%      { box-shadow: 0 0 20px rgba(124,77,255,0.5),  inset 0 0 14px rgba(124,77,255,0.08); border-color: rgba(124,77,255,1); }
}

/* CTA outline */
.btn.cta {
  background: rgba(0,200,255,0.04);
  border-color: rgba(0,200,255,0.55); color: var(--cyan);
  box-shadow: 0 0 8px rgba(0,200,255,0.12);
  text-shadow: 0 0 6px rgba(0,200,255,0.4);
}
.btn.cta:hover {
  background: rgba(0,200,255,0.1);
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(0,200,255,0.35);
  transform: translateY(-1px);
}

/* Legacy button aliases for backward compat */
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, #00c853 0%, #69f0ae 100%);
  color: #011a07; font-family: var(--fh); font-weight: 700;
  font-size: 0.77rem; border-radius: 50px; border: none;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,83,0.3); }
.btn-wa svg { flex-shrink: 0; }
.btn-burst {
  padding: 0.55rem 1.1rem;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  border: 2px solid rgba(255,255,255,0.2); color: #fff; font-family: var(--fh);
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer; border-radius: 50px; transition: all 0.3s; white-space: nowrap;
  box-shadow: 0 0 20px rgba(102,126,234,0.3);
}
.btn-burst:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(102,126,234,0.5); }

/* Hamburger */
.hamburguer {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburguer span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; transition: all 0.3s; }

/* ── MOBILE NAV (injected by main.js) ── */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(3,12,23,0.75); z-index: 490; backdrop-filter: blur(4px);
}
.mobile-nav-overlay.visivel { display: block; }
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 1rem; right: 1rem;
  background: rgba(5,14,29,0.97); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 8px;
  padding: 1rem; z-index: 500;
  flex-direction: column; gap: 0.4rem; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.mobile-nav.aberto { display: flex; }
.mobile-nav-close {
  background: none; border: none; color: var(--muted);
  font-size: 1.4rem; cursor: pointer; text-align: right;
  display: block; width: 100%; padding: 0 0.5rem 0.5rem;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-nav .nav-link {
  font-size: 0.75rem; padding: 0.55rem 0.8rem;
  border-radius: 4px; transition: all 0.2s;
}
.mobile-nav .nav-link:hover { background: rgba(0,200,255,0.08); }

/* WhatsApp & burst as plain nav links inside mobile menu */
.mobile-nav .nav-link.nav-wa { color: rgba(0,230,118,0.6); }
.mobile-nav .nav-link.nav-wa:hover { color: #00e676; background: rgba(0,230,118,0.08); }
.mobile-nav .nav-link.nav-burst { color: rgba(179,136,255,0.6); }
.mobile-nav .nav-link.nav-burst:hover { color: #b388ff; background: rgba(179,136,255,0.08); }

/* ── PAGE BACKGROUNDS ── */
.page-bg {
  position: fixed; inset: 0; z-index: -2;
  background: linear-gradient(160deg, #030c17 0%, #060f1e 50%, #030c17 100%);
}
.blobs { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.1; }
.b1 { width: 600px; height: 600px; background: rgba(0,200,255,0.9); top: -15%; left: -15%; animation: blobFloat 22s ease-in-out infinite; }
.b2 { width: 450px; height: 450px; background: rgba(124,77,255,0.9); top: 35%; right: -12%; animation: blobFloat 28s ease-in-out infinite reverse; }
.b3 { width: 350px; height: 350px; background: rgba(0,200,255,0.6); bottom: -8%; left: 38%; animation: blobFloat 19s ease-in-out infinite 6s; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(40px,-25px) scale(1.06)} 66%{transform:translate(-25px,35px) scale(0.94)} }

/* Space background */
#space-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -2; }
.space-nebula {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,0,150,.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(120,0,255,.20) 0%, transparent 60%),
    radial-gradient(ellipse 70% 45% at 50% 80%, rgba(0,200,255,.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 70% 60%, rgba(255,140,0,.12) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 30% 70%, rgba(0,255,180,.10) 0%, transparent 60%);
  mix-blend-mode: screen;
  filter: blur(55px) saturate(145%);
}

/* Rocket */
.rocket-wrap {
  position: fixed; bottom: -400px; left: 50%;
  transform: translateX(-50%) rotate(0deg);
  z-index: 9999; pointer-events: none;
}
.rocket-animated {
  width: 750px; height: auto; display: block;
  filter: drop-shadow(0 0 16px rgba(0,200,255,0.5));
}

/* ── GRID OVERLAY ── */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
}
.scanlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px);
}

/* ── WRAP ── */
.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem); }
.page-content { padding: clamp(2.5rem, 5vh, 4.5rem) 0 clamp(3rem, 6vh, 5rem); }

/* ── SECTION LABELS ── */
.sec-label {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--fm); font-size: 0.75rem; letter-spacing: 0.3em;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 1.2rem;
}
.sec-label::before { content: ''; display: block; width: 1.8rem; height: 1px; background: var(--cyan); opacity: 0.7; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--fm); font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem;
}
.kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: livePulse 1.8s ease-in-out infinite; }
@keyframes livePulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(0,230,118,.5)} 50%{opacity:.7;box-shadow:0 0 0 6px rgba(0,230,118,0)} }

/* ── TYPOGRAPHY ── */
.h1-page {
  font-family: var(--fh); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02;
  letter-spacing: -0.03em; color: var(--text);
  text-shadow: 0 0 80px rgba(0,200,255,0.18);
  margin-bottom: 1rem;
}
.h1-hero {
  font-family: var(--fh); font-weight: 700;
  font-size: clamp(1.4rem, 3.6vw, 3rem); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--text);
  text-shadow: 0 0 80px rgba(0,200,255,0.2);
}
.h1-hero .c1 { color: var(--cyan); }
.h1-hero .c2 { background: linear-gradient(135deg,var(--cyan),var(--violet)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.h2-sec {
  font-family: var(--fh); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1;
  letter-spacing: -0.022em; color: var(--text); margin-bottom: 1rem;
}
.h2-sec .accent { color: var(--cyan); }

.lead {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem); line-height: 1.8;
  color: var(--muted); font-weight: 300; max-width: 52ch;
}
.lead strong { color: var(--text); font-weight: 500; }
.lead.wide { max-width: 68ch; }
.highlight { color: var(--cyan); font-weight: 500; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border: 1px solid var(--cyan); color: var(--cyan);
  font-family: var(--fh); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em; border-radius: 3px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: rgba(0,200,255,0.1); transform: scaleX(0); transform-origin: left; transition: 0.35s; z-index: 0; }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { box-shadow: 0 0 22px rgba(0,200,255,0.2); transform: translateY(-1px); }
.btn-primary > * { position: relative; z-index: 1; }

/* ── CHIPS ── */
.chip {
  font-family: var(--fm); font-size: 0.54rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.24rem 0.7rem;
  border: 1px solid var(--cyan-line); color: var(--muted);
  border-radius: 2px; transition: all 0.3s; display: inline-block;
}
.chip:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,200,255,0.06); }

.chips-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--fm); font-size: 0.73rem; letter-spacing: 0.1em;
  border: 1px solid var(--cyan-line); padding: 0.22rem 0.65rem;
  border-radius: 20px; color: var(--muted);
}
.badge i { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); animation: livePulse 2s ease-in-out infinite; }

/* ── CARDS (generic) ── */
.card-base {
  border: 1px solid var(--line); border-radius: 6px;
  background: rgba(0,0,0,0.25); transition: all 0.35s;
  position: relative; overflow: hidden;
}
.card-base::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0,200,255,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.card-base:hover { border-color: rgba(0,200,255,0.28); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.card-base:hover::before { opacity: 1; }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center; padding: clamp(4rem, 8vh, 7rem) clamp(1rem, 4vw, 3rem);
  position: relative; background: var(--bg-2);
}
.cta-section::before {
  content: ''; position: absolute;
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.07) 0%, transparent 70%);
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-section .cta-glow { display: none; } /* hide old glow */

/* ── FOOTER ── */
.footer {
  background: var(--bg); border-top: 1px solid var(--line);
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  padding-bottom: max(1.4rem, env(safe-area-inset-bottom, 1.4rem));
  padding-left: max(clamp(1rem, 4vw, 3rem), env(safe-area-inset-left, 0px));
  padding-right: max(clamp(1rem, 4vw, 3rem), env(safe-area-inset-right, 0px));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fm); font-size: 0.73rem;
  letter-spacing: 0.1em; color: rgba(232, 240, 255, 0.55);
  flex-wrap: wrap; gap: 0.8rem;
}
.footer-brand { color: var(--cyan); font-weight: 700; font-size: 0.68rem; }
.footer .wrap { display: contents; }
.footer .line { display: contents; }

/* ── REVEAL ANIMATIONS ── */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.show { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: 0.1s; } .rv.d2 { transition-delay: 0.22s; }
.rv.d3 { transition-delay: 0.34s; } .rv.d4 { transition-delay: 0.46s; }
.rv.d5 { transition-delay: 0.58s; } .rv.d6 { transition-delay: 0.7s; }

/* ── FLYBY OVERLAY ── */
.flyby-overlay { position:fixed; inset:0; pointer-events:none; overflow:hidden; z-index:99999; transform:translateZ(0); backface-visibility:hidden; }
.flyby-img { position:absolute; width:clamp(140px,18vw,320px); height:auto; top:20%; opacity:0; transform:translate3d(0,0,0); will-change:transform; backface-visibility:hidden; }
.flyby-img:nth-child(2) { top:60%; }
@keyframes flyRightToLeft { 0%{transform:translateX(110vw);opacity:1} 100%{transform:translateX(-130vw);opacity:1} }
@keyframes flyLeftToRight { 0%{transform:translateX(-130vw);opacity:1} 100%{transform:translateX(110vw);opacity:1} }
.flyby-right-to-left { animation: flyRightToLeft 9s linear forwards; }
.flyby-left-to-right { animation: flyLeftToRight 9s linear forwards; }

/* ── SPACESHIP LAYER ── */
.spaceship-layer { position:fixed; inset:0; pointer-events:none; z-index:9999; overflow:hidden; }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-family: var(--fm); font-size: 0.5rem; letter-spacing: 0.25em;
  color: var(--dim); text-transform: uppercase; z-index: 10;
  opacity: 0; animation: fadeUp 0.5s ease 2.5s forwards, scrollBounce 2.5s ease-in-out 2.8s infinite;
}
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--cyan), transparent); opacity: 0.4; }

/* ── KEYFRAMES ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── LIVE BADGE ── */
.live-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--fm); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green);
  border: 1px solid rgba(0,230,118,0.25); background: rgba(0,230,118,0.05);
  padding: 0.22rem 0.7rem; border-radius: 20px; margin-bottom: 1.4rem;
}
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: livePulse 1.8s ease-in-out infinite; }

/* ════════════════════════════════════════════════════
   INICIO — Hero
════════════════════════════════════════════════════ */
.hero-section {
  min-height: auto; position: relative; overflow: hidden;
  display: flex; align-items: flex-start; justify-content: center;
}
#particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-inner {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 6.5rem 2rem 4rem; max-width: 960px;
}
.hero-eyebrow {
  font-family: var(--fm); font-size: 0.78rem; letter-spacing: 0.3em;
  color: var(--cyan); text-transform: uppercase;
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 2rem; height: 1px; background: var(--cyan); opacity: 0.55; }
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--cyan)); }
.hero-title-wrap { opacity: 0; animation: fadeUp 1s ease 0.75s forwards; margin-bottom: 0.5rem; }
.hero-sub { max-width: 54ch; margin-top: 1.4rem; font-style: italic; opacity: 0; animation: fadeUp 0.8s ease 1s forwards; }
.hero-cta, .cta-row { display: flex; gap: 0.9rem; margin-top: 2.2rem; flex-wrap: wrap; justify-content: center; opacity: 0; animation: fadeUp 0.7s ease 1.4s forwards; }
.inline-highlights { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; opacity: 0; animation: fadeUp 0.7s ease 1.2s forwards; }
.inline-chip { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--fm); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.7rem; border: 1px solid var(--cyan-line); border-radius: 2px; color: var(--muted); transition: all 0.3s; }
.inline-chip:hover { border-color: var(--cyan); color: var(--cyan); }
.inline-chip svg { flex-shrink: 0; color: var(--cyan); }

/* FLOW SECTIONS (inicio) */
.flow-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  padding: clamp(4rem,8vh,6.5rem) 0;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.flow-section.is-visible { opacity: 1; transform: translateY(0); }
/* Contact section is always visible (no scroll reveal needed) */
.flow-section.contact-section { opacity: 1 !important; transform: none !important; }
.flow-section.reverse { direction: rtl; }
.flow-section.reverse > * { direction: ltr; }
.flow-text { font-size: clamp(0.95rem,1.4vw,1.08rem); line-height: 1.85; color: var(--muted); font-weight: 300; margin-top: 0.8rem; }
.flow-text.highlight { color: var(--cyan); font-weight: 500; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.2rem; margin-top: 2rem; }
.feature-item {
  border: 1px solid var(--cyan-line); border-radius: 6px;
  padding: 1.4rem 1.5rem; background: rgba(0,200,255,0.03);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-item::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--cyan),var(--violet)); transform: scaleX(0); transform-origin: left; transition: 0.4s; }
.feature-item:hover { border-color: rgba(0,200,255,0.3); background: rgba(0,200,255,0.06); }
.feature-item:hover::after { transform: scaleX(1); }
.feature-item h3 { font-family: var(--fh); font-weight: 600; font-size: 0.95rem; color: var(--text); margin-bottom: 0.4rem; }
.feature-item p { font-size: 0.84rem; line-height: 1.65; color: var(--muted); font-weight: 300; }
.feature-icon { width: 40px; height: 40px; border: 1px solid var(--cyan-line); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--cyan); background: rgba(0,200,255,0.05); margin-bottom: 0.9rem; transition: all 0.3s; }
.feature-item:hover .feature-icon { background: rgba(0,200,255,0.12); border-color: var(--cyan); box-shadow: 0 0 14px var(--cyan-glow); }

/* Mini features */
.mini-features { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.4rem; }
.mini-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; color: var(--muted); }
.mini-bullet { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mini-bullet.c1 { background: var(--cyan); box-shadow: 0 0 8px rgba(0,200,255,0.5); }
.mini-bullet.c2 { background: var(--violet); box-shadow: 0 0 8px rgba(124,77,255,0.5); }
.mini-bullet.c3 { background: var(--green); box-shadow: 0 0 8px rgba(0,230,118,0.5); }
.mini-bullet.c4 { background: #ff9800; box-shadow: 0 0 8px rgba(255,152,0,0.5); }

/* Hero visual cards */
.hero-visual-card {
  background: rgba(0,200,255,0.04); border: 1px solid var(--cyan-line);
  border-radius: 12px; padding: 2.5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero-visual-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(0,200,255,0.1), transparent 70%); pointer-events: none; }
.hero-visual-card .visual-glow { display: none; }
.hero-visual-card h3 { font-family: var(--fh); font-weight: 700; font-size: 1.3rem; color: var(--text); margin: 1rem 0 0.5rem; }
.hero-visual-card p { font-size: 0.88rem; color: var(--muted); font-weight: 300; }
.hero-visual-card svg { color: var(--cyan); }

/* Stat card (impact) */
.impact-card { background: rgba(0,200,255,0.04); border: 1px solid var(--cyan-line); border-radius: 8px; padding: 2rem; text-align: center; }
.impact-stat { display: flex; flex-direction: column; align-items: center; }
.stat-number { font-family: var(--fh); font-weight: 700; font-size: 4rem; color: var(--cyan); line-height: 1; }
.stat-label { font-family: var(--fm); font-size: 0.65rem; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; margin-top: 0.5rem; }

/* Padrão card */
.padrão-card { background: rgba(0,0,0,0.3); border: 1px solid var(--cyan-line); border-radius: 8px; padding: 2rem; }
.padrão-card h3 { font-family: var(--fh); font-weight: 700; font-size: 1.2rem; color: var(--text); margin-bottom: 0.6rem; }
.padrão-card p { font-size: 0.88rem; line-height: 1.7; color: var(--muted); font-weight: 300; }

/* ════════════════════════════════════════════════════
   SERVIÇOS
════════════════════════════════════════════════════ */
.cascade-menu-wrap { margin-bottom: 2rem; position: relative; z-index: 200; }
.cascade-trigger {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  background: rgba(0,200,255,0.05);
  border: 1px solid var(--cyan-line); border-radius: 4px;
  font-family: var(--fm); font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); cursor: pointer; transition: all 0.3s;
}
.cascade-trigger:hover { border-color: var(--cyan); color: var(--cyan); }
.cascade-trigger.is-open { border-color: var(--cyan); color: var(--cyan); background: rgba(0,200,255,0.08); }
.cascade-arrow { transition: transform 0.3s; }
.cascade-trigger.is-open .cascade-arrow { transform: rotate(180deg); }
.cascade-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: rgba(8,18,35,0.98); border: 1px solid rgba(0,200,255,0.25);
  border-radius: 6px; z-index: 100; min-width: 400px; max-width: 90vw;
  backdrop-filter: blur(20px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 20px rgba(0,200,255,0.06);
}
.cascade-dropdown.is-open { display: block; }
.cascade-content { padding: 1rem; }
.cascade-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.3rem; }
.cascade-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.6rem; border-radius: 3px;
  font-family: var(--fm); font-size: 0.58rem; letter-spacing: 0.06em;
  color: var(--muted); background: none; border: none; cursor: pointer;
  transition: all 0.2s; text-align: left;
}
.cascade-item:hover { background: rgba(0,200,255,0.08); color: var(--cyan); }
.cascade-bullet { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; background: var(--cyan); opacity: 0.6; }

/* Services grid */
.services-page { padding: clamp(2rem,4vh,3.5rem) 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; border: 1px solid var(--line); background: var(--line);
  margin-top: 2.2rem;
}
.service-card {
  background: var(--bg); padding: 2rem 1.8rem;
  position: relative; overflow: hidden; cursor: pointer; transition: background 0.3s;
  display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover { background: var(--bg-3); }
.service-card:hover::after { transform: scaleX(1); }
.service-thumb { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.service-thumb img { max-height: 70px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 0 8px rgba(0,200,255,0.25)); transition: filter 0.3s; }
.service-card:hover .service-thumb img { filter: drop-shadow(0 0 14px rgba(0,200,255,0.5)); }
.service-meta { flex: 1; }
.service-meta h3 { font-family: var(--fh); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 0.3rem; }
.service-tagline { font-size: 0.82rem; line-height: 1.6; color: var(--muted); font-weight: 300; }
.service-arrow { color: var(--cyan); opacity: 0; transform: translate(-5px,5px); transition: all 0.3s; position: absolute; bottom: 1.3rem; right: 1.3rem; }
.service-arrow svg { width: 18px; height: 18px; }
.service-card:hover .service-arrow { opacity: 1; transform: translate(0,0); }
.project-badge {
  display: inline-block; font-family: var(--fm); font-size: 0.5rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.16rem 0.5rem;
  border-radius: 2px; margin-bottom: 0.6rem; background: rgba(0,200,255,0.1);
  border: 1px solid var(--cyan-line); color: var(--cyan);
}
.project-badge.premium { background: rgba(124,77,255,0.12); border-color: rgba(124,77,255,0.3); color: var(--violet); }
.project-badge.new { background: rgba(0,230,118,0.1); border-color: rgba(0,230,118,0.3); color: var(--green); }

/* Services CTA */
.services-cta {
  margin-top: 3rem; padding: 2.5rem; text-align: center;
  border: 1px solid var(--line); border-radius: 8px;
  background: rgba(0,200,255,0.03);
}
.services-cta h3 { font-family: var(--fh); font-weight: 700; font-size: 1.2rem; color: var(--text); margin-bottom: 0.6rem; }
.services-cta p { color: var(--muted); font-size: 0.92rem; font-weight: 300; margin-bottom: 1.5rem; }

/* Modal */
.service-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(3,12,23,0.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1rem;
}
.service-modal-overlay.is-open { display: flex; }
.service-modal {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px;
  max-width: 520px; width: 100%; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--muted); cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--cyan); }
.modal-content { padding: 2.5rem; }
.modal-content h2 { font-family: var(--fh); font-weight: 700; font-size: 1.4rem; color: var(--text); margin-bottom: 1rem; }
.modal-body p { font-size: 0.9rem; line-height: 1.75; color: var(--muted); font-weight: 300; }
.modal-actions { margin-top: 1.8rem; }
.btn-cta { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.72rem 1.6rem; background: linear-gradient(135deg,var(--cyan),var(--cyan-b)); color: var(--bg); font-family: var(--fh); font-weight: 700; font-size: 0.85rem; border-radius: 4px; transition: all 0.3s; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,255,0.3); }

/* ════════════════════════════════════════════════════
   PORTFÓLIO
════════════════════════════════════════════════════ */
.portfolio-page { padding: clamp(2rem,4vh,3.5rem) 0; }
.portfolio-head { text-align: center; margin-bottom: 3rem; }
.portfolio-kicker { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--fm); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; }
.portfolio-kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: livePulse 1.8s ease-in-out infinite; }
.portfolio-head h1 { font-family: var(--fh); font-weight: 700; font-size: clamp(2.2rem,5vw,4rem); letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.8rem; }
.portfolio-sub { font-size: clamp(0.95rem,1.3vw,1.05rem); line-height: 1.75; color: var(--muted); font-weight: 300; max-width: 58ch; margin: 0 auto; }

.portfolio-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem;
}
.project-card {
  border: 1px solid var(--line); border-radius: 8px;
  background: rgba(6,15,30,0.8); overflow: hidden;
  transition: all 0.35s; position: relative; display: flex; flex-direction: column;
}
.project-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.project-card:hover { border-color: rgba(0,200,255,0.3); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.project-card:hover::after { transform: scaleX(1); }
.project-thumb { height: 200px; display: flex; align-items: center; justify-content: center; padding: 0; background: rgba(0,200,255,0.03); border-bottom: 1px solid var(--line); overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 8px rgba(0,200,255,0.2)); transition: filter 0.3s; }
.project-card:hover .project-thumb img { filter: drop-shadow(0 0 16px rgba(0,200,255,0.5)); }
.project-meta { padding: 1.4rem; flex: 1; }
.project-meta h3 { font-family: var(--fh); font-weight: 600; font-size: 0.98rem; color: var(--text); margin-bottom: 0.3rem; }
.project-meta p { font-size: 0.8rem; line-height: 1.55; color: var(--muted); font-weight: 300; margin-bottom: 0.4rem; }
.project-meta small { font-family: var(--fm); font-size: 0.55rem; letter-spacing: 0.1em; color: var(--dim); display: block; }

/* ════════════════════════════════════════════════════
   PROCESSO
════════════════════════════════════════════════════ */
.process-page { padding: clamp(2rem,4vh,3.5rem) 0; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-kicker { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--fm); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; }
.process-kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: livePulse 1.8s ease-in-out infinite; }
.process-header h1 { font-family: var(--fh); font-weight: 700; font-size: clamp(2.2rem,5vw,4rem); letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.8rem; }
.process-sub { font-size: clamp(0.95rem,1.3vw,1.05rem); line-height: 1.75; color: var(--muted); font-weight: 300; max-width: 56ch; margin: 0 auto; }

/* Flow timeline */
.flow-timeline { position: relative; max-width: 780px; margin: 0 auto; padding: 0 0 2rem; }
.flow-line {
  position: absolute; left: 36px; top: 40px; bottom: 40px; width: 2px;
  background: var(--line); z-index: 0;
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.8s ease;
}
.flow-line.is-active { transform: scaleY(1); }
.flow-step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 1.5rem; align-items: start; padding: 1.8rem 0;
  position: relative; z-index: 1;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.flow-step.is-visible { opacity: 1; transform: translateX(0); }
.flow-step:nth-child(2) { transition-delay: 0.1s; }
.flow-step:nth-child(3) { transition-delay: 0.2s; }
.flow-step:nth-child(4) { transition-delay: 0.3s; }
.flow-step:nth-child(5) { transition-delay: 0.4s; }
.flow-step:nth-child(6) { transition-delay: 0.5s; }
.flow-marker { display: flex; flex-direction: column; align-items: center; position: relative; }
.flow-icon {
  width: 72px; height: 72px; border-radius: 12px;
  background: rgba(0,200,255,0.06); border: 1px solid var(--cyan-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); flex-shrink: 0; transition: all 0.3s; position: relative; z-index: 1;
}
.flow-step:hover .flow-icon { background: rgba(0,200,255,0.12); border-color: var(--cyan); box-shadow: 0 0 20px var(--cyan-glow); }
.flow-pulse {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100%; height: 100%; border-radius: 12px;
  border: 1px solid var(--cyan); opacity: 0;
  animation: flowPulse 2.5s ease-in-out infinite;
}
@keyframes flowPulse { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:0} 50%{transform:translate(-50%,-50%) scale(1.15);opacity:0.3} }
.flow-content { padding-top: 1rem; }
.flow-title-wrap { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 0.6rem; }
.flow-number { font-family: var(--fm); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--cyan); opacity: 0.6; }
.flow-content h3 { font-family: var(--fh); font-weight: 700; font-size: 1.15rem; color: var(--text); }
.flow-description p { font-size: 0.9rem; line-height: 1.75; color: var(--muted); font-weight: 300; }

/* ════════════════════════════════════════════════════
   JOGOS
════════════════════════════════════════════════════ */
.jogos-bg { position: fixed; inset: 0; z-index: -2; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0,200,255,0.08) 0%, #030c17 60%); }
.jogos-main { padding: clamp(1.5rem,3vh,2.5rem) 0 4rem; }
.jogos-hero { text-align: center; padding: 5rem 0 2.5rem; position: relative; }
.jogos-title { font-family: var(--fh); font-weight: 700; font-size: clamp(1.8rem,4.8vw,3.6rem); letter-spacing: -0.04em; color: var(--text); text-shadow: 0 0 60px rgba(0,200,255,0.3); margin-bottom: 0.5rem; }
.jogos-subtitle { font-family: var(--fm); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.jogos-catalogo { padding: 1rem 0; }
.jogos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.2rem; margin-top: 1.5rem; }

.jogo-card {
  border: 1px solid var(--line); border-radius: 10px;
  background: rgba(6,15,30,0.85); overflow: hidden;
  transition: all 0.35s; position: relative;
}
.jogo-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg,var(--cyan),var(--violet));
  transform: scaleX(0); transform-origin: left; transition: 0.45s cubic-bezier(0.16,1,0.3,1);
}
.jogo-card:hover { border-color: rgba(0,200,255,0.3); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.jogo-card:hover::after { transform: scaleX(1); }
.card-image { height: 150px; overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.4s; filter: saturate(0.7) brightness(0.85); }
.jogo-card:hover .card-image img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.card-content { padding: 1.4rem; }
.jogo-header { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.45rem; }
.jogo-header h3 { font-family: var(--fh); font-weight: 700; font-size: 1rem; color: var(--text); }
.jogo-badge { font-family: var(--fm); font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.18rem 0.5rem; border-radius: 2px; border: 1px solid; }
.jogo-badge.novo { color: var(--green); border-color: rgba(0,230,118,0.35); background: rgba(0,230,118,0.07); }
.jogo-badge:not(.novo) { color: var(--muted); border-color: var(--line); }
.jogo-desc { font-size: 0.8rem; line-height: 1.55; color: var(--muted); font-weight: 300; margin-bottom: 1.1rem; }
.jogo-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  width: 100%; padding: 0.65rem 1rem; border-radius: 4px;
  font-family: var(--fm); font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-align: center; justify-content: center;
  transition: all 0.3s; background: rgba(0,200,255,0.08);
  border: 1px solid var(--cyan-line); color: var(--cyan);
}
.jogo-btn.active:hover { background: rgba(0,200,255,0.18); border-color: var(--cyan); box-shadow: 0 0 16px var(--cyan-glow); transform: translateY(-1px); }
.jogo-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.jogo-btn:disabled:hover { transform: none; box-shadow: none; }

/* ════════════════════════════════════════════════════
   CONTATO
════════════════════════════════════════════════════ */
.flow-section.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; padding: 5rem 0 4rem; }
.contact-section .flow-content { opacity: 1 !important; transform: none !important; }

/* Form */
.form { margin-top: 1.6rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-family: var(--fm); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.45rem; }
.field input, .field textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(0,200,255,0.04); border: 1px solid var(--cyan-line);
  border-radius: 4px; color: var(--text); font-family: var(--fb); font-size: 0.9rem;
  transition: all 0.3s; resize: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); background: rgba(0,200,255,0.07); box-shadow: 0 0 16px rgba(0,200,255,0.1); }
.field textarea { min-height: 110px; }
.form-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.2rem; }

/* Contact CTA cards */
.contact-visual h2 { font-family: var(--fh); font-weight: 700; font-size: 1.6rem; color: var(--text); margin-bottom: 0.7rem; }
.contact-visual > p { font-size: 0.9rem; line-height: 1.75; color: var(--muted); font-weight: 300; margin-bottom: 1.4rem; }
.contact-features { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-feat { border: 1px solid var(--cyan-line); border-radius: 6px; padding: 1.2rem 1.4rem; background: rgba(0,200,255,0.03); transition: all 0.3s; }
.contact-feat:hover { border-color: rgba(0,200,255,0.28); background: rgba(0,200,255,0.06); transform: translateX(4px); }
.contact-feat h3 { font-family: var(--fh); font-weight: 600; font-size: 0.95rem; color: var(--text); margin-bottom: 0.3rem; }
.contact-feat p { font-size: 0.82rem; line-height: 1.6; color: var(--muted); font-weight: 300; }
.contact-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.4rem; }
.flow-visual { /* used in contact */ }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-container { display: none; }
  .hamburguer { display: flex; }
  .flow-section { grid-template-columns: 1fr; gap: 2rem; }
  .flow-section.reverse { direction: ltr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .flow-section.contact-section { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .jogos-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   INLINE HIGHLIGHTS (hero chips row)
════════════════════════════════════════════════════ */
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; }

/* ════════════════════════════════════════════════════
   SHARED JS INLINE SCRIPT STYLES
════════════════════════════════════════════════════ */
.section-label { display: flex; align-items: center; gap: 0.7rem; font-family: var(--fm); font-size: 0.75rem; letter-spacing: 0.3em; color: var(--cyan); text-transform: uppercase; margin-bottom: 1.2rem; }
.section-label::before { content: ''; display: block; width: 1.8rem; height: 1px; background: var(--cyan); opacity: 0.7; }
.panel { background: rgba(0,200,255,0.03); border: 1px solid var(--line); border-radius: 8px; padding: 2.5rem 2rem; }
.col-12 { grid-column: 1 / -1; }
.grid { display: grid; }

/* ════════════════════════════════════════════════════
   INICIO — HERO SPLIT (decorative device mockup)
════════════════════════════════════════════════════ */
.hero-inner.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  text-align: left;
  width: 100%; max-width: 1200px;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem) 3rem;
}
.hero-inner.hero-split .hero-eyebrow { justify-content: flex-start; margin-left: 0; }
.hero-inner.hero-split .hero-eyebrow::after { display: none; }
.hero-inner.hero-split .hero-sub { text-align: left; }
.hero-inner.hero-split .inline-highlights { justify-content: flex-start; }
.hero-inner.hero-split .cta-row, .hero-inner.hero-split .hero-cta { justify-content: flex-start; }
.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1rem;
}

/* Device browser mockup */
.hero-device-wrap {
  position: relative;
  width: 100%; max-width: 420px;
}
.device-mockup {
  background: rgba(6, 15, 30, 0.95);
  border: 1px solid rgba(0, 200, 255, 0.22);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.06),
              0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,200,255,0.06);
  animation: deviceFloat 5s ease-in-out infinite;
}
@keyframes deviceFloat { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-10px) } }
.device-topbar {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(0,0,0,0.5); padding: 0.55rem 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.device-dots { display: flex; gap: 5px; }
.device-dots span { width: 9px; height: 9px; border-radius: 50%; display: block; }
.device-address {
  flex: 1; text-align: center;
  background: rgba(255,255,255,0.06); border-radius: 20px;
  padding: 0.2rem 0.7rem;
  font-family: var(--fm); font-size: 0.57rem;
  color: rgba(255,255,255,0.38); letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.device-content { padding: 0.75rem; }
/* nav bar inside device */
.device-nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,200,255,0.04); border-radius: 6px;
  padding: 0.4rem 0.65rem; margin-bottom: 0.7rem;
  border: 1px solid rgba(0,200,255,0.08);
}
.device-logo-bar {
  width: 55px; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--violet)); opacity: 0.75;
}
.device-nav-links { display: flex; gap: 5px; }
.device-nav-links span {
  width: 26px; height: 5px; border-radius: 3px;
  background: rgba(255,255,255,0.14);
}
/* hero area inside device */
.device-hero-area {
  padding: 0.9rem 0.65rem 0.7rem;
  border: 1px solid rgba(0,200,255,0.1);
  border-radius: 6px; margin-bottom: 0.6rem;
  background: rgba(0,200,255,0.02);
}
.device-headline {
  height: 11px; border-radius: 6px;
  background: linear-gradient(90deg, var(--cyan), rgba(124,77,255,0.5), transparent);
  width: 78%; margin-bottom: 5px; opacity: 0.6;
}
.device-subline {
  height: 6px; border-radius: 4px;
  background: rgba(255,255,255,0.1); width: 62%; margin-bottom: 10px;
}
.device-btn-row { display: flex; gap: 5px; }
.device-btn { height: 18px; border-radius: 9px; }
.device-btn.green { width: 72px; background: linear-gradient(135deg,#00c853,#69f0ae); opacity: 0.85; }
.device-btn.outline { width: 52px; border: 1px solid rgba(0,200,255,0.4); background: transparent; }
/* stat cards inside device */
.device-cards-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem;
}
.device-stat-card {
  background: rgba(0,200,255,0.05);
  border: 1px solid rgba(0,200,255,0.12);
  border-radius: 6px; padding: 0.45rem 0.3rem; text-align: center;
}
.device-stat-card span {
  font-family: var(--fh); font-weight: 700; font-size: 0.8rem; color: var(--cyan); display: block; line-height: 1.2;
}
.device-stat-card small {
  font-family: var(--fm); font-size: 0.48rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
/* floating badges around device */
.hero-float-badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 0.45rem;
  background: rgba(6, 14, 28, 0.96);
  border: 1px solid rgba(0,200,255,0.35);
  border-radius: 50px; padding: 0.38rem 0.9rem;
  font-family: var(--fh); font-size: 0.72rem; font-weight: 700;
  color: var(--cyan);
  box-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 0 16px rgba(0,200,255,0.12);
  white-space: nowrap; pointer-events: none;
}
.hero-float-badge svg { flex-shrink: 0; }
.hero-float-badge.badge-top { top: 0.5rem; right: -1rem; animation: badgeFloat 3.5s ease-in-out infinite; }
.hero-float-badge.badge-mid { top: 50%; right: -2rem; transform: translateY(-50%); animation: badgeFloat 4s ease-in-out infinite 0.8s; }
.hero-float-badge.badge-bot { bottom: 0.5rem; left: -1rem; animation: badgeFloat 3s ease-in-out infinite 1.6s; }
@keyframes badgeFloat { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-6px) } }
.hero-float-badge.badge-mid { animation: badgeFloatMid 4s ease-in-out infinite 0.8s; }
@keyframes badgeFloatMid { 0%,100%{ transform:translateY(-50%) } 50%{ transform:translateY(calc(-50% - 6px)) } }

/* ════════════════════════════════════════════════════
   INICIO — IMPACT STATS (com ícone)
════════════════════════════════════════════════════ */
.impact-card {
  background: rgba(0,200,255,0.04); border-radius: 12px;
  padding: 1.8rem 1.5rem; text-align: center;
  border: 1px solid var(--cyan-line);
  position: relative; overflow: hidden;
  transition: all 0.35s;
}
.impact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  opacity: 0; transition: 0.35s;
}
.impact-card:hover { transform: translateY(-4px); border-color: rgba(0,200,255,0.28); background: rgba(0,200,255,0.07); }
.impact-card:hover::before { opacity: 1; }
.impact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid rgba(0,200,255,0.2);
  background: rgba(0,200,255,0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--cyan);
  transition: all 0.35s;
}
.impact-card:hover .impact-icon { background: rgba(0,200,255,0.14); border-color: var(--cyan); box-shadow: 0 0 18px rgba(0,200,255,0.18); }
/* Color variants for stats */
.impact-card.v2 { border-color: rgba(124,77,255,0.15); }
.impact-card.v2 .impact-icon { border-color: rgba(124,77,255,0.2); background: rgba(124,77,255,0.06); color: var(--violet); }
.impact-card.v2 .stat-number { color: var(--violet); }
.impact-card.v2::before { background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.impact-card.v3 { border-color: rgba(0,230,118,0.15); }
.impact-card.v3 .impact-icon { border-color: rgba(0,230,118,0.2); background: rgba(0,230,118,0.06); color: var(--green); }
.impact-card.v3 .stat-number { color: var(--green); }
.impact-card.v3::before { background: linear-gradient(90deg, var(--green), var(--cyan)); }
.impact-card.v4 { border-color: rgba(255,152,0,0.15); }
.impact-card.v4 .impact-icon { border-color: rgba(255,152,0,0.2); background: rgba(255,152,0,0.06); color: #ff9800; }
.impact-card.v4 .stat-number { color: #ff9800; }
.impact-card.v4::before { background: linear-gradient(90deg, #ff9800, var(--violet)); }

/* ════════════════════════════════════════════════════
   INICIO — CLIENT STRIP
════════════════════════════════════════════════════ */
.client-strip-section {
  padding: 2.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.client-strip-label {
  font-family: var(--fm); font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(232, 240, 255, 0.7); text-align: center;
  margin-bottom: 1.5rem;
}
.client-strip-track {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.client-pill {
  font-family: var(--fh); font-size: 0.74rem; font-weight: 600;
  color: rgba(232, 240, 255, 0.78); padding: 0.38rem 1rem;
  border: 1px solid rgba(232, 240, 255, 0.15); border-radius: 50px;
  background: rgba(0,200,255,0.04);
  transition: all 0.3s; white-space: nowrap;
}
.client-pill:hover { color: var(--cyan); border-color: rgba(0,200,255,0.28); background: rgba(0,200,255,0.05); }

/* ════════════════════════════════════════════════════
   INICIO — COMO FUNCIONA (3 passos)
════════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 16%; right: 16%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  opacity: 0.25;
}
.step-card {
  background: rgba(0,200,255,0.03); border: 1px solid var(--cyan-line);
  border-radius: 10px; padding: 1.6rem 1.3rem; text-align: center;
  position: relative; transition: all 0.3s;
}
.step-card:hover { border-color: rgba(0,200,255,0.28); background: rgba(0,200,255,0.06); transform: translateY(-3px); }
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fm); font-size: 0.65rem; font-weight: 700; color: #fff;
  box-shadow: 0 4px 12px rgba(0,200,255,0.3);
}
.step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  border: 1px solid var(--cyan-line); background: rgba(0,200,255,0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0.8rem auto 1rem; color: var(--cyan);
}
.step-card h3 { font-family: var(--fh); font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 0.4rem; }
.step-card p { font-size: 0.83rem; line-height: 1.65; color: var(--muted); font-weight: 300; }
@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* ════════════════════════════════════════════════════
   INICIO — RESPONSIVE hero-split
════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero-inner.hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem 2.5rem;
  }
  .hero-inner.hero-split .hero-eyebrow { justify-content: center; }
  .hero-inner.hero-split .hero-sub { text-align: center; }
  .hero-inner.hero-split .inline-highlights { justify-content: center; }
  .hero-inner.hero-split .cta-row, .hero-inner.hero-split .hero-cta { justify-content: center; }
  .hero-right { display: none; }
}

/* ════════════════════════════════════════════════════
   MOBILE / TABLET / iOS — RESPONSIVE COMPLETO
════════════════════════════════════════════════════ */

/* ── TABLET: 768px – 1024px ─────────────────────── */
@media (max-width: 1024px) {
  .topbar-inner { gap: 0.7rem; }
  /* brand smaller on tablet */
  .brand img  { height: 110px; }
  .brand .mascot { height: 90px; }
  /* nav links more compact */
  .nav-link { font-size: 0.6rem; padding: 5px 2px; letter-spacing: 0.08em; }
  /* topbar flat buttons also compact */
  .topbar .btn.whatsapp,
  .topbar .btn.burst { font-size: 0.6rem; letter-spacing: 0.08em; }
  /* feature grid smaller min */
  .feature-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

/* ── PHABLET / MOBILE: ≤ 900px ──────────────────── */
@media (max-width: 900px) {
  /* topbar: center brand, hamburger absolute right */
  .topbar-inner { justify-content: center; position: relative; }

  /* hide ALL .btn inside topbar actions — only hamburger stays */
  .topbar .btn.whatsapp { display: none !important; }
  .topbar .btn.burst { display: none !important; }
  .topbar-inner > .actions > a.btn { display: none !important; }
  .topbar-inner > .actions > button.btn { display: none !important; }

  /* hamburger positioned absolute right */
  .actions {
    position: absolute; right: clamp(1rem, 3vw, 2.5rem);
    top: 50%; transform: translateY(-50%);
  }

  /* topbar brand */
  .brand img    { height: 72px; }
  .brand .mascot { height: 64px; }
  .brand         { gap: 0.35rem; }

  /* hero */
  .h1-hero { font-size: clamp(1.2rem, 4vw, 1.8rem); }

  /* impact cards: 2 cols on tablet */
  .impact-grid { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE: ≤ 640px ─────────────────────────────── */
@media (max-width: 640px) {
  /* topbar brand even smaller */
  .brand img    { height: 56px; }
  .brand .mascot { height: 50px; }

  /* hero */
  .h1-hero { font-size: clamp(1.3rem, 5.5vw, 1.6rem); line-height: 1.05; }
  .hero-inner { padding: 5rem 1.2rem 3rem; }

  /* stats: 2 cols */
  .impact-card { padding: 1.4rem 1rem; }
  .stat-number { font-size: 3rem; }

  /* client strip: compact */
  .client-pill { font-size: 0.68rem; padding: 0.3rem 0.75rem; }

  /* steps: single col (already handled via 700px) */

  /* feature grid: single col on small phones */
  .feature-grid { grid-template-columns: 1fr; }

  /* CTA buttons: stack vertically */
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { text-align: center; justify-content: center; }

  /* footer: stack vertically */
  .footer { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
}

/* ── SMALL PHONES: ≤ 430px (iPhone 14 Pro, SE) ──── */
@media (max-width: 430px) {
  .brand img    { height: 48px; }
  .brand .mascot { height: 44px; }
  .h1-hero { font-size: clamp(1.1rem, 6vw, 1.4rem); }
  .h2-sec  { font-size: clamp(1.55rem, 7vw, 2rem); }
  .stat-number { font-size: 2.6rem; }
  /* topbar padding */
  .topbar-inner { padding: 0.5rem 1rem; }
  /* hero: less top padding */
  .hero-inner.hero-split { padding: 1.5rem 1rem 2rem; }
  /* section wrappers */
  .wrap { padding: 0 1rem; }
}

/* ── TOUCH: min target 44×44px ───────────────────── */
@media (hover: none) and (pointer: coarse) {
  .nav-link { min-height: 44px; display: flex; align-items: center; }
  .btn   { min-height: 44px; }
  .chip  { min-height: 36px; display: inline-flex; align-items: center; }
  .jogo-btn { min-height: 44px; }
  .feature-item { cursor: default; } /* no hover tricks on touch */
  /* disable hover transforms on touch to avoid sticky states */
  .impact-card:hover,
  .feature-item:hover,
  .step-card:hover,
  .client-pill:hover { transform: none; }
}

/* ── iOS LANDSCAPE safe-area ─────────────────────── */
@media (max-height: 430px) and (orientation: landscape) {
  .hero-section { min-height: auto; padding: 5rem 0 3rem; }
  .hero-inner, .hero-inner.hero-split { padding-top: 4rem; }
  .scroll-hint { display: none; }
}

/* ── PRINT ───────────────────────────────────────── */
@media print {
  .topbar, .scroll-hint, #space-bg, .space-nebula, .rocket-wrap,
  .blobs, #particle-canvas, #progress-bar { display: none !important; }
  body { background: #fff; color: #000; }
}
