/* ═══════════════════════════════════════════════════════════
   CYBER NET TELECOM · v3.0
   Sistema de design premium. Dark-first, identidade CNi.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Marca (extraída do logotipo) */
  --cni:      #0AA50A;
  --neon:     #3BE873;
  --lime:     #B7FF52;
  --gold:     #F9D500;
  --graphite: #222822;

  /* Superfícies escuras */
  --bg:      #030B06;
  --bg-2:    #061309;
  --panel:   rgba(255,255,255,.035);
  --panel-2: rgba(255,255,255,.055);
  --edge:    rgba(255,255,255,.10);
  --edge-2:  rgba(59,232,115,.32);

  --ink:     #EAF6ED;
  --ink-2:   #9DB6A6;
  --ink-3:   #6B8574;

  --glow:      0 0 60px rgba(59,232,115,.28);
  --glow-soft: 0 0 100px rgba(10,165,10,.18);
  --lift:      0 30px 70px rgba(0,0,0,.5);

  --wrap: 1240px;
  --mid:  860px;
  --pad:  clamp(18px, 4vw, 40px);
  --head-h: 78px;

  --r:    18px;
  --r-lg: 28px;
  --r-xl: 38px;

  --e:  cubic-bezier(.22,1,.36,1);
  --e2: cubic-bezier(.65,0,.35,1);

  --font: "Inter", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* Tema claro */
:root[data-theme="light"] {
  --bg:      #F7FBF8;
  --bg-2:    #FFFFFF;
  --panel:   #FFFFFF;
  --panel-2: #F2F8F4;
  --edge:    #DCEBE1;
  --edge-2:  rgba(10,165,10,.35);
  --ink:     #10231A;
  --ink-2:   #5A7466;
  --ink-3:   #5C7266;   /* 4.96:1, legível de verdade */
  /* Verde da marca é claro demais para texto pequeno no claro (3.14:1).
     Este tom escuro fica em 5.88:1 e é usado só onde vira texto.        */
  --cni-txt: #067207;
  --glow:      0 0 60px rgba(10,165,10,.12);
  --glow-soft: 0 0 80px rgba(10,165,10,.08);
  --lift:      0 24px 60px rgba(8,60,28,.12);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--e), color .4s var(--e);
}

/* Grão sutil, dá textura de impressão fina */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
:root[data-theme="light"] body::after { opacity: .018; }

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; }
ul { margin: 0; padding: 0; list-style: none; }
p  { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 800; line-height: 1.02; letter-spacing: -.04em; }

:focus-visible { outline: 2px solid var(--neon); outline-offset: 4px; border-radius: 8px; }

.skip {
  position: fixed; top: 12px; left: 12px; z-index: 300;
  transform: translateY(-200%);
  padding: 12px 20px; border-radius: 99px;
  background: var(--neon); color: #04150A; font-weight: 700;
  transition: transform .3s var(--e);
}
.skip:focus { transform: none; }

.wrap { width: min(var(--wrap), 100% - var(--pad) * 2); margin-inline: auto; }
.wrap--mid { width: min(var(--mid), 100% - var(--pad) * 2); }

/* ── Cursor luminoso (só desktop) ─────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 500;
  width: 380px; height: 380px; margin: -190px 0 0 -190px;
  border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(59,232,115,.10), transparent 62%);
  transition: opacity .4s var(--e);
}
:root[data-theme="light"] .cursor { background: radial-gradient(circle, rgba(10,165,10,.09), transparent 62%); }

/* ── Barra de progresso ───────────────────────────────── */
.progress { position: fixed; inset: 0 0 auto; z-index: 260; height: 2px; pointer-events: none; }
.progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--cni), var(--neon), var(--gold));
  box-shadow: 0 0 12px rgba(59,232,115,.7);
  transition: width .08s linear;
}

/* ═══════════ BOTÕES ═══════════ */
.btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; border-radius: 99px;
  font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  white-space: nowrap; cursor: pointer; overflow: hidden;
  transition: transform .28s var(--e), box-shadow .3s var(--e), background .25s var(--e), border-color .25s var(--e), color .25s var(--e);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 38%, rgba(255,255,255,.3) 50%, transparent 62%);
  transform: translateX(-130%); transition: transform .75s var(--e);
}
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: scale(.97); }

.btn--sm { padding: 11px 18px; font-size: 13.5px; }
.btn--lg { padding: 18px 34px; font-size: 16.5px; }

.btn--go {
  background: linear-gradient(135deg, var(--neon), var(--cni) 75%);
  color: #03170A;
  box-shadow: 0 14px 40px rgba(10,165,10,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--go:hover { box-shadow: 0 20px 55px rgba(59,232,115,.45), inset 0 1px 0 rgba(255,255,255,.3); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #E0AE00);
  color: #1A1400;
  box-shadow: 0 14px 40px rgba(249,213,0,.35), inset 0 1px 0 rgba(255,255,255,.35);
}

.btn--line {
  border: 1px solid var(--edge); color: var(--ink); background: var(--panel);
  backdrop-filter: blur(10px);
}
.btn--line:hover { border-color: var(--edge-2); color: var(--neon); }
:root[data-theme="light"] .btn--line:hover { color: var(--cni-txt); }

.btn--ghost { border: 1px solid var(--edge); color: var(--ink); }
.btn--ghost:hover { border-color: var(--edge-2); background: var(--panel); }

/* ═══════════ HEADER ═══════════ */
.head {
  position: sticky; top: 0; z-index: 250; height: var(--head-h);
  transition: background .35s var(--e), border-color .35s var(--e), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.head[data-stuck] {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: var(--edge);
}
.head__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__mark { display: none; height: 34px; width: auto; }
.logo__full { height: 40px; width: auto; }
:root[data-theme="light"] .logo__full { content: url("logo.webp"); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__list { display: flex; align-items: center; gap: 26px; }
.nav__a {
  position: relative; font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  padding: 5px 0; transition: color .25s var(--e);
}
.nav__a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  border-radius: 2px; background: linear-gradient(90deg, var(--neon), var(--lime));
  transition: width .3s var(--e);
}
.nav__a:hover { color: var(--ink); }
.nav__a:hover::after, .nav__a[aria-current="true"]::after { width: 100%; }
.nav__a[aria-current="true"] { color: var(--neon); }
:root[data-theme="light"] .nav__a[aria-current="true"] { color: var(--cni-txt); }

.nav__cta { display: flex; align-items: center; gap: 10px; }

.head__act { display: flex; align-items: center; gap: 10px; }
.ico {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--edge); border-radius: 99px; cursor: pointer;
  transition: border-color .25s var(--e), transform .35s var(--e);
}
.ico:hover { border-color: var(--edge-2); transform: rotate(-18deg); }
.ico svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ico--moon { display: none; }
:root[data-theme="dark"] .ico--sun  { display: none; }
:root[data-theme="dark"] .ico--moon { display: block; }

.burger {
  display: none; width: 42px; height: 42px; cursor: pointer;
  border: 1px solid var(--edge); border-radius: 99px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 17px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--e); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0 clamp(70px, 8vw, 110px);
  min-height: min(94vh, 940px);
  display: grid; align-items: center;
}
.hero__sky { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; }
.hero__aura {
  position: absolute; z-index: -2; right: -10%; top: -12%;
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(59,232,115,.16), transparent 62%);
  filter: blur(30px); animation: drift 16s ease-in-out infinite;
}
:root[data-theme="light"] .hero__aura { background: radial-gradient(circle, rgba(10,165,10,.10), transparent 62%); }
@keyframes drift {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(-4%,5%,0) scale(1.09); }
}
.hero__grid-bg {
  position: absolute; inset: 0; z-index: -3; opacity: .5;
  background-image: linear-gradient(rgba(59,232,115,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59,232,115,.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 75% 55% at 50% 42%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 42%, #000 20%, transparent 78%);
}

.hero__in {
  display: grid; grid-template-columns: 1.08fr .92fr;
  align-items: center; gap: clamp(30px, 4vw, 60px);
}

.tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 17px; border-radius: 99px;
  border: 1px solid var(--edge-2); background: var(--panel);
  backdrop-filter: blur(10px);
  font-size: 12.5px; font-weight: 700; letter-spacing: .05em;
  color: var(--neon); text-transform: uppercase;
}
:root[data-theme="light"] .tag { color: var(--cni-txt); }
.tag i { opacity: .5; font-style: normal; }
.tag__live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--neon);
  box-shadow: 0 0 0 0 rgba(59,232,115,.75); animation: pulse 2.2s var(--e) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(59,232,115,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(59,232,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,232,115,0); }
}

.hero__h1 {
  margin: 24px 0 22px;
  font-size: clamp(42px, 6.4vw, 88px);
  letter-spacing: -.055em; line-height: .96;
}
.shine {
  background: linear-gradient(100deg, var(--neon) 8%, var(--lime) 42%, var(--gold) 88%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 7s linear infinite;
}
@keyframes shine { to { background-position: 220% 0; } }

.hero__p { max-width: 52ch; color: var(--ink-2); font-size: clamp(16px, 1.2vw, 18.5px); line-height: 1.7; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.hero__nums {
  display: flex; flex-wrap: wrap; gap: clamp(22px, 3.4vw, 52px);
  margin: 46px 0 0; padding-top: 30px; border-top: 1px solid var(--edge);
}
.hero__nums dt { font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.hero__nums dd { margin: 7px 0 0; display: flex; align-items: baseline; gap: 4px; }
.hero__nums b { font-size: clamp(28px, 2.7vw, 40px); font-weight: 800; letter-spacing: -.045em; font-variant-numeric: tabular-nums; }
.hero__nums i { font-size: .5em; font-style: normal; font-weight: 700; color: var(--neon); }
:root[data-theme="light"] .hero__nums i { color: var(--cni-txt); }

/* Arte + cards flutuantes */
.hero__art { position: relative; display: grid; place-items: center; will-change: transform; }
.hero__astro {
  width: min(100%, 440px);
  animation: bob 8s ease-in-out infinite;
  mask-image: radial-gradient(70% 62% at 50% 44%, #000 56%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 62% at 50% 44%, #000 56%, transparent 100%);
}
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-18px) rotate(-1.4deg); }
}

.orbit { position: absolute; inset: 0; display: grid; place-items: center; z-index: -1; }
.orbit span {
  position: absolute; border: 1px solid rgba(59,232,115,.15); border-radius: 50%;
  animation: ring 6s var(--e) infinite;
}
.orbit span:nth-child(1) { width: 320px; height: 320px; }
.orbit span:nth-child(2) { width: 460px; height: 460px; animation-delay: 1.4s; }
.orbit span:nth-child(3) { width: 610px; height: 610px; animation-delay: 2.8s; }
@keyframes ring {
  0%   { opacity: 0;  transform: scale(.82); }
  40%  { opacity: .9; }
  100% { opacity: 0;  transform: scale(1.14); }
}

.float-card {
  position: absolute; display: grid; gap: 3px;
  padding: 16px 20px; border-radius: 20px;
  border: 1px solid var(--edge); background: color-mix(in srgb, var(--bg-2) 72%, transparent);
  backdrop-filter: blur(18px); box-shadow: var(--lift);
  animation: bob 8s ease-in-out infinite reverse;
}
.float-card--speed { left: -4%; bottom: 16%; }
.float-card--ping  { right: -2%; top: 14%; animation-delay: 1.2s; }
.float-card__k { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.float-card__v { font-size: 27px; font-weight: 800; letter-spacing: -.04em; color: var(--neon); font-variant-numeric: tabular-nums; }
:root[data-theme="light"] .float-card__v { color: var(--cni-txt); }
.float-card__v i { font-size: .48em; font-style: normal; color: var(--ink-2); }
.float-card__note { font-size: 11.5px; color: var(--ink-3); }

.bars { display: flex; align-items: flex-end; gap: 3px; height: 16px; margin-top: 4px; }
.bars i {
  width: 4px; border-radius: 2px; background: var(--neon); opacity: .8;
  animation: eq 1.1s ease-in-out infinite;
}
.bars i:nth-child(1) { height: 40%; animation-delay: 0s; }
.bars i:nth-child(2) { height: 75%; animation-delay: .15s; }
.bars i:nth-child(3) { height: 100%; animation-delay: .3s; }
.bars i:nth-child(4) { height: 60%; animation-delay: .45s; }
.bars i:nth-child(5) { height: 85%; animation-delay: .6s; }
@keyframes eq { 50% { transform: scaleY(.42); } }

.mouse {
  position: absolute; left: 50%; bottom: 24px; translate: -50% 0;
  width: 25px; height: 40px; border: 2px solid var(--edge); border-radius: 99px;
  display: grid; justify-items: center; padding-top: 7px;
}
.mouse span { width: 3.5px; height: 8px; border-radius: 2px; background: var(--neon); animation: scr 1.9s var(--e) infinite; }
@keyframes scr {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(13px); }
}

/* ═══════════ FAIXA DE PROVA ═══════════ */
.proof { padding: 26px 0; border-block: 1px solid var(--edge); background: var(--panel); }
.proof__in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.proof__i { display: grid; gap: 2px; text-align: center; }
.proof__i b { font-size: 17px; font-weight: 800; letter-spacing: -.03em; }
.proof__i span { font-size: 13.5px; color: var(--ink-3); }

/* ═══════════ SEÇÕES ═══════════ */
.sec { padding: clamp(66px, 8vw, 128px) 0; }
.sec__h { max-width: 720px; margin-bottom: clamp(34px, 4.5vw, 60px); }
.sec__h--c { margin-inline: auto; text-align: center; }

.eyebrow {
  margin-bottom: 14px; font-size: 11.5px; font-weight: 800;
  letter-spacing: .19em; text-transform: uppercase; color: var(--neon);
}
:root[data-theme="light"] .eyebrow { color: var(--cni-txt); }

.sec__t { font-size: clamp(31px, 4.4vw, 58px); letter-spacing: -.05em; }
.grad {
  background: linear-gradient(100deg, var(--neon), var(--lime) 55%, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sec__d { margin-top: 18px; color: var(--ink-2); font-size: clamp(15.5px, 1.15vw, 18px); line-height: 1.72; }

/* ═══════════ SIMULADOR ═══════════ */
.sim {
  padding: clamp(24px, 3.4vw, 44px); border-radius: var(--r-xl);
  border: 1px solid var(--edge);
  background: linear-gradient(150deg, var(--panel-2), var(--panel));
  backdrop-filter: blur(14px); box-shadow: var(--lift);
}
.sim__tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 34px; }
.sim__tab {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 18px 12px; border-radius: var(--r);
  border: 1px solid var(--edge); background: var(--panel);
  font-size: 13.5px; font-weight: 700; cursor: pointer;
  color: var(--ink-2);
  transition: border-color .25s var(--e), color .25s var(--e), background .25s var(--e), transform .25s var(--e);
}
.sim__tab svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.sim__tab:hover { transform: translateY(-3px); border-color: var(--edge-2); color: var(--ink); }
.sim__tab[aria-selected="true"] {
  color: var(--neon); border-color: var(--edge-2);
  background: rgba(59,232,115,.09); box-shadow: var(--glow);
}
:root[data-theme="light"] .sim__tab[aria-selected="true"] { color: var(--cni-txt); background: rgba(10,165,10,.07); }

.sim__races { display: grid; gap: 20px; }
.race__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.race__top b { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.race__top em {
  font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 99px; background: rgba(59,232,115,.14); color: var(--neon);
}
:root[data-theme="light"] .race__top em { background: rgba(10,165,10,.1); color: var(--cni-txt); }
.race__t { font-size: 19px; font-weight: 800; letter-spacing: -.03em; font-variant-numeric: tabular-nums; color: var(--ink-2); }
.race--top .race__t { color: var(--neon); }
:root[data-theme="light"] .race--top .race__t { color: var(--cni-txt); }

.race__track { height: 13px; border-radius: 99px; background: var(--panel-2); border: 1px solid var(--edge); overflow: hidden; }
.race__bar {
  display: block; height: 100%; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, rgba(59,232,115,.4), var(--ink-3));
  transition: width .1s linear;
}
.race--mid .race__bar { background: linear-gradient(90deg, var(--cni), var(--neon)); }
.race--top .race__bar { background: linear-gradient(90deg, var(--neon), var(--lime), var(--gold)); box-shadow: 0 0 22px rgba(59,232,115,.5); }

.sim__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--edge);
  font-size: 15px; color: var(--ink-2);
}
.sim__foot b { color: var(--neon); }
:root[data-theme="light"] .sim__foot b { color: var(--cni-txt); }
.sim__replay {
  padding: 9px 17px; border-radius: 99px; border: 1px solid var(--edge);
  font-size: 13px; font-weight: 700; cursor: pointer; color: var(--ink-2);
  transition: border-color .25s var(--e), color .25s var(--e);
}
.sim__replay:hover { border-color: var(--edge-2); color: var(--neon); }

/* ═══════════ PLANOS ═══════════ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 30px; border-radius: var(--r-xl);
  border: 1px solid var(--edge); background: var(--panel);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--e), border-color .35s var(--e), box-shadow .35s var(--e);
  transform-style: preserve-3d;
}
.plan:hover { border-color: var(--edge-2); box-shadow: var(--lift); }

.plan--hero {
  border-color: transparent; box-shadow: var(--lift), var(--glow-soft);
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    linear-gradient(155deg, var(--neon), var(--cni) 45%, var(--gold)) border-box;
  border: 2px solid transparent;
}
:root[data-theme="light"] .plan--hero { background: linear-gradient(#fff,#fff) padding-box, linear-gradient(155deg, var(--neon), var(--cni) 45%, var(--gold)) border-box; }

.plan__flag {
  position: absolute; top: -13px; left: 50%; translate: -50% 0;
  padding: 6px 15px; border-radius: 99px; white-space: nowrap;
  background: linear-gradient(135deg, var(--neon), var(--cni));
  color: #03170A; font-size: 10.5px; font-weight: 800;
  letter-spacing: .11em; text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(10,165,10,.4);
}
.plan__tag { font-size: 11.5px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); }
.plan__mega {
  display: flex; align-items: baseline; gap: 6px; margin: 12px 0 8px;
  font-size: 52px; font-weight: 800; letter-spacing: -.06em; line-height: 1;
}
.plan__mega i { font-size: .34em; font-style: normal; font-weight: 700; letter-spacing: -.02em; color: var(--ink-2); }
.plan--hero .plan__mega { color: var(--neon); }
:root[data-theme="light"] .plan--hero .plan__mega { color: var(--cni-txt); }

.plan__for { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; min-height: 3em; }
.plan__price {
  display: flex; align-items: flex-start; gap: 2px; margin: 20px 0 0;
  font-size: 46px; font-weight: 800; letter-spacing: -.055em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan__price small { font-size: .38em; margin-top: .42em; font-weight: 700; color: var(--ink-2); }
.plan__price sup   { font-size: .36em; font-weight: 700; }
.plan__price em    { font-size: .3em; font-style: normal; font-weight: 600; color: var(--ink-3); align-self: flex-end; margin-bottom: .35em; }
.plan__note { margin-top: 8px; font-size: 12.5px; color: var(--ink-3); }

.plan__list { display: grid; gap: 11px; margin: 26px 0 30px; }
.plan__list li { position: relative; padding-left: 27px; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }
.plan__list li b { color: var(--ink); font-weight: 700; }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 17px; height: 17px; border-radius: 50%;
  background: rgba(59,232,115,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233BE873' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.plan__b { margin-top: auto; width: 100%; }

/* ═══════════ QUIZ ═══════════ */
.quiz {
  padding: clamp(26px, 3.6vw, 48px); border-radius: var(--r-xl);
  border: 1px solid var(--edge);
  background: linear-gradient(150deg, var(--panel-2), var(--panel));
  backdrop-filter: blur(14px); box-shadow: var(--lift);
}
.quiz__bar { height: 4px; border-radius: 99px; background: var(--panel-2); overflow: hidden; margin-bottom: 34px; }
.quiz__bar i {
  display: block; height: 100%; width: 33%; border-radius: 99px;
  background: linear-gradient(90deg, var(--cni), var(--neon), var(--lime));
  transition: width .5s var(--e);
}

.quiz__stage { position: relative; }
.quiz__step { display: none; margin: 0; padding: 0; border: 0; }
.quiz__step.is-on { display: block; animation: slideIn .5s var(--e) both; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.quiz__q {
  display: block; margin-bottom: 24px; padding: 0;
  font-size: clamp(20px, 2.3vw, 28px); font-weight: 800; letter-spacing: -.035em; line-height: 1.25;
}
.quiz__q span { color: var(--neon); margin-right: 6px; }
:root[data-theme="light"] .quiz__q span { color: var(--cni-txt); }

.quiz__opts { display: grid; gap: 11px; }
.quiz__opts button {
  display: flex; align-items: center; gap: 14px;
  padding: 19px 24px; border-radius: var(--r);
  border: 1px solid var(--edge); background: var(--panel);
  font-size: 16px; font-weight: 600; text-align: left; cursor: pointer;
  transition: border-color .25s var(--e), background .25s var(--e), transform .25s var(--e), color .25s var(--e);
}
.quiz__opts button::before {
  content: ""; flex: none; width: 19px; height: 19px; border-radius: 50%;
  border: 2px solid var(--ink-3); transition: border-color .25s var(--e), box-shadow .25s var(--e);
}
.quiz__opts button:hover {
  transform: translateX(5px); border-color: var(--edge-2); color: var(--neon);
}
.quiz__opts button:hover::before { border-color: var(--neon); box-shadow: inset 0 0 0 4px var(--neon); }
:root[data-theme="light"] .quiz__opts button:hover { color: var(--cni-txt); }
:root[data-theme="light"] .quiz__opts button:hover::before { border-color: var(--cni-txt); box-shadow: inset 0 0 0 4px var(--cni); }

.quiz__out { display: none; text-align: center; }
.quiz__out.is-on { display: block; animation: slideIn .55s var(--e) both; }
.quiz__ok { font-size: 12.5px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-3); }
.quiz__plan {
  display: block; margin: 12px 0 16px;
  font-size: clamp(44px, 7vw, 82px); font-weight: 800; letter-spacing: -.06em; line-height: 1;
  background: linear-gradient(100deg, var(--neon), var(--lime) 50%, var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.quiz__why { max-width: 46ch; margin: 0 auto 30px; color: var(--ink-2); line-height: 1.7; }
.quiz__again {
  display: block; margin: 20px auto 0; padding: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-3);
  cursor: pointer; text-decoration: underline; text-underline-offset: 4px;
  transition: color .25s var(--e);
}
.quiz__again:hover { color: var(--ink); }

/* ═══════════ BENTO ═══════════ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bx {
  position: relative; overflow: hidden;
  padding: 30px; border-radius: var(--r-lg);
  border: 1px solid var(--edge); background: var(--panel);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--e), border-color .35s var(--e), box-shadow .35s var(--e);
}
.bx:hover { transform: translateY(-5px); border-color: var(--edge-2); box-shadow: var(--lift); }
.bx--big  { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.bx--wide { grid-column: span 2; }
.bx h3 { font-size: 21px; margin-bottom: 11px; letter-spacing: -.035em; }
.bx--big h3 { font-size: clamp(24px, 2.4vw, 34px); }
.bx p { color: var(--ink-2); font-size: 15px; line-height: 1.65; }

.bx__wifi { position: relative; flex: 1; min-height: 130px; display: grid; place-items: center; margin-top: 20px; }
.bx__wifi i {
  position: absolute; border: 2px solid var(--neon); border-radius: 50%;
  opacity: 0; animation: wave 3s var(--e) infinite;
}
.bx__wifi i:nth-child(1) { width: 70px;  height: 70px; }
.bx__wifi i:nth-child(2) { width: 130px; height: 130px; animation-delay: .5s; }
.bx__wifi i:nth-child(3) { width: 190px; height: 190px; animation-delay: 1s; }
@keyframes wave {
  0%   { opacity: 0;   transform: scale(.7); }
  40%  { opacity: .55; }
  100% { opacity: 0;   transform: scale(1.1); }
}

.bx__logos { display: flex; gap: 10px; margin-top: 20px; }
.bx__logos img { width: 46px; height: 46px; border-radius: 12px; }

.bx__link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-size: 14.5px; font-weight: 700; color: var(--neon);
  transition: gap .25s var(--e);
}
.bx__link::after { content: "→"; transition: transform .25s var(--e); }
.bx__link:hover { gap: 11px; }
:root[data-theme="light"] .bx__link { color: var(--cni-txt); }

/* Marquee */
.marq {
  margin-top: 46px; overflow: hidden; padding-block: 6px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marq__t { display: flex; gap: 16px; width: max-content; animation: slide 40s linear infinite; }
.marq:hover .marq__t { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marq__t li {
  flex: none; width: 96px; height: 96px; padding: 13px;
  display: grid; place-items: center; border-radius: 24px;
  border: 1px solid var(--edge); background: var(--panel);
  transition: transform .25s var(--e), border-color .25s var(--e);
}
.marq__t li:hover { transform: translateY(-5px); border-color: var(--edge-2); }
.marq__t img { width: 100%; border-radius: 20%; }

/* ═══════════ COBERTURA ═══════════ */
.cov {
  padding: clamp(28px, 4vw, 56px); border-radius: var(--r-xl);
  border: 1px solid var(--edge);
  background: linear-gradient(155deg, var(--panel-2), var(--panel));
  backdrop-filter: blur(14px); box-shadow: var(--lift);
}
.cov__head { max-width: 660px; }

.find {
  display: flex; align-items: center; gap: 13px; max-width: 460px;
  margin-top: 30px; padding: 5px 8px 5px 20px;
  border: 1px solid var(--edge); border-radius: 99px; background: var(--bg-2);
  transition: border-color .25s var(--e), box-shadow .25s var(--e);
}
.find:focus-within { border-color: var(--edge-2); box-shadow: 0 0 0 4px rgba(59,232,115,.12); }
.find svg { flex: none; width: 19px; height: 19px; fill: none; stroke: var(--ink-3); stroke-width: 2; stroke-linecap: round; }
.find input {
  flex: 1; min-width: 0; padding: 14px 0; border: 0; outline: 0;
  background: none; font: inherit; font-size: 16px; color: var(--ink);
}
.find input::placeholder { color: var(--ink-3); }
.find__msg { margin-top: 13px; min-height: 1.4em; font-size: 14px; font-weight: 600; color: var(--ink-2); }

.cities { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.cities li {
  padding: 10px 16px; border-radius: 99px;
  border: 1px solid var(--edge); background: var(--bg-2);
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: transform .2s var(--e), border-color .2s var(--e), background .2s var(--e), color .2s var(--e);
}
.cities li:hover { transform: translateY(-2px); border-color: var(--edge-2); color: var(--ink); }
.cities li[data-hit] {
  background: linear-gradient(135deg, var(--neon), var(--cni));
  border-color: transparent; color: #03170A;
  box-shadow: 0 10px 26px rgba(10,165,10,.35);
}
.cities li[hidden] { display: none; }

.cov__none {
  display: grid; gap: 15px; justify-items: start;
  margin-top: 24px; padding: 24px; border-radius: var(--r-lg);
  border: 1px dashed var(--edge); background: var(--bg-2);
}
.cov__none p { color: var(--ink-2); }
.cov__cta { margin-top: 32px; }

/* ═══════════ DEPOIMENTOS ═══════════ */
.says { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.say {
  margin: 0; padding: 32px 28px; border-radius: var(--r-lg);
  border: 1px solid var(--edge); background: var(--panel);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--e), border-color .35s var(--e), box-shadow .35s var(--e);
}
.say:hover { transform: translateY(-5px); border-color: var(--edge-2); box-shadow: var(--lift); }
.say__st { color: var(--gold); font-size: 17px; letter-spacing: 3px; margin-bottom: 16px; }
.say blockquote { margin: 0; font-size: 16px; line-height: 1.7; color: var(--ink); }
.say figcaption { margin-top: 18px; font-size: 13.5px; font-weight: 700; color: var(--ink-3); }

/* ═══════════ FAQ ═══════════ */
.faq { display: grid; gap: 11px; }
.faq__i {
  border: 1px solid var(--edge); border-radius: var(--r);
  background: var(--panel); backdrop-filter: blur(10px);
  transition: border-color .3s var(--e), background .3s var(--e);
}
.faq__i[open] { border-color: var(--edge-2); }
.faq__i summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 21px 26px; font-size: 16.5px; font-weight: 700; cursor: pointer; list-style: none;
  transition: color .25s var(--e);
}
.faq__i summary::-webkit-details-marker { display: none; }
.faq__i summary:hover { color: var(--neon); }
:root[data-theme="light"] .faq__i summary:hover { color: var(--cni-txt); }

.faq__i summary i {
  position: relative; flex: none; width: 21px; height: 21px; border-radius: 50%;
  background: var(--panel-2); transition: transform .35s var(--e), background .3s var(--e);
}
.faq__i summary i::before, .faq__i summary i::after {
  content: ""; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  background: var(--neon); border-radius: 2px;
}
.faq__i summary i::before { width: 9px; height: 2px; }
.faq__i summary i::after  { width: 2px; height: 9px; transition: opacity .25s var(--e); }
.faq__i[open] summary i { transform: rotate(180deg); background: rgba(59,232,115,.15); }
.faq__i[open] summary i::after { opacity: 0; }
:root[data-theme="light"] .faq__i summary i::before,
:root[data-theme="light"] .faq__i summary i::after { background: var(--cni); }

.faq__a { padding: 0 26px 24px; color: var(--ink-2); line-height: 1.75; }
.faq__a a { color: var(--neon); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
:root[data-theme="light"] .faq__a a { color: var(--cni-txt); }

@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq__i::details-content {
    block-size: 0; overflow: hidden;
    transition: block-size .4s var(--e), content-visibility .4s allow-discrete;
  }
  .faq__i[open]::details-content { block-size: auto; }
}

/* ═══════════ CTA FINAL ═══════════ */
.last {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(44px, 6vw, 88px) clamp(26px, 4vw, 64px);
  border-radius: var(--r-xl); text-align: center;
  border: 1px solid var(--edge-2);
  background: linear-gradient(155deg, #041B0B, #072A11 55%, #04150A);
  box-shadow: var(--lift), var(--glow-soft);
}
:root[data-theme="light"] .last { background: linear-gradient(155deg, #06280F, #0A4A1C 60%, #05200C); }
.last__fx { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .55; }
.last__in { position: relative; }
.last__t { font-size: clamp(30px, 4.6vw, 60px); letter-spacing: -.05em; color: #fff; }
.last__p { max-width: 50ch; margin: 20px auto 34px; color: rgba(234,246,237,.72); font-size: clamp(15.5px,1.2vw,18px); line-height: 1.7; }
.last__min { margin-top: 22px; font-size: 13px; color: rgba(234,246,237,.5); }
.last__min i { font-style: normal; opacity: .5; }

/* ═══════════ FOOTER ═══════════ */
.foot { border-top: 1px solid var(--edge); background: var(--bg-2); padding-top: clamp(48px, 5vw, 76px); }
.foot__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 42px 26px; padding-bottom: 48px; }
.foot__brand img { height: 46px; width: auto; margin-bottom: 18px; }
:root[data-theme="light"] .foot__brand img { content: url("logo.webp"); }
.foot__brand p { color: var(--ink-3); font-size: 14.5px; line-height: 1.7; max-width: 40ch; }
.foot__c h2 { font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 17px; }
.foot__c ul { display: grid; gap: 12px; }
.foot__c li { font-size: 14.5px; color: var(--ink-3); }
.foot__c a { transition: color .25s var(--e); }
.foot__c a:hover { color: var(--neon); }
:root[data-theme="light"] .foot__c a:hover { color: var(--cni-txt); }

.foot__end {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  padding: 22px 0 30px; border-top: 1px solid var(--edge);
  font-size: 13px; color: var(--ink-3);
}

/* ═══════════ DOCK + WHATSAPP ═══════════ */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 240;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg-2) 88%, transparent);
  backdrop-filter: blur(20px); border-top: 1px solid var(--edge);
  transform: translateY(110%); transition: transform .45s var(--e);
}
.dock[data-on] { transform: none; }
.dock__in {
  width: min(var(--wrap), 100%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.dock__txt { display: grid; gap: 1px; min-width: 0; }
.dock__txt b { font-size: 15.5px; font-weight: 800; letter-spacing: -.02em; }
.dock__txt span { font-size: 12.5px; color: var(--ink-3); }

.wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 245;
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 99px;
  background: linear-gradient(140deg, #25D366, #0E9F47); color: #fff;
  box-shadow: 0 16px 40px rgba(21,163,74,.45);
  transition: transform .3s var(--e), bottom .45s var(--e);
}
.wa:hover { transform: scale(1.09) rotate(-7deg); }
.wa svg { width: 32px; height: 32px; }
.dock[data-on] ~ .wa { bottom: 96px; }

/* ═══════════ PÁGINAS INTERNAS ═══════════ */
.sub {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 72px);
  background: linear-gradient(170deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--edge);
}
.sub__fx { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .6; }
.sub__t { margin: 20px 0 18px; font-size: clamp(34px, 5vw, 64px); letter-spacing: -.055em; max-width: 17ch; }
.sub__d { max-width: 58ch; color: var(--ink-2); font-size: clamp(15.5px, 1.2vw, 18.5px); line-height: 1.72; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 24px; font-size: 13.5px; color: var(--ink-3); }
.crumbs li { display: flex; align-items: center; gap: 9px; }
.crumbs li + li::before { content: "/"; opacity: .45; }
.crumbs a { transition: color .25s var(--e); }
.crumbs a:hover { color: var(--neon); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Missão e visão */
.mvv { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mv {
  position: relative; overflow: hidden;
  padding: clamp(28px, 3.2vw, 42px); border-radius: var(--r-xl);
  border: 1px solid var(--edge); background: var(--panel); backdrop-filter: blur(12px);
  transition: transform .35s var(--e), border-color .35s var(--e), box-shadow .35s var(--e);
}
.mv:hover { transform: translateY(-5px); border-color: var(--edge-2); box-shadow: var(--lift); }
.mv::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--cni), var(--neon), var(--gold)); }
.mv__i {
  display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 20px;
  border-radius: var(--r); color: var(--neon);
  background: linear-gradient(140deg, rgba(59,232,115,.14), rgba(10,165,10,.06));
}
:root[data-theme="light"] .mv__i { color: var(--cni-txt); }
.mv__i svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mv__t { font-size: 25px; margin-bottom: 13px; }
.mv__q { color: var(--ink-2); line-height: 1.78; font-size: 16.5px; }

/* Meta */
.goal {
  display: flex; flex-wrap: wrap; align-items: center; gap: 30px;
  margin-top: 20px; padding: clamp(26px, 3.4vw, 44px); border-radius: var(--r-xl);
  background: linear-gradient(140deg, #04220E, #0A5220 70%, #04220E);
  border: 1px solid var(--edge-2); box-shadow: var(--lift), var(--glow-soft);
}
.goal__n { display: grid; gap: 4px; }
.goal__n b {
  font-size: clamp(46px, 6.5vw, 78px); font-weight: 800; letter-spacing: -.06em; line-height: 1;
  color: var(--lime); font-variant-numeric: tabular-nums;
}
.goal__n span { font-size: 12.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(234,246,237,.62); }
.goal__p { flex: 1; min-width: 260px; color: rgba(234,246,237,.78); line-height: 1.72; }

/* Valores */
.vals { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 18px; }
.val {
  position: relative; overflow: hidden;
  padding: 30px 28px; border-radius: var(--r-lg);
  border: 1px solid var(--edge); background: var(--panel); backdrop-filter: blur(12px);
  transition: transform .35s var(--e), border-color .35s var(--e), box-shadow .35s var(--e);
}
.val::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--neon), var(--cni));
  transform: scaleY(0); transform-origin: top; transition: transform .45s var(--e);
}
.val:hover { transform: translateY(-5px); border-color: var(--edge-2); box-shadow: var(--lift); }
.val:hover::before { transform: scaleY(1); }
.val__n {
  display: block; margin-bottom: 14px;
  font-size: 30px; font-weight: 800; letter-spacing: -.05em; line-height: 1;
  background: linear-gradient(135deg, var(--neon), var(--lime)); color: transparent;
  -webkit-background-clip: text; background-clip: text;
  font-variant-numeric: tabular-nums;
}
.val__t { font-size: 19.5px; margin-bottom: 10px; }
.val__p { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }

/* Painel + PDF */
.panel {
  padding: clamp(26px, 3.6vw, 48px); border-radius: var(--r-xl);
  border: 1px solid var(--edge);
  background: linear-gradient(155deg, var(--panel-2), var(--panel));
  backdrop-filter: blur(14px); box-shadow: var(--lift);
}
.panel__acts { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }

.pdf {
  margin-top: 30px; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--edge); background: var(--bg-2);
}
.pdf object { display: block; width: 100%; height: min(78vh, 900px); border: 0; }
.pdf__fb { display: grid; gap: 15px; justify-items: start; padding: clamp(26px, 4vw, 44px); color: var(--ink-2); line-height: 1.7; }
.pdf__fb strong { color: var(--ink); font-size: 18px; }

/* ═══════════ ANIMAÇÃO DE ENTRADA ═══════════ */
/* Só esconde se o JS estiver ativo para poder revelar de volta. */
.js [data-anim] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--e), transform .8s var(--e);
  transition-delay: calc(var(--d, 0) * 95ms);
}
.js [data-anim][data-seen] { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .nav__list { gap: 18px; }
  .nav__a { font-size: 13.5px; }
  .nav { gap: 16px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bx--big, .bx--wide { grid-column: span 2; }
  .bx--big { grid-row: auto; }
}

@media (max-width: 1024px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 340px; margin-inline: auto; }
  .hero__astro { width: min(78%, 290px); }
  .orbit span:nth-child(1) { width: 210px; height: 210px; }
  .orbit span:nth-child(2) { width: 285px; height: 285px; }
  .orbit span:nth-child(3) { width: 360px; height: 360px; }
  .float-card { padding: 12px 15px; }
  .float-card__v { font-size: 21px; }
  .float-card--speed { left: -8%; bottom: 12%; }
  .float-card--ping  { right: -6%; top: 10%; }
  .hero__h1 br { display: none; }
  .hero__h1 { max-width: 15ch; }

  .nav {
    position: fixed; inset: var(--head-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 22px var(--pad) 34px;
    background: var(--bg-2); border-bottom: 1px solid var(--edge);
    box-shadow: var(--lift);
    transform: translateY(-130%); visibility: hidden;
    transition: transform .45s var(--e), visibility .45s;
    max-height: calc(100dvh - var(--head-h)); overflow-y: auto;
  }
  .nav[data-open] { transform: none; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li + li { border-top: 1px solid var(--edge); }
  .nav__a { display: block; padding: 16px 2px; font-size: 16.5px; color: var(--ink); }
  .nav__a::after { display: none; }
  .nav__cta { display: grid; gap: 10px; margin-top: 22px; }
  .nav__cta .btn { width: 100%; }
  .burger { display: flex; }

  .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .plan--hero { order: -1; }
  .says { grid-template-columns: 1fr; }
  .sim__tabs { grid-template-columns: repeat(2, 1fr); }
  .mvv { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --head-h: 66px; }
  body { font-size: 16px; }
  .logo__full { display: none; }
  .logo__mark { display: block; }
  .cursor { display: none; }

  .hero { min-height: auto; padding-bottom: 60px; }
  .hero__nums { gap: 18px 26px; }
  .hero__btns .btn { width: 100%; }

  /* cards flutuantes ficam dentro da tela, sem corte nas bordas */
  .float-card--speed { left: 0; bottom: 8%; }
  .float-card--ping  { right: 0; top: 6%; }
  .float-card__v { font-size: 19px; }
  .float-card { padding: 10px 13px; border-radius: 16px; }

  .proof__in { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }

  .sim, .quiz, .cov { padding: 22px 18px; border-radius: var(--r-lg); }
  .sim__tab { padding: 14px 8px; font-size: 12.5px; }
  .sim__foot { flex-direction: column; align-items: flex-start; }
  .race__top { flex-direction: column; align-items: flex-start; gap: 3px; }

  .bento { grid-template-columns: 1fr; }
  .bx--big, .bx--wide { grid-column: auto; }
  .quiz__opts button { padding: 16px 18px; font-size: 15px; }

  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: span 2; }
  .foot__end { flex-direction: column; align-items: flex-start; }

  .dock__txt span { display: none; }
  .wa { width: 54px; height: 54px; right: 16px; }
  .wa svg { width: 29px; height: 29px; }
}

/* ═══════════ ACESSIBILIDADE ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-anim] { opacity: 1; transform: none; }
  .marq__t { animation: none; }
  .cursor { display: none; }
}

@media print {
  .head, .dock, .wa, .mouse, .progress, .cursor, .hero__sky { display: none !important; }
  body { background: #fff; color: #000; }
  [data-anim] { opacity: 1; transform: none; }
}
