/* ===========================================================================
   GeoVex — Site institucional (geovex.com.br)
   SKIN AZUL (Space Grotesk) compartilhada com o site Deslok — migrada a pedido
   (o azul ficou melhor que o verde). Identidade "segurança tech": navy +
   azul elétrico + âmbar; tipografia geométrica (Space Grotesk + Inter).
   Sem build: CSS puro, variáveis nativas.

   Sumário:
     1.  Tokens · 2. Reset/base · 3. Utilitários (botões/chips/cards)
     4.  Navbar · 5. Hero + mapa ao vivo · 6. Faixa tech · 7. Estatísticas
     8.  Recursos · 9. Como funciona · 10. Showcase/telemetria · 11. Cobertura
     12. Planos · 13. Depoimentos · 14. FAQ · 15. CTA · 16. Contato
     17. Rodapé · 18. LGPD · 19. Reveal · 20. Responsivo
   =========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  --navy:        #0b1220;   /* fundo escuro principal */
  --navy-2:      #070b14;   /* escuro mais profundo */
  --navy-soft:   #131d31;   /* superfícies escuras */
  --bg:          #f4f7fc;   /* fundo claro */
  --bg-2:        #e9eef8;   /* claro alternado */
  --paper:       #ffffff;
  --ink:         #0f1726;   /* texto sobre claro */
  --ink-soft:    #51607a;   /* texto secundário claro */

  --blue:        #2f6bff;   /* acento primário */
  --blue-2:      #5b8cff;   /* glow/claro */
  --blue-deep:   #1d4fd0;   /* hover/escuro */
  --amber:       #ff8a3d;   /* acento quente */
  --amber-deep:  #e9712a;
  --green:       #18c08a;   /* status "ativo/ao vivo" */
  --red:         #ef5a5a;   /* status "bloqueado/alerta" */

  --on-dark:      #e9eefb;
  --on-dark-soft: #93a2bf;
  --line-dark:   rgba(255,255,255,.10);
  --line-light:  rgba(15,23,38,.10);

  --display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --r-sm: 10px; --r: 16px; --r-lg: 24px; --r-pill: 999px;
  --shadow-sm: 0 6px 20px -10px rgba(11,18,32,.35);
  --shadow:    0 24px 60px -28px rgba(11,18,32,.55);
  --shadow-lg: 0 40px 90px -40px rgba(11,18,32,.6);
  --shadow-blue: 0 16px 34px -14px rgba(47,107,255,.55);

  --section-y: clamp(64px, 9vw, 128px);
  --container: 1200px;
  color-scheme: light;
}

/* ---------- 2. RESET/BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--body); background: var(--bg); color: var(--ink);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }
p { margin: 0; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--blue-2); outline-offset: 3px; border-radius: 6px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-deep); }
.eyebrow--light { color: var(--blue-2); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.h-xl { font-size: clamp(2.6rem, 6.2vw, 4.8rem); line-height: 1.02; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lead { font-family: var(--body); font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); }
.accent { color: var(--blue); }
.accent-amber { color: var(--amber-deep); }
/* compat: classes/tokens herdados do tema antigo do GeoVex, mapeados ao azul */
.serif-accent { color: var(--blue); font-style: normal; }
.section--cream2 { background: var(--bg-2); }
:root { --emerald: #2f6bff; --emerald-2: #5b8cff; --emerald-deep: #1d4fd0; --cream: #f4f7fc; --cream-2: #e9eef8; --forest: #0b1220; }

/* ---------- 3. UTILITÁRIOS ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: var(--section-y); position: relative; }
.section--dark { background: var(--navy); color: var(--on-dark); }
.section--dark .lead, .section--dark p { color: var(--on-dark-soft); }
.section--bg2 { background: var(--bg-2); }
.center { text-align: center; } .mx-auto { margin-inline: auto; }
.measure { max-width: 660px; } .grid { display: grid; gap: 26px; }
.eyebrow + .h-lg, .eyebrow + .h-md, .eyebrow + .h-xl { margin-top: 16px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--body); font-weight: 700; font-size: 16px; line-height: 1; padding: 16px 26px; border-radius: var(--r-sm); transition: transform .18s, box-shadow .18s, background .18s, color .18s, border-color .18s; white-space: nowrap; }
.btn .ico { width: 18px; height: 18px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn--amber { background: var(--amber); color: #1a1205; box-shadow: 0 14px 30px -12px rgba(255,138,61,.55); }
.btn--amber:hover { background: var(--amber-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: currentColor; border: 1.5px solid currentColor; opacity: .92; }
.btn--ghost:hover { opacity: 1; transform: translateY(-2px); }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }

.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--r-pill); font-size: 13.5px; font-weight: 700; background: rgba(47,107,255,.10); color: var(--blue-deep); }
.chip .ico { width: 15px; height: 15px; }
.chip--dark { background: rgba(255,255,255,.07); color: var(--on-dark); }
.chip--amber { background: rgba(255,138,61,.16); color: var(--amber-deep); }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); position: relative; }
.pulse-dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--green); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.8); opacity: 0; } }

.card { background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(47,107,255,.4); }
.feature-ico { width: 54px; height: 54px; border-radius: 14px; flex: none; display: grid; place-items: center; background: linear-gradient(145deg, rgba(47,107,255,.16), rgba(91,140,255,.05)); color: var(--blue-deep); border: 1px solid rgba(47,107,255,.22); }
.feature-ico .ico { width: 25px; height: 25px; }
.feature-ico--amber { background: linear-gradient(145deg, rgba(255,138,61,.18), rgba(255,138,61,.05)); color: var(--amber-deep); border-color: rgba(255,138,61,.28); }

/* ---------- 4. NAVBAR ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 18px 0; transition: background .3s, box-shadow .3s, padding .3s, backdrop-filter .3s; }
.nav.is-stuck { background: rgba(244,247,252,.9); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 1px 0 var(--line-light), var(--shadow-sm); padding: 12px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -.03em; color: var(--on-dark); }
.nav.is-stuck .brand { color: var(--ink); }
.brand__logo { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.brand__logo .ico { width: 23px; height: 23px; }
.brand span { color: var(--blue-2); }
.nav.is-stuck .brand span { color: var(--blue); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 500; font-size: 15.5px; color: var(--on-dark); opacity: .92; transition: opacity .15s, color .15s; }
.nav.is-stuck .nav__links a { color: var(--ink); }
.nav__links a:hover { opacity: 1; color: var(--blue-2); }
.nav.is-stuck .nav__links a:hover { color: var(--blue); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; border: 1px solid var(--line-dark); border-radius: var(--r-pill); overflow: hidden; }
.nav.is-stuck .lang { border-color: var(--line-light); }
.lang button { padding: 7px 12px; font-size: 13px; font-weight: 700; color: var(--on-dark); opacity: .7; }
.nav.is-stuck .lang button { color: var(--ink); }
.lang button.is-active { background: var(--blue); color: #fff; opacity: 1; }
.nav__burger { display: none; width: 44px; height: 44px; border-radius: 11px; place-items: center; color: var(--on-dark); }
.nav.is-stuck .nav__burger { color: var(--ink); }
.nav__burger .ico { width: 26px; height: 26px; }

/* ---------- 5. HERO ---------- */
.hero { position: relative; background: var(--navy); color: var(--on-dark); padding-top: 150px; padding-bottom: clamp(70px, 9vw, 120px); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(900px 520px at 80% -8%, rgba(47,107,255,.28), transparent 60%),
  radial-gradient(680px 480px at 4% 110%, rgba(255,138,61,.12), transparent 55%),
  var(--navy); z-index: 0; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero__copy h1 { margin-top: 18px; }
.hero__copy .lead { margin-top: 22px; max-width: 520px; color: var(--on-dark-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; }
.hero__trust .t b { font-family: var(--display); font-size: 1.7rem; color: #fff; line-height: 1; }
.hero__trust .t span { display: block; font-size: 13px; color: var(--on-dark-soft); margin-top: 6px; }
.hero__trust .t + .t { border-left: 1px solid var(--line-dark); padding-left: 26px; }

.livecard { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--navy-soft); border: 1px solid var(--line-dark); box-shadow: var(--shadow-lg); }
.livecard__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line-dark); }
.livecard__bar .live { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }
.livecard__bar .veh { font-size: 13px; color: var(--on-dark-soft); }
.livecard__map { height: 380px; width: 100%; background: #0a1322; }
.livecard__map .leaflet-control-attribution { font-size: 9px; }
.livecard__tele { position: absolute; left: 16px; bottom: 16px; right: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: rgba(7,11,20,.84); backdrop-filter: blur(8px); border: 1px solid var(--line-dark); border-radius: 13px; padding: 12px 14px; }
.livecard__tele .m { text-align: center; }
.livecard__tele .m b { display: block; font-family: var(--display); font-size: 1.25rem; color: #fff; line-height: 1; }
.livecard__tele .m span { font-size: 10.5px; color: var(--on-dark-soft); text-transform: uppercase; letter-spacing: .06em; }
.livecard__fallback { height: 380px; display: grid; place-items: center; color: var(--on-dark-soft); background:
  radial-gradient(circle at 30% 30%, rgba(47,107,255,.18), transparent 50%),
  repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 34px),
  repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 34px), #0a1322; }

/* ---------- 6. FAIXA TECH ---------- */
.techstrip { background: var(--navy-2); color: var(--on-dark-soft); padding: 26px 0; }
.techstrip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 38px; }
.techstrip__label { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
.tech { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; color: var(--on-dark); opacity: .85; }
.tech .ico { width: 19px; height: 19px; color: var(--blue-2); }

/* ---------- 7. ESTATÍSTICAS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat { text-align: center; padding: 14px; }
.stat b { display: block; font-family: var(--display); font-size: clamp(2.4rem, 4.4vw, 3.3rem); color: var(--blue-deep); line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: 15px; color: var(--ink-soft); font-weight: 500; }

/* ---------- 8. RECURSOS ---------- */
.features { grid-template-columns: repeat(4, 1fr); }
.feature h3 { font-size: 1.18rem; margin-top: 20px; }
.feature p { margin-top: 10px; font-size: 15px; color: var(--ink-soft); }

/* ---------- 9. COMO FUNCIONA ---------- */
.journey { grid-template-columns: repeat(4, 1fr); position: relative; }
.journey::before { content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--blue) 0 10px, transparent 10px 20px); opacity: .4; }
.step { text-align: center; position: relative; }
.step__n { width: 68px; height: 68px; border-radius: 18px; margin: 0 auto; display: grid; place-items: center; font-family: var(--display); font-size: 1.6rem; font-weight: 700; background: var(--bg); color: var(--blue-deep); border: 2px solid var(--blue); position: relative; z-index: 1; }
.section--dark .step__n { background: var(--navy-soft); color: var(--blue-2); }
.step h3 { font-size: 1.12rem; margin-top: 20px; }
.step p { margin-top: 10px; font-size: 14.5px; }

/* ---------- 10. SHOWCASE ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__list { margin-top: 26px; display: grid; gap: 18px; }
.split__list li { display: flex; gap: 14px; align-items: flex-start; }
.split__list .feature-ico { width: 44px; height: 44px; border-radius: 12px; }
.split__list .feature-ico .ico { width: 21px; height: 21px; }
.split__list b { font-weight: 700; font-family: var(--display); }
.split__list p { font-size: 14.5px; color: var(--ink-soft); margin-top: 3px; }
.section--dark .split__list p { color: var(--on-dark-soft); }
.telemock { border-radius: var(--r-lg); padding: 26px; background: var(--navy-soft); border: 1px solid var(--line-dark); box-shadow: var(--shadow-lg); color: var(--on-dark); }
.telemock__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.telemock__head .veh { display: flex; align-items: center; gap: 10px; font-weight: 700; font-family: var(--display); }
.telemock__head .veh .ico { width: 22px; height: 22px; color: var(--blue-2); }
.gauges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gauge { background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: 13px; padding: 16px; }
.gauge .lbl { font-size: 12px; color: var(--on-dark-soft); text-transform: uppercase; letter-spacing: .06em; display: flex; align-items: center; gap: 7px; }
.gauge .lbl .ico { width: 15px; height: 15px; color: var(--blue-2); }
.gauge .val { font-family: var(--display); font-size: 1.9rem; margin-top: 8px; line-height: 1; }
.gauge .val small { font-size: .9rem; color: var(--on-dark-soft); font-family: var(--body); }
.bar { height: 6px; border-radius: 6px; background: rgba(255,255,255,.10); margin-top: 12px; overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--blue), var(--blue-2)); }

/* ---------- 11. COBERTURA ---------- */
.coverage__map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line-light); height: 420px; background: #0a1322; }
.coverage__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- 12. PLANOS ---------- */
.plans { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.plan { background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: 30px 26px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured { background: var(--navy); color: var(--on-dark); border-color: transparent; transform: scale(1.03); box-shadow: var(--shadow-lg); }
.plan--featured:hover { transform: scale(1.03) translateY(-6px); }
.plan__tag { align-self: flex-start; }
.plan__name { font-family: var(--display); font-size: 1.5rem; margin-top: 14px; }
.plan__desc { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; min-height: 38px; }
.plan--featured .plan__desc { color: var(--on-dark-soft); }
.plan__price { margin-top: 18px; display: flex; align-items: flex-end; gap: 4px; }
.plan__price .cur { font-size: 1.1rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.plan--featured .plan__price .cur { color: var(--on-dark-soft); }
.plan__price .num { font-family: var(--display); font-size: 2.8rem; line-height: 1; }
.plan__price .per { font-size: 13px; color: var(--ink-soft); margin-bottom: 7px; }
.plan--featured .plan__price .per { color: var(--on-dark-soft); }
.plan__feats { margin-top: 22px; display: grid; gap: 12px; flex: 1; }
.plan__feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.plan__feats .ico { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 2px; }
.plan--featured .plan__feats .ico { color: var(--blue-2); }
.plan__feats li.off { opacity: .42; }
.plan .btn { margin-top: 24px; }

/* ---------- 13. DEPOIMENTOS ---------- */
.quotes { grid-template-columns: repeat(3, 1fr); }
.quote { background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--r); padding: 30px; box-shadow: var(--shadow-sm); }
.quote__stars { display: flex; gap: 3px; color: var(--amber); }
.quote__stars .ico { width: 18px; height: 18px; }
.quote p { margin-top: 16px; font-size: 16px; }
.quote__who { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.avatar { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #fff; background: var(--blue); flex: none; }
.quote__who b { display: block; font-size: 15px; font-family: var(--display); }
.quote__who span { font-size: 13px; color: var(--ink-soft); }

/* ---------- 14. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; text-align: left; font-size: 1.1rem; font-weight: 600; font-family: var(--display); color: var(--ink); }
.faq__q .ico { width: 22px; height: 22px; color: var(--blue); transition: transform .25s; flex: none; }
.faq__item.is-open .faq__q .ico { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 4px 22px; color: var(--ink-soft); }

/* ---------- 15. CTA ---------- */
.ctaband { position: relative; background: var(--navy); color: var(--on-dark); overflow: hidden; }
.ctaband::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(700px 400px at 85% 20%, rgba(47,107,255,.32), transparent 60%),
  radial-gradient(600px 400px at 0% 100%, rgba(255,138,61,.16), transparent 60%); }
.ctaband__inner { position: relative; text-align: center; max-width: 760px; margin-inline: auto; }
.ctaband .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- 16. CONTATO ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__info { display: grid; gap: 22px; margin-top: 30px; }
.contact__info .row { display: flex; gap: 14px; align-items: flex-start; }
.contact__info .feature-ico { width: 48px; height: 48px; }
.contact__info b { display: block; font-weight: 700; font-family: var(--display); }
.contact__info a, .contact__info span { color: var(--ink-soft); }
.form { background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.input, .textarea { width: 100%; padding: 14px 16px; font: inherit; font-size: 15px; border: 1.5px solid var(--line-light); border-radius: var(--r-sm); background: var(--bg); color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.input:focus, .textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,107,255,.14); }
.textarea { min-height: 120px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__note { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }
.form__msg { margin-top: 14px; padding: 14px 16px; border-radius: var(--r-sm); font-size: 14.5px; display: none; }
.form__msg.ok { display: block; background: rgba(24,192,138,.14); color: #0e7d59; }
.form__msg.err { display: block; background: rgba(239,90,90,.14); color: var(--red); }

/* ---------- 17. RODAPÉ ---------- */
.footer { background: var(--navy-2); color: var(--on-dark-soft); padding-top: 70px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brandcol p { margin-top: 18px; max-width: 320px; font-size: 14.5px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: var(--on-dark); transition: background .15s, transform .15s; }
.footer__social a:hover { background: var(--blue); transform: translateY(-2px); }
.footer__social .ico { width: 19px; height: 19px; }
.footer h4 { font-family: var(--display); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 18px; }
.footer__col a { display: block; padding: 6px 0; font-size: 14.5px; transition: color .15s; }
.footer__col a:hover { color: var(--blue-2); }
.footer__bar { margin-top: 56px; border-top: 1px solid var(--line-dark); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; }
.footer__bar a:hover { color: var(--blue-2); }

/* ---------- 18. LGPD ---------- */
.lgpd { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 120; max-width: 560px; margin-inline: auto; background: var(--navy-soft); color: var(--on-dark); border: 1px solid var(--line-dark); border-radius: var(--r); padding: 18px 20px; box-shadow: var(--shadow-lg); display: none; align-items: center; gap: 16px; flex-wrap: wrap; }
.lgpd.show { display: flex; }
.lgpd p { font-size: 13.5px; color: var(--on-dark-soft); flex: 1; min-width: 240px; }
.lgpd a { color: var(--blue-2); text-decoration: underline; }

/* ---------- 19. REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; } .reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; } .reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- 20. RESPONSIVO ---------- */
@media (max-width: 1080px) {
  .features, .plans { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey::before { display: none; }
  .plan--featured { transform: none; } .plan--featured:hover { transform: translateY(-6px); }
}
@media (max-width: 900px) {
  .hero__grid, .split, .contact { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .nav__links, .nav__actions .lang, .nav__actions .btn--ghost { display: none; }
  .nav__burger { display: grid; }
  .nav.is-open .nav__links { display: flex; flex-direction: column; gap: 4px; position: absolute; top: 100%; left: 16px; right: 16px; background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--r); padding: 14px; box-shadow: var(--shadow); margin-top: 8px; }
  .nav.is-open .nav__links a { color: var(--ink); padding: 12px 10px; border-radius: 10px; }
  .nav.is-open .nav__links a:hover { background: var(--bg-2); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .features, .plans, .footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__trust .t + .t { border-left: none; padding-left: 0; }
  .livecard__map, .livecard__fallback { height: 320px; }
  .gauges { grid-template-columns: 1fr; }
}
