@charset "UTF-8";
/* ============================================================
   ILHA TECH — Sistema de design "Centro de Controle"
   Paleta oficial Velvet Lima v1.0.0 (validada 13-07-2026)
   Tipografia: Poppins (fonte única da marca)
   ============================================================ */

/* ---- Tokens ---- */
:root {
  /* Paleta oficial Velvet Lima (HEX exatos da identidade) */
  --branco:       #FFFFFF;   /* fundo base */
  --lilas:        #EDE8FF;   /* seção clara alternada */
  --velvet:       #14062F;   /* caráter/âncora: nav, hero, rodapé, seções escuras */
  --velvet-claro: #241354;   /* superfície: cards dentro de seções escuras */
  --uva:          #9333EA;   /* acento: tags, eyebrows, ícones, números, hover */
  --lima:         #4ADE80;   /* AÇÃO exclusiva: CTAs, botões primários */
  --tinta:        #0C0C14;   /* texto quase-preto sobre fundos claros */

  /* Derivadas (transparências permitidas do mesmo universo) */
  --branco-72:  rgba(255,255,255,.72);
  --branco-58:  rgba(255,255,255,.58);
  --branco-14:  rgba(255,255,255,.14);
  --branco-08:  rgba(255,255,255,.08);
  --uva-40:     rgba(147,51,234,.40);
  --uva-14:     rgba(147,51,234,.14);
  --lima-esc:   #37c06a;      /* hover do CTA (lima levemente escurecido) */
  --tinta-64:   rgba(12,12,20,.64);
  --tinta-08:   rgba(12,12,20,.08);

  /* Tipografia — Poppins única */
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Escala de tipo (fluida, corpo ≥16px) */
  --t-hero:  clamp(2.1rem, 3.7vw, 3.2rem);
  --t-h2:    clamp(1.75rem, 3.4vw, 2.75rem);
  --t-h3:    clamp(1.12rem, 1.6vw, 1.32rem);
  --t-body:  clamp(1rem, 1.05vw, 1.125rem);
  --t-lead:  clamp(1.06rem, 1.3vw, 1.28rem);
  --t-small: .82rem;
  --t-mono:  .79rem;

  /* Espaço & forma */
  --maxw: 1160px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --sec-pad: clamp(4.5rem, 9vw, 8rem);
  --radius: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-soft: 0 22px 60px -30px rgba(20,6,47,.45);
  --shadow-card: 0 14px 40px -24px rgba(20,6,47,.30);
  --header-h: 74px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--tinta);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }

:focus-visible {
  outline: 3px solid var(--lima);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---- Eyebrow (rótulo de telemetria) ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--t-mono); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--uva);
  margin-bottom: 1.1rem;
}
.sec--dark .eyebrow, .hero .eyebrow { color: #c79bff; }
.eyebrow__tick { width: 22px; height: 2px; background: var(--lima); border-radius: 2px; }

/* ---- Botões ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .96rem;
  padding: .8rem 1.3rem; border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--cta { background: var(--lima); color: var(--tinta); box-shadow: 0 10px 26px -10px rgba(74,222,128,.6); }
.btn--cta:hover { background: var(--lima-esc); transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn--ghost { color: #fff; border: 1.5px solid var(--branco-14); }
.btn--ghost:hover { border-color: var(--uva); background: var(--uva-14); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--velvet);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.is-stuck { box-shadow: 0 10px 30px -18px rgba(0,0,0,.7); background: rgba(20,6,47,.86); backdrop-filter: blur(12px); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  height: var(--header-h); display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .5rem; color: #fff; }
.brand__mark { font-size: 1.7rem; line-height: 1; }
.brand__word { font-family: "Gugi", var(--font); font-weight: 400; font-size: 1.16rem; letter-spacing: .01em; }
.brand__word b { font-weight: 400; color: var(--uva); }
.sec--dark .brand__word b, .nav .brand__word b, .foot .brand__word b { color: #b57cff; }
.nav__links { margin-left: auto; display: flex; gap: clamp(.7rem, 1.4vw, 1.35rem); }
.nav__links a { color: var(--branco-72); font-size: .92rem; font-weight: 500; white-space: nowrap; transition: color .2s; }
.nav__links a:hover { color: #fff; }
.nav__cta { margin-left: .6rem; flex-shrink: 0; padding: .62rem 1.05rem; font-size: .9rem; }
.nav__cta svg { width: 16px; height: 16px; }
.nav__toggle { display: none; color: #fff; padding: .3rem; }
.nav__toggle svg { width: 26px; height: 26px; }
.nav__mobile { display: none; }

/* ============================================================
   HERO — console orbital
   ============================================================ */
.hero {
  position: relative; background: var(--velvet); color: #fff;
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(120% 90% at 78% 8%, var(--uva-14), transparent 60%),
    linear-gradient(var(--branco-08) 1px, transparent 1px),
    linear-gradient(90deg, var(--branco-08) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  mask-image: radial-gradient(120% 120% at 60% 10%, #000 30%, transparent 78%);
  opacity: .5;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: clamp(1.2rem, 3vw, 2.4rem);
}
.hero__title { font-size: var(--t-hero); font-weight: 900; letter-spacing: -.03em; }
.hero__title { max-width: 17ch; text-wrap: balance; }
/* o hífen de "Nave-Mãe" não pode quebrar linha (parte o nome do produto) */
.nb { white-space: nowrap; }
.hero__sub { color: var(--branco-72); font-size: var(--t-lead); margin-top: 1.3rem; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

/* ---- Régua de números no hero (prova onde a decisão acontece) ---- */
.hero__regua {
  display: flex; flex-wrap: wrap; gap: .5rem 1.9rem;
  margin-top: 1.7rem; padding-top: 1.3rem; border-top: 1px solid var(--branco-08);
}
.hero__regua div { display: flex; flex-direction: column; }
.hero__regua b {
  font-size: clamp(1.25rem, 1.9vw, 1.5rem); font-weight: 900; color: #fff;
  font-variant-numeric: tabular-nums; line-height: 1.05;
}
.hero__regua span {
  font-size: var(--t-mono); color: var(--branco-58);
  letter-spacing: .05em; text-transform: uppercase; margin-top: .2rem;
}

/* ---- Rede da Nave-Mãe ---- */
.rede { margin: 0; width: 100%; max-width: 620px; }
.rede svg { width: 100%; height: auto; display: block; }
.rede figcaption {
  margin-top: .3rem; text-align: center;
  font-size: var(--t-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--branco-58);
}
.rede__mod  { font-size: 11.5px; font-weight: 600; fill: rgba(255,255,255,.82); letter-spacing: .02em; }
.rede__nave { font-size: 11.5px; font-weight: 700; fill: #fff; letter-spacing: .02em; }
.rede__nucleo { fill: #fff; font-size: 13px; font-weight: 800; letter-spacing: .18em; }
.rede__nucleo-sub { fill: var(--branco-58); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.rede__aneis { transform-origin: 330px 300px; animation: gira 120s linear infinite; }
.rede__varre { transform-origin: 330px 300px; animation: gira 9s linear infinite; }
@keyframes gira { to { transform: rotate(360deg); } }

/* ============================================================
   DIVISOR geométrico
   ============================================================ */
/* VARREDURA — gesto único, só na entrada da Nave-Mãe.
   A faixa é Velvet, a mesma cor da seção logo abaixo: não existe junta de
   cores diferentes, então não existe filete. A linha de radar ecoa o
   console orbital do hero. */
.varredura {
  height: 44px; background: var(--velvet);
  position: relative; overflow: hidden;
}
.varredura::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--branco-14);
}
.varredura::after {
  content: ""; position: absolute; top: 0; left: -40%; width: 40%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lima), transparent);
  animation: varre 4.5s cubic-bezier(.4, 0, .6, 1) infinite;
}
@keyframes varre { 0% { left: -40%; } 100% { left: 100%; } }

/* ============================================================
   SEÇÕES base
   ============================================================ */
.sec { padding: var(--sec-pad) 0; }
.sec--light { background: var(--branco); color: var(--tinta); }
.sec--mist  { background: var(--lilas); color: var(--tinta); }
.sec--dark  { background: var(--velvet); color: #fff; }

/* Dois blocos claros encostando: a Identidade Visual pede separação
   ("nunca usar após um bloco também claro sem separação"). Branco e Lilás
   Bruma são próximos demais para a junta se ler sozinha. Hairline de 1px na
   cor do texto a 8%, o mesmo vocabulário da borda dos cards. Hoje isso
   acontece em uma junta só (produtos → como operamos): são 5 seções claras
   para 4 posições de separação escura. */
.sec--light + .sec--light,
.sec--light + .sec--mist,
.sec--mist  + .sec--light,
.sec--mist  + .sec--mist { border-top: 1px solid var(--tinta-08); }

.sec__head { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__head--center .eyebrow { justify-content: center; }
.sec h2 { font-size: var(--t-h2); }
.sec__lead { font-size: var(--t-lead); color: var(--tinta-64); margin-top: 1rem; }
.sec--dark .sec__lead { color: var(--branco-72); }

/* ---- O que é: pilares ---- */
.pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.pill {
  background: var(--branco); border: 1px solid var(--tinta-08); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.pill:hover { transform: translateY(-4px); border-color: var(--uva-40); }
/* fundo branco (não uva-14): regra anti-roxo-sobre-roxo da Identidade Visual */
.pill__ic {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px;
  background: var(--velvet); color: #fff; margin-bottom: 1.1rem; box-shadow: var(--shadow-card);
}
.pill__ic svg { width: 24px; height: 24px; }
.pill h3 { font-size: var(--t-h3); margin-bottom: .5rem; }
.pill p { color: var(--tinta-64); font-size: .98rem; }

/* ============================================================
   HISTÓRIA / A ORIGEM (fala do CEO)
   Uma coluna de leitura, não duas. O card sticky antigo boiava ao lado de
   um texto muito mais alto e deixava um vazio enorme na seção.
   ============================================================ */
.hist__col { max-width: 44rem; }
.hist__col h2 { font-size: var(--t-h2); max-width: 20ch; }
.hist__text { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; }
.hist__text p { color: var(--tinta-64); font-size: var(--t-lead); }
.hist__text p:first-child { color: var(--tinta); font-weight: 500; }

/* fecho de carta: citação + assinatura com a foto grande */
.hist__fecho {
  margin: clamp(2.2rem, 4vw, 3rem) 0 0;
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid var(--tinta-08);
}
.hist__aspas {
  display: block; font-family: Georgia, serif; font-size: 4rem;
  line-height: .5; color: var(--uva); height: 1.7rem;
}
.hist__quote {
  margin: 0; font-size: clamp(1.32rem, 2.4vw, 1.9rem); font-weight: 700;
  line-height: 1.25; letter-spacing: -.02em; color: var(--tinta); max-width: 26ch;
}
.hist__sign { display: flex; align-items: center; gap: 1.1rem; margin-top: 1.6rem; }
.hist__avatar {
  width: 132px; height: 132px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--uva); box-shadow: var(--shadow-card);
}
.hist__who { display: flex; flex-direction: column; font-size: .96rem; color: var(--tinta-64); line-height: 1.4; }
.hist__who b { color: var(--tinta); font-weight: 700; font-size: 1.12rem; }

/* ============================================================
   NAVE-MÃE (dark)
   ============================================================ */
.nm__head {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.nm__title { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; }
.nm__sub { color: var(--lima); font-weight: 600; margin-top: .5rem; letter-spacing: .01em; }
.nm__text { color: var(--branco-72); font-size: var(--t-lead); margin-top: 1.1rem; max-width: 48ch; }
.nm__badge {
  display: grid; place-items: center; width: 168px; height: 168px; border-radius: 50%;
  border: 1.5px solid var(--uva-40); background: radial-gradient(circle at 50% 40%, var(--uva-14), transparent 70%);
}
.nm__badge-360 { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.nm__badge-lbl { font-size: var(--t-mono); text-transform: uppercase; letter-spacing: .14em; color: var(--branco-58); margin-top: .3rem; }

.mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 1.6vw, 1.3rem); }
.mod {
  background: var(--velvet-claro); border: 1px solid var(--branco-08); border-radius: var(--radius);
  padding: 1.4rem; transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.mod:hover { transform: translateY(-4px); border-color: var(--uva-40); }
.mod__top { margin-bottom: 1.4rem; }
.mod__state {
  font-size: var(--t-mono); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--lima); background: rgba(74,222,128,.1); padding: .25rem .55rem; border-radius: 999px;
}
.mod--todo .mod__state { color: #c79bff; background: var(--uva-14); }
.mod h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.mod p { color: var(--branco-72); font-size: .92rem; }
.mod--todo { border-style: dashed; border-color: var(--uva-40); opacity: .92; }

/* ============================================================
   PRODUTOS — As Naves
   ============================================================ */
.nave-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.nave {
  background: #fff; border: 1px solid var(--tinta-08); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem); transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.nave:hover { transform: translateY(-4px); border-color: var(--uva-40); }
.nave__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.nave__mark { width: 44px; height: 44px; }
.nave__tag {
  font-size: var(--t-mono); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--uva); background: #fff; border: 1px solid var(--uva-40);
  padding: .3rem .6rem; border-radius: 999px; white-space: nowrap;
}
.nave h3 { font-size: var(--t-h3); margin-bottom: .5rem; }
.nave p { color: var(--tinta-64); font-size: .96rem; }
/* flagship: Nave Mãe destacada */
.nave--flag { background: var(--velvet); color: #fff; border-color: transparent; }
.nave--flag h3 { color: #fff; }
.nave--flag p { color: var(--branco-72); }
.nave--flag .nave__tag { color: var(--lima); background: rgba(74,222,128,.12); }
.nave--flag .nave__mark path:nth-of-type(1) { fill: #b57cff; }

/* ============================================================
   MERCADO (dark) — por que turismo, por que agora
   ============================================================ */
.mkt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.mkt {
  background: var(--velvet-claro); border: 1px solid var(--branco-08); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 1.9rem); transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.mkt:hover { transform: translateY(-4px); border-color: var(--uva-40); }
.mkt h3 { font-size: var(--t-h3); margin-bottom: .55rem; }
.mkt p { color: var(--branco-72); font-size: .96rem; }

/* ============================================================
   COMO OPERAMOS — áreas
   ============================================================ */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.area {
  position: relative; background: var(--lilas); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem); overflow: hidden;
  transition: transform .3s var(--ease); border: 1px solid transparent;
}
.area:hover { transform: translateY(-4px); border-color: var(--uva-40); }
.area__n {
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 1rem; font-weight: 700; color: var(--uva); font-variant-numeric: tabular-nums; letter-spacing: .05em; opacity: .6;
}
.area__ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: #fff; color: var(--uva); margin-bottom: 1rem; box-shadow: var(--shadow-card); }
.area__ic svg { width: 23px; height: 23px; }
.area h3 { font-size: var(--t-h3); margin-bottom: .5rem; }
.area p { color: var(--tinta-64); font-size: .96rem; }

/* ============================================================
   CULTURA — valores
   ============================================================ */
.val-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.val {
  display: flex; flex-direction: column; gap: .55rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--tinta-08); border-radius: 14px;
  padding: 1.1rem 1.15rem; font-weight: 600; font-size: .95rem; letter-spacing: -.01em;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.val:hover { transform: translateY(-3px); border-color: var(--uva-40); }
.val__emoji { font-size: 1.5rem; }

/* ============================================================
   NÚMEROS (dark console)
   ============================================================ */
.sec--stats .stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.stat {
  background: var(--velvet-claro); border: 1px solid var(--branco-08); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem); text-align: center;
}
.stat__v { display: block; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; color: #fff; font-variant-numeric: tabular-nums; line-height: 1; }
.stat--todo .stat__v { color: var(--uva); }
.stat__l { display: block; margin-top: .7rem; color: var(--branco-72); font-size: .92rem; }
.stat--todo { border-style: dashed; border-color: var(--uva-40); }
.stats__note { text-align: center; margin-top: 2rem; color: var(--branco-58); font-size: var(--t-small); }

/* ============================================================
   CONTATO
   ============================================================ */
/* fechamento à esquerda (era tudo centralizado: 6 linhas de texto corrido
   centralizado é o que mais atrapalhava a leitura da seção) */
.contato__grid {
  display: grid; grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr);
  gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center;
}
.contato__retrato { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
.contato__retrato img {
  width: 148px; height: 148px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--uva);
}
.contato__quem { display: flex; flex-direction: column; font-size: .9rem; color: var(--branco-72); line-height: 1.35; }
.contato__quem b { color: #fff; font-weight: 700; font-size: 1.02rem; }
.contato h2 { font-size: var(--t-h2); max-width: 19ch; }
.contato__lead { color: var(--branco-72); font-size: var(--t-lead); margin: 1.1rem 0 0; max-width: 50ch; }
.contato__acao { display: flex; flex-wrap: wrap; gap: .7rem 1rem; align-items: center; margin-top: 1.7rem; }
.contato__mail { color: var(--branco-58); font-size: var(--t-small); }
/* o emblema é bloco dentro de um pai alinhado à esquerda: precisa do
   text-align próprio pra continuar centralizado */
.contato__emblem { display: block; text-align: center; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; margin-top: clamp(2.2rem, 4vw, 3rem); }

/* ============================================================
   RODAPÉ
   ============================================================ */
.foot { background: #0c0420; color: var(--branco-72); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--branco-08); }
.foot__brand p { margin-top: 1rem; max-width: 40ch; font-size: .94rem; }
.foot__brand .brand { color: #fff; margin-bottom: .3rem; }
.foot__links { display: flex; flex-direction: column; gap: .7rem; align-content: start; }
.foot__links a { font-size: .95rem; padding: .35rem 0; transition: color .2s; }
.foot__links a:hover { color: var(--lima); }
.foot__base { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.5rem; font-size: var(--t-small); color: var(--branco-58); flex-wrap: wrap; }
.foot__tag { color: var(--uva); font-weight: 500; }

/* ---- Prova (link ilhatour.com em Como operamos) ---- */
.operamos__proof { margin-top: 2.4rem; font-size: 1rem; color: var(--tinta-64); }
.operamos__proof a { color: var(--uva); font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }
.operamos__proof a svg { width: 16px; height: 16px; }
.operamos__proof a:hover { text-decoration: underline; }

/* ============================================================
   PÁGINA 404
   ============================================================ */
.err { min-height: 100vh; display: grid; place-items: center; background: var(--velvet); color: #fff; padding: 2rem; text-align: center; }
.err__inner { max-width: 30rem; }
.err__logo { display: block; font-size: 3.4rem; line-height: 1; margin: 0 auto 1.2rem; }
.err__code { font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 900; color: var(--uva); line-height: 1; letter-spacing: .04em; }
.err__title { font-size: var(--t-h2); margin: .4rem 0 .8rem; }
.err__lead { color: var(--branco-72); font-size: var(--t-lead); margin-bottom: 2rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  /* copy antes do gráfico: no mobile a frase e o CTA vêm primeiro */
  .hero__viz { order: 1; max-width: 320px; margin-inline: auto; }
  .hero__title { max-width: none; }
  .nm__head { grid-template-columns: 1fr; }
  .nm__badge { display: none; }
  .pill-grid, .area-grid, .nave-grid, .mkt-grid { grid-template-columns: repeat(2, 1fr); }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .val-grid { grid-template-columns: repeat(3, 1fr); }
  .sec--stats .stat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile[hidden] { display: none; }
  .nav__mobile { display: flex; flex-direction: column; gap: .3rem; padding: .5rem var(--gutter) 1.2rem; background: var(--velvet); border-top: 1px solid var(--branco-08); }
  .nav__mobile a { color: var(--branco-72); padding: .7rem 0; font-weight: 500; }
  .contato__grid { grid-template-columns: 1fr; }
  /* especificidade: precisa vencer ".nav__mobile a" (cor e padding) */
  .nav__mobile .btn { margin-top: .8rem; justify-content: center; padding: .85rem 1.3rem; color: var(--tinta); }
}
@media (max-width: 560px) {
  .pill-grid, .area-grid, .mod-grid, .nave-grid, .mkt-grid { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: repeat(2, 1fr); }
  .sec--stats .stat-grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOVIMENTO REDUZIDO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  /* sem animação a varredura pararia fora da tela: estaciona ela visível */
  .varredura::after { left: 30%; }
}
