/* ============================================================
   GLOBAL FORENSE - Design System "Lente Forense"
   Conceito: da ocultação (escuro) à evidência (claro).
   Tipografia: Archivo (display expandido + texto) / IBM Plex Mono (dados)
   Paleta: tinta ultramarina profunda + gradiente ciano do logotipo
   ============================================================ */

:root {
  /* - Tinta (zona escura: a investigação) - */
  --ink-950: #04070c;
  --ink-900: #060b13;
  --ink-850: #0a1320;
  --ink-800: #0d1928;
  --ink-700: #13233a;

  /* - Azul da marca (gradiente do globo) - */
  --blue-600: #1268b4;
  --blue-500: #1b8ad6;
  --cyan-400: #3dc6f2;
  --cyan-300: #6fdcff;
  --grad-brand: linear-gradient(120deg, #1268b4 0%, #2faae0 45%, #6fdcff 100%);

  /* - Texto sobre escuro - */
  --text-hi: #eaf3fa;
  --text-mid: #a9bdce;
  --text-low: #64798e;

  /* - Papel (zona clara: o dossiê / a evidência) - */
  --paper: #f1f4f7;
  --paper-2: #e8edf2;
  --card: #ffffff;
  --ink-on-paper: #10202f;
  --mid-on-paper: #46596b;
  --low-on-paper: #7d8fa0;
  --line-paper: #d6dee6;

  /* - Linhas e efeitos - */
  --line: rgba(125, 175, 220, 0.14);
  --line-strong: rgba(125, 175, 220, 0.28);
  --glow: 0 0 0 1px rgba(61, 198, 242, 0.35), 0 18px 60px -18px rgba(61, 198, 242, 0.38);
  --shadow-card: 0 24px 60px -28px rgba(4, 12, 22, 0.5);
  --shadow-paper: 0 18px 50px -22px rgba(16, 32, 47, 0.18);

  --ok: #25d366;

  /* - Tipo - */
  --font-body: "Archivo", "Segoe UI", sans-serif;
  --font-disp: "Archivo", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  --w-max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --sec-pad-v: clamp(56px, 8vw, 100px);
  --radius: 14px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
a, button, summary { touch-action: manipulation; }
ul, ol { margin: 0; padding: 0; }
::selection { background: rgba(61, 198, 242, 0.32); color: #fff; }

/* Textura de grão sutil sobre toda a página */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(var(--w-max), 100% - var(--gutter) * 2);
  margin-inline: auto;
  position: relative;
}

/* ============ TIPOGRAFIA ============ */
.disp {
  font-family: var(--font-disp);
  font-stretch: 118%;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.014em;
  color: var(--text-hi);
  margin: 0;
  text-wrap: balance;
}

h1.disp { font-size: clamp(2.1rem, 5.2vw, 4.1rem); }
h2.disp { font-size: clamp(1.8rem, 3.4vw, 2.75rem); }
h3.disp { font-size: clamp(1.15rem, 2vw, 1.45rem); }

/* acento editorial: serifa itálica com o gradiente da marca */
.grad-text {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  letter-spacing: 0;
  font-size: 1.04em;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.07em; /* evita o corte da inclinação itálica no recorte do gradiente */
}

/* No hero da home, o destaque usa a mesma fonte do título (sem serifa itálica),
   mantendo apenas o gradiente da marca: evita o efeito "torta" na mesma linha. */
.hero .grad-text {
  font-family: var(--font-disp);
  font-style: normal;
  font-weight: 700;
  font-stretch: 118%;
  font-size: 1em;
  letter-spacing: -0.014em;
  line-height: inherit;
  padding-right: 0;
}

/* variante do destaque com a fonte do título (igual ao hero), sem serifa itálica */
.grad-text--disp {
  font-family: var(--font-disp);
  font-style: normal;
  font-weight: 700;
  font-stretch: 118%;
  font-size: 1em;
  letter-spacing: -0.014em;
  line-height: inherit;
  padding-right: 0;
}

.kicker {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan-400);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}
.kicker .idx { font-family: var(--font-mono); font-weight: 500; color: var(--text-low); letter-spacing: 0.18em; }
.kicker--center { justify-content: center; }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 56ch;
  margin: 18px 0 0;
}

.mono { font-family: var(--font-mono); }

.sec-head { margin-bottom: clamp(40px, 6vw, 64px); }
.sec-head--center { text-align: center; }
.sec-head--center .lead { margin-inline: auto; }

/* ============ SEÇÕES ============ */
.sec { padding-block: var(--sec-pad-v); position: relative; }

.sec--dark {
  background: var(--ink-900);
}

/* grid técnico (blueprint) das zonas escuras */
.bg-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 78%);
  opacity: 0.5;
}

/* ============ BOTÕES ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 15px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1.2), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  touch-action: manipulation;
  will-change: transform;
}
.btn .arr { transition: transform 0.3s ease; flex: none; }
.btn:hover .arr { transform: translateX(5px); }

.btn--solid {
  background: var(--grad-brand);
  color: #041421;
  box-shadow: 0 14px 38px -14px rgba(47, 170, 224, 0.55);
}
.btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -14px rgba(61, 198, 242, 0.65);
}

.btn--ghost {
  background: transparent;
  color: var(--text-hi);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--cyan-400);
  color: var(--cyan-300);
  transform: translateY(-3px);
}

/* botão sobre papel */
.btn--ink {
  background: var(--ink-900);
  color: #eaf3fa;
  box-shadow: var(--shadow-paper);
}
.btn--ink:hover {
  transform: translateY(-3px);
  background: var(--blue-600);
}

/* ============ HEADER ============ */
.site-head {
  position: fixed;
  top: calc(24px + env(safe-area-inset-top, 0px));
  left: 50%;
  width: min(var(--w-max), 100% - var(--gutter) * 2);
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.38s ease;
}

.site-head.is-hidden {
  transform: translateX(-50%) translateY(calc(-100% - 48px));
  opacity: 0;
}

.site-head .bar {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(61, 198, 242, 0.24);
  border-radius: 9999px;
  background: rgba(6, 16, 24, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
          backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-head.scrolled .bar {
  background: rgba(6, 16, 24, 0.72);
  border-color: rgba(61, 198, 242, 0.30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 36px rgba(0, 0, 0, 0.34);
}

/* páginas de fundo claro (Política, Termos, 404): a pílula translúcida ficaria
   acinzentada sobre o branco; aqui ela fica quase sólida, com a mesma leitura
   escura do menu do index */
.site-head.site-head--ink .bar,
.site-head.site-head--ink.scrolled .bar {
  background: rgba(6, 16, 24, 0.94);
}

.site-head .brand {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  flex: none;
}
.site-head .brand img { height: 38px; width: auto; }

.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 30px);
}
.site-nav a.navlink {
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: opacity 0.18s ease, color 0.18s ease;
}
.site-nav a.navlink::after { display: none; }
.site-nav a.navlink:hover { color: #fff; opacity: 0.78; }

.site-nav .nav-contact {
  display: none;
}

.head-cta,
.site-nav .btn {
  min-height: 40px;
  padding: 9px 20px;
  border-radius: 9999px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.head-cta {
  grid-column: 3;
  justify-self: end;
}

/* - hambúrguer - */
.nav-toggle {
  grid-column: 3;
  justify-self: end;
  display: none;
  flex: none;
  background: transparent;
  border: 0;
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  z-index: 130;
  transition: background-color 0.2s ease;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text-hi);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1),
.nav-toggle span:nth-child(2),
.nav-toggle span:nth-child(3) { position: static; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1280px) {
  .site-nav { gap: 18px; }
  .site-nav a.navlink {
    font-size: 0.74rem;
    letter-spacing: 0.045em;
  }
  .head-cta,
  .site-nav .btn {
    padding-inline: 17px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1120px) {
  .site-head .bar {
    grid-template-columns: auto 1fr auto;
  }
  .head-cta {
    display: none;
  }
  .nav-toggle { display: block; }
  .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    position: fixed;
    top: calc(76px + env(safe-area-inset-top, 0px));
    left: 16px;
    right: 16px;
    z-index: 99;
    width: auto;
    max-width: 520px;
    margin-inline: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(7, 17, 27, 0.97);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
            backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    visibility: visible;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  body.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .site-nav a.navlink {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.95rem;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
    transition: background-color 0.15s ease;
  }
  .site-nav a.navlink:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
  }
  .site-nav .btn {
    display: inline-flex;
    justify-content: center;
    min-height: 48px;
    margin-top: 8px;
    padding: 12px 18px;
    color: #041421;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 150px 90px;
  overflow: hidden;
  background:
    radial-gradient(900px 540px at 82% 30%, rgba(18, 104, 180, 0.20), transparent 65%),
    radial-gradient(640px 420px at 8% 86%, rgba(61, 198, 242, 0.08), transparent 60%),
    var(--ink-900);
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  z-index: 2;
}
.hero-copy {
  width: min(1040px, 100%);
  margin-inline: auto;
  text-align: center;
  container-type: inline-size; /* base para dimensionar o hero em cqi */
}
.hero-copy .lead { margin-inline: auto; }

/* ===== Vídeo de fundo do hero: desktop toca o vídeo; mobile fica na imagem estática (leve) ===== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  background: #060b13 url("../videos/planet.jpg") center / cover no-repeat;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 48%, rgba(4, 7, 12, 0.72) 0%, rgba(4, 7, 12, 0.42) 45%, rgba(4, 7, 12, 0.14) 75%),
    linear-gradient(to bottom, rgba(4, 7, 12, 0.55) 0%, rgba(4, 7, 12, 0.22) 30%, rgba(4, 7, 12, 0.32) 68%, rgba(4, 7, 12, 0.92) 100%);
}

.hero h1 .amp {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  font-size: 0.92em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.08em;
}

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
  justify-content: center;
}

.hero .cities {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-low);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
}
.hero .cities b {
  font-weight: 400;
  color: var(--cyan-400);
  padding: 0 12px;
}
.hero .cities b:first-child { padding-left: 0; }
.hero .cities span { color: var(--ink-700); }

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr); }
  .hero { padding-top: 130px; }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
    line-height: 1.68;
  }

  .wrap {
    width: min(var(--w-max), 100% - 36px);
  }

  .site-head {
    top: calc(16px + env(safe-area-inset-top, 0px));
    width: min(var(--w-max), 100% - 36px);
  }

  .site-head .bar {
    gap: 16px;
    height: auto;
    padding: 10px 12px;
  }

  .site-head .brand img {
    height: 34px;
  }

  .disp {
    letter-spacing: 0;
    text-wrap: pretty;
  }

  h1.disp {
    font-size: 2.24rem;
    line-height: 1.08;
  }

  h2.disp {
    font-size: 1.82rem;
  }

  .kicker {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    line-height: 1.5;
  }

  .kicker .idx {
    letter-spacing: 0.08em;
  }

  .lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.66;
  }

  .sec {
    padding-block: 48px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-block: 112px 54px;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 76px 0 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(4, 7, 12, 0.88) 0%, rgba(4, 7, 12, 0.62) 58%, rgba(4, 7, 12, 0.18) 100%);
  }

  .hero .actions {
    gap: 12px;
    margin-top: 28px;
  }

  .hero .cities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    margin-top: 30px;
    padding-top: 18px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero .cities b {
    padding: 0;
  }

  .hero .cities span {
    display: none;
  }

  .ticker {
    padding-block: 14px;
  }

  .ticker li {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .ticker li::after {
    margin-inline: 20px;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(var(--w-max), 100% - 32px);
  }

  .site-head {
    width: min(var(--w-max), 100% - 32px);
  }

  h1.disp {
    font-size: 2.04rem;
  }

  .hero {
    padding-block: 104px 48px;
  }

  .hero .actions {
    flex-direction: column;
  }

  .hero .actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 14px 18px;
    text-align: center;
  }

  .hero .cities {
    margin-top: 24px;
  }
}

/* ============ TICKER ============ */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--ink-950);
  overflow: hidden;
  padding-block: 18px;
  position: relative;
  z-index: 2;
}
.ticker .track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker 72s linear infinite;
}
.ticker:hover .track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker ul {
  display: flex;
  list-style: none;
  gap: 0;
}
.ticker li {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-low);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.ticker li::after {
  content: "*";
  margin-inline: 28px;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  line-height: 1;
  transform: translateY(-1.5px);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.8;
}

/* ============ CARDS ESCUROS (Tecnologia) ============ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 880px) { .tech-grid { grid-template-columns: 1fr; } }

.tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--ink-800), var(--ink-850) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3.2vw, 38px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.tcard:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 198, 242, 0.32);
  box-shadow: var(--shadow-card);
}
.tcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 18% 0%, rgba(61, 198, 242, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tcard:hover::before { opacity: 1; }

.tcard .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.tcard .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--text-low);
}
.tcard .ico {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(61, 198, 242, 0.06);
  color: var(--cyan-400);
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.tcard:hover .ico { transform: rotate(-6deg) scale(1.06); background: rgba(61, 198, 242, 0.13); }
.tcard .ico svg { width: 26px; height: 26px; }

.tcard h3 { margin-bottom: 10px; }
.tcard p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-mid);
  font-size: 0.97rem;
  text-align: justify;
  -webkit-hyphens: none;
  hyphens: none;
}

/* ============ MAPA ============ */
.sec--map {
  background:
    radial-gradient(800px 460px at 50% 0%, rgba(18, 104, 180, 0.16), transparent 70%),
    var(--ink-950);
  border-block: 1px solid var(--line);
}
.map-stage {
  position: relative;
  margin-top: clamp(30px, 5vw, 60px);
}
.map-stage > img {
  display: block;
  width: 100%;
}
.pin {
  appearance: none;
  position: absolute;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 14px rgba(61, 198, 242, 0.9);
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pin:hover, .pin:focus-visible, .pin.is-active {
  transform: scale(1.35);
  box-shadow: 0 0 20px rgba(61, 198, 242, 1);
}
.pin:focus-visible { outline: 2px solid var(--cyan-300); outline-offset: 4px; }
.pin::before, .pin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(61, 198, 242, 0.75);
  animation: pulse 2.8s ease-out infinite;
}
.pin::after { animation-delay: 1.4s; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(4.4); opacity: 0; }
}
.pin .lbl {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-hi);
  background: rgba(6, 11, 19, 0.85);
  border: 1px solid var(--line-strong);
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  translate: 0 4px;
  transition: opacity 0.3s ease, translate 0.3s ease;
  pointer-events: none;
}
.pin:hover .lbl,
.pin:focus-visible .lbl,
.pin.is-active .lbl { opacity: 1; translate: 0 0; }
@media (max-width: 700px) {
  .pin {
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    background: transparent;
    box-shadow: none;
  }

  .pin:hover, .pin:focus-visible, .pin.is-active {
    transform: none;
    box-shadow: none;
  }

  .pin::before,
  .pin::after {
    inset: 17px;
  }

  .pin::before {
    background: var(--cyan-400);
    border: 0;
    box-shadow: 0 0 14px rgba(61, 198, 242, 0.9);
    animation: none;
    transition: transform 0.25s ease;
  }

  .pin:hover::before, .pin:focus-visible::before, .pin.is-active::before {
    transform: scale(1.35);
    box-shadow: 0 0 20px rgba(61, 198, 242, 1);
  }

  .pin::after {
    border-color: rgba(61, 198, 242, 0.75);
  }

  .pin .lbl {
    display: none;
  }

  .pin:focus-visible .lbl,
  .pin.is-active .lbl {
    display: block;
  }

  /* Lisboa e Londres ficam a ~14px uma da outra no mapa pequeno e as áreas de
     44px se sobrepõem por completo (o toque acionava sempre a vizinha). Só
     nesses dois pinos: alvo menor (34px, acima do mínimo de 24px do WCAG) e um
     leve afastamento entre eles; o ponto visual segue com 10px. */
  .pin[aria-label="Lisboa"],
  .pin[aria-label="Londres"] {
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
  }
  .pin[aria-label="Lisboa"]::before,
  .pin[aria-label="Londres"]::before,
  .pin[aria-label="Lisboa"]::after,
  .pin[aria-label="Londres"]::after {
    inset: 12px;
  }
  .pin[aria-label="Lisboa"] { translate: -6px 5px; }
  .pin[aria-label="Londres"] { translate: 6px -5px; }
}

.map-cities {
  margin-top: clamp(26px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.map-cities li {
  list-style: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 18px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.map-cities li:hover { border-color: var(--cyan-400); color: var(--cyan-300); }

.golink {
  color: var(--cyan-300);
  border-bottom: 1px solid rgba(111, 220, 255, 0.4);
}

/* ============ ZONA CLARA - O DOSSIÊ ============ */
.sec--paper {
  background: var(--paper);
  color: var(--mid-on-paper);
}
.sec--paper .disp { color: var(--ink-on-paper); }
.sec--paper .lead { color: var(--mid-on-paper); }
.sec--paper .kicker { color: var(--blue-600); }
.sec--paper .kicker .idx { color: var(--low-on-paper); }

/* componentes com superfície própria em zona invertida */
.sec--paper .tcard h3.disp { color: var(--text-hi); }
.sec--dark .report-rule { color: var(--text-low); }
.sec--dark .report-rule::before, .sec--dark .report-rule::after {
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 14px);
}
.sec--dark .scard:hover { box-shadow: var(--shadow-card); }
.sec--dark .compliance-note { color: var(--text-low); }

/* cabeçalho de relatório impresso */
.report-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--low-on-paper);
  margin: 0 0 clamp(48px, 7vw, 80px);
}
.report-rule::before, .report-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: repeating-linear-gradient(90deg, var(--line-paper) 0 8px, transparent 8px 14px);
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1020px) { .sol-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 660px) { .sol-grid { grid-template-columns: 1fr; } }

.scard {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-paper);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.scard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-paper);
  border-color: transparent;
}
/* barra de acento que desliza no topo do cartão */
.scard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.scard:hover::after { transform: scaleX(1); }

.scard .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.scard .num {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: var(--low-on-paper);
}
.scard .ico {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(18, 104, 180, 0.10), rgba(61, 198, 242, 0.14));
  color: var(--blue-600);
  transition: transform 0.35s ease;
}
.scard:hover .ico { transform: scale(1.1) rotate(5deg); }
.scard .ico svg { width: 24px; height: 24px; }

.scard h3 {
  font-family: var(--font-disp);
  font-stretch: 112%;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--ink-on-paper);
  margin: 0 0 12px;
  line-height: 1.3;
}
.scard p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--mid-on-paper);
  text-align: justify;
  -webkit-hyphens: none;
  hyphens: none;
}

.center-cta { text-align: center; margin-top: var(--sec-pad-v); }
.compliance-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--low-on-paper);
}
.compliance-note b { color: var(--mid-on-paper); font-weight: 600; }

/* ============ ESTATÍSTICAS (faixa escura) ============ */
.sec--stats {
  background:
    radial-gradient(720px 420px at 50% 120%, rgba(18, 104, 180, 0.25), transparent 70%),
    var(--ink-950);
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: 1fr; } }

.stat {
  padding: clamp(28px, 4vw, 48px) clamp(22px, 3vw, 44px);
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
@media (max-width: 880px) {
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
}
.stat .value {
  font-family: var(--font-disp);
  font-stretch: 125%;
  font-weight: 800;
  font-size: clamp(2.7rem, 5.4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.stat .label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-hi);
  margin-top: 16px;
}
.stat p {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--text-mid);
}

/* ============ PROVA SOCIAL + NA MÍDIA (itens 5 e 6) ============ */
.cred {
  background: var(--ink-850);
  border-block: 1px solid var(--line);
  padding-block: clamp(24px, 3.4vw, 38px);
}
.cred-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 32px);
  text-align: center;
}
.cred-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(22px, 4vw, 54px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.cred-stats li { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cred-num {
  font-family: var(--font-disp);
  font-stretch: 118%;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.01em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.cred-lbl {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}
/* - Recorte de imprensa: a matéria como evidência em papel - */
.cred-clip {
  position: relative;
  display: block;
  width: min(620px, 100%);
  padding: 32px 34px 24px;
  background: var(--card);
  border-radius: 3px;
  text-align: center;
  color: var(--ink-on-paper);
  transform: rotate(-0.8deg);
  box-shadow:
    0 30px 70px -30px rgba(4, 12, 22, 0.85),
    0 0 44px -16px rgba(61, 198, 242, 0.38);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cred-clip:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow:
    0 36px 80px -30px rgba(4, 12, 22, 0.9),
    0 0 56px -12px rgba(61, 198, 242, 0.55);
}
.cred-clip:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(61, 198, 242, 0.55),
    0 30px 70px -30px rgba(4, 12, 22, 0.85);
}
/* etiqueta "Na mídia" como carimbo forense no canto do recorte */
.cred-clip-tag {
  position: absolute;
  top: -12px;
  left: 18px;
  transform: rotate(-6deg);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--card);
  border: 2px solid var(--ok);
  border-radius: 4px;
  box-shadow: 0 10px 22px -10px rgba(4, 12, 22, 0.5);
  white-space: nowrap;
}
.cred-clip-tag::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid var(--ok);
  border-radius: 2px;
  opacity: 0.5;
  pointer-events: none;
}
.cred-clip-mast {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 3px double var(--line-paper);
}
.cred-clip-brand {
  font-family: var(--font-disp);
  font-stretch: 118%;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-on-paper);
}
.cred-clip-meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--low-on-paper);
}
.cred-clip-quote {
  display: block;
  max-width: 46ch;
  margin: 0 auto 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-on-paper);
}
.cred-clip-quote mark {
  background: linear-gradient(180deg, transparent 14%, rgba(61, 198, 242, 0.3) 14% 88%, transparent 88%);
  color: inherit;
  padding: 0 2px;
}
.cred-clip-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--blue-600);
}
.cred-clip:hover .cred-clip-cta { color: var(--blue-500); }
.cred-clip .arr { transition: transform 0.3s ease; }
.cred-clip:hover .arr { transform: translate(2px, -2px); }
@media (max-width: 480px) {
  .cred-clip { padding: 28px 20px 20px; }
  .cred-clip-mast { flex-direction: column; align-items: center; gap: 3px; }
  .cred-clip-quote { font-size: 0.98rem; }
}

/* ============ CASOS (item 7) ============ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1020px) { .cases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 660px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line-paper);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.case-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-paper); border-color: transparent; }
.case-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.case-card:hover::after { transform: scaleX(1); }
.case-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: linear-gradient(135deg, rgba(18, 104, 180, 0.10), rgba(61, 198, 242, 0.14));
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 16px;
}
.case-card h3 {
  font-family: var(--font-disp);
  font-stretch: 112%;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink-on-paper);
  margin: 0 0 18px;
  line-height: 1.28;
}
.case-lines { display: flex; flex-direction: column; gap: 15px; }
.case-lines p {
  margin: 0;
  padding-top: 13px;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--mid-on-paper);
  text-align: justify;
  border-top: 1px solid var(--line-paper);
}
.case-lines p:first-child { padding-top: 0; border-top: 0; }
.cl-k {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--low-on-paper);
  margin-bottom: 7px;
}
.cl-res { margin-top: auto; color: var(--ink-on-paper); }
.cl-res .cl-k { color: var(--blue-600); }

/* ============ COMO FUNCIONA (item 11) ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 26px 22px;
  background: rgba(125, 175, 220, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
}
.step:hover { border-color: var(--cyan-400); transform: translateY(-6px); background: rgba(61, 198, 242, 0.06); }
.step-n {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-hi);
  margin: 0 0 8px;
}
.step p { margin: 0; font-size: 0.94rem; line-height: 1.6; color: var(--text-mid); text-align: justify; }

/* ============ O QUE VOCÊ RECEBE (item 10) ============ */
.deliver-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
@media (max-width: 900px) { .deliver-grid { grid-template-columns: 1fr; } }
.deliver-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.deliver-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--mid-on-paper);
}
.deliver-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  padding: 4px;
  color: var(--blue-500);
  background: linear-gradient(135deg, rgba(18, 104, 180, 0.10), rgba(61, 198, 242, 0.16));
  border-radius: 7px;
}
.deliver-mock { display: flex; justify-content: center; }
.dossie {
  width: 100%;
  max-width: 360px;
  background: var(--card);
  border: 1px solid var(--line-paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-paper);
  overflow: hidden;
  transform: rotate(-1.6deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.deliver-mock:hover .dossie { transform: rotate(0); }
.dossie-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: var(--ink-900);
}
.dossie-ttl { font-family: var(--font-disp); font-weight: 700; font-size: 0.95rem; color: #eaf3fa; }
.dossie-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-300);
  border: 1px solid rgba(111, 220, 255, 0.4);
  border-radius: 999px;
  padding: 3px 9px;
}
.dossie-body { padding: 22px 20px; display: flex; flex-direction: column; gap: 12px; }
.d-line { height: 9px; border-radius: 5px; background: var(--paper-2); }
.d-line.w80 { width: 80%; }
.d-line.w75 { width: 75%; }
.d-line.w70 { width: 70%; }
.d-line.w60 { width: 60%; }
.d-line.w50 { width: 50%; }
.d-line.redacted { background: var(--ink-850); opacity: 0.9; }
.d-chart { display: flex; align-items: flex-end; gap: 7px; height: 76px; margin: 6px 0; }
.d-chart span { flex: 1; height: var(--h); border-radius: 4px 4px 0 0; background: var(--grad-brand); opacity: 0.85; }

/* ============ FAQ ============ */
.faq-list { max-width: 880px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line-paper);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 26px 4px;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--blue-500);
  flex: none;
}
.faq-item .q {
  font-family: var(--font-disp);
  font-stretch: 115%;
  font-weight: 650;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--ink-on-paper);
  flex: 1;
  transition: color 0.25s ease;
}
.faq-item summary:hover .q { color: var(--blue-600); }
.faq-item .pm {
  flex: none;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-paper);
  border-radius: 50%;
  position: relative;
  align-self: center;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.faq-item .pm::before, .faq-item .pm::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.6px;
  background: var(--ink-on-paper);
  translate: -50% -50%;
  transition: background-color 0.3s ease, rotate 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.faq-item .pm::after { rotate: 90deg; }
.faq-item[open] .pm {
  background: var(--ink-900);
  border-color: var(--ink-900);
  transform: rotate(180deg);
}
.faq-item[open] .pm::before, .faq-item[open] .pm::after { background: var(--cyan-300); }
.faq-item[open] .pm::after { rotate: 0deg; }

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.faq-item[open] .faq-body { grid-template-rows: 1fr; }
.faq-body > div { overflow: hidden; }
.faq-body p {
  margin: 0 0 18px;
  padding-right: 56px;
  color: var(--mid-on-paper);
  font-size: 0.96rem;
  text-align: left;
}
.faq-body > div > :last-child { padding-bottom: 30px; }
@media (max-width: 640px) { .faq-body p { padding-right: 0; } }

/* ============ CONTATO ============ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info .item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-paper);
}
.contact-info .item:first-child { padding-top: 6px; }
.contact-info .ic {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(18, 104, 180, 0.10), rgba(61, 198, 242, 0.14));
  color: var(--blue-600);
}
.contact-info .ic svg { width: 22px; height: 22px; }
.contact-info .item .tt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--low-on-paper);
  margin-bottom: 4px;
}
.contact-info .item p {
  margin: 0;
  color: var(--ink-on-paper);
  font-weight: 500;
  font-size: 0.97rem;
  line-height: 1.55;
}
.contact-info .item a:hover p { color: var(--blue-600); }

.cform {
  background: var(--card);
  border: 1px solid var(--line-paper);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-paper);
}
.cform .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 640px) { .cform .row2 { grid-template-columns: 1fr; } }

.field { position: relative; margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--low-on-paper);
  margin-bottom: 9px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line-paper);
  border-radius: 10px;
  padding: 15px 16px;
  font: inherit;
  font-size: 1rem; /* nunca abaixo de 16px: evita o zoom automático do iOS ao focar */
  color: var(--ink-on-paper);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(61, 198, 242, 0.16);
}

/* variante compacta: só o modal de Análise Prévia (precisa caber sem rolagem) */
.case-form .field { margin-bottom: clamp(3px, 0.9dvh, 6px); }
.case-form .field label { margin-bottom: clamp(2px, 0.4dvh, 3px); }
.case-form .field input, .case-form .field textarea { padding: clamp(5px, 0.9dvh, 8px) 14px; }
.case-form .field textarea { height: clamp(34px, 7dvh, 58px); }
.field ::placeholder { color: var(--low-on-paper); opacity: 0.75; }

.cform .send {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ============ MODAL: Análise Prévia do Caso ============ */
body.modal-open { overflow: hidden; }

.modal[hidden] { display: none; }
.modal:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.74);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: modalFade 0.28s ease;
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(95vh, 840px);
  max-height: min(95dvh, 840px);
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--line-paper);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.7);
  padding: clamp(7px, 1.6dvh, 13px) clamp(20px, 4vw, 36px);
  animation: modalIn 0.36s cubic-bezier(0.16, 0.84, 0.44, 1);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-paper);
  border-radius: 10px;
  background: var(--paper);
  color: var(--low-on-paper);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.modal-x:hover { color: var(--ink-on-paper); border-color: var(--cyan-400); }
.modal-x:focus-visible { outline: none; border-color: var(--cyan-400); box-shadow: 0 0 0 3px rgba(61, 198, 242, 0.2); }

.modal-head { margin-bottom: clamp(3px, 1dvh, 6px); padding-right: 44px; }
.modal-kicker {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: clamp(2px, 0.8dvh, 8px);
}
.modal-head h2 {
  font-family: var(--font-disp);
  font-weight: 800;
  color: var(--ink-on-paper);
  font-size: clamp(1.05rem, min(4vw, 2.8dvh), 1.7rem);
  line-height: 1.08;
  margin: 0 0 clamp(2px, 0.8dvh, 6px);
}
.modal-head > p {
  color: var(--mid-on-paper);
  font-size: clamp(0.8rem, 1.8dvh, 0.95rem);
  line-height: 1.3;
}

.seg { border: 0; padding: 0; margin: 0 0 clamp(6px, 1.6dvh, 13px); min-width: 0; }
.case-form .seg { margin-bottom: clamp(3px, 0.9dvh, 6px); }
.seg legend {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--low-on-paper);
  margin-bottom: clamp(2px, 0.8dvh, 7px);
  padding: 0;
}
.seg-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.seg-opts label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(7px, 1.6dvh, 12px) 12px;
  border: 1px solid var(--line-paper);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink-on-paper);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.seg-opts input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.seg-opts label.on {
  border-color: var(--cyan-400);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61, 198, 242, 0.16);
  color: var(--blue-600);
  font-weight: 600;
}
.seg-opts label:focus-within { border-color: var(--cyan-400); box-shadow: 0 0 0 3px rgba(61, 198, 242, 0.16); }

.field .opt { color: var(--low-on-paper); font-weight: 500; letter-spacing: 0; text-transform: none; }
.field.is-hidden { display: none; }

.case-form .send { display: flex; flex-direction: column; gap: clamp(4px, 1dvh, 7px); margin-top: 0; }
.case-form .send .btn { width: 100%; justify-content: center; min-height: 44px; padding: clamp(7px, 1.2dvh, 11px) 28px; }
.modal-note { font-size: 0.76rem; color: var(--low-on-paper); text-align: center; line-height: 1.28; }

.btn--wa { background: var(--ok); color: #05130a; box-shadow: 0 14px 38px -14px rgba(37, 211, 102, 0.5); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -14px rgba(37, 211, 102, 0.6); }

@media (max-width: 560px) {
  .modal:not([hidden]) { padding: 0; align-items: flex-end; }
  .modal-card {
    width: 100%;
    max-height: 94vh;
    max-height: 94dvh;
    border-radius: calc(var(--radius) + 6px) calc(var(--radius) + 6px) 0 0;
    padding-bottom: calc(clamp(14px, 3dvh, 22px) + var(--safe-bottom));
  }
}
@media (max-height: 700px) {
  .modal-card { padding: clamp(5px, 1.2dvh, 9px) clamp(18px, 4vw, 32px); }
  .modal-head { margin-bottom: clamp(2px, 0.7dvh, 4px); }
  .modal-kicker { margin-top: 0; }
  .modal-head > p { margin: clamp(2px, 0.6dvh, 4px) 0 0; }
  .case-form .seg, .case-form .field { margin-bottom: clamp(2px, 0.6dvh, 4px); }
  .seg-opts label { padding: clamp(5px, 1.1dvh, 9px) 12px; }
  .case-form .field input, .case-form .field textarea { padding: clamp(4px, 0.7dvh, 6px) 14px; }
  .case-form .field textarea { height: clamp(24px, 5dvh, 40px); }
  .case-form .send { gap: clamp(3px, 0.7dvh, 5px); }
  .case-form .send .btn { padding: clamp(5px, 0.9dvh, 8px) 28px; }
  .modal-note { margin: clamp(4px, 1dvh, 8px) 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-card { animation: none; }
}

/* ============ CONSENTIMENTO LGPD (item 35) ============ */
.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1400;
  max-width: 760px;
  margin-inline: auto;
  padding: 18px 22px;
  background: var(--ink-800);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  animation: consentIn 0.4s ease;
}
@keyframes consentIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.consent-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.consent p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-mid);
}
.consent a { color: var(--cyan-300); border-bottom: 1px solid rgba(111, 220, 255, 0.4); }
.consent-actions { display: flex; gap: 10px; }
.btn-consent {
  padding: 10px 20px;
  border-radius: 10px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-consent.accept { background: var(--grad-brand); color: #041421; }
.btn-consent.accept:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(61, 198, 242, 0.5); }
.btn-consent.decline { background: transparent; border-color: var(--line-strong); color: var(--text-hi); }
.btn-consent.decline:hover { border-color: var(--cyan-400); }
.btn-consent:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(61, 198, 242, 0.3); }
@media (max-width: 560px) {
  .consent-actions { width: 100%; }
  .btn-consent { flex: 1; }
}
@media (prefers-reduced-motion: reduce) { .consent { animation: none; } }

/* ============ FOOTER ============ */
.site-foot {
  background: var(--ink-950);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 110px) 0 0;
}
/* marca d'água gigante */
.site-foot .wm {
  position: absolute;
  left: 50%;
  bottom: -0.16em;
  transform: translateX(-50%);
  font-family: var(--font-disp);
  font-stretch: 125%;
  font-weight: 800;
  font-size: clamp(4rem, 12.5vw, 11.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(125, 175, 220, 0.07);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  padding-bottom: clamp(56px, 8vw, 90px);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .foot-grid { grid-template-columns: 1fr; } }

.site-foot .brand img { height: 50px; width: auto; margin-bottom: 22px; }
.site-foot .about {
  font-size: 0.88rem;
  color: var(--text-low);
  max-width: 34ch;
}
.site-foot .soc {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.site-foot .soc a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--text-mid);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  touch-action: manipulation;
}
.site-foot .soc a:hover {
  border-color: var(--cyan-400);
  color: var(--cyan-300);
  transform: translateY(-4px);
  background: rgba(61, 198, 242, 0.08);
}
.site-foot .soc svg { width: 19px; height: 19px; }

.site-foot .col-tt {
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 22px;
}
.foot-menu { list-style: none; }
.foot-menu li { margin-bottom: 12px; }
.foot-menu a {
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: color 0.25s ease, padding-left 0.25s ease;
  position: relative;
}
.foot-menu a:hover { color: var(--cyan-300); padding-left: 8px; }

.foot-contact li {
  list-style: none;
  margin-bottom: 18px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.foot-contact .tt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-low);
  display: block;
  margin-bottom: 3px;
}
.foot-contact a:hover { color: var(--cyan-300); }

.foot-base {
  border-top: 1px solid var(--line);
  padding: 26px 0 110px;
  position: relative;
  z-index: 1;
}
.foot-base .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-low);
}

/* ============ FLUTUANTES ============ */
.wa-float {
  position: fixed;
  bottom: calc(25px + var(--safe-bottom));
  right: 28px;
  z-index: 1000;
  box-sizing: border-box;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  background: linear-gradient(145deg, #2fe071 0%, #25d366 48%, #18b957 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24), 0 10px 24px rgba(37, 211, 102, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  touch-action: manipulation;
  will-change: transform;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28), 0 12px 28px rgba(37, 211, 102, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  filter: saturate(1.04);
}
.wa-float:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), 0 6px 18px rgba(37, 211, 102, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.wa-float:focus-visible {
  outline: 3px solid rgba(61, 198, 242, 0.72);
  outline-offset: 4px;
}
.wa-float svg {
  display: block;
  flex: none;
  width: 28px;
  height: 28px;
}
.wa-float::before { content: none; }

.to-top {
  position: fixed;
  bottom: calc(96px + var(--safe-bottom));
  right: 33px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  border: 1px solid rgba(61, 198, 242, 0.14);
  background:
    radial-gradient(130% 130% at 50% 6%, rgba(61, 198, 242, 0.13), transparent 58%),
    linear-gradient(180deg, rgba(14, 26, 42, 0.94), rgba(6, 11, 19, 0.95));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--cyan-300);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  translate: 0 10px;
  transition: opacity 0.35s ease, visibility 0.35s ease, translate 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  touch-action: manipulation;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.to-top.show { opacity: 1; visibility: visible; translate: 0 0; }

/* anel de progresso de scroll (segue o quadrado arredondado), botão "voltar ao topo" */
.to-top .to-top-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  overflow: visible;
  pointer-events: none;
}
.to-top .ring-track {
  stroke: rgba(130, 190, 230, 0.26);
  stroke-width: 2.4;
}
.to-top .ring-progress {
  stroke: var(--cyan-400);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: calc(100 - var(--p, 0) * 100);
  transition: stroke-dashoffset 0.12s linear;
  filter: drop-shadow(0 0 3px rgba(61, 198, 242, 0.55));
}
.to-top .to-top-arrow {
  position: relative;
  transition: transform 0.25s ease;
}
.to-top:hover {
  border-color: rgba(61, 198, 242, 0.35);
  color: var(--cyan-300);
  box-shadow: 0 0 0 1px rgba(61, 198, 242, 0.30), 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 22px -6px rgba(61, 198, 242, 0.55);
}
.to-top:hover .to-top-arrow { transform: translateY(-3px); }
.to-top:active { translate: 0 1px; }
.to-top svg { width: 18px; height: 18px; }
.to-top .to-top-ring { width: 100%; height: 100%; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  top: 26px;
  right: 26px;
  z-index: 999;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: rgba(10, 19, 32, 0.92);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 14px;
  padding: 20px 18px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow: hidden;
  transform: translateX(120%);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1.1);
}
.toast.show { transform: translateX(0); }
.toast.error { border-color: rgba(231, 76, 60, 0.5); }
.toast .t-ico {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 102, 0.14);
  color: var(--ok);
}
.toast.error .t-ico { background: rgba(231, 76, 60, 0.14); color: #e74c3c; }
.toast .t-ico svg { width: 20px; height: 20px; }
.toast strong {
  display: block;
  color: var(--text-hi);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.toast p { margin: 0; color: var(--text-mid); font-size: 0.84rem; line-height: 1.55; }
.toast .t-x {
  background: none;
  border: 0;
  color: var(--text-low);
  flex: none;
  padding: 2px;
  transition: color 0.2s ease;
}
.toast .t-x:hover { color: var(--text-hi); }
.toast .t-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--grad-brand);
  transform-origin: left;
}
.toast.error .t-bar { background: #e74c3c; }
.toast.show .t-bar { animation: tbar 5.2s linear forwards; }
@keyframes tbar { from { transform: scaleX(1); } to { transform: scaleX(0); } }

@media (max-width: 640px) {
  .wa-float {
    right: 28px;
    bottom: calc(25px + var(--safe-bottom));
    width: 58px;
    height: 58px;
    padding: 0;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }

  .to-top {
    right: 22px;
    bottom: calc(82px + var(--safe-bottom));
    width: 44px;
    height: 44px;
  }

  .foot-base {
    padding-bottom: calc(98px + var(--safe-bottom));
  }

  .toast {
    top: 16px;
    right: 16px;
    max-width: calc(100vw - 32px);
  }
}

/* ============ PÁGINAS INTERNAS ============ */
.page-hero {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(820px 480px at 85% 20%, rgba(18, 104, 180, 0.20), transparent 65%),
    var(--ink-900);
}
.page-hero .lead { max-width: 64ch; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-grid .map-live { order: -1; }
}

/* mapa-múndi pontilhado (canvas #worldmap) — coluna visual do hero da pág. Sobre */
.map-live {
  position: relative;
  width: min(560px, 100%);
  margin-inline: auto;
  aspect-ratio: 473 / 307; /* mesma proporção da grade de pontos (GF_MAP_SIZE) */
}
.map-live canvas { width: 100%; height: auto; }

.article-block {
  background: var(--card);
  border: 1px solid var(--line-paper);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(30px, 5vw, 60px);
  margin-bottom: 26px;
  box-shadow: var(--shadow-paper);
}
.article-block .a-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--blue-500);
  display: block;
  margin-bottom: 16px;
}
.article-block h2 {
  font-family: var(--font-disp);
  font-stretch: 114%;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  color: var(--ink-on-paper);
  line-height: 1.3;
  margin: 0 0 20px;
}
.article-block p {
  color: var(--mid-on-paper);
  text-align: justify;
  margin: 0 0 16px;
}
.article-block .acts { margin-top: 28px; text-align: center; }

/* - Páginas legais - */
.legal {
  max-width: 860px;
  margin-inline: auto;
}
.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 40px;
  transition: gap 0.25s ease;
}
.legal .back:hover { gap: 16px; }
.legal h1 {
  font-family: var(--font-disp);
  font-stretch: 116%;
  font-weight: 700;
  letter-spacing: -0.012em;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--ink-on-paper);
  line-height: 1.1;
  margin: 0 0 14px;
}
.legal .updated {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--low-on-paper);
  padding-bottom: 34px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line-paper);
}
.legal p {
  color: var(--mid-on-paper);
  text-align: justify;
  margin: 0 0 16px;
  font-size: 0.96rem;
}
.legal p b, .legal p strong {
  color: var(--ink-on-paper);
}
.legal p.h {
  font-family: var(--font-disp);
  font-stretch: 112%;
  font-weight: 700;
  color: var(--ink-on-paper);
  font-size: 1.08rem;
  margin: 38px 0 14px;
  text-align: left;
}
.legal ol, .legal ul {
  margin: 0 0 18px 22px;
  color: var(--mid-on-paper);
  font-size: 0.96rem;
}
.legal li { margin-bottom: 8px; }
.legal a { color: var(--blue-600); border-bottom: 1px solid rgba(18, 104, 180, 0.3); }
.legal a:hover { color: var(--cyan-400); }

/* ============ REVEAL (animação de entrada) ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.65, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* item 12: reversão de risco (reassurance) abaixo do CTA do hero.
   Inline-flex: o conjunto (escudo + 2 linhas fixas via <br>) centraliza como
   unidade no hero; o escudo fica centralizado verticalmente entre as 2 linhas. */
.hero-assure {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-mid);
}
.hero-assure span { text-align: left; white-space: nowrap; }
.hero-assure svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--ok); }
/* em telas muito estreitas (~320px) a 2ª linha fixa encosta na borda; libera a quebra */
@media (max-width: 340px) {
  .hero-assure span { white-space: normal; }
}

/* carga do hero (entrada orquestrada) */
.hero [data-load] {
  opacity: 0;
  transform: translateY(30px);
  animation: rise 0.9s cubic-bezier(0.2, 0.65, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ============ ACESSIBILIDADE ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal], .hero [data-load] { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 2px solid var(--cyan-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ HERO RESPONSIVO: mesmo layout do anexo em QUALQUER resolução ============
   .hero-copy é um contêiner (container-type: inline-size); as fontes são dimensionadas
   em cqi (% da largura de .hero-copy). Assim o H1 fica SEMPRE em 2 linhas
   ("Aceleramos a recuperação" / "do seu crédito") e texto + botões escalam juntos,
   auto-ajustando o tamanho para caber em telas de qualquer largura (desktop e mobile).
   As regras vêm por último para sobrepor os overrides mobile de h1.disp/.actions/.lead.
   Envolto em @supports: navegadores sem container queries usam o comportamento padrão
   (quebra natural), evitando overflow do nowrap. */
@supports (container-type: inline-size) {
.hero h1.disp {
  font-size: 6.1cqi;
  line-height: 1.05;
  letter-spacing: -0.014em;
  white-space: nowrap;
  text-wrap: nowrap;
}
.hero .lead {
  font-size: clamp(0.9rem, 2.15cqi, 1.16rem);
  line-height: 1.6;
  max-width: 34em;
  margin-top: clamp(16px, 4.2cqi, 46px);
  margin-inline: auto;
}
.hero .actions {
  flex-wrap: wrap;      /* lado a lado onde cabe; empilha só em telas ultraestreitas (~320px) */
  flex-direction: row;
  gap: 2.2cqi;
  margin-top: clamp(22px, 5.8cqi, 62px);
}
.hero .hero-assure {
  margin-top: clamp(12px, 1.7cqi, 18px);
}
.hero .actions .btn {
  width: auto;
  flex: 0 1 auto;
  min-height: 0;
  padding: 1.55cqi 2.8cqi;
  font-size: clamp(0.62rem, 1.5cqi, 0.85rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
}
.hero .actions .btn .arr { flex: none; }
}
