/* ============================================================
   WCare Landing Clean — estilo Apple: branco, vidro, azul
   ============================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
}

:root {
  --ink: #0d1526;
  --muted: #5d6b82;
  --dim: #93a0b4;
  --blue: #1c8af6;
  --blue-deep: #2c86cc;
  --cyan: #38bdf8;
  --indigo: #6366f1;
  --ok: #16a34a;
  --amber: #d97706;

  --glass: rgba(255, 255, 255, .58);
  --glass-2: rgba(255, 255, 255, .78);
  --stroke: rgba(255, 255, 255, .85);
  --line: rgba(13, 21, 38, .07);

  --radius: 24px;
  --maxw: 1180px;

  --grad: linear-gradient(120deg, #4aa8ff 0%, #1c8af6 55%, #2563eb 100%);
  --grad-text: linear-gradient(110deg, #2c86cc 0%, #1c8af6 50%, #2563eb 100%);

  --shadow: 0 24px 70px -28px rgba(28, 90, 180, .35);
  --shadow-soft: 0 14px 44px -18px rgba(28, 90, 180, .22);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }

body {
  /* Topo branco puro; o azul entra como luz (mouse) e volta como ambiente nas seções fundas */
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 36%, #f4f7fb 62%, #f7f9fd 100%);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { line-height: 1.06; letter-spacing: -.03em; font-weight: 700; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
section { position: relative; }

::selection { background: rgba(28, 138, 246, .18); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sec { padding: 110px 0; }
.sec-tight { padding: 44px 0; }
.sec-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: 14px; }
.sec-head p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

.eyebrow {
  font-weight: 700; font-size: 12.5px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--blue);
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Fundo: blobs + brilho do mouse ---------- */
/* Os blobs ficam invisíveis no topo (branco puro) e acendem depois da primeira dobra */
.blobs {
  position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
body.deep .blobs { opacity: 1; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
  will-change: transform;
}
.blob.b1 {
  width: 54vw; height: 54vw; top: -18%; right: -12%;
  background: radial-gradient(circle at 35% 35%, #7cc3ff 0%, #3b9df7 40%, transparent 70%);
  animation: drift1 26s var(--ease) infinite alternate;
}
.blob.b2 {
  width: 44vw; height: 44vw; bottom: -16%; left: -14%;
  background: radial-gradient(circle at 60% 40%, #a5d8ff 0%, #6db4ea 45%, transparent 72%);
  animation: drift2 30s var(--ease) infinite alternate;
}
.blob.b3 {
  width: 30vw; height: 30vw; top: 38%; left: 52%;
  background: radial-gradient(circle, rgba(59, 130, 246, .45), transparent 68%);
  opacity: .32;
  animation: drift3 24s var(--ease) infinite alternate;
}
@keyframes drift1 { to { transform: translate3d(-6%, 10%, 0) scale(1.12); } }
@keyframes drift2 { to { transform: translate3d(8%, -8%, 0) scale(1.08); } }
@keyframes drift3 { to { transform: translate3d(-10%, 12%, 0) scale(1.18); } }

/* Luz azul de vidro que acompanha o mouse (o único azul do topo branco) */
.cursor-glow {
  position: fixed; z-index: -1; pointer-events: none;
  width: 940px; height: 940px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(28, 138, 246, .30) 0%,
    rgba(74, 168, 255, .18) 32%,
    rgba(37, 99, 235, .08) 52%,
    transparent 68%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
  left: 50%; top: 30%;
}
.cursor-glow::after {
  content: ""; position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 190, 255, .38), transparent 62%);
  filter: blur(10px);
}
/* Sem mouse (celular/tablet): a luz passeia sozinha, devagar */
@media (pointer: coarse) {
  .cursor-glow { animation: light-drift 14s ease-in-out infinite alternate; }
  @keyframes light-drift {
    0% { left: 24%; top: 22%; }
    50% { left: 72%; top: 40%; }
    100% { left: 38%; top: 68%; }
  }
}

.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--grad); z-index: 130;
}

/* ---------- Vidro ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, .9);
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap; position: relative;
}
.btn-primary {
  background: var(--grad); color: #fff; font-weight: 700;
  box-shadow: 0 12px 30px -12px rgba(28, 138, 246, .45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -14px rgba(28, 138, 246, .55); }
.btn-wa {
  background: linear-gradient(135deg, #2fe273, #1ebe5a); color: #fff; font-weight: 700;
  box-shadow: 0 12px 30px -12px rgba(30, 190, 90, .45);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -14px rgba(30, 190, 90, .55); }
/* Glifo do WhatsApp dentro do botão: o .btn já é flex com gap, então basta
   dimensionar. flex:none impede que ele encolha quando o texto é longo. */
.btn-ic-wa { width: 19px; height: 19px; flex: none; }
.btn-lg .btn-ic-wa { width: 21px; height: 21px; }
.btn-sm .btn-ic-wa { width: 17px; height: 17px; }
.btn-ghost {
  background: rgba(255, 255, 255, .7); color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -14px rgba(28, 90, 180, .25);
}
.btn-ghost:hover { transform: translateY(-2px); background: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }
/* Botão de largura total pode quebrar linha: o texto nunca transborda */
.btn-block { width: 100%; white-space: normal; line-height: 1.35; }

/* ---------- Header ---------- */
header.site { position: fixed; top: 0; left: 0; right: 0; z-index: 120; }
/* Âncoras nativas (sem Lenis) também pousam com folga abaixo do header */
[id] { scroll-margin-top: 92px; }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin: 14px auto; max-width: var(--maxw);
  padding: 10px 14px 10px 18px; border-radius: 100px;
  border: 1px solid transparent;
  transition: background .4s var(--ease), box-shadow .4s, border-color .4s;
}
header.site.scrolled .nav {
  background: rgba(255, 255, 255, .72);
  border-color: var(--stroke);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 12px 40px -18px rgba(28, 90, 180, .3);
}
/* A marca NUNCA encolhe. Sem o `flex-shrink: 0`, o menu cheio espremia este
   item, e a imagem (com `max-width: 100%` do reset) era achatada na horizontal
   com a altura fixa · a logo saiu esmagada num print do CTO. */
.brand { flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; gap: 2px; align-items: center; }
/* Com o "Planos" o menu tem 7 itens e o .wrap trava em 1180px: o padding é
   12px (era 15px) pra caber sem quebrar o "Sistema no ar" em duas linhas, e
   o nowrap garante que item de menu nunca quebre por dentro. */
.nav-links a {
  font-size: 14px; color: var(--muted); padding: 9px 12px;
  border-radius: 100px; transition: .25s; font-weight: 500;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: rgba(13, 21, 38, .05); }
/* Do "Blog" para a direita o menu deixa de ser âncora da home e passa a levar
   a outras PÁGINAS. O separador à esquerda avisa isso antes do clique, sem
   precisar de um rótulo maior. Ele morava no "Sistema no ar" enquanto ele era
   o único item assim.

   Sem indicador de cor no status, de propósito: pintar de verde um ponto que a
   landing não consulta seria afirmar algo que ela não sabe. */
.nav-links .nav-pagina { position: relative; margin-left: 8px; }
.nav-links .nav-pagina::before {
  content: ""; position: absolute; left: -5px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 15px; background: var(--line);
}
/* O "Mais". Painel ancorado no botão, com o mesmo vidro do header. */
.nav-mais { position: relative; }
.nav-mais-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font: inherit; font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 9px 12px; border: 0; border-radius: 100px; background: none;
  cursor: pointer; white-space: nowrap; transition: .25s;
}
.nav-mais-btn:hover, .nav-mais-btn[aria-expanded="true"] { color: var(--ink); background: rgba(13, 21, 38, .05); }
.nav-mais-btn svg { transition: transform .25s var(--ease); }
.nav-mais-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-mais-painel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 190px; padding: 6px; display: flex; flex-direction: column;
  border-radius: 16px; border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow-soft);
  z-index: 40;
}
.nav-mais-painel[hidden] { display: none; }
.nav-links .nav-mais-painel a { display: block; padding: 9px 12px; border-radius: 10px; }
/* Item novo do menu (certificado A3, 16/09/2026). Selo DISCRETO: tinta azul
   clara com texto escuro, que passa no AA; o gradiente com texto branco do
   .feat-tag não passaria num texto deste tamanho. */
.nav-links .nav-mais-painel .nav-destaque { color: var(--ink); font-weight: 600; }
.nav-novo {
  display: inline-block; margin-left: 6px; vertical-align: 1px;
  font-size: 9.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  line-height: 1.5; padding: 1px 7px; border-radius: 100px;
  color: #1459a8; background: rgba(28, 138, 246, .12);
}
.nav-sheet-links .nav-novo { font-size: 10.5px; vertical-align: 3px; margin-left: 8px; }

.nav-cta { display: flex; gap: 10px; align-items: center; }
/* CTA do header rebaixado a "fantasma" enquanto o hero (com o próprio CTA
   verde) está na tela — main.js promove de volta com histerese. A transição
   é só de pintura: nada muda de tamanho, o nav não reflui. */
.nav-cta .btn-wa { transition: background .35s, box-shadow .35s, color .35s, border-color .35s, transform .3s var(--ease); }
.nav-cta .btn-wa.rebaixado {
  background: rgba(255, 255, 255, .7); color: var(--ink);
  border-color: var(--line); box-shadow: none;
}

/* ---------- Menu do celular (sanduíche + gaveta) ---------- */
/* A pílula precisa ficar ACIMA da gaveta (as duas moram no mesmo header
   fixo), senão o painel cobriria o próprio botão de fechar. */
.nav { position: relative; z-index: 2; }
.nav-burger { display: none; }

.nav-sheet {
  position: fixed; inset: 0; z-index: 1;
  padding: 96px 18px 28px;
  background: rgba(244, 247, 253, .82);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s;
}
.nav-sheet[hidden] { display: none; }
html.nav-open .nav-sheet { opacity: 1; visibility: visible; }
/* A página não rola por trás da gaveta aberta */
html.nav-open, html.nav-open body { overflow: hidden; }

.nav-sheet-links { display: flex; flex-direction: column; }
.nav-sheet-links a {
  font-size: 20px; font-weight: 600; color: var(--ink);
  padding: 16px 6px; border-bottom: 1px solid var(--line);
  /* Cada item entra logo depois do anterior, de cima para baixo */
  opacity: 0; transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
html.nav-open .nav-sheet-links a { opacity: 1; transform: none; }
.nav-sheet-links a:nth-child(1) { transition-delay: .04s; }
.nav-sheet-links a:nth-child(2) { transition-delay: .08s; }
.nav-sheet-links a:nth-child(3) { transition-delay: .12s; }
.nav-sheet-links a:nth-child(4) { transition-delay: .16s; }
.nav-sheet-links a:nth-child(5) { transition-delay: .2s; }
/* 6 e 7 existem desde que o "Planos" entrou no menu: sem eles o fim da
   lista entrava com delay 0, antes do topo, invertendo a cascata */
.nav-sheet-links a:nth-child(6) { transition-delay: .24s; }
.nav-sheet-links a:nth-child(7) { transition-delay: .28s; }
/* 8: o certificado A3 entrou na gaveta (16/09/2026) */
.nav-sheet-links a:nth-child(8) { transition-delay: .32s; }
.nav-sheet-cta {
  display: grid; gap: 10px; margin-top: 26px;
  opacity: 0; transform: translateY(-10px);
  transition: opacity .3s var(--ease) .24s, transform .3s var(--ease) .24s;
}
html.nav-open .nav-sheet-cta { opacity: 1; transform: none; }

@media (max-width: 1023px) {
  .nav-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; flex: none;
    border-radius: 50%; border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, .72); color: var(--ink);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
  }
  /* Três barras que viram X: o span é a barra do meio e os pseudo as outras */
  .nav-burger span, .nav-burger span::before, .nav-burger span::after {
    display: block; width: 17px; height: 2px; border-radius: 2px;
    background: currentColor;
    transition: transform .3s var(--ease), opacity .2s;
  }
  .nav-burger span { position: relative; }
  .nav-burger span::before, .nav-burger span::after { content: ''; position: absolute; left: 0; top: 0; }
  .nav-burger span::before { transform: translateY(-6px); }
  .nav-burger span::after { transform: translateY(6px); }
  /* A barra do meio some pelo fundo, não por opacity: as outras duas são
     pseudo-elementos DELA e sumiriam junto. */
  html.nav-open .nav-burger span { background: transparent; }
  html.nav-open .nav-burger span::before { transform: rotate(45deg); }
  html.nav-open .nav-burger span::after { transform: rotate(-45deg); }
}
/* Faixa 1024-1279: o nav de 7 itens só cabe com os links em passo curto e o
   CTA verde recolhido a glifo (mesmo recurso da tela estreita). O texto do
   CTA volta a partir de 1280. */
@media (min-width: 1024px) and (max-width: 1279px) {
  .nav-links a, .nav-mais-btn { padding: 8px 9px; font-size: 13.5px; }
  .nav-cta .btn-wa { width: 40px; height: 40px; padding: 0; border-radius: 50%; }
  .nav-cta .btn-wa .btn-tx { display: none; }
  .nav-cta .btn-wa .btn-ic-wa { width: 19px; height: 19px; }
}

/* Tela estreita: o CTA do header vira só o glifo do WhatsApp para caber
   logo + CTA + sanduíche. O texto completo continua dentro da gaveta. */
@media (max-width: 560px) {
  .nav-cta .btn-wa { width: 40px; height: 40px; padding: 0; border-radius: 50%; }
  .nav-cta .btn-wa .btn-tx { display: none; }
  .nav-cta .btn-wa .btn-ic-wa { width: 19px; height: 19px; }
  .nav { gap: 10px; padding: 8px 10px 8px 14px; }
  .nav-cta { gap: 8px; }
  .brand img { height: 26px; }
}

/* ---------- Hero (split: copy à esquerda, mídia à direita) ---------- */
.hero {
  display: flex; flex-direction: column; justify-content: center;
  padding: 132px 0 24px;
  position: relative; z-index: 3;
  text-align: left;
  overflow: clip;
}
.stage3d { width: 100%; }
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: clamp(36px, 5vw, 70px); align-items: center;
}

/* Marca d'água secreta: WCARE atravessa o hero inteiro, mas só aparece
   onde o brilho azul do cursor passa (máscara radial que segue o mouse,
   posicionada pelo main.js). Sem mouse fino, nem existe. */
.hero-word {
  position: absolute; left: 50%; top: 54%;
  transform: translate(-50%, -50%);
  width: 100vw; text-align: center;
  font-size: 26.5vw; line-height: 1; font-weight: 800; letter-spacing: -.05em;
  color: rgba(93, 107, 130, .16); /* cinza sutil: detalhe, não protagonista */
  pointer-events: none; user-select: none;
  z-index: 0; white-space: nowrap;
  opacity: 0;
  -webkit-mask-image: radial-gradient(300px circle at var(--mx, -999px) var(--my, -999px), #000 0%, rgba(0, 0, 0, .3) 55%, transparent 78%);
  mask-image: radial-gradient(300px circle at var(--mx, -999px) var(--my, -999px), #000 0%, rgba(0, 0, 0, .3) 55%, transparent 78%);
}
/* só liga onde máscara existe (senão a palavra apareceria inteira) */
@supports ((-webkit-mask-image: radial-gradient(#000, #fff)) or (mask-image: radial-gradient(#000, #fff))) {
  .hero-word { opacity: 1; }
}
.hero-inner > * { position: relative; z-index: 1; }

/* ---------- Vídeo da equipe: a mídia do split ----------
   Gente real por trás do sistema, emoldurada à direita da copy. Tilt 3D
   do mouse no <video>, deriva e fade-na-rolagem no main.js. */
.hero-clip {
  position: relative; z-index: 2;
  width: 100%; max-width: 430px; margin: 0; justify-self: end;
  rotate: 2deg;
  border-radius: 28px;
  border: 1px solid var(--stroke);
  background: #0d1526;
  box-shadow: 0 40px 80px -30px rgba(13, 40, 90, .5);
  will-change: transform;
}
.hero-clip video {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover;
  display: block; border-radius: inherit;
}
.hc-stat {
  position: absolute; z-index: 2;
  display: flex; flex-direction: column; gap: 1px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 13px; padding: 8px 12px;
  box-shadow: 0 16px 36px -16px rgba(13, 40, 90, .4);
  white-space: nowrap; text-align: left;
  will-change: transform;
}
.hc-stat b { font-size: 13.5px; letter-spacing: -.02em; }
.hc-stat small { font-size: 10px; color: var(--muted); }
.hc-stat.s1 { left: -48px; top: 12%; }
.hc-stat.s2 { right: -26px; bottom: 10%; }
.hero .hero-clip.reveal-hero { animation-delay: .3s; }
/* Janela estreita: volta a coluna única centralizada, sem a mídia */
@media (max-width: 1100px) {
  .hero { text-align: center; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { margin-left: auto; margin-right: auto; }
  .hero .type-live { justify-content: center; }
  .hero .sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-clip { display: none; }
  .hero-word { display: none; }
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px; border-radius: 100px;
  background: rgba(255, 255, 255, .7); border: 1px solid var(--stroke);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font-size: 13.5px; color: var(--muted); font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 0 rgba(28, 138, 246, .5); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(28, 138, 246, .45); }
  70% { box-shadow: 0 0 0 12px rgba(28, 138, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(28, 138, 246, 0); }
}
.hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800; letter-spacing: -.04em;
  margin: 26px 0 0;
}
/* O gradiente do título respira devagar (vivo, sem distrair) */
.hero .grad-text {
  background-size: 220% 100%;
  animation: grad-breathe 7s ease-in-out infinite alternate;
}
@keyframes grad-breathe { to { background-position: 100% 0; } }
/* Máquina de escrever da segunda linha do título */
.type-wrap {
  position: relative; display: inline-block; max-width: 100%;
  transition: height .35s ease;
}
.type-ghost { visibility: hidden; }
.type-live {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-start;
}
.type-caret {
  display: inline-block; width: .05em; height: .78em;
  margin-left: .06em; vertical-align: -.04em;
  border-radius: 99px; background: var(--blue);
  animation: caret-blink 1.05s steps(2, start) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
/* Sem JS ou com "menos animação" ligado, a frase fica fixa e o cursor some */
.no-js .type-caret, .no-motion .type-caret { display: none; }
.hero .sub {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--muted);
  max-width: 56ch; margin: 20px 0 0;
}
.hero-ctas { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; margin-top: 34px; }
.hero-trust {
  display: flex; gap: 16px 30px; justify-content: flex-start; align-items: center; flex-wrap: wrap;
  margin-top: 34px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
}
.trust-ic {
  width: 44px; height: 44px; border-radius: 15px; flex: none;
  display: grid; place-items: center;
  color: var(--blue);
  background: linear-gradient(145deg, #eaf3ff, #dcebfd);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 8px 18px -12px rgba(28, 138, 246, .45);
}
.trust-ic svg { display: block; }
/* Tablet: 2x2 pra não sobrar um item órfão na segunda linha */
@media (min-width: 641px) and (max-width: 900px) {
  .hero-trust {
    display: grid; grid-template-columns: repeat(2, max-content);
    justify-content: center; gap: 16px 44px;
  }
}
@media (max-width: 640px) {
  /* Coluna com os ícones no mesmo eixo; o bloco inteiro fica centralizado */
  .hero-trust {
    flex-direction: column; align-items: flex-start; gap: 12px;
    width: max-content; margin-left: auto; margin-right: auto;
  }
  .trust-item { font-size: 13.5px; gap: 10px; }
  .trust-ic { width: 38px; height: 38px; border-radius: 13px; }
  .trust-ic svg { width: 19px; height: 19px; }
}

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); }
.scroll-cue .wheel {
  width: 24px; height: 38px; border: 2px solid var(--dim); border-radius: 14px; position: relative;
}
.scroll-cue .wheel::after {
  content: ""; position: absolute; top: 7px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 3px; background: var(--blue);
  animation: wheel 1.8s var(--ease) infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Widgets flutuantes do hero ---------- */
.widget {
  position: absolute; z-index: 2; text-align: left;
  padding: 16px 18px; border-radius: 20px;
  will-change: transform;
}
.widget .wg-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--muted);
  letter-spacing: .02em; margin-bottom: 10px;
}
.wg-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 11px; margin-top: 6px;
  background: rgba(255, 255, 255, .72); border: 1px solid var(--line);
  font-size: 11.5px; color: var(--muted);
}
.wg-row b { color: var(--ink); font-size: 11px; }
.wg-row em { margin-left: auto; font-style: normal; font-size: 10px; font-weight: 700; }
.wg-row.ok em { color: var(--ok); }
.wg-row.wait em { color: var(--amber); }
.wg-msg { font-size: 12px; color: var(--muted); max-width: 210px; }
.wg-badge {
  margin-top: 10px; display: inline-block;
  font-size: 11px; font-weight: 700; color: #fff;
  background: var(--ok); border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 100px; padding: 5px 11px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(22, 163, 74, .3);
}
.wg-big { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.w-agenda { width: 240px; }
.w-whats { width: 230px; }
.w-caixa { width: 200px; }
.w-nf {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  padding: 13px 18px; white-space: nowrap;
}
.w-nf b { color: var(--ok); }
.w-face { width: 200px; }
.face-real { position: relative; width: 100px; margin: 2px auto 6px; }
.face-real img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 8px 16px rgba(13, 40, 90, .16));
}
.fp {
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  width: 12px; height: 12px; border-radius: 50%;
  display: grid; place-items: center;
  background: #1c8af6; color: #fff;
  font-style: normal; font-size: 7px; font-weight: 800;
  border: 1.25px solid #fff;
  box-shadow: 0 2px 6px rgba(10, 10, 20, .22);
}
.fp--g { background: #16a34a; }
.w-spine2d { width: 185px; text-align: center; }
.spine2d-img {
  height: 118px; width: auto;
  margin: 2px auto 6px; display: block;
  filter: drop-shadow(0 8px 16px rgba(13, 40, 90, .2));
}
.w-spine2d .wg-head { justify-content: center; }
.w-face .wg-badge, .w-spine2d .wg-badge { display: table; margin-left: auto; margin-right: auto; }
.w-widgets { width: 210px; }
.wtiles { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.wt {
  background: rgba(255, 255, 255, .78); border: 1px solid var(--line);
  border-radius: 10px; padding: 7px 9px;
}
.wt b { font-size: 13px; display: block; letter-spacing: -.02em; }
.wt small { font-size: 8px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }

/* Cards no mobile: grade abaixo do notebook */
.mob-cards, .mob-strips { display: none; }

/* ---------- Cena 3D do hero (os pedaços se encaixam) ---------- */
.stage3d {
  position: relative;
  margin-top: 30px;
  height: 100svh;
  min-height: 640px;
  perspective: 1400px;
  perspective-origin: 50% 30%;
}
.scene {
  position: absolute; inset: 0; z-index: 1;
  transform-style: preserve-3d;
}

/* A sala escurece para o show: fundo navy + luz do mouse + vidro brilhando */
.stage-dim {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0; pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 80% 12%, rgba(37, 99, 235, .15), transparent 60%),
    radial-gradient(700px 520px at 8% 90%, rgba(28, 138, 246, .12), transparent 60%),
    linear-gradient(168deg, #0a0c1d 0%, #07080f 48%, #0c0f26 100%);
}

/* O vídeo da Aline é o fundo do palco: puro, sem manta nem efeitos por cima */
.stage-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Luz azul que acompanha o mouse pelo palco escuro */
.stage-glow {
  position: absolute; width: 940px; height: 940px; border-radius: 50%;
  left: 50%; top: 40%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(74, 168, 255, .34), rgba(99, 102, 241, .12) 46%, transparent 68%);
  filter: blur(28px);
}
.scene .widget { transition: box-shadow .6s, background .6s; }
.lid-screen { transition: box-shadow .6s; }
.stage-night .scene .widget {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .55), 0 0 60px -12px rgba(74, 168, 255, .38);
}
.stage-night .lid-screen {
  box-shadow: 0 60px 140px -40px rgba(0, 0, 0, .6), 0 0 120px -20px rgba(74, 168, 255, .42);
}
.scene .widget {
  position: absolute; left: 50%; top: 50%;
  will-change: transform;
  box-shadow: 0 40px 70px -30px rgba(13, 40, 90, .35);
}
/* ---------- Notebook que abre ---------- */
.laptop {
  position: absolute; left: 50%; top: 50%;
  width: min(690px, 92vw);
  transform-style: preserve-3d;
}
/* O palco encosta no hero (o notebook espia na primeira dobra) e respira antes dos números */
.stage-sec { position: relative; margin: clamp(-300px, -24svh, -160px) 0 70px; }
/* A altura da tampa vem da própria captura de tela (barra + imagem inteira),
   então o print do sistema nunca é cortado nas laterais */
.lid {
  position: relative; width: 100%;
  transform-style: preserve-3d;
  transform-origin: 50% 100%;
}
.lid-screen, .lid-back {
  border-radius: 20px 20px 6px 6px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.lid-back { position: absolute; inset: 0; }
.lid-screen {
  position: relative;
  background: #fbfdff;
  border: 1px solid #e4ebf5;
  box-shadow: 0 60px 130px -45px rgba(28, 90, 180, .45);
  display: flex; flex-direction: column;
}
.lid-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #f0f4fb, #d9e4f3);
  border: 1px solid #fff;
  display: grid; place-items: center;
}
.lid-back img { width: 64px; height: 64px; object-fit: contain; opacity: .9; }
.lap-shot {
  width: 100%; height: auto;
  display: block;
}
.lap-ui {
  flex: 1; display: flex; gap: 12px; padding: 14px;
  background: linear-gradient(180deg, #f7fafd, #eff4fa);
}
.lap-side {
  width: 54px; border-radius: 12px;
  background: rgba(28, 138, 246, .06);
  border: 1px solid rgba(28, 138, 246, .1);
  display: flex; flex-direction: column; gap: 9px; padding: 11px 9px;
}
.lap-side span { height: 8px; border-radius: 4px; background: rgba(28, 138, 246, .22); }
.lap-side span:first-child { background: var(--blue); }
.lap-main { flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.lap-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.lk { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px 11px; }
.lk b { font-size: 14px; display: block; letter-spacing: -.02em; }
.lk small { font-size: 8px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.lk.ok b { color: var(--ok); }
.lap-cols { flex: 1; display: grid; grid-template-columns: 1.25fr 1fr; gap: 10px; min-height: 0; }
.lap-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 12px; display: flex; flex-direction: column; min-height: 0;
}
.lp-title {
  font-size: 9px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px;
}
.lap-week { flex: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.lap-week i { border-radius: 6px; background: rgba(28, 138, 246, .09); display: block; }
.lap-week i.a { background: rgba(28, 138, 246, .38); }
.lap-week i.g { background: rgba(22, 163, 74, .32); }
.lap-week i.p { background: rgba(56, 189, 248, .32); }
.lap-chart { flex: 1; display: flex; align-items: flex-end; gap: 6px; }
.lap-chart i {
  flex: 1; height: var(--h); border-radius: 4px 4px 2px 2px; display: block;
  background: linear-gradient(180deg, #4aa8ff, rgba(28, 138, 246, .28));
}
.lap-chart i.g { background: linear-gradient(180deg, #34d399, rgba(22, 163, 74, .22)); }
.lap-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.ll {
  display: flex; align-items: center; gap: 6px; min-width: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 9px;
  padding: 7px 9px; font-size: 9.5px; color: var(--muted); white-space: nowrap;
}
.ll .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex: none; }
.ll .dot.ok { background: var(--ok); }
.ll em { margin-left: auto; font-style: normal; font-weight: 700; color: var(--ink); font-size: 9px; }
.scr-off {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(105deg, #cfe8ff 0%, #7cc3ff 22%, #4aa8ff 48%, #7d9bff 72%, #38bdf8 100%);
  background-size: 260% 100%;
  animation: light-pan 8s ease-in-out infinite alternate;
}
.deck {
  position: relative; margin-top: -1px; height: 16px;
  border-radius: 2px 2px 14px 14px;
  background: linear-gradient(180deg, #f2f6fb, #d7e1ee);
  border: 1px solid #fff; border-top: 0;
  box-shadow: 0 30px 55px -22px rgba(28, 90, 180, .42);
}
.deck .notch {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 120px; height: 7px; border-radius: 0 0 10px 10px;
  background: #c9d6e6;
}
.sheen {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .8) 47%, transparent 62%);
  background-size: 260% 100%;
  background-position: 130% 0;
  background-repeat: no-repeat;
}
.no-fx .stage3d, .no-js .stage3d { display: none; }
/* sem o palco, a margem negativa dele deixaria a seção seguinte
   subir por cima do hero */
.no-fx .stage-sec, .no-js .stage-sec { margin: 0 0 40px; }

/* ---------- Manifesto: palavras voando em 3D ---------- */
.kinetic { position: relative; }
.k-stage {
  height: 100svh; min-height: 620px;
  display: grid; place-items: center;
  overflow: clip;
  perspective: 1100px;
}
.k-center {
  position: absolute; z-index: 2;
  width: 110px; height: 110px; border-radius: 30px;
  display: grid; place-items: center;
  box-shadow: 0 30px 80px -24px rgba(28, 90, 180, .5);
}
.k-center img { width: 62%; height: 62%; object-fit: contain; }
.k-word {
  position: absolute; z-index: 1;
  font-weight: 800; letter-spacing: -.04em; line-height: 1;
  font-size: clamp(3.2rem, 11vw, 9rem);
  color: var(--ink); white-space: nowrap;
  will-change: transform; opacity: 0;
}
.k-word.alt {
  color: transparent;
  -webkit-text-stroke: 2px rgba(28, 138, 246, .8);
}
.k-final {
  position: absolute; z-index: 3;
  font-weight: 800; letter-spacing: -.04em;
  font-size: clamp(3rem, 9vw, 7.5rem);
  opacity: 0;
}
.no-fx .k-word, .no-js .k-word { display: none; }
.no-fx .k-final, .no-js .k-final { opacity: 1; }
.no-fx .k-stage, .no-js .k-stage { height: auto; min-height: 0; padding: 90px 0; position: relative; }
.no-fx .k-final, .no-js .k-final { position: relative; }

/* ---------- Eclipse + feixe de luz (tela escura) ---------- */
.eclipse {
  position: absolute; left: 72%; top: 48%; z-index: 0;
  width: 860px; height: 860px; margin: -430px 0 0 -430px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, transparent 50%, rgba(74, 168, 255, .24) 60%, transparent 71%);
}
.eclipse::after {
  content: ""; position: absolute; inset: -2%;
  border-radius: 50%;
  background: conic-gradient(from 200deg, transparent 0 34%, rgba(109, 140, 255, .7) 48%, rgba(74, 168, 255, .95) 60%, rgba(56, 189, 248, .4) 68%, transparent 76%);
  -webkit-mask: radial-gradient(circle, transparent 53%, #000 57%, #000 66%, transparent 70%);
  mask: radial-gradient(circle, transparent 53%, #000 57%, #000 66%, transparent 70%);
  filter: blur(7px);
}
.spotlight {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 34%, rgba(160, 200, 255, .09) 47%, transparent 60%);
  background-size: 250% 100%;
  background-position: 140% 0;
  background-repeat: no-repeat;
}
.showcase .wrap { position: relative; z-index: 1; }

/* ---------- Ícones (mask SVG) ---------- */
.ic {
  display: inline-block; width: 18px; height: 18px; flex: none;
  background: var(--grad);
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.ic.big { width: 34px; height: 34px; margin-bottom: 16px; }
.ic-cal   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='17' rx='3'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='17' rx='3'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E"); }
.ic-wa    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M21 12a9 9 0 1 1-4.4-7.7L21 3l-1.2 4.5A9 9 0 0 1 21 12z'/%3E%3Cpath d='M8 12h.01M12 12h.01M16 12h.01'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M21 12a9 9 0 1 1-4.4-7.7L21 3l-1.2 4.5A9 9 0 0 1 21 12z'/%3E%3Cpath d='M8 12h.01M12 12h.01M16 12h.01'/%3E%3C/svg%3E"); }
.ic-cash  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='2' y='6' width='20' height='13' rx='3'/%3E%3Ccircle cx='12' cy='12.5' r='3'/%3E%3Cpath d='M6 10v.01M18 15v.01'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='2' y='6' width='20' height='13' rx='3'/%3E%3Ccircle cx='12' cy='12.5' r='3'/%3E%3Cpath d='M6 10v.01M18 15v.01'/%3E%3C/svg%3E"); }
.ic-doc   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5M9 13h6M9 17h4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5M9 13h6M9 17h4'/%3E%3C/svg%3E"); }
.ic-phone { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='7' y='2' width='10' height='20' rx='3'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='7' y='2' width='10' height='20' rx='3'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E"); }
.ic-spine { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M8 5h8M7 9h10M7 13h10M8 17h8M9 21h6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M8 5h8M7 9h10M7 13h10M8 17h8M9 21h6'/%3E%3C/svg%3E"); }
.ic-box   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M21 8 12 3 3 8v8l9 5 9-5z'/%3E%3Cpath d='M3 8l9 5 9-5M12 13v8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M21 8 12 3 3 8v8l9 5 9-5z'/%3E%3Cpath d='M3 8l9 5 9-5M12 13v8'/%3E%3C/svg%3E"); }
.ic-video { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='2' y='6' width='13' height='12' rx='3'/%3E%3Cpath d='m15 10 6-3v10l-6-3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='2' y='6' width='13' height='12' rx='3'/%3E%3Cpath d='m15 10 6-3v10l-6-3'/%3E%3C/svg%3E"); }
.ic-nf    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M5 2h14v20l-2.5-1.6L14 22l-2-1.4L10 22l-2.5-1.6L5 22z'/%3E%3Cpath d='M9 7h6M9 11h6M9 15h4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M5 2h14v20l-2.5-1.6L14 22l-2-1.4L10 22l-2.5-1.6L5 22z'/%3E%3Cpath d='M9 7h6M9 11h6M9 15h4'/%3E%3C/svg%3E"); }
.ic-lock  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='4' y='10' width='16' height='11' rx='3'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='4' y='10' width='16' height='11' rx='3'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E"); }
.ic-shield{ -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2 4 6v6c0 5 3.4 8.4 8 10 4.6-1.6 8-5 8-10V6z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M12 2 4 6v6c0 5 3.4 8.4 8 10 4.6-1.6 8-5 8-10V6z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }
.ic-key   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='8' cy='15' r='4'/%3E%3Cpath d='m11 12 9-9M16 5l3 3M13 8l2 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='8' cy='15' r='4'/%3E%3Cpath d='m11 12 9-9M16 5l3 3M13 8l2 2'/%3E%3C/svg%3E"); }
.ic-user  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4.5 21c.8-3.8 3.9-6 7.5-6s6.7 2.2 7.5 6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4.5 21c.8-3.8 3.9-6 7.5-6s6.7 2.2 7.5 6'/%3E%3C/svg%3E"); }
.ic-eye   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
.ic-globe { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a15 15 0 0 1 0 18a15 15 0 0 1 0-18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a15 15 0 0 1 0 18a15 15 0 0 1 0-18'/%3E%3C/svg%3E"); }
.ic-mail { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); }
.ic-mic   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='9' y='2' width='6' height='12' rx='3'/%3E%3Cpath d='M5 11a7 7 0 0 0 14 0M12 18v4'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='9' y='2' width='6' height='12' rx='3'/%3E%3Cpath d='M5 11a7 7 0 0 0 14 0M12 18v4'/%3E%3C/svg%3E"); }
.ic-face  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9 10v.01M15 10v.01M9 15c1.8 1.4 4.2 1.4 6 0'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9 10v.01M15 10v.01M9 15c1.8 1.4 4.2 1.4 6 0'/%3E%3C/svg%3E"); }
.ic-grid  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='3' width='8' height='8' rx='2'/%3E%3Crect x='13' y='3' width='8' height='8' rx='2'/%3E%3Crect x='3' y='13' width='8' height='8' rx='2'/%3E%3Crect x='13' y='13' width='8' height='8' rx='2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='3' width='8' height='8' rx='2'/%3E%3Crect x='13' y='3' width='8' height='8' rx='2'/%3E%3Crect x='3' y='13' width='8' height='8' rx='2'/%3E%3Crect x='13' y='13' width='8' height='8' rx='2'/%3E%3C/svg%3E"); }

/* ---------- Números: painel navy de conquistas ---------- */
.stats-sec { position: relative; z-index: 4; padding: 44px 0 30px; }
/* Números gigantes desfilando de lado, com as pontas esmaecidas */
.stats-clip {
  overflow: hidden;
  padding: 6px 0 10px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.stats-track {
  display: flex; width: max-content;
  animation: stats-x 90s linear infinite;
  will-change: transform;
}
.stats-marquee:hover .stats-track { animation-play-state: paused; }
.stats-group { display: flex; align-items: flex-start; gap: 110px; padding-right: 110px; }
.st-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.st-num {
  font-weight: 800; font-size: clamp(58px, 7.5vw, 112px); letter-spacing: -.045em; line-height: 1;
  color: var(--ink); white-space: nowrap;
}
.st-label { font-size: 15px; color: var(--muted); }
@keyframes stats-x { to { transform: translateX(-50%); } }
.no-motion .stats-track, .no-js .stats-track { animation: none; }

/* ---------- Recursos: grade limpa (squircle + título + linha) ---------- */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px 44px;
  margin-top: 10px;
}
.feat { display: flex; align-items: center; gap: 18px; }
.feat-ic {
  flex: none; width: 64px; height: 64px; border-radius: 20px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(13, 40, 90, .09);
  box-shadow: 0 12px 28px -16px rgba(13, 40, 90, .22), inset 0 1px 0 #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feat:hover .feat-ic {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -16px rgba(28, 138, 246, .38), inset 0 1px 0 #fff;
}
.feat-ic .ic { width: 26px; height: 26px; }
.feat-tx { min-width: 0; }
.feat h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; }
.feat p { font-size: 14px; color: var(--muted); margin-top: 2px; }
.feat-tag {
  display: inline-block; vertical-align: 2px; margin-left: 6px;
  font-size: 9.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--grad);
  padding: 3px 9px; border-radius: 100px;
  box-shadow: 0 6px 16px -6px rgba(28, 138, 246, .6);
}

/* ---------- Tilt 3D + brilho ---------- */
.tilt { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tilt:hover { box-shadow: var(--shadow); }
.tilt::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .55), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.tilt:hover::after { opacity: 1; }

/* ---------- Telas escuras (quebra de ritmo) ---------- */
.sheet-dark {
  position: relative;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(28, 138, 246, .22), transparent 60%),
    radial-gradient(700px 500px at 8% 90%, rgba(37, 99, 235, .15), transparent 60%),
    linear-gradient(165deg, #0b1226 0%, #0a0f1e 55%, #0d1530 100%);
  border-radius: 56px;
  margin: 24px;
  color: #eef3fc;
  overflow: clip;
}
/* A zona escura da Segurança é reta, como as outras de cima; a Segurança
   deixa de ser um card com moldura e vira o começo dela */
/* Zonas com canto arredondado ficam POR CIMA (z2) e as claras vizinhas
   estendem o branco por baixo delas; sem isso o azul dos blobs de fundo
   vaza nas frestas dos cantos e nos vãos entre as zonas */
.zone-d { z-index: 2; }
/* O rodapé fica ABAIXO da página. Ele só sobe 100px por cima quando a página
   termina numa zona clara feita para isso: a .zone-e da home, que estende o
   branco por baixo dele e compensa no padding. Antes ele subia em TODA página,
   e nas que não compensam (blog, planos, módulos, documentos, status, criar
   conta) cobria o fim do conteúdo.
   O padding de cima nunca é zero: `overflow: clip` não segura margem, e sem
   ele a margem do .site-foot vazaria para fora da zona escura. */
.zone-foot { border-radius: 56px 56px 0 0; z-index: 2; padding-top: 40px; }
main:has(> .zone-e) + .zone-foot { margin-top: -100px; padding-top: 100px; }
/* padding-bottom compensa o rodapé, que sobe 100px por cima desta zona */
.zone-e { margin-top: -80px; padding-top: 80px; padding-bottom: 110px; }
.showcase.sheet-dark { margin: 0; border-radius: 0; background: transparent; padding-top: 130px; }
.sheet-dark .eyebrow { color: #7cb9e8; }
.sheet-dark h2 { color: #fff; }
.sheet-dark .sec-head p, .sheet-dark p { color: #a8b6d3; }
.sheet-dark .grad-text {
  background: linear-gradient(110deg, #9ecdf5 0%, #4aa8ff 50%, #8b8cf8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Showcase pinado ---------- */
.showcase { padding: 110px 0; }
.show-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center;
}
/* compacto de propósito: a lista inteira precisa caber na tela travada,
   sem o primeiro item sumir embaixo do menu fixo */
.sstep {
  padding: 14px 20px; border-radius: 18px; margin-bottom: 8px;
  border: 1px solid transparent;
  opacity: .38; transition: opacity .4s, background .4s, border-color .4s, box-shadow .4s;
}
.sstep h3 { font-size: 1.05rem; letter-spacing: -.02em; }
.sstep p { font-size: 13px; color: var(--muted); margin-top: 5px; }
.sstep.active {
  opacity: 1;
  background: var(--glass); border-color: var(--stroke);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}
.sheet-dark .sstep { opacity: .42; }
.sheet-dark .sstep h3 { color: #fff; }
.sheet-dark .sstep p { color: #a8b6d3; }
.sheet-dark .sstep.active {
  opacity: 1;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, .6);
}

/* ---------- Segurança: passos com ícone + barra de progresso ---------- */
.show-steps { position: relative; padding-left: 20px; }
.show-progress {
  position: absolute; left: 0; top: 22px; bottom: 22px; width: 3px;
  border-radius: 99px; background: rgba(255, 255, 255, .08);
}
.show-progress i {
  position: absolute; left: 0; top: 0; width: 100%; height: 0%;
  border-radius: 99px;
  background: linear-gradient(180deg, #4aa8ff, #8b8cf8);
  box-shadow: 0 0 14px rgba(74, 168, 255, .55);
  transition: height .3s ease-out;
}
.sstep { display: flex; gap: 12px; align-items: flex-start; }
.sstep-ic {
  flex: none; width: 36px; height: 36px; margin-top: 2px;
  border-radius: 14px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.sstep-ic .ic { width: 19px; height: 19px; background: #a8b6d3; }
.sstep.active .sstep-ic {
  background: linear-gradient(160deg, rgba(74, 168, 255, .38), rgba(109, 140, 255, .18));
  border-color: rgba(122, 176, 255, .5);
  box-shadow: 0 0 24px rgba(74, 168, 255, .3);
}
.sstep.active .sstep-ic .ic { background: #d7ebff; }

/* ---------- Segurança: núcleo de proteção orbital ---------- */
.sec-orbit { position: relative; width: min(480px, 88vw); aspect-ratio: 1; margin: 0 auto; }
.orb-rings { position: absolute; inset: 0; }
.orb-rings .ring { position: absolute; border-radius: 50%; }
.ring.r1 { inset: 0; border: 1px dashed rgba(255, 255, 255, .1); }
.ring.r2 { inset: 13%; border: 1px solid rgba(255, 255, 255, .07); }
.ring.r3 { inset: 27%; border: 1px dashed rgba(255, 255, 255, .08); }
.radar {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(74, 168, 255, .3) 0 6%, transparent 22%);
  -webkit-mask: radial-gradient(circle, transparent 33%, #000 34%);
  mask: radial-gradient(circle, transparent 33%, #000 34%);
  animation: orb-girar 7s linear infinite;
}
@keyframes orb-girar { to { transform: rotate(360deg); } }
.orb-onda {
  position: absolute; left: 50%; top: 50%; width: 168px; height: 168px;
  margin: -84px 0 0 -84px; border-radius: 50%;
  border: 1.5px solid rgba(74, 168, 255, .55);
  animation: orb-onda 3.4s ease-out infinite;
}
@keyframes orb-onda {
  from { transform: scale(.92); opacity: .8; }
  to { transform: scale(2.85); opacity: 0; }
}
.orb-core {
  position: absolute; left: 50%; top: 50%; width: 180px; height: 180px;
  margin: -90px 0 0 -90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; text-align: center; padding: 16px;
  background: radial-gradient(circle at 35% 25%, rgba(74, 168, 255, .28), rgba(13, 21, 48, .94) 72%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7), 0 0 40px rgba(74, 168, 255, .16);
  animation: orb-pulso 4s ease-in-out infinite;
}
@keyframes orb-pulso {
  50% { box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7), 0 0 72px rgba(74, 168, 255, .38); }
}
.orb-core .ic { width: 34px; height: 34px; background: linear-gradient(160deg, #cfe6ff, #4aa8ff); }
.orb-core b { color: #fff; font-size: 14.5px; letter-spacing: -.01em; line-height: 1.25; }
.orb-core small { color: #a8b6d3; font-size: 11.5px; line-height: 1.35; }
/* Satélites: giram em órbita mantendo o texto reto (contra-rotação no keyframe) */
.orb-sat { position: absolute; left: 50%; top: 50%; animation: orb-orbitar 38s linear infinite; }
.orb-sat .sat {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  transform: translate(-50%, -50%);
  font-size: 12.5px; font-weight: 600; color: #dfe7f5;
  padding: 8px 14px; border-radius: 99px;
  background: rgba(16, 24, 48, .78); border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .65);
}
.orb-sat .sat .ic { width: 14px; height: 14px; background: #8fc4ff; }
/* Todos giram juntos, no mesmo sentido e velocidade, separados por 90°:
   as posições relativas nunca mudam, então dois chips jamais se sobrepõem.
   (Com sentidos opostos eles se cruzavam e ficavam um por cima do outro.) */
/* O raio encolhe junto com a tela: em 1024px a coluna da cena é estreita e
   o chip mais externo passava da borda direita da janela */
.orb-sat.s1 { --fase: 20deg;  --raio: min(222px, 20vw); }
.orb-sat.s2 { --fase: 110deg; --raio: min(174px, 16vw); }
.orb-sat.s3 { --fase: 200deg; --raio: min(222px, 20vw); }
.orb-sat.s4 { --fase: 290deg; --raio: min(174px, 16vw); }
@keyframes orb-orbitar {
  from { transform: rotate(var(--fase)) translateX(var(--raio)) rotate(calc(var(--fase) * -1)); }
  to { transform: rotate(calc(var(--fase) + 360deg)) translateX(var(--raio)) rotate(calc(var(--fase) * -1 - 360deg)); }
}
/* No celular a órbita é recalculada para o chip nunca encostar no escudo:
   raio maior, chip menor e escudo mais enxuto. Os `min(..., vw)` encolhem
   junto em telas estreitas, senão o chip de fora sairia da tela. */
@media (max-width: 1023px) {
  .orb-sat.s1, .orb-sat.s3 { --raio: min(150px, 35vw); }
  .orb-sat.s2, .orb-sat.s4 { --raio: min(130px, 35vw); }
  .orb-sat .sat { font-size: 9.5px; padding: 5px 8px; gap: 5px; }
  .orb-sat .sat .ic { width: 11px; height: 11px; }
  .orb-core { width: 124px; height: 124px; margin: -62px 0 0 -62px; padding: 12px; gap: 4px; }
  .orb-core b { font-size: 11px; }
  .orb-core small { font-size: 9px; }
  .orb-core .ic { width: 20px; height: 20px; }
  .orb-onda { width: 124px; height: 124px; margin: -62px 0 0 -62px; }
  .sec-orbit { width: min(400px, 92vw); }
}
/* Com "menos animação", tudo fica parado no lugar */
.no-motion .radar, .no-motion .orb-onda, .no-motion .orb-sat, .no-motion .orb-core { animation: none; }
.no-motion .orb-onda { display: none; }
/* Sem a animação, o satélite perde o transform do keyframe e empilha em cima
   do escudo: aqui ele recebe a posição da própria órbita, estática */
.no-motion .orb-sat, .no-fx .orb-sat {
  animation: none;
  transform: rotate(var(--fase)) translateX(var(--raio)) rotate(calc(var(--fase) * -1));
}
/* Sem a troca automática de passo, todos precisam ficar legíveis (e a barra
   de progresso cheia), senão 3 dos 4 blocos ficam apagados para sempre */
.no-motion .sheet-dark .sstep, .no-fx .sheet-dark .sstep { opacity: 1; }
.no-motion .show-progress i, .no-fx .show-progress i { height: 100%; }
.sheet-dark .screen {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .65);
}
.screen {
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow);
}
.scr-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 13px 16px; border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .75);
}
.scr-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.scr-bar i:nth-child(1) { background: #ff5f57; }
.scr-bar i:nth-child(2) { background: #febc2e; }
.scr-bar i:nth-child(3) { background: #28c840; }
.scr-bar span { margin-left: 10px; font-size: 12px; color: var(--dim); font-weight: 600; }
.scr-body { position: relative; min-height: 340px; padding: 22px; }
.panel {
  position: absolute; inset: 22px;
  opacity: 0; transform: translateY(16px) scale(.985);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.panel.active { opacity: 1; transform: none; pointer-events: auto; }
.chat-line { display: flex; margin-top: 10px; }
.bub {
  font-size: 12.5px; padding: 9px 13px; border-radius: 14px; max-width: 82%;
}
.bub.out { margin-left: auto; background: rgba(28, 138, 246, .1); border: 1px solid rgba(28, 138, 246, .2); border-bottom-right-radius: 5px; }
.bub.in { background: rgba(255, 255, 255, .85); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.voice-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wave { display: inline-flex; gap: 4px; align-items: center; }
.wave i {
  width: 4px; border-radius: 3px; background: var(--blue); display: block;
  animation: wave 1s ease-in-out infinite;
}
.wave i:nth-child(1) { height: 8px; }  .wave i:nth-child(2) { height: 16px; animation-delay: .1s; }
.wave i:nth-child(3) { height: 22px; animation-delay: .2s; } .wave i:nth-child(4) { height: 12px; animation-delay: .3s; }
.wave i:nth-child(5) { height: 20px; animation-delay: .4s; } .wave i:nth-child(6) { height: 10px; animation-delay: .5s; }
.wave i:nth-child(7) { height: 15px; animation-delay: .6s; }
@keyframes wave { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }
.typed { font-size: 14.5px; color: var(--ink); font-style: italic; }
.evo-meta { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.chip, .chip-ok {
  font-size: 11px; font-weight: 700; padding: 6px 13px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip { background: rgba(13, 21, 38, .05); color: var(--muted); }
.chip-ok { background: rgba(22, 163, 74, .1); color: var(--ok); border: 1px solid rgba(22, 163, 74, .22); }
.chip-ok.center { margin: 16px auto 0; display: table; }
.fin-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi {
  border-radius: 14px; padding: 12px 14px;
  background: rgba(255, 255, 255, .8); border: 1px solid var(--line);
}
.kpi small { font-size: 9.5px; color: var(--dim); text-transform: uppercase; letter-spacing: .06em; display: block; }
.kpi b { font-size: 15px; letter-spacing: -.02em; }
.kpi.ok b { color: var(--ok); }
.fin-chart {
  display: flex; align-items: flex-end; gap: 8px; height: 130px;
  padding: 14px; border-radius: 14px; margin-top: 12px;
  background: rgba(255, 255, 255, .6); border: 1px solid var(--line);
}
.fin-chart i {
  flex: 1; height: var(--h); border-radius: 6px 6px 3px 3px; display: block;
  background: linear-gradient(180deg, #4aa8ff, rgba(28, 138, 246, .25));
}
.fin-chart i.g { background: linear-gradient(180deg, #34d399, rgba(22, 163, 74, .2)); }

/* ---------- Coluna dinâmica (3D em tema claro) ---------- */
.spine-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.spine-copy2 h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-top: 14px; }
.spine-copy2 p { color: var(--muted); margin-top: 16px; font-size: 1.03rem; max-width: 480px; }
.spine-gains { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.spine-gains li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; font-weight: 500; }
.spine-gains span {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(22, 163, 74, .1); color: var(--ok);
  font-size: 12px; font-weight: 800; margin-top: 1px;
}
.spine-stage2 {
  position: relative; height: min(72vh, 600px);
  border-radius: 30px;
  background:
    radial-gradient(420px 420px at 60% 40%, rgba(28, 138, 246, .1), transparent 70%),
    linear-gradient(165deg, rgba(255, 255, 255, .8), rgba(238, 245, 252, .5));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  overflow: clip;
}
#spineSvg {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  perspective: 900px;
}
.spine-stars {
  position: absolute; inset: -6% 0;
  width: 100%; height: 112%;
  pointer-events: none;
  will-change: transform;
}
.spine-svg-holder {
  height: 92%; max-width: 88%;
  display: grid; place-items: center;
  transform-style: preserve-3d;
}
.spine-svg-holder svg {
  height: 100%; width: auto; max-width: 100%;
  will-change: transform;
  filter: drop-shadow(0 18px 34px rgba(10, 20, 40, .35));
}
/* Estruturas clicáveis (mesmas 26 do Column.vue do sistema).
   Peças decorativas não capturam o mouse: o clique atravessa
   até a vértebra oficial que estiver por baixo. */
#spineSvg path:not(.spine-part) { pointer-events: none; }
#spineSvg path.spine-part { cursor: pointer; transition: opacity .25s; }
#spineSvg path.spine-part:hover { opacity: .72; }
/* Convite "clique e teste" */
.spine-try {
  position: absolute; left: 18px; bottom: 18px;
  padding: 10px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; color: #fff;
  animation: spineTryPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
.spine-try.has-marks {
  animation: none;
  color: #ffb4b4;
}
@keyframes spineTryPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
.spine-fallback2 {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  height: 90%; width: auto;
}
.spine-stage2.has3d .spine-fallback2 { display: none; }
.spine-badge2 {
  position: absolute; top: 18px; right: 18px;
  padding: 10px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; color: var(--ink);
}
.spine-badge2 b { color: var(--blue); }

/* ---------- Serviços (WStart/WTeam/Suporte) ---------- */
/* ---------- Ofertas: WStart / WTeam / Suporte (painéis no escuro) ---------- */
.offers { padding: 0 0 130px; }
.offer {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 120px 1fr auto; gap: 30px; align-items: center;
  padding: 38px 36px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.offer + .offer { margin-top: 14px; }
/* O movimento fica por conta do tilt (inclina com o mouse e volta ao sair);
   aqui só a borda e o brilho acendendo e apagando */
.offer:hover {
  border-color: rgba(140, 180, 255, .32);
  box-shadow: 0 30px 70px -30px rgba(28, 138, 246, .4);
}
.offer-num {
  font-size: clamp(46px, 5vw, 74px); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(140, 180, 255, .55);
  text-align: center;
}
.offer .verb {
  font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #8fb8f6;
}
.offer h3 { font-size: 1.6rem; color: #fff; letter-spacing: -.03em; margin-top: 6px; }
.offer p { color: #a8b6d3; margin-top: 10px; font-size: 14.5px; max-width: 680px; }
/* Nota de rodapé da seção: WStart e WTeam são serviços vendidos, não brindes.
   Precisa de .offers na frente para vencer `.dark-zone p` (0,1,1). */
.offers .offers-note {
  margin-top: 20px;
  color: #8595b5; font-size: 13.5px; line-height: 1.6;
}

/* ---------- Depoimentos ---------- */
/* Palavras gigantes do scroll (estilo Noomo, receita do manifesto "palavras
   voando em 3D"): logo flutuando no centro e palavras atravessando em
   profundidade. O JS liga o efeito adicionando .tst-fx no body (só desktop
   com animações); sem a classe, vale o cabeçalho comum */
#depoimentos { position: relative; }
.tst-words {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  display: none; perspective: 1100px;
}
body.tst-fx .tst-words { display: block; }
/* logo flutua em cima; as palavras passam embaixo, sem uma tampar a outra */
.tst-words .k-center {
  left: 50%; top: 27%; margin: -55px 0 0 -55px;
  opacity: 0;
}
.tw {
  position: absolute; top: 58%; left: 50%;
  font-weight: 800; font-size: clamp(96px, 12vw, 190px); line-height: 1;
  letter-spacing: -.04em; white-space: nowrap; color: #0A0A14;
  opacity: 0; will-change: transform;
}
.tw.alt {
  color: transparent;
  -webkit-text-stroke: 2px rgba(28, 138, 246, .8);
}
/* o .tw define cor sólida depois do .grad-text no arquivo; devolve o degradê */
.tw.grad-text { color: transparent; }
/* seção alta = pista de rolagem; o miolo sticky segura a tela cheia */
body.tst-fx #depoimentos { height: 420vh; padding: 0; }
body.tst-fx .tst-sticky {
  position: sticky; top: 0; min-height: 100svh; overflow: hidden;
  display: flex; align-items: center;
}
body.tst-fx .tst-sticky .wrap { width: 100%; }
/* o título gigante já contou a história; o h2 fica só para leitores de tela e SEO */
body.tst-fx #depoimentos .sec-head h2 { position: absolute; opacity: 0; pointer-events: none; }

.tst-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.tst { border-radius: 22px; overflow: hidden; }
.tst .yt { position: relative; aspect-ratio: 9/14; cursor: pointer; background: #e8edf5; overflow: hidden; }
.tst .yt img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.tst .yt:hover img { transform: scale(1.05); }
.tst .yt .play { position: absolute; inset: 0; display: grid; place-items: center; }
.tst .yt .play span {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .8); backdrop-filter: blur(8px);
  color: var(--blue); font-size: 18px;
  border: 1px solid #fff; box-shadow: var(--shadow-soft);
  transition: .3s;
}
.tst .yt:hover .play span { background: var(--blue); color: #fff; transform: scale(1.1); }
.tst .who { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
.tst .who .av {
  width: 40px; height: 40px; border-radius: 12px; overflow: hidden; flex: none;
  background: #fff; border: 1px solid var(--line); display: grid; place-items: center;
}
.tst .who .av img { width: 100%; height: 100%; object-fit: contain; }
.tst .who .nm { font-weight: 700; font-size: 13.5px; line-height: 1.25; letter-spacing: -.01em; }
.tst .who .rl { font-size: 12px; color: var(--muted); }

/* ---------- Segurança ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcard { padding: 28px 24px; border-radius: 24px; }
.pcard h3 { font-size: 1.05rem; letter-spacing: -.02em; }
.pcard p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* ---------- Motivos ---------- */
.reasons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 34px;
  padding: 38px 42px; border-radius: 28px; max-width: 820px; margin: 0 auto;
}
.reason {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 15.5px; font-weight: 500;
}
.reason span {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(22, 163, 74, .1); color: var(--ok);
  font-size: 13px; font-weight: 800;
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { border-radius: 18px; padding: 2px 24px; }
.faq summary {
  list-style: none; cursor: pointer; padding: 19px 0;
  font-weight: 700; font-size: 16px; letter-spacing: -.01em;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .chev {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(28, 138, 246, .1); color: var(--blue);
  font-size: 16px; font-weight: 700; transition: .3s;
}
.faq details[open] .chev { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq .ans { padding: 0 0 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- CTA final (tela escura) ---------- */
.final {
  position: relative; overflow: hidden;
  padding: 72px 48px; border-radius: 40px; text-align: center;
  margin: 0;
}
.final h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.final > p { max-width: 700px; margin: 18px auto 0; text-wrap: balance; }
.final .lc-trust { color: #a8b6d3; }
.final .lead-form { max-width: 560px; margin: 30px auto 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.inp {
  width: 100%; padding: 15px 17px; border-radius: 15px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .85);
  color: var(--ink); font-family: inherit; font-size: 15px; outline: none;
  transition: border-color .25s, box-shadow .25s;
}
/* --muted e não --dim: o placeholder precisa passar no WCAG AA (--dim dá 2,65:1
   sobre o branco do campo, --muted dá 5,4:1) */
.inp::placeholder { color: var(--muted); }
.inp:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(28, 138, 246, .13); }
.lc-trust {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-top: 16px; font-size: 13px; color: var(--muted); font-weight: 500;
}

/* ---------- Rodapé ---------- */
.site-foot { padding: 80px 0 40px; border-top: 1px solid var(--line); margin-top: 40px; }
/* 5 colunas desde 18/09/2026: entrou "Por especialidade" (páginas de segmento) */
.foot-grid { display: grid; grid-template-columns: 1.3fr .9fr 1.15fr .9fr 1.05fr; gap: 30px; }
/* Com 5 colunas, "Fale com a gente" quebrava em duas linhas */
.foot-col h2 { white-space: nowrap; }
.foot-logo { height: 30px; width: auto; margin-bottom: 16px; }
.foot-tag { font-size: 15px; color: var(--muted); max-width: 300px; }
.foot-col h4 {
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dim); margin: 0 0 14px;
}
.foot-col a { display: block; color: var(--muted); font-size: 14px; padding: 6px 0; transition: .25s; }
.foot-col a:hover { color: var(--ink); }
/* Instagram com o glifo: era só texto e ninguém achava */
.foot-col a.foot-ig { display: inline-flex; align-items: center; gap: 7px; }
.foot-col a.foot-ig svg { width: 15px; height: 15px; flex: none; }
.foot-bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--dim); font-size: 13px;
}
/* Documentos legais: discretos, mas com contraste suficiente para serem lidos
   e clicados (--dim reprova AA; --muted passa). */
.foot-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-legal a { color: var(--muted); text-decoration: none; }
.foot-legal a:hover { color: var(--ink); text-decoration: underline; }
.dark-zone .foot-legal a { color: rgba(255, 255, 255, .72); }
.dark-zone .foot-legal a:hover { color: #fff; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 115;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2fe273, #1ebe5a); color: #fff;
  box-shadow: 0 14px 40px -8px rgba(37, 211, 102, .55);
  transition: transform .35s var(--ease);
  transform: translateY(120px);
}
.wa-float.show { transform: translateY(0); }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
/* O glifo tinha width/height inline; agora vem do partial compartilhado. */
.wa-float-ic { width: 28px; height: 28px; }

/* ---------- Animações base ---------- */
.reveal { opacity: 0; transform: translateY(32px); }
.no-js .reveal, .no-motion .reveal { opacity: 1; transform: none; }

/* Entrada do hero em CSS puro. Nada acima da dobra pode depender de
   GSAP+ScrollTrigger+Lenis (49KB gzip) pra aparecer: com .reveal o H1 só
   pintava depois do JS rodar (LCP ruim) e ainda piscava, porque o texto
   aparecia com .no-js, sumia quando o script tirava a classe e voltava na
   animação. Com animation-fill-mode backwards o estado inicial já vale
   durante o delay, então o escalonado não precisa de JS. */
@keyframes reveal-hero-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.reveal-hero { animation: reveal-hero-up .7s var(--ease) backwards; }
/* Escalonado por elemento (e não por :nth-child) pra não quebrar se a ordem
   dos blocos do hero mudar; quem não estiver na lista entra sem atraso. */
.hero .pill.reveal-hero { animation-delay: 0s; }
.hero h1.reveal-hero { animation-delay: .06s; }
.hero .sub.reveal-hero { animation-delay: .14s; }
.hero .hero-ctas.reveal-hero { animation-delay: .22s; }
.hero .hero-trust.reveal-hero { animation-delay: .3s; }
/* ?motion=0 e "reduzir animação" do sistema: o JS marca .no-motion depois da
   animação já ter começado, e matá-la aqui congela no estado final (visível) */
.no-motion .reveal-hero { animation: none; }

/* Pular para o conteúdo: fora do foco fica fora da tela, mas continua no fluxo
   de leitura do teclado (display:none ou visibility:hidden tirariam do tab) */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  padding: 12px 20px; border-radius: 14px;
  background: var(--blue); color: #fff;
  font-size: 14.5px; font-weight: 700; line-height: 1;
  box-shadow: 0 14px 40px -12px rgba(28, 90, 180, .6);
  transform: translateY(calc(-100% - 24px));
  transition: transform .22s var(--ease);
}
.skip-link:focus, .skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid #fff; outline-offset: -6px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal-hero { animation: none; }
  .skip-link { transition: none; }
  .blob, .wave i, .pill .dot { animation: none !important; }
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1100px) {
  .w-agenda, .w-caixa { left: 1%; }
  .w-whats, .w-nf { right: 1%; }
}
@media (max-width: 1023px) {
  .nav-links { display: none; }
  /* letreiro de números mais compacto */
  .stats-group { gap: 64px; padding-right: 64px; }
  .st-num { font-size: clamp(44px, 8vw, 72px); }
  .st-label { font-size: 13.5px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 28px; }
  .show-grid { grid-template-columns: 1fr; gap: 30px; }
  .spine-grid2 { grid-template-columns: 1fr; }
  .spine-stage2 { height: 54vh; min-height: 420px; }
  .offer { grid-template-columns: 58px 1fr; gap: 18px 22px; padding: 28px 22px; }
  .offer > .chip-ok { grid-column: 2; justify-self: start; }
  .tst-grid { grid-template-columns: 1fr 1fr; }
  .sec-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; padding: 140px 0 30px; }
  .stage-sec { margin: 0 0 10px; }
  .stage-dim { display: none; }
  .stage3d { height: auto; perspective: 1000px; margin-top: 28px; padding-bottom: 10px; }
  .scene { position: relative; height: auto; }
  .laptop { position: relative; left: auto; top: auto; margin: 0 auto; transform: none !important; }
  /* a tampa e a tela ficam livres pro JS animar a abertura no scroll */
  /* Carrossel de arrastar: um card por vez, com a beirada do próximo à mostra */
  .mob-cards {
    display: flex; gap: 14px;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 16px 26px 10px; margin-top: 12px;
    scrollbar-width: none;
  }
  .mob-cards::-webkit-scrollbar { display: none; }
  .mob-cards .widget {
    position: static !important; transform: none !important;
    flex: 0 0 min(76vw, 300px); min-width: 0; scale: 1;
    min-height: 216px; scroll-snap-align: center;
    display: flex; flex-direction: column;
  }
  .mob-cards .wg-msg { max-width: none; }
  .mob-cards .face-real { width: 96px; margin: auto; }
  .mob-cards .wg-badge { margin-top: auto; align-self: flex-start; }
  /* As tiras de status ficam fora do carrossel, em largura total */
  .mob-strips { display: grid; gap: 10px; padding: 8px 18px 0; }
  .mob-strips .widget {
    position: static !important; transform: none !important;
    width: 100% !important; min-width: 0; scale: 1;
    justify-content: center; white-space: normal; text-align: center;
  }
  .eclipse { width: 480px; height: 480px; margin: -240px 0 0 -240px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .sec { padding: 72px 0; }
  .sheet-dark { border-radius: 28px; margin: 12px; }
  .zone-foot { border-radius: 28px 28px 0 0; }
  .showcase.sheet-dark { padding-top: 84px; padding-bottom: 36px; }
  .final { padding: 48px 22px; }
  .hero { padding: 120px 0 40px; }
  .hero-ctas .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .feat-grid, .tst-grid, .sec-grid, .foot-grid { grid-template-columns: 1fr; }
  .stats-sec { padding: 26px 0 20px; }
  .stats-group { gap: 44px; padding-right: 44px; }
  .st-label { font-size: 12.5px; }
  .reasons { grid-template-columns: 1fr; padding: 28px 24px; }
  .final { padding: 44px 22px; border-radius: 26px; }
  .nav-cta .btn-ghost { display: none; }
  .scroll-cue { display: none; }
}

/* ============================================================
   ZONA ESCURA (dos números ao rodapé) — estilo godovli:
   quase-preto com auroras azul-violeta, serifa itálica de acento
   ============================================================ */

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/instrument-serif-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/instrument-serif-italic.woff2') format('woff2');
}
.serif {
  font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  font-style: italic; font-weight: 400; letter-spacing: 0;
}

.dark-zone {
  position: relative; overflow: clip;
  color: #eef3fc;
  background:
    radial-gradient(1100px 600px at 110% 8%, rgba(37, 99, 235, .2), transparent 55%),
    radial-gradient(900px 700px at -10% 30%, rgba(28, 138, 246, .16), transparent 55%),
    radial-gradient(1000px 700px at 108% 78%, rgba(79, 70, 229, .13), transparent 55%),
    radial-gradient(900px 600px at -8% 96%, rgba(56, 100, 240, .18), transparent 55%),
    linear-gradient(180deg, #07080f 0%, #0a0c1d 30%, #07080f 60%, #0c0e24 100%);
}
.stage-sec { margin-bottom: 0; }

/* Tipografia e textos */
.dark-zone h2, .dark-zone h3 { color: #fff; }
.dark-zone .sec-head p, .dark-zone p { color: #a8b6d3; }
.dark-zone .eyebrow { color: #8fb8f6; }
.dark-zone .grad-text {
  background: linear-gradient(110deg, #bfe0ff 0%, #6da8ff 50%, #7d9bff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Vidro escuro */
.dark-zone .glass {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px -30px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.dark-zone .pcard p { color: #a8b6d3; }
.dark-zone .pcard h3 { color: #fff; }
.dark-zone .wg-row { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .08); color: #c5d0e4; }
.dark-zone .wg-row b { color: #fff; }
.dark-zone .tilt::after {
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(160, 200, 255, .18), transparent 45%);
}

/* Logos e FAQ */
.dark-zone .logos-title { color: #66738f; }
.dark-zone .marquee img { filter: grayscale(1) invert(1) brightness(1.6); opacity: .45; }
.dark-zone .marquee img:hover { filter: grayscale(0); opacity: 1; }

/* Motivos, depoimentos, coluna, serviços */
.dark-zone .reason { color: #dfe7f5; }
.dark-zone .reason span { background: rgba(52, 211, 153, .14); }
.dark-zone .tst .who .nm { color: #fff; }
.dark-zone .tst .who .rl { color: #a8b6d3; }
.dark-zone .tst .yt { background: #101526; }
.dark-zone .spine-stage2 {
  background:
    radial-gradient(420px 420px at 60% 40%, rgba(109, 168, 255, .14), transparent 70%),
    linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border-color: rgba(255, 255, 255, .12);
}
.dark-zone .spine-gains li { color: #dfe7f5; }
.dark-zone .spine-badge2 { color: #fff; }
.dark-zone .spine-badge2 b { color: #9ecdf5; }
.dark-zone .chip-ok { background: rgba(52, 211, 153, .12); color: #6ee7b7; border-color: rgba(52, 211, 153, .3); }

/* Rodapé escuro + letreiro gigante */
.dark-zone .site-foot { border-top-color: rgba(255, 255, 255, .08); }
.dark-zone .foot-logo { filter: brightness(0) invert(1); opacity: .92; }
.dark-zone .foot-tag { color: #a8b6d3; }
.dark-zone .foot-col h4 { color: #66738f; }
.dark-zone .foot-col a { color: #a8b6d3; }
.dark-zone .foot-col a:hover { color: #fff; }
.dark-zone .foot-bottom { border-top-color: rgba(255, 255, 255, .08); color: #66738f; }
.foot-word {
  font-weight: 800; letter-spacing: -.05em; line-height: .9;
  font-size: clamp(6rem, 17vw, 15rem);
  text-align: center; margin-top: 60px;
  background: linear-gradient(180deg, rgba(158, 205, 245, .28), rgba(109, 130, 255, .04));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none;
}

/* ---------- Manifesto: tipografia gigante + cards em profundidade ---------- */
.kinetic { position: relative; padding: 150px 0 90px; }
.k-scene { position: relative; text-align: center; }
.k-title { display: block; }
.k-title .k-line {
  display: block; color: #fff;
  font-size: clamp(3rem, 8.4vw, 6.8rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.02;
}
.k-title .k-line.ghost {
  color: #b9c6de; font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
}
.k-sub { max-width: 460px; margin: 26px auto 0; font-size: 1.05rem; }
.k-cards { position: absolute; inset: -60px 0; pointer-events: none; }
.kc {
  position: absolute;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px; border-radius: 100px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  font-size: 13px; font-weight: 600; color: #dfe7f5;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .6);
  will-change: transform;
}
.kc .ic { width: 16px; height: 16px; }
.kc:nth-child(1) { top: 6%; left: 7%; }
.kc:nth-child(2) { top: 12%; right: 9%; }
.kc:nth-child(3) { bottom: 14%; left: 11%; }
.kc:nth-child(4) { bottom: 6%; right: 7%; }
.kc.kc-av { padding: 5px; border-radius: 50%; }
.kc.kc-av img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.kc:nth-child(5) { top: 42%; left: 3%; }
.kc:nth-child(6) { top: 48%; right: 4%; }
.no-motion .k-cards, .no-js .k-cards { display: none; }

/* ---------- App: painel vibrante com o celular ---------- */
/* App e Depoimentos andam juntos: menos respiro entre os dois */
#aplicativo { padding-bottom: 30px; }
#depoimentos { padding-top: 38px; }
.app-panel {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  border-radius: 36px; padding: 64px 60px; overflow: hidden; position: relative;
  background:
    radial-gradient(600px 500px at 74% 44%, rgba(59, 130, 246, .34), transparent 64%),
    radial-gradient(760px 560px at 12% 110%, rgba(37, 99, 235, .18), transparent 60%),
    linear-gradient(150deg, #0c1226 0%, #0a0e1e 55%, #0e1430 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 60px 140px -50px rgba(8, 14, 40, .85);
}
.app-glow {
  position: absolute; right: 6%; top: 50%; z-index: 0;
  width: 540px; height: 540px; border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(96, 165, 250, .48), rgba(37, 99, 235, .16) 46%, transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.app-copy, .phone-wrap { position: relative; z-index: 1; }
.app-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-radius: 100px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: #fff; font-size: 12.5px; font-weight: 600;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, .55);
  white-space: nowrap;
}
.app-chip .ic { width: 15px; height: 15px; background: #9ecdf5; }
.ac1 { top: 9%; left: -14%; }
.ac2 { bottom: 12%; right: -6%; }
.app-copy h2 { font-size: clamp(2rem, 3.8vw, 3rem); color: #fff; margin-top: 14px; }
.app-copy h2 .serif { font-weight: 400; }
.app-panel .eyebrow { color: rgba(255, 255, 255, .75); }
.app-copy p { color: rgba(255, 255, 255, .82); margin-top: 16px; max-width: 420px; }
.btn-light {
  background: #fff; color: #1b2a4a; font-weight: 700;
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .35);
  margin-top: 28px;
}
.btn-light:hover { transform: translateY(-2px); }
.phone-wrap { display: grid; place-items: center; }
.phone-frame {
  width: min(300px, 70vw); border-radius: 44px; padding: 12px;
  background: linear-gradient(160deg, #0d1526, #1b2340);
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .6);
  transform: rotate(4deg);
}
/* aspect-ratio reserva a altura antes da foto lazy carregar; sem isso a
   página cresce depois e desregula as posições dos pins lá embaixo.

   `height: auto` é obrigatório: a <img> traz os atributos width/height (que o
   navegador usa para reservar espaço e evitar CLS), e eles entram como
   presentational hints. Com largura E altura definidas, o `aspect-ratio` é
   ignorado, a foto era esticada para os 844px do atributo e o celular saía
   deformado, estourando o frame. Com `height: auto` a altura volta a sair do
   aspect-ratio. Mesmo motivo do `height: auto` em .est-mini img e .est-ba img. */
.phone-frame img { width: 100%; height: auto; aspect-ratio: 390 / 844; object-fit: cover; border-radius: 34px; display: block; }

@media (max-width: 1023px) {
  .app-panel { grid-template-columns: 1fr; padding: 44px 28px; text-align: center; }
  /* Chips do app vivem no mobile também, menores e dentro da área */
  .app-chip { font-size: 12px; padding: 8px 12px; }
  .ac1 { top: 2%; left: 4%; }
  .ac2 { bottom: 3%; right: 4%; }
  .app-glow { right: 50%; transform: translate(50%, -50%); width: 360px; height: 360px; }
  .app-copy p { margin-left: auto; margin-right: auto; }
  .phone-frame { transform: rotate(0); }
  /* Manifesto: todos os chips vivos, só menores */
  .kc { font-size: 12px; padding: 8px 13px; }
  .kc.kc-av img { width: 34px; height: 34px; }
  .foot-word { margin-top: 30px; }
}

/* Depoimentos no celular: as palavras não atravessam uma a uma, elas se
   empilham e montam a frase (main.js). Por isso a pista de rolagem encurta —
   o que sobrava antes era tela vazia entre uma palavra e outra. */
@media (max-width: 1023px) {
  .tw { font-size: clamp(52px, 17vw, 96px); top: 50%; }
  body.tst-fx #depoimentos { height: 260vh; }
  body.tst-fx .tst-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tst-words .k-center { top: 26%; }
}

/* ============================================================
   Zonas alternadas claro/escuro + transições de entrada
   ============================================================ */
.zone-light {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 55%, #fbfcfe 100%);
}
.rise-a { margin-top: -90px; z-index: 2; }
.zone-light .sec { position: relative; }

/* A tela do showcase volta a ser branca e nítida dentro do escuro */
.dark-zone .screen { background: #fbfdff; border-color: rgba(255, 255, 255, .85); }
.dark-zone .screen .kpi { background: #fff; border-color: rgba(13, 21, 38, .08); }
.dark-zone .screen .kpi small { color: #93a0b4; }
.dark-zone .screen .kpi b { color: #0d1526; }
.dark-zone .screen .fin-chart { background: #f4f7fb; border-color: rgba(13, 21, 38, .06); }
.dark-zone .screen .bub.in { background: #fff; color: #0d1526; }
.dark-zone .screen .typed { color: #0d1526; }
.dark-zone .screen .chip { background: rgba(13, 21, 38, .06); color: #5d6b82; }
.dark-zone .screen .wg-row { background: #fff; border-color: rgba(13, 21, 38, .07); color: #5d6b82; }
.dark-zone .screen .wg-row b { color: #0d1526; }


/* ---------- Módulo Estética: colagem única de telas reais ao lado do texto.
   Tudo em fluxo (sem absolute): catálogo em cima, rosto no meio, procedimento
   + antes/depois embaixo; chips preenchem os buracos, nunca cobrem tela. ---------- */
.estetica-stage {
  position: relative;
  display: flex; flex-direction: column;
  gap: 12px;
}
.est-shot {
  width: 100%; height: auto;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #fff;
  box-shadow: 0 18px 44px -18px rgba(13, 21, 38, .18), 0 46px 110px -34px rgba(13, 21, 38, .3);
}
.est-row1 { display: flex; align-items: center; gap: 10px; }
.est-row1 .est-chip { margin: 0 auto; }
.est-row3 { display: flex; align-items: center; gap: 12px; }
.est-pills {
  flex: 1; align-self: stretch;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 12px;
}
.est-pills .ec3 { margin-left: 26px; }
.est-pills .spine-badge2 { position: static; margin-left: 8px; }
.est-mini { position: relative; margin: 0; }
.est-mini img {
  display: block; width: 100%; height: auto;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #fff;
  box-shadow: 0 14px 34px -16px rgba(13, 21, 38, .16), 0 34px 80px -30px rgba(13, 21, 38, .26);
}
.em1 { width: 72%; margin-left: -26px; transform: rotate(-2.6deg); }
.em2 { width: 29%; transform: rotate(-1.4deg); }
.est-ba {
  width: 26%;
  border-radius: 14px;
  border: 3px solid #fff;
  background: #fff;
  box-shadow: 0 20px 44px -14px rgba(13, 21, 38, .3);
  transform: rotate(2deg);
  overflow: clip;
}
.est-ba img { display: block; width: 100%; height: auto; border-radius: 10px; }
.est-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-radius: 100px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--ink); font-size: 12.5px; font-weight: 600;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.est-chip .ic { width: 15px; height: 15px; }
.estetica-stage .spine-badge2 b { color: var(--ok); }

/* ---------- Ponte: módulos sob medida ---------- */
.custom-mod {
  max-width: 880px; margin: 0 auto;
  padding: 52px 48px; border-radius: 32px; text-align: center;
}
.custom-mod h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.custom-mod p { color: var(--muted); max-width: 620px; margin: 16px auto 26px; }
.mods-done {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 22px;
}
.mods-done span {
  font-size: 12.5px; font-weight: 700;
  padding: 7px 15px; border-radius: 100px;
  background: rgba(22, 163, 74, .09); color: var(--ok);
  border: 1px solid rgba(22, 163, 74, .22);
}
.mods-done span.next {
  background: rgba(28, 138, 246, .09); color: var(--blue);
  border-color: rgba(28, 138, 246, .3);
}
@media (max-width: 1023px) {
  .est-chip { font-size: 11px; padding: 6px 10px; }
  .em1 { width: 74%; margin-left: -12px; }
  .est-row3 { flex-wrap: wrap; justify-content: center; row-gap: 10px; }
  .est-pills {
    flex: 1 1 100%; order: 2;
    flex-direction: row; flex-wrap: wrap; justify-content: center;
    gap: 8px;
  }
  .est-pills .ec3, .est-pills .spine-badge2 { margin-left: 0; }
  .em2 { width: 46%; }
  .est-ba { width: 40%; }
  .custom-mod { padding: 36px 24px; }
}

/* ---------- Módulos sob medida: momento editorial claro ---------- */
.custom-sec { padding: 150px 0 160px; position: relative; overflow: clip; }
.custom-sec::before {
  content: ""; position: absolute; left: 50%; top: 46%;
  width: 780px; height: 480px; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(28, 138, 246, .12), transparent 72%);
  filter: blur(20px); pointer-events: none;
}
.cm-scene { position: relative; text-align: center; }
.cm-title .cm-line {
  display: block; color: var(--ink);
  font-size: clamp(2.6rem, 6.6vw, 5rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.04;
}
.cm-title .cm-line.cm-ghost {
  color: #aeb9d2; font-weight: 400; letter-spacing: -.01em;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}
.cm-sub { max-width: 560px; margin: 26px auto 0; color: var(--muted); font-size: 1.05rem; }
.mods-float { position: absolute; inset: -50px 0 0 0; pointer-events: none; }
.mf {
  position: absolute;
  display: inline-flex; align-items: center;
  padding: 10px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(22, 163, 74, .25); color: var(--ok);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  white-space: nowrap; will-change: transform;
}
.mf.mf3 { border-color: rgba(28, 138, 246, .32); color: var(--blue); }
.mf1 { top: -4%; left: 9%; }
.mf2 { top: 6%; right: 7%; }
.mf3 { bottom: 4%; right: 14%; }
@media (max-width: 1023px) {
  .custom-sec { padding: 90px 0 100px; }
  .mods-float { position: static; inset: auto; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; pointer-events: auto; }
  .mf { position: static; }
}

/* Ícones novos: Zoe (faísca), banco, contrato (assinatura), pediátrico */
.ic-spark { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M12 2l2.2 7.8L22 12l-7.8 2.2L12 22l-2.2-7.8L2 12l7.8-2.2z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M12 2l2.2 7.8L22 12l-7.8 2.2L12 22l-2.2-7.8L2 12l7.8-2.2z'/%3E%3C/svg%3E"); }
.ic-bank { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M3 9.5 12 4l9 5.5'/%3E%3Cpath d='M5 10v7M10 10v7M14 10v7M19 10v7M3 20h18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M3 9.5 12 4l9 5.5'/%3E%3Cpath d='M5 10v7M10 10v7M14 10v7M19 10v7M3 20h18'/%3E%3C/svg%3E"); }
.ic-pen { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 16c2.5-5 4-5 5 0s2.8 5 5 0 3-5 5 0'/%3E%3Cpath d='M3 21h18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 16c2.5-5 4-5 5 0s2.8 5 5 0 3-5 5 0'/%3E%3Cpath d='M3 21h18'/%3E%3C/svg%3E"); }
.ic-child { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='7' r='3.5'/%3E%3Cpath d='M5 21c.5-5 3.2-7.5 7-7.5s6.5 2.5 7 7.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='7' r='3.5'/%3E%3Cpath d='M5 21c.5-5 3.2-7.5 7-7.5s6.5 2.5 7 7.5'/%3E%3C/svg%3E"); }

/* Selo "Em breve": neutro, sem prometer o que ainda não chegou */
.feat-tag.soon {
  background: rgba(13, 21, 38, .07);
  color: var(--muted);
  box-shadow: none;
  border: 1px solid rgba(13, 21, 38, .1);
}

@keyframes light-pan { to { background-position: 100% 0; } }

/* ---------- Lâmina de luz 3D (Sandrew): deitada no repouso, vira portal e inunda a tela ---------- */
.slab-wrap {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  display: grid; place-items: center;
  perspective: 1100px;
  /* Em perspectiva a lâmina projeta além da largura da janela e criava
     rolagem horizontal na página; clip só no eixo X preserva a altura */
  overflow-x: clip;
}
.light-slab {
  position: relative;
  width: min(660px, 82vw); height: 150px;
  border-radius: 20px;
  background: linear-gradient(105deg, #cfe8ff 0%, #7cc3ff 22%, #4aa8ff 48%, #7d9bff 72%, #38bdf8 100%);
  background-size: 260% 100%;
  animation: light-pan 8s ease-in-out infinite alternate;
  transform: rotateX(58deg);
  box-shadow:
    0 40px 120px -20px rgba(74, 140, 255, .5),
    0 90px 220px -40px rgba(56, 120, 255, .3);
  will-change: transform, opacity;
}
.light-slab::after {
  content: ""; position: absolute; left: -6%; right: -6%; top: -75%; height: 120%;
  background: radial-gradient(60% 90% at 50% 100%, rgba(140, 190, 255, .45), transparent 70%);
  filter: blur(26px);
}
.no-motion .slab-wrap, .no-js .slab-wrap { display: none; }
@media (max-width: 1023px) { .slab-wrap { display: none; } }

/* Clarão da transição: a luz do portal inunda a janela inteira no auge.
   Fixed fora do .stage3d (que tem transform e quebraria o fixed) */
.stage-flash {
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none; opacity: 0;
  background: radial-gradient(120% 95% at 50% 55%, #ffffff 0%, #eaf4ff 32%, #bfe0ff 56%, #8fc2ff 78%, #6fadfa 100%);
  will-change: opacity;
}
.no-motion .stage-flash, .no-js .stage-flash { display: none; }
@media (max-width: 1023px) { .stage-flash { display: none; } }

/* Poppins: usada SÓ no título do palco (diagramação escolhida pela Aline) */
@font-face {
  font-family: 'Poppins';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('../fonts/poppins-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}

/* Título que nasce do clarão, no palco escuro (diagramação do print dela:
   linha-guia em caixa alta + frase grande com o fim em negrito, Poppins) */
.stage-title {
  position: absolute; left: 50%; top: 52%; z-index: 3;
  width: min(1180px, 92vw); text-align: center;
  font-family: 'Poppins', 'Inter', sans-serif;
  color: #f5f8ff;
  text-shadow: 0 0 90px rgba(120, 180, 255, .5);
  opacity: 0; pointer-events: none;
  will-change: transform, opacity, filter;
}
.stage-title .st-eyebrow {
  display: block;
  font-size: clamp(12px, 1.05vw, 15px); line-height: 1.4;
  font-weight: 400; letter-spacing: .34em; text-transform: uppercase;
}
.stage-title .st-main {
  display: block; margin-top: 26px;
  font-size: clamp(32px, 4.2vw, 62px); line-height: 1.3;
  font-weight: 300; letter-spacing: -.01em;
}
.stage-title .st-main b { font-weight: 700; }
.no-motion .stage-title, .no-js .stage-title { display: none; }

/* No celular não há clarão para a frase nascer de dentro, mas a frase é a
   mensagem da seção: ela vira um bloco de texto sobre uma lâmina escura, com
   o mesmo brilho azul ao fundo, logo antes do notebook. */
@media (max-width: 1023px) {
  .stage-title {
    position: relative; left: auto; top: auto;
    width: auto; margin: 0 12px 26px;
    padding: 46px 24px 50px; border-radius: 28px;
    background: linear-gradient(180deg, #0b1226, #131c3a);
    overflow: hidden;
    opacity: 0; /* o GSAP conduz a entrada; sem JS a regra .no-js acima esconde */
  }
  /* O brilho é estático (pintado uma vez): animar blur/box-shadow por quadro
     é o que derruba o fps em celular médio. */
  .stage-title::before {
    content: ''; position: absolute; left: 50%; top: -30%;
    width: 130%; aspect-ratio: 1; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(60, 140, 255, .5), transparent 62%);
    pointer-events: none;
  }
  .stage-title .st-eyebrow,
  .stage-title .st-main { position: relative; }
  .stage-title .st-eyebrow { font-size: 11px; letter-spacing: .22em; opacity: .85; }
  .stage-title .st-main { margin-top: 18px; font-size: 25px; line-height: 1.42; }
}
@media (max-width: 380px) {
  .stage-title { padding: 38px 18px 42px; }
  .stage-title .st-main { font-size: 22.5px; }
}

/* Pontinhos do carrossel de widgets (criados pelo main.js no celular) */
.mob-dots { display: none; }
@media (max-width: 1023px) {
  .mob-dots { display: flex; justify-content: center; gap: 7px; margin-top: 12px; }
  .mob-dots i {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(20, 40, 80, .18);
    transition: width .3s var(--ease), background .3s;
  }
  .mob-dots i.on { width: 20px; border-radius: 3px; background: var(--blue); }
}

/* ---------- Recursos como links: setinha que indica que o card abre ---------- */
#integracoes { padding-top: 0; }
a.feat { position: relative; isolation: isolate; }
/* Hover: o card vira vidro — camada glass surge em fade + leve crescimento */
a.feat::before {
  content: ""; position: absolute; inset: -14px -18px; z-index: -1;
  border-radius: 24px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 24px 48px -24px rgba(13, 40, 90, .3), inset 0 1px 0 rgba(255, 255, 255, .9);
  opacity: 0; transform: scale(.94);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
a.feat:hover::before { opacity: 1; transform: scale(1); }
.no-motion a.feat::before { transform: none; transition: opacity .4s var(--ease); }
.feat-go {
  flex: none; margin-left: auto;
  width: 34px; height: 34px; border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid rgba(13, 40, 90, .12);
  background: rgba(255, 255, 255, .6);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.feat-go .ic { width: 15px; height: 15px; background: #5d6b82; transition: background .3s var(--ease); }
a.feat:hover .feat-go { transform: translate(3px, -3px); background: var(--grad); border-color: transparent; }
a.feat:hover .feat-go .ic { background: #fff; }
a.feat:hover h3 { color: #1c8af6; }
.feat h3 { transition: color .25s var(--ease); }
@media (max-width: 1023px) { .feat-go { width: 30px; height: 30px; border-radius: 10px; } }

.ic-arrow { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M9 7h8v8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M9 7h8v8'/%3E%3C/svg%3E"); }
.ic-form { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='18' rx='3'/%3E%3Cpath d='M9 2h6v4H9z'/%3E%3Cpath d='M8 12h8M8 16h5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='18' rx='3'/%3E%3Cpath d='M9 2h6v4H9z'/%3E%3Cpath d='M8 12h8M8 16h5'/%3E%3C/svg%3E"); }
.ic-rx { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M12 11v6M9 14h6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M12 11v6M9 14h6'/%3E%3C/svg%3E"); }
.ic-contract { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M8 16c1.2-2.4 2-2.4 2.6 0s1.7 2.4 2.9 0 2-2.4 2.5 0'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M14 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7z'/%3E%3Cpath d='M14 2v5h5'/%3E%3Cpath d='M8 16c1.2-2.4 2-2.4 2.6 0s1.7 2.4 2.9 0 2-2.4 2.5 0'/%3E%3C/svg%3E"); }
.ic-cart { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h2l2.2 11h11l2-8H6'/%3E%3Ccircle cx='9' cy='20' r='1.6'/%3E%3Ccircle cx='17' cy='20' r='1.6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h2l2.2 11h11l2-8H6'/%3E%3Ccircle cx='9' cy='20' r='1.6'/%3E%3Ccircle cx='17' cy='20' r='1.6'/%3E%3C/svg%3E"); }
.ic-bot { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.5 8.5 0 0 1-8.5 8.5H4l1.8-2.8A8.5 8.5 0 1 1 21 11.5z'/%3E%3Cpath d='M12 8l1 2.4 2.4 1-2.4 1L12 15l-1-2.6-2.4-1 2.4-1z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.5 8.5 0 0 1-8.5 8.5H4l1.8-2.8A8.5 8.5 0 1 1 21 11.5z'/%3E%3Cpath d='M12 8l1 2.4 2.4 1-2.4 1L12 15l-1-2.6-2.4-1 2.4-1z'/%3E%3C/svg%3E"); }
.ic-puzzle { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M10 3.5a2 2 0 0 1 4 0V5h3.5a1.5 1.5 0 0 1 1.5 1.5V10h1.5a2 2 0 0 1 0 4H19v3.5a1.5 1.5 0 0 1-1.5 1.5H14v-1.5a2 2 0 0 0-4 0V19H6.5A1.5 1.5 0 0 1 5 17.5V14H3.5a2 2 0 0 1 0-4H5V6.5A1.5 1.5 0 0 1 6.5 5H10z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linejoin='round'%3E%3Cpath d='M10 3.5a2 2 0 0 1 4 0V5h3.5a1.5 1.5 0 0 1 1.5 1.5V10h1.5a2 2 0 0 1 0 4H19v3.5a1.5 1.5 0 0 1-1.5 1.5H14v-1.5a2 2 0 0 0-4 0V19H6.5A1.5 1.5 0 0 1 5 17.5V14H3.5a2 2 0 0 1 0-4H5V6.5A1.5 1.5 0 0 1 6.5 5H10z'/%3E%3C/svg%3E"); }

/* ============================================================
   Escala tipográfica mobile: no celular tudo desce um degrau,
   mantendo a hierarquia entre título > subtítulo > texto
   ============================================================ */
/* O limite é 1023px, o MESMO do layout mobile (carrossel, grades de uma
   coluna). Com um limite menor sobrava uma faixa (celular deitado, tablet
   em pé) com layout de celular e letra de desktop. Os clamp deixam a
   tipografia crescer suave dentro da faixa em vez de saltar no fim dela. */
@media (max-width: 1023px) {
  /* Hero */
  .hero h1 { font-size: clamp(2rem, 5.2vw, 2.9rem); }
  .hero .sub { font-size: clamp(14.5px, 1.9vw, 17px); }
  .pill { font-size: clamp(12px, 1.5vw, 13px); padding: 8px 14px; }
  .btn-lg { padding: 14px 24px; font-size: clamp(15px, 1.8vw, 16.5px); }
  .trust-item { font-size: clamp(12.5px, 1.6vw, 13.5px); }
  .trust-ic svg { width: 18px; height: 18px; }

  /* Cabeçalhos de seção */
  .eyebrow { font-size: clamp(11px, 1.3vw, 12.5px); }
  .sec-head h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
  .sec-head p { font-size: clamp(14px, 1.7vw, 16px); }

  /* Palco do notebook + letreiro de números */
  .stage-title .st-main { font-size: clamp(23px, 3.4vw, 34px); margin-top: 18px; }
  .st-num { font-size: clamp(34px, 7vw, 60px); }
  .st-label { font-size: clamp(12px, 1.5vw, 14px); }

  /* Funcionalidades e integrações */
  .feat h3 { font-size: clamp(15px, 1.8vw, 16.5px); }
  .feat p { font-size: clamp(13px, 1.6vw, 14px); }

  /* Manifesto (tipografia gigante desce junto) */
  .k-title .k-line { font-size: clamp(2rem, 7vw, 4rem); }
  .k-title .k-line.ghost { font-size: clamp(2.1rem, 7.4vw, 4.2rem); }
  .k-word { font-size: clamp(3.4rem, 11vw, 7rem); }
  .k-sub { font-size: clamp(14.5px, 1.8vw, 16.5px); }

  /* WStart / WTeam / Suporte */
  .offer h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); }
  .offer p { font-size: clamp(13.5px, 1.7vw, 14.5px); }
  .offer-num { font-size: clamp(36px, 7vw, 60px); }

  /* Coluna 2D */
  .spine-copy2 h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
  .spine-copy2 p { font-size: clamp(14.5px, 1.8vw, 16.5px); }
  .spine-gains li { font-size: clamp(13.5px, 1.7vw, 15px); }

  /* App */
  .app-copy h2 { font-size: clamp(1.55rem, 4vw, 2.2rem); }
  .app-copy p { font-size: clamp(14.5px, 1.8vw, 16.5px); }

  /* Depoimentos (palavras 3D) */
  .tw { font-size: clamp(40px, 12vw, 110px); }

  /* Segurança */
  .sstep h3 { font-size: clamp(15px, 1.8vw, 16.8px); }
  .sstep p { font-size: clamp(12.5px, 1.6vw, 13.5px); }

  /* Motivos, CTA final e FAQ */
  .reason { font-size: clamp(14px, 1.7vw, 15.5px); }
  .final h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
  .final p { font-size: clamp(14px, 1.7vw, 16px); }
  .lc-trust { font-size: clamp(12px, 1.5vw, 13px); }
  .faq summary { font-size: clamp(15px, 1.8vw, 16px); }
  .faq .ans { font-size: clamp(13.5px, 1.7vw, 14.5px); }

  /* Módulos sob medida */
  .cm-title .cm-line { font-size: clamp(1.9rem, 6.4vw, 3.6rem); }
  .cm-title .cm-line.cm-ghost { font-size: clamp(2rem, 6.8vw, 3.8rem); }
  .cm-sub { font-size: clamp(14.5px, 1.8vw, 16.5px); }
  .custom-mod h2 { font-size: clamp(1.35rem, 3.2vw, 1.9rem); }

  /* Rodapé */
  .foot-tag { font-size: clamp(14px, 1.7vw, 15px); }
  .foot-col a { font-size: clamp(13.5px, 1.7vw, 14px); }
}

/* ==========================================================================
   DOCUMENTOS LEGAIS (termos de uso, privacidade, cookies)
   Antes eram páginas Bootstrap num layout que pedia /laravel-css/*, arquivo
   que não existe no repo: abriam sem estilo nenhum. Agora usam o layout da
   landing, e o que sobra é tipografia de leitura longa.
   ========================================================================== */
.legal-zone { padding-top: 96px; }
.legal-head { padding-bottom: 12px; }
.legal-head h1 { font-size: clamp(34px, 5.2vw, 60px); letter-spacing: -.02em; margin: 10px 0 0; }
.legal-head .sub { max-width: 68ch; margin-top: 16px; }

.legal-meta {
  display: flex; flex-wrap: wrap; gap: 14px 46px;
  margin-top: 34px; padding: 20px 26px; border-radius: 18px;
}
.legal-meta div { display: flex; flex-direction: column; gap: 2px; }
.legal-meta b { font-size: 17px; color: var(--ink); }
.legal-meta span { font-size: 13px; color: var(--muted); }

.legal-body { padding-top: 26px; }

/* Medida de leitura: linha longa demais cansa e faz perder a linha seguinte. */
.legal-doc { max-width: 76ch; }
.legal-doc h2 {
  font-size: clamp(21px, 2.4vw, 27px); line-height: 1.3; letter-spacing: -.01em;
  margin: 52px 0 14px; padding-top: 26px; border-top: 1px solid var(--line);
}
.legal-doc h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-doc h3 { font-size: 18px; margin: 30px 0 10px; }
.legal-doc p { color: var(--muted); line-height: 1.75; margin: 0 0 16px; }
.legal-doc a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-doc strong, .legal-doc b { color: var(--ink); font-weight: 600; }
.legal-doc ul, .legal-doc ol { color: var(--muted); line-height: 1.75; padding-left: 22px; margin: 0 0 16px; }
.legal-doc li { margin-bottom: 8px; }

/* Tabelas de tratamento de dados: rolam no eixo próprio em vez de estourar a
   página no celular. */
.legal-table { overflow-x: auto; margin: 22px 0 28px; border: 1px solid var(--line); border-radius: 14px; }
.legal-table table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; }
.legal-table th, .legal-table td { padding: 13px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.legal-table th { background: rgba(28, 138, 246, .06); color: var(--ink); font-weight: 600; white-space: nowrap; }
.legal-table td { color: var(--muted); }
.legal-table tr:last-child td { border-bottom: 0; }

.legal-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 64px; }
.legal-nav a {
  padding: 11px 20px; border-radius: 100px; font-size: 14px; font-weight: 600;
  color: var(--ink); background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line); text-decoration: none;
  transition: transform .3s var(--ease), background .3s;
}
.legal-nav a:hover { transform: translateY(-2px); background: #fff; }

@media (max-width: 767px) {
  .legal-zone { padding-top: 78px; }
  .legal-meta { gap: 16px 28px; padding: 18px 20px; }
}

/* ---------- Aviso de cookies ----------
   Barra baixa, sem overlay e sem bloquear a página: a landing existe para
   converter, e um modal no meio da tela derruba conversão. A LGPD não exige
   overlay, exige informar e dar escolha real (quem decide o pixel é o
   cookie-consent.js, não este CSS). */
.cookie-bar {
  position: fixed; left: 50%; bottom: 16px; z-index: 130;
  width: min(760px, calc(100vw - 32px));
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  justify-content: space-between;
  padding: 14px 18px; border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px -20px rgba(13, 21, 38, .35);
  /* Entra deslizando de baixo; o translateX mantém a barra centrada. */
  transform: translate(-50%, calc(100% + 24px));
  opacity: 0;
  transition: transform .42s var(--ease), opacity .42s var(--ease);
}
.cookie-bar.show { transform: translate(-50%, 0); opacity: 1; }
.cookie-bar p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); flex: 1 1 320px; }
.cookie-bar a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar-acoes { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-bar .btn { padding: 9px 18px; font-size: 13.5px; }

/* No celular a barra encosta nas bordas e os botões ocupam a linha inteira,
   para não competirem por espaço com o texto. */
@media (max-width: 599px) {
  .cookie-bar { left: 8px; right: 8px; bottom: 8px; width: auto; transform: translate(0, calc(100% + 24px)); padding: 14px; }
  .cookie-bar.show { transform: translate(0, 0); }
  .cookie-bar-acoes { width: 100%; }
  .cookie-bar-acoes .btn { flex: 1; justify-content: center; }
}

/* O botão flutuante do WhatsApp sobe enquanto a barra estiver na tela, senão
   um cobre o outro no canto inferior direito. */
.cookie-bar.show ~ .wa-float.show { transform: translateY(-84px); }

@media (prefers-reduced-motion: reduce) {
  .cookie-bar { transition: opacity .2s linear; }
}

/* Página SEM hero: o header já nasce com fundo, sem depender de JS.
   Home e páginas de módulo ganham a classe .scrolled pelo main.js/modulo.js ao
   rolar; quem não carrega nenhum dos dois fica com o header transparente e o
   conteúdo passando por trás dele, ilegível.

   A classe se chamava `.legal-page` e já era usada pela página de status "pelo
   mesmo motivo", e depois pelo blog: três páginas usando um nome que fala de
   documento jurídico. `.header-solido` diz o que a regra faz. O nome antigo
   fica para não quebrar view que ainda não migrou. */
body.header-solido header.site .nav,
body.legal-page header.site .nav {
  background: rgba(255, 255, 255, .78);
  border-color: var(--stroke);
  backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   CELULAR: a mesma página, dirigida para o dedo

   Não é "encolher o desktop". As regras abaixo trocam o que só faz
   sentido com mouse e tela larga por equivalentes de toque, seção a
   seção. Quem conduz os efeitos é o gsap.matchMedia() do main.js.
   ============================================================ */

/* ---- Números: grade em vez de letreiro ----
   O letreiro correndo cortava justamente os números ("50 mil+" aparecia
   como "mil+"): numa tela de 375px nenhum item cabe inteiro em trânsito.
   Parado, em grade, os quatro se leem de uma vez. */
@media (max-width: 1023px) {
  .stats-clip { overflow: visible; -webkit-mask: none; mask: none; padding: 0; }
  .stats-track {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px 14px;
    width: auto; padding: 6px 18px 0; animation: none; will-change: auto;
  }
  /* display:contents joga os itens direto na grade acima; o segundo grupo
     era só o clone que fechava o loop do letreiro, e agora sobra. */
  .stats-track .stats-group { display: contents; }
  .stats-track .stats-group:nth-child(2) { display: none; }
  .stats-group .st-item:nth-child(n+5) { display: none; }
  .st-num { font-size: clamp(30px, 9vw, 46px); }
  .st-label { font-size: 12.5px; line-height: 1.4; }
}

/* ---- Estética: título antes das telas ----
   Na coluna única as imagens vinham primeiro e a pessoa via telas soltas
   sem saber do que se tratava até rolar mais. */
@media (max-width: 1023px) {
  #estetica .spine-grid2 { display: flex; flex-direction: column; }
  #estetica .spine-copy2 { order: 1; }
  #estetica .estetica-stage { order: 2; }
}

/* ---- Manifesto: os chips saem de cima da frase ----
   No desktop os chips passeiam em profundidade AO REDOR do título. No celular
   não existe "ao redor": a frase ocupa a largura toda e os chips cruzavam o
   texto. Aqui eles descem para uma fileira, virando lista do que o sistema
   automatiza — mesma informação, legível. */
.k-title, .k-sub { position: relative; z-index: 2; }
@media (max-width: 1023px) {
  .k-scene { display: flex; flex-direction: column; }
  .k-title { order: 1; }
  .k-sub { order: 2; }
  .k-cards {
    order: 3; position: static; inset: auto;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
    margin-top: 22px;
  }
  /* Sem posicionamento absoluto os .kc:nth-child(...) de canto não valem mais */
  .k-cards .kc { position: static; }
}

/* ---- Botão flutuante do WhatsApp ----
   Enquanto um CTA de WhatsApp da própria seção está na tela, o flutuante
   sai de cena: eram dois botões iguais competindo, e no celular o
   flutuante ainda cobria o da seção (o que converte). */
.wa-float.recuado {
  opacity: 0; transform: translateY(16px) scale(.8);
  pointer-events: none;
}

/* ---- Cards de recurso: foco pela rolagem ----
   No desktop o card vira vidro no hover. Como o dedo não tem hover, quem
   estiver no centro da tela recebe o mesmo destaque enquanto passa. */
/* Quem aplica .em-foco é o main.js, e só em aparelho sem hover: por isso a
   regra não precisa (nem deve) ficar dentro de @media (hover: none) — assim
   ela também é testável no navegador de mesa. */
a.feat.em-foco::before { opacity: 1; transform: scale(1); }
a.feat.em-foco .feat-go { transform: translate(3px, -3px); background: var(--grad); border-color: transparent; }
a.feat.em-foco .feat-go .ic { background: #fff; }
a.feat.em-foco h3 { color: #1c8af6; }

@media (hover: none) {
  /* Resposta ao toque: sem isso o card só reage quando a página já mudou */
  a.feat:active { transform: scale(.99); }
  .tilt:active, .btn:active { transform: scale(.985); }
}

/* ==========================================================================
   PÁGINA DE MÓDULO: blocos de tráfego pago (dor, como funciona, prova, FAQ)
   Ver resources/views/landing/module.blade.php. Só aparecem nos módulos cuja
   copy (LandingModules) traz as chaves dor/como_funciona/prova/faq. Tudo com
   prefixo .mod- e sem depender de GSAP: o reveal é o mesmo IntersectionObserver
   do modulo.js. Carrega depois do modulo.css, então vence empate de
   especificidade.
   ========================================================================== */

/* ---------- A dor: única faixa fora da paleta azul/verde ----------
   Âmbar escurecido (#b45309, 4,7:1 sobre branco) para o texto pequeno passar
   no AA; o --amber do design system fica só onde é grande ou decorativo. */
.mod-dor {
  --mod-amber-ink: #b45309;
  padding: 72px 0 76px;
  background: linear-gradient(180deg, rgba(217, 119, 6, .07) 0%, rgba(217, 119, 6, .025) 100%);
  border-top: 1px solid rgba(217, 119, 6, .14);
  border-bottom: 1px solid rgba(217, 119, 6, .14);
}
.mod-dor .eyebrow { color: var(--mod-amber-ink); }
.mod-dor .sec-head { margin-bottom: 44px; }
.mod-dor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mod-dor-card {
  padding: 28px 26px 30px; border-radius: 24px; text-align: left;
  border-color: rgba(217, 119, 6, .28);
  box-shadow: 0 16px 44px -22px rgba(217, 119, 6, .28), inset 0 1px 0 rgba(255, 255, 255, .9);
}
.mod-dor-stat {
  display: block; font-weight: 800; font-size: 34px; line-height: 1;
  letter-spacing: -.035em; color: var(--mod-amber-ink);
  font-variant-numeric: tabular-nums;
}
/* Sem número: um traço âmbar curto segura o topo do card no mesmo lugar.
   15 + 4 + 31 = 50px até o h3, o mesmo que os 34px do número + 16 de margem
   (a margem de baixo colapsa com a do h3, por isso 31 e não 15). */
.mod-dor-mark { display: block; width: 34px; height: 4px; border-radius: 4px; background: var(--amber); margin: 15px 0 31px; }
.mod-dor-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -.01em; margin-top: 16px; }
.mod-dor-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-top: 7px; }

/* Ponte: linha que atravessa a borda inferior da faixa e vai do âmbar ao
   azul, com o ponto azul já do lado da solução */
.mod-ponte {
  position: absolute; left: 50%; bottom: -30px; z-index: 3;
  width: 2px; height: 60px; margin-left: -1px;
  background: linear-gradient(180deg, rgba(217, 119, 6, .6), var(--blue));
}
.mod-ponte::after {
  content: ""; position: absolute; left: 50%; bottom: -5px;
  width: 12px; height: 12px; margin-left: -6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(28, 138, 246, .16);
}

/* ---------- Como funciona: 3 passos ligados por uma linha ---------- */
.mod-como { padding: 100px 0 40px; }
.mod-como .sec-head { margin-bottom: 44px; }
.mod-passos {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
/* Linha tracejada atrás das bolinhas (o centro da 1ª e da 3ª coluna) */
.mod-passos::before {
  content: ""; position: absolute; top: 23px; left: 16.66%; right: 16.66%;
  border-top: 2px dashed rgba(28, 138, 246, .32);
}
.mod-passo { display: flex; flex-direction: column; align-items: center; position: relative; }
.mod-passo-n {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  font-weight: 800; font-size: 18px; letter-spacing: -.02em;
  box-shadow: 0 12px 28px -10px rgba(28, 138, 246, .6), 0 0 0 6px #fff;
}
.mod-passo-body {
  /* flex:1 iguala a altura dos três cards quando um texto é mais curto */
  flex: 1; width: 100%; margin-top: 18px; padding: 26px 24px 28px;
  border-radius: 24px; text-align: center;
}
.mod-passo-body h3 { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.mod-passo-body p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-top: 8px; }

/* ---------- Prova: números grandes num painel de vidro ---------- */
.mod-prova { padding: 30px 0 40px; }
.mod-prova-panel { padding: 40px 36px; border-radius: 28px; max-width: 980px; margin: 0 auto; }
.mod-nums { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0; }
.mod-num { text-align: center; padding: 6px 20px; }
.mod-num + .mod-num { border-left: 1px solid var(--line); }
.mod-num b {
  display: block; font-weight: 800; line-height: 1;
  font-size: clamp(38px, 4.6vw, 60px); letter-spacing: -.04em;
  white-space: nowrap;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mod-num span { display: block; margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.45; }
.mod-quote { margin: 30px 0 0; padding: 30px 0 0; border-top: 1px solid var(--line); text-align: center; }
.mod-quote blockquote { margin: 0; padding: 0; position: relative; }
.mod-quote blockquote p {
  max-width: 720px; margin: 0 auto;
  font-size: 18.5px; line-height: 1.5; font-weight: 500; letter-spacing: -.01em;
  color: var(--ink); text-wrap: balance;
}
.mod-quote blockquote p::before { content: "\201C"; color: var(--blue); font-weight: 800; margin-right: 2px; }
.mod-quote blockquote p::after { content: "\201D"; color: var(--blue); font-weight: 800; margin-left: 2px; }
.mod-quote figcaption { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--muted); }

/* ---------- FAQ: o .faq da home, só o ritmo da seção ---------- */
.mod-faq { padding: 60px 0 30px; }
.mod-faq .sec-head { margin-bottom: 40px; }
.mod-faq .sec-head h2, .mod-como .sec-head h2, .mod-dor .sec-head h2 { text-wrap: balance; }

@media (max-width: 1023px) {
  .mod-dor-grid { grid-template-columns: 1fr; gap: 14px; max-width: 640px; margin: 0 auto; }
  .mod-dor-card { padding: 24px 22px 26px; }
  .mod-dor-stat { font-size: 30px; }
  /* Passos em coluna: bolinha à esquerda, texto à direita, linha vertical */
  .mod-passos { grid-template-columns: 1fr; gap: 18px; max-width: 640px; margin: 0 auto; }
  .mod-passos::before { display: none; }
  .mod-passo { flex-direction: row; align-items: flex-start; gap: 16px; }
  .mod-passo:not(:last-child)::after {
    content: ""; position: absolute; left: 23px; top: 48px; bottom: -18px;
    border-left: 2px dashed rgba(28, 138, 246, .32);
  }
  .mod-passo-n { width: 48px; box-shadow: 0 12px 28px -10px rgba(28, 138, 246, .6); position: relative; z-index: 1; }
  .mod-passo-body { margin-top: 0; text-align: left; padding: 22px 20px 24px; min-width: 0; }
}
@media (max-width: 719px) {
  .mod-dor { padding: 60px 0 66px; }
  .mod-dor .sec-head, .mod-como .sec-head, .mod-faq .sec-head { margin-bottom: 32px; }
  .mod-como { padding: 84px 0 30px; }
  .mod-prova-panel { padding: 28px 22px; border-radius: 24px; }
  .mod-nums { grid-auto-flow: row; grid-auto-columns: auto; }
  .mod-num { padding: 18px 0; }
  .mod-num + .mod-num { border-left: 0; border-top: 1px solid var(--line); }
  .mod-num b { font-size: clamp(36px, 11vw, 46px); }
  .mod-num span { font-size: 14px; margin-top: 8px; }
  .mod-quote { margin-top: 22px; padding-top: 24px; }
  .mod-quote blockquote p { font-size: 16.5px; }
  .mod-faq { padding: 48px 0 20px; }
}
