/* EYT - landing page. Identidade: EYT ID VISUAL 2026 */

:root {
  --black:  #000000;
  --ink:    #050A37;   /* azul-noite, fundo primario */
  --navy:   #00277B;   /* azul institucional */
  --blue:   #005EF8;   /* azul de marca / acao */
  --ice:    #9FE9FF;   /* azul claro de apoio */
  --orange: #FF6700;   /* acento editorial (capa da ID) */
  --white:  #FFFFFF;
  --paper:  #F2F5FA;

  --txt:        #FFFFFF;
  --txt-soft:   rgba(255,255,255,.62);
  --txt-faint:  rgba(255,255,255,.38);
  --line:       rgba(255,255,255,.12);
  --line-soft:  rgba(255,255,255,.07);

  --shell: min(1180px, 100% - 3rem);
  --r:  14px;
  --r-lg: 22px;

  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  background: var(--black);
  color: var(--txt);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* clip em vez de hidden: hidden quebra position:sticky em alguns browsers */
  overflow-x: clip;
}

img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- primitivos ---------- */

.shell { width: var(--shell); margin-inline: auto; }

.mark { display: block; height: 100%; width: auto; }
.mark .notch { fill: var(--blue); }
.on-blue .mark .notch { fill: var(--ice); }

.eyebrow {
  font-family: var(--display);
  font-size: .688rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ice);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.25rem;
}
.eyebrow { position: relative; }
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,94,248,.2);
  position: relative;
  z-index: 1;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--blue);
  pointer-events: none;
  transform-origin: center;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: no-preference) {
  .eyebrow::after { animation: eyebrow-pulse 1.4s cubic-bezier(.2,.7,.3,1) infinite; }
}
@keyframes eyebrow-pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(3.2); opacity: 0; }
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(3rem, 7.4vw, 5.75rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.125rem; letter-spacing: -.01em; line-height: 1.3; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--txt-soft);
  max-width: 46ch;
  margin: 1.5rem 0 0;
  text-wrap: pretty;
}

.accent  { color: var(--blue); }
.accent-ice { color: var(--ice); }

.btn {
  font-family: var(--display);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .95rem 1.5rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translate(3px, -3px); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 30px -8px rgba(0,94,248,.7);
}
.btn--primary:hover { background: #1A70FF; box-shadow: 0 14px 40px -8px rgba(0,94,248,.85); }

.btn--ghost {
  border-color: var(--line);
  color: var(--txt);
  background: rgba(255,255,255,.03);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }

.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--ice); }

.btn--outline-light { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--sm { padding: .6rem 1.1rem; font-size: .8125rem; }

/* glass surface (reactbits.dev/components/glass-surface), versao CSS/SVG puro */
.btn--glass {
  position: relative;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(4px) saturate(1.4);
  -webkit-backdrop-filter: blur(4px) saturate(1.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -1px 6px rgba(255,255,255,.08),
    0 8px 24px -12px rgba(0,0,0,.6);
  overflow: hidden;
}
.btn--glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  filter: url(#glass-distort);
  z-index: -1;
}
.btn--glass:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.45);
}

/* anel pontilhado - motivo do circulo do simbolo */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(159,233,255,.22);
  pointer-events: none;
  animation: ring-spin 40s linear infinite;
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

#integracao { overflow: hidden; }
#integracao .ring--sw,
#integracao .ring--ne { --ring-size: 500px; width: var(--ring-size); height: var(--ring-size); }
#integracao .ring--sw { bottom: -15%; left: -5%;}
#integracao .ring--ne { --ring-size:750px; top: -35%; right: -15%; }

/* ---------- barra de aviso + nav ---------- */

.topbar {
  background: var(--navy);
  font-size: .8125rem;
  color: rgba(255,255,255,.85);
  position: relative;
  z-index: 60;
}
.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .6rem 0;
  flex-wrap: wrap;
}
.topbar b { font-weight: 600; color: var(--white); }
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: .3rem .85rem;
  border-radius: 100px;
  font-size: .75rem;
  transition: background .2s var(--ease);
}
.topbar a:hover { background: rgba(255,255,255,.22); }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,10,55,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.nav .shell {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 74px;
}
.nav__logo { height: 26px; color: var(--white); }
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  font-size: .875rem;
  color: var(--txt-soft);
}
.nav__links a { transition: color .2s var(--ease); }
.nav__links a:hover { color: var(--white); }
.nav__cta { display: flex; align-items: center; gap: .85rem; margin-left: 2rem; }
.nav__cta .plain { font-size: .875rem; color: var(--txt-soft); }
.nav__cta .plain:hover { color: var(--white); }

/* seletor de idioma - pill com bandeira + dropdown, mesmo padrao visual do menu__panel */
.lang { position: relative; margin-left: 1.25rem; }
.lang__btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .7rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  color: var(--txt-soft);
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.lang__btn:hover, .lang.open .lang__btn { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(159,233,255,.4); }
.lang__caret { transition: transform .2s var(--ease); }
.lang.open .lang__caret { transform: rotate(180deg); }
.lang__list {
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;
  min-width: 132px;
  display: grid;
  gap: .2rem;
  padding: .5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(5,10,55,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.95);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 70;
}
.lang.open .lang__list { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__opt {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .55rem .7rem;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--txt-soft);
  font-family: var(--body);
  font-size: .875rem;
  text-align: left;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang__opt:hover { background: rgba(255,255,255,.06); color: var(--white); }
.lang__opt.on { color: var(--white); background: rgba(0,94,248,.18); }
.lang--menu { margin: .5rem 0 0; }
.lang--menu .lang__list { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-top: .35rem; display: none; }
.lang--menu.open .lang__list { display: grid; }

/* menu mobile - disclosure nativo, sem JS para abrir */
.menu { display: none; margin-left: auto; position: relative; }
.menu > summary {
  list-style: none;
  cursor: pointer;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.04);
}
.menu > summary::-webkit-details-marker { display: none; }
.menu__bars { display: grid; gap: 5px; width: 18px; }
.menu__bars i { display: block; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform .25s var(--ease); }
.menu[open] > summary { border-color: rgba(159,233,255,.4); background: rgba(0,94,248,.18); }
.menu[open] .menu__bars i:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu[open] .menu__bars i:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

.menu__panel {
  position: absolute;
  top: calc(100% + .85rem);
  right: 0;
  min-width: min(280px, calc(100vw - 2rem));
  display: grid;
  gap: .25rem;
  padding: .75rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(5,10,55,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.95);
}
.menu__panel a {
  padding: .8rem 1rem;
  border-radius: 11px;
  font-size: .9375rem;
  color: var(--txt-soft);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.menu__panel a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.menu__cta {
  margin-top: .5rem;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  background: var(--blue);
  color: var(--white) !important;
  font-family: var(--display);
  font-weight: 500;
}
.menu__cta:hover { background: #1A70FF !important; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--line-soft);
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  min-width: 1560px;
  /* glow + scrim precisam estar no mesmo elemento que a foto, listados antes dela,
     senao pintam embaixo e a foto (opaca) cobre tudo */
  background-image:
    radial-gradient(900px 620px at 78% 22%, rgba(0,94,248,.30), transparent 62%),
    radial-gradient(700px 500px at 8% 88%, rgba(0,39,123,.42), transparent 60%),
    linear-gradient(100deg, rgba(5,10,55,.5) 0%, rgba(5,10,55,.28) 28%, rgba(5,10,55,.5) 50%, transparent 100%),
    url("assets/hero-bg.jpg");
  background-size: auto, auto, auto, var(--hero-zoom, 121%) auto;
  background-position: center, center, center, var(--hero-x, 14%) var(--hero-y, 36%);
  background-repeat: no-repeat;
  z-index: 0;
  /* esfumaça a borda de baixo pra nao cortar seco na proxima secao */
  -webkit-mask-image: linear-gradient(to bottom, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 90%, transparent 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 100%);
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero .shell { position: relative; z-index: 2; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

/* hero fica acima da dobra - entra no load, sem esperar scroll/observer */
@keyframes hero-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.js .hero__grid > div:first-child > * { opacity: 0; animation: hero-in .6s var(--ease) forwards; }
.js .hero__grid > div:first-child > *:nth-child(1) { animation-delay: .05s; }
.js .hero__grid > div:first-child > *:nth-child(2) { animation-delay: .12s; }
.js .hero__grid > div:first-child > *:nth-child(3) { animation-delay: .19s; }
.js .hero__grid > div:first-child > *:nth-child(4) { animation-delay: .26s; }
.js .hero__grid > div:first-child > *:nth-child(5) { animation-delay: .33s; }
/* .panel so desliza (sem opacity): o .card la dentro usa backdrop-filter, e
   animar opacity num ancestral do backdrop-filter faz o blur sumir/piscar
   (bug de compositing) */
@keyframes hero-in-slide { from { transform: translateY(16px); } to { transform: none; } }
.js .hero__grid .panel { animation: hero-in-slide .6s var(--ease) .2s backwards; }

.hero .lead { position: relative; }
.hero .lead::before {
  content: "";
  position: absolute;
  inset: -.95rem -2.00rem;
  z-index: -1;
  background: radial-gradient(ellipse at 40% 50%, rgba(0,0,0,.35) 35%, transparent 150%);
  filter: blur(20px);
}
.hero h1 .line2 { display: block; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(159,233,255,.28);
  background: rgba(0,94,248,.12);
  border-radius: 100px;
  padding: .38rem 1rem .38rem .7rem;
  font-family: var(--display);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1.75rem;
}
.dot-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ice);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(159,233,255,.5); }
  50%     { opacity: .55; box-shadow: 0 0 0 7px rgba(159,233,255,0); }
}

.hero__actions { display: flex; gap: .85rem; margin-top: 2.5rem; flex-wrap: wrap; }

.hero__meta {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.hero__meta::before {
  content: "";
  position: absolute;
  inset: -1.35rem -1.00rem;
  z-index: -1;
  background: radial-gradient(ellipse at -30% 50%, rgba(0,0,0,.55) 35%, transparent 100%);
  filter: blur(20px);
}
.hero__meta div { display: grid; gap: .15rem; }
.hero__meta strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.02em;
}
.hero__meta span {
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--txt-faint);
}

/* painel de transacao */
.panel { position: relative; }
.panel .ring--a { inset: -8% -6% auto auto; width: 340px; height: 340px; }
.panel .ring--b { inset: auto auto -12% -8%; width: 220px; height: 220px; }
.hero .ring { border-color: rgba(159,233,255,.45); }

.card {
  position: relative;
  background: linear-gradient(165deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9);
}
.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-soft);
}
.card__label {
  font-family: var(--display);
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--txt-faint);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 100px;
  background: rgba(159,233,255,.14);
  color: var(--ice);
  border: 1px solid rgba(159,233,255,.25);
}
.chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--ice); }

.amount {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -.035em;
  margin: 1.4rem 0 .3rem;
}
.amount small { font-size: .45em; color: var(--txt-faint); font-weight: 400; margin-right: .35rem; }
.card__sub { font-size: .8125rem; color: var(--txt-soft); margin: 0; }

.timeline { list-style: none; margin: 1.6rem 0 3.25rem; padding: 0; display: grid; gap: .1rem; }
.timeline li {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: .85rem;
  padding: .7rem 0;
  font-size: .8125rem;
  border-bottom: 1px solid var(--line-soft);
}
.timeline li:last-child { border-bottom: 0; }
.timeline .tick {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,94,248,.2);
  border: 1px solid rgba(0,94,248,.5);
  color: var(--ice);
}
.timeline .t { color: var(--txt-faint); font-variant-numeric: tabular-nums; font-size: .75rem; }
.timeline li.pending .tick { background: rgba(255,255,255,.05); border-color: var(--line); color: var(--txt-faint); }

.card--float {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 62%;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  /* notificacao mobile: vidro translucido, nao bloco solido */
  background: linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 24px 60px -24px rgba(0,0,0,.7);
}
.card--float .sym { width: 30px; height: 34px; color: var(--white); flex: none; }
.card--float strong { display: block; font-family: var(--display); font-size: .875rem; font-weight: 500; }
.card--float span { font-size: .75rem; color: rgba(255,255,255,.75); }

/* ---------- faixa de numeros ---------- */

.strip {
  background: var(--blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.18) 1.1px, transparent 1.1px);
  background-size: 26px 26px;
  opacity: .45;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}
.strip .shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}
.strip .n {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(100deg,
    rgba(255,255,255,.55) 30%, #fff 50%, rgba(255,255,255,.55) 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .strip .n { animation: shine-text 3.2s linear infinite; }
  .strip .shell > div:nth-child(1) .n { animation-delay: 0s; }
  .strip .shell > div:nth-child(2) .n { animation-delay: .55s; }
  .strip .shell > div:nth-child(3) .n { animation-delay: 1.1s; }
  .strip .shell > div:nth-child(4) .n { animation-delay: 1.65s; }
}
@keyframes shine-text {
  0% { background-position: 140% 0; }
  100% { background-position: -60% 0; }
}
.strip p {
  margin: .6rem 0 0;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

/* ---------- secoes ---------- */

.sec { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.sec--black { background: var(--black); }
.sec--ink   { background: var(--ink); }
.sec--paper { background: var(--paper); color: var(--ink); }

.sec__head { max-width: 62ch; margin-bottom: 3.5rem; }
.sec__head.center { margin-inline: auto; text-align: center; }
.sec__head.center .eyebrow { justify-content: center; }
.sec--paper .lead { color: rgba(5,10,55,.66); }
.sec--paper .eyebrow { color: var(--navy); }

/* bento de recursos */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.bento { perspective: 1200px; }
.tile {
  --mx: 50%; --my: 50%;
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), transform .35s var(--ease);
  transform: perspective(1200px) rotateX(0) rotateY(0) translateY(0) scale(1);
  will-change: transform;
}
.tile:hover {
  border-color: rgba(0,94,248,.55);
  box-shadow: 0 20px 45px -25px rgba(0,94,248,.4);
}
.tile:not(.tile--feature):hover {
  background: linear-gradient(170deg, rgba(0,94,248,.1), rgba(255,255,255,.02));
}
/* spotlight + glow de borda seguem o cursor (--mx/--my setados por JS) */
.tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(160px circle at var(--mx) var(--my), rgba(159,233,255,.65), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(0,94,248,.16), transparent 70%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.tile:hover::before, .tile:hover::after { opacity: 1; }
.tile--wide { grid-column: span 4; }
.tile--full {
  grid-column: span 6;
  display: grid;
  grid-template-columns: auto 1fr 1.15fr;
  gap: 1.75rem;
  align-items: center;
}
.tile--full .ic { margin-bottom: 0; }
.tile .ic {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(0,94,248,.18);
  border: 1px solid rgba(0,94,248,.4);
  color: var(--ice);
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 2;
}
.tile h3 { margin-bottom: .55rem; position: relative; z-index: 2; }
.tile p { margin: 0; font-size: .875rem; color: var(--txt-soft); position: relative; z-index: 2; }

.tile--feature {
  background: linear-gradient(150deg, var(--navy), var(--ink) 70%);
  border-color: rgba(159,233,255,.22);
  position: relative;
  overflow: hidden;
}
.tile--feature .ring { inset: auto -60px -70px auto; width: 230px; height: 230px; }
.tile--feature .big {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .4rem;
  position: relative;
  z-index: 2;
}
.tile--feature h3, .tile--feature p { position: relative; z-index: 2; }

/* split 2 colunas */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--rev .split__media { order: -1; }

.scan {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(0,39,123,.5), rgba(0,0,0,.6));
  padding: 1.75rem;
  overflow: hidden;
}
.scan .ring--c { inset: -30% auto auto -20%; width: 300px; height: 300px; }
.scanline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  background: rgba(255,255,255,.035);
  margin-bottom: .6rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
  /* varredura continua passando de linha em linha - reforça "decisão em
     milissegundos" do texto ao lado, não é so decoração */
  animation: scan-pulse 6s var(--ease) infinite;
}
.scanline::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(100deg, transparent 40%, rgba(159,233,255,.4) 50%, transparent 60%);
  transform: translateX(-120%);
  pointer-events: none;
  animation: scan-sweep 6s var(--ease) infinite;
}
.scanline:nth-child(1) { animation-delay: 0s; }
.scanline:nth-child(1)::after { animation-delay: 0s; }
.scanline:nth-child(2) { animation-delay: 1.4s; }
.scanline:nth-child(2)::after { animation-delay: 1.4s; }
.scanline:nth-child(3) { animation-delay: 2.8s; }
.scanline:nth-child(3)::after { animation-delay: 2.8s; }
.scanline:nth-child(4) { animation-delay: 4.2s; }
.scanline:nth-child(4)::after { animation-delay: 4.2s; }
@keyframes scan-pulse {
  0% { border-color: rgba(159,233,255,.65); background: rgba(159,233,255,.09); box-shadow: 0 0 22px -6px rgba(159,233,255,.5); transform: scale(1.012); }
  20% { border-color: rgba(159,233,255,.2); background: rgba(159,233,255,.03); box-shadow: none; transform: scale(1); }
  32%, 100% { border-color: var(--line-soft); background: rgba(255,255,255,.035); box-shadow: none; transform: scale(1); }
}
@keyframes scan-sweep {
  0% { transform: translateX(-120%); }
  22% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.scanline:hover { border-color: rgba(159,233,255,.4); transform: translateX(3px); }
.scanline:last-child { margin-bottom: 0; }
.scanline b { font-family: var(--display); font-weight: 500; font-size: .9375rem; display: block; }
.scanline span { font-size: .75rem; color: var(--txt-faint); }
.score {
  font-family: var(--display);
  font-size: .8125rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 100px;
  letter-spacing: .04em;
}
.score--ok   { background: rgba(159,233,255,.16); color: var(--ice);   border: 1px solid rgba(159,233,255,.3); }
.score--warn { background: rgba(255,103,0,.15);   color: #FFA766;      border: 1px solid rgba(255,103,0,.35); }
.score--stop { background: rgba(255,255,255,.07);  color: var(--txt-faint); border: 1px solid var(--line); }

.checks { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .9rem; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: .9rem; align-items: start; font-size: .9375rem; color: var(--txt-soft); transition: color .25s var(--ease); }
.checks .arw-b { color: var(--blue); margin-top: 3px; transition: transform .25s var(--ease); display: inline-flex; }
.checks li:hover .arw-b { transform: translate(2px, -2px); }
.checks li:hover { color: var(--txt); }
.sec--paper .checks li:hover { color: var(--ink); }
.checks b { color: var(--white); font-weight: 600; }
.sec--paper .checks li { color: rgba(5,10,55,.7); }
.sec--paper .checks b { color: var(--ink); }

/* preco */
.price-wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
}
.price-main {
  background: linear-gradient(150deg, var(--blue), var(--navy) 85%);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(159,233,255,.25);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.price-main:hover { border-color: rgba(159,233,255,.5); box-shadow: 0 30px 70px -30px rgba(0,94,248,.5); }
.price-main .ring { inset: -25% -18% auto auto; width: 380px; height: 380px; }
.price-main .rate {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .95;
  position: relative;
  z-index: 2;
}
.price-main .rate sup { font-size: .3em; letter-spacing: 0; vertical-align: super; opacity: .8; }
.price-main .rate--word { font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; }
.price-main .rate-sub { position: relative; z-index: 2; color: rgba(255,255,255,.82); margin: 1rem 0 0; max-width: 36ch; }
.price-main__cta { position: relative; z-index: 2; margin-top: 2rem; }
.price-main .eyebrow { color: var(--ice); }

.zeros { display: grid; gap: 1rem; }
.zero {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  background: rgba(255,255,255,.03);
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 1.1rem;
  align-items: start;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.zero:hover {
  border-color: rgba(0,94,248,.5);
  transform: translateY(-3px);
  background: linear-gradient(170deg, rgba(0,94,248,.1), rgba(255,255,255,.02));
}
.zero .z {
  font-family: 'JetBrains Mono', ui-monospace, Consolas, monospace;
  font-variant-numeric: slashed-zero;
  font-size: 6.5rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  transition: transform .3s var(--ease);
}
.zero:hover .z { transform: scale(1.08); }
.zero > div { margin-top: .5rem; max-width: 32ch; }
.zero:nth-child(1) > div { margin-top: 2rem; }
.zero:nth-child(2) > div { margin-top: 2rem; }
.zero:nth-child(3) > div { margin-top: 2rem; }
.zero b { display: block; font-family: var(--display); font-weight: 500; font-size: .9375rem; }
.zero span { font-size: .8125rem; color: var(--txt-soft); }

/* passos */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 4rem;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  border-top: 1.5px dashed rgba(159,233,255,.25);
  z-index: 0;
}
.step { position: relative; z-index: 2; text-align: center; }
.step .num {
  width: 54px; height: 54px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: var(--ink);
  border: 1.5px solid rgba(159,233,255,.35);
  color: var(--ice);
  animation: step-pulse 4.5s var(--ease) infinite;
}
.step:first-child .num { background: var(--blue); border-color: var(--blue); color: var(--white); animation-name: step-pulse-blue; }
.step:nth-child(1) .num { animation-delay: 0s; }
.step:nth-child(2) .num { animation-delay: 1.5s; }
.step:nth-child(3) .num { animation-delay: 3s; }

@keyframes step-pulse {
  0%       { transform: scale(1); border-color: rgba(159,233,255,.35); box-shadow: 0 0 0 0 rgba(159,233,255,0); }
  10%      { transform: scale(1.08); border-color: var(--ice); box-shadow: 0 0 0 6px rgba(159,233,255,.12); }
  20%      { transform: scale(1.08); border-color: var(--ice); box-shadow: 0 0 0 6px rgba(159,233,255,.12); }
  32%, 100% { transform: scale(1); border-color: rgba(159,233,255,.35); box-shadow: 0 0 0 0 rgba(159,233,255,0); }
}
@keyframes step-pulse-blue {
  0%       { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,94,248,0); }
  10%      { transform: scale(1.08); box-shadow: 0 0 0 6px rgba(0,94,248,.18); }
  20%      { transform: scale(1.08); box-shadow: 0 0 0 6px rgba(0,94,248,.18); }
  32%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,94,248,0); }
}
.step h3 { margin-bottom: .6rem; }
.step p { margin: 0; font-size: .875rem; color: var(--txt-soft); max-width: 32ch; margin-inline: auto; }

/* codigo */
.code {
  background: #04060f;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.code__bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,.025);
}
.code__bar .tab {
  font-family: var(--display);
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 6px;
  color: var(--txt-faint);
  cursor: pointer;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.code__bar .tab.on { background: rgba(0,94,248,.22); color: var(--ice); }
.code__bar .tab:not(.on):hover { color: var(--txt-soft); background: rgba(255,255,255,.05); }
.code__bar .stat { margin-left: auto; font-size: .6875rem; color: var(--ice); letter-spacing: .1em; }
.code pre {
  display: none;
  margin: 0;
  padding: 1.4rem 1.5rem;
  font-size: .8125rem;
  line-height: 1.75;
  overflow-x: auto;
  color: rgba(255,255,255,.82);
}
.code pre.on { display: block; }
.code .k { color: #7FB4FF; }
.code .s { color: var(--ice); }
.code .c { color: rgba(255,255,255,.32); }
.code .n { color: #FFA766; }

/* provas / depoimentos */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.quote {
  background: var(--white);
  border: 1px solid rgba(5,10,55,.09);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover {
  transform: translateY(-4px);
  border-color: rgba(0,94,248,.25);
  box-shadow: 0 24px 50px -28px rgba(5,10,55,.35);
}
.quote p { margin: 0; font-size: .9375rem; color: rgba(5,10,55,.78); }
.quote b { color: var(--navy); }
.quote footer { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.quote .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue), var(--navy));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: .8125rem;
  font-weight: 600;
  flex: none;
}
.quote footer div { display: grid; }
.quote footer strong { font-size: .875rem; font-family: var(--display); font-weight: 500; }
.quote footer span { font-size: .75rem; color: rgba(5,10,55,.5); }

.compliance {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(5,10,55,.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.compliance span {
  font-family: var(--display);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(5,10,55,.45);
  transition: color .25s var(--ease), transform .25s var(--ease);
  display: inline-block;
}
.compliance span:hover { color: var(--navy); transform: translateY(-1px); }

/* CTA final */
.cta {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 50%, #000, transparent);
  mask-image: radial-gradient(70% 60% at 50% 50%, #000, transparent);
}
.js .cta::before { display: none; }
.cta__threads { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; display: none; }
.js .cta__threads { display: block; }
.cta .shell { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.cta .lead { margin-inline: auto; color: rgba(255,255,255,.85); }
.cta__actions { display: flex; gap: .85rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.cta__note {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.cta__note span { display: inline-flex; align-items: center; gap: .5rem; }

/* rodape */
.foot { background: var(--black); padding: 4.5rem 0 2.5rem; border-top: 1px solid var(--line-soft); }
.foot__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; }
.foot__logo { height: 30px; color: var(--white); margin-bottom: 1.25rem; }
.foot p { font-size: .8125rem; color: var(--txt-faint); max-width: 34ch; margin: 0; }
.foot h4 {
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--txt-faint);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.foot__addr {
  font-style: normal;
  font-size: .8125rem;
  color: var(--txt-faint);
  line-height: 1.7;
  margin-top: 1.25rem;
}
.foot__addr strong { display: block; color: var(--txt-soft); font-weight: 500; margin-bottom: .35rem; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.foot ul a { font-size: .875rem; color: var(--txt-soft); transition: color .2s var(--ease); }
.foot ul a:hover { color: var(--white); }
.foot__certs {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.foot__certs h4 {
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--txt-faint);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.foot__certs-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.foot__certs-row img {
  height: 64px;
  width: auto;
  opacity: .85;
  transition: opacity .2s var(--ease);
}
.foot__certs-row img:hover { opacity: 1; }
@media (max-width: 760px) {
  .foot__certs-row { gap: 1.5rem; }
  .foot__certs-row img { height: 48px; }
}
.foot__base {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .75rem;
  color: var(--txt-faint);
}

/* revelacao ao rolar - so esconde quando o JS esta vivo */
.js .rise { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .rise.in { opacity: 1; transform: none; }

/* ---------- responsivo ---------- */

@media (max-width: 1020px) {
  .hero { background: var(--ink); }
  .hero::after {
    min-width: 0;
    background-image:
      radial-gradient(900px 620px at 78% 22%, rgba(0,94,248,.30), transparent 62%),
      radial-gradient(700px 500px at 8% 88%, rgba(0,39,123,.42), transparent 60%),
      linear-gradient(180deg, rgba(5,10,55,.55) 0%, var(--ink) 62%, var(--ink) 100%),
      url("assets/hero-bg.jpg");
    background-size: auto, auto, auto, var(--hero-zoom-m, 400%) auto;
    background-position: center, center, center, var(--hero-x-m, 31%) var(--hero-y-m, 0%);
  }
  .hero__grid { grid-template-columns: 1fr; }
  .panel { margin-top: 1rem; }
  .card--float { position: static; width: 100%; margin-top: 1rem; animation: none; }
  .panel .ring { display: none; }
  .split, .price-wrap { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .tile--wide, .tile--full { grid-column: span 4; }
  .tile--full { grid-template-columns: 1fr; gap: 1rem; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .lang--nav { display: none; }
  .menu { display: block; }
  .nav__cta { margin-left: auto; }
}

@media (max-width: 720px) {
  :root { --shell: min(1180px, 100% - 2rem); }
  /* barra de aviso some no mobile: o site fica mais curto e o nav gruda no topo */
  .topbar { display: none; }
  /* faixa de numeros compacta no mobile */
  .strip .shell { grid-template-columns: 1fr 1fr; gap: 1.5rem .75rem; padding: 1.75rem 0; }
  .strip .n { font-size: 1.35rem; letter-spacing: -.03em; }
  .strip p { font-size: .625rem; letter-spacing: .1em; margin-top: .35rem; }
  .bento, .quotes { grid-template-columns: 1fr; }
  .tile, .tile--wide, .tile--full { grid-column: span 1; }
  .timeline { margin-bottom: 0; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .hero__meta { gap: 1.5rem 2rem; }
  /* abaixo de 720px o botao vive dentro do menu, para o logo respirar */
  .nav__cta { display: none; }
  .menu { margin-left: auto; }
  /* coluna unica no mobile: centraliza tudo, senao fica colado na esquerda */
  .foot__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .foot p { max-width: none; }
  .foot__base { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .rise { opacity: 1; transform: none; }
}

/* cards da secao clara sem atribuicao a pessoa */
.quote h3 { color: var(--ink); margin-bottom: .15rem; }
.quote h3 + p { color: rgba(5,10,55,.66); }
