/* =========================================================================
   PULSE ID — Site institucional
   Fork visual de roqt.com.br (estrutura clara, muito branco, números grandes)
   adaptado à IDENTIDADE OFICIAL da Pulse ID (Jun/2026):
   ciano #0AC1DD · navy #011D31 · branco #FFFFFF. SEM ROXO.
   Tagline: "O pulso da sua empresa está nos dados."
   ========================================================================= */

:root {
  /* Neutros (cool, base navy oficial) */
  --white:      #ffffff;
  --bg:         #f6f8fb;  /* fundo claríssimo arejado */
  --slate-900:  #011D31;  /* PULSE NAVY oficial — títulos, footer, texto forte */
  --slate-800:  #0a2740;
  --slate-700:  #21384b;  /* corpo forte */
  --slate-600:  #455d72;  /* corpo */
  --slate-500:  #64748b;  /* muted */
  --slate-400:  #94a3b8;
  --slate-300:  #cbd5e1;
  --slate-200:  #e3e9f1;  /* bordas */
  --slate-100:  #eef2f7;
  --slate-50:   #f6f8fb;

  /* Marca Pulse ID — ciano + navy */
  --blue-950:   #011D31;  /* PULSE NAVY — seções escuras profundas */
  --blue-900:   #042a43;  /* navy levemente elevado p/ camadas no escuro */
  --blue-800:   #063150;
  --blue-700:   #0892a8;  /* ciano escuro — hover do CTA */
  --blue-600:   #0AC1DD;  /* PULSE CIANO — destaque / CTA / acento */
  --blue-500:   #2fd0e8;
  --blue-100:   #c2eef6;  /* tint ciano claro */
  --blue-50:    #e8f9fc;  /* tint ciano mais claro */
  --sky-400:    #0AC1DD;  /* PULSE CIANO — acento (sobretudo no escuro) */
  --pulse-blue: #0AC1DD;  /* traço do logo */
  --accent-ink: #011D31;  /* PULSE NAVY — números e rótulos no claro (escuro, profissional) */

  /* Tipografia — Montserrat (marca) para títulos, Inter para corpo */
  --display: 'Montserrat', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', 'Menlo', monospace;

  /* Layout */
  --max:       1200px;
  --gutter:    clamp(1.25rem, 5vw, 2.5rem);
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  /* Sombras — discretas, B2B sério */
  --shadow-sm: 0 1px 2px rgba(1, 29, 49, .04);
  --shadow:    0 4px 20px -6px rgba(1, 29, 49, .10);
  --shadow-lg: 0 24px 60px -20px rgba(1, 29, 49, .22);
  --shadow-blue: 0 18px 44px -16px rgba(10, 193, 221, .40);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------- Helpers ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--blue-600);
  opacity: 0.5;
}
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  margin-top: 1rem;
  color: var(--slate-900);
}
.section-head p {
  margin-top: 1.15rem;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--slate-500);
  max-width: 40rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: #0AC1DD;
  color: #011D31;
  box-shadow: 0 18px 44px -16px rgba(10,193,221,.38);
}
.btn-primary:hover { background: #08a8bf; transform: translateY(-2px); }
.btn-secondary {
  background: var(--white);
  color: var(--slate-900);
  border-color: var(--slate-200);
}
.btn-secondary:hover { border-color: var(--slate-300); background: var(--slate-50); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.22);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1.02rem; }

/* Arrow that nudges on hover */
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Image / dashboard placeholders ---------- */
.ph {
  position: relative;
  border-radius: var(--radius);
  background-color: var(--slate-100);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 9px,
    rgba(10,193,221,.05) 9px, rgba(10,193,221,.05) 10px
  );
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--slate-400);
  text-align: center;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
}
/* Dark variant for the blue Dados section */
.ph-dark {
  background-color: rgba(255,255,255,.04);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 9px,
    rgba(10,193,221,.10) 9px, rgba(10,193,221,.10) 10px
  );
  border-color: rgba(255,255,255,.14);
}
.ph-dark span {
  color: var(--sky-400);
  background: rgba(1,29,49,.85);
  border-color: rgba(10,193,221,.25);
}

/* =========================================================================
   NAVBAR
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--slate-100);
}
.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
/* Brand: logo PNG horizontal (sem barra — cropped correctly) */
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 52px; width: auto; max-width: 220px; display: block; object-fit: contain; }
.brand .logo-dark { display: none; }
.nav.scrolled .brand .logo-light { display: none; }
.nav.scrolled .brand .logo-dark { display: block; }
.footer .brand img { height: 38px; max-width: 160px; }
.pos { color: var(--slate-400); margin-top: 1rem; max-width: 22rem; font-size: 0.95rem; }
.pos-slogan { font-family: var(--mono); font-size: 0.74rem; color: rgba(255,255,255,.35); margin-top: 0.5rem; letter-spacing: .02em; }

.nav-links { display: none; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,.82); transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--slate-600); }
.nav.scrolled .nav-links a:hover { color: var(--slate-900); }
.nav-actions { display: none; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px;
  background: none; border: 0; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }
.nav.scrolled .nav-toggle span { background: var(--slate-900); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem var(--gutter) 1.75rem;
  border-bottom: 1px solid var(--slate-100);
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.7rem 0; font-weight: 500; color: var(--slate-700); border-bottom: 1px solid var(--slate-100); }
.mobile-menu .btn { margin-top: 1rem; }

@media (min-width: 1024px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* =========================================================================
   HERO — cinematic scroll-shrink (fork roqt: vídeo full-bleed → header)
   ========================================================================= */
.hero-stage { position: relative; height: 100vh; height: 100svh; background: var(--bg); }
.hero-sticky {
  position: absolute; inset: 0;          /* em fluxo (rola normal em qualquer container) */
  overflow: visible;
  display: block;
}
.hero-frame {
  position: absolute; inset: 0;
  overflow: hidden;
  transform-origin: 50% 0%;              /* encolhe ancorado no topo, sob o nav */
  will-change: transform, border-radius;
  background: var(--blue-950);
  box-shadow: 0 30px 80px -40px rgba(1,29,49,.7);
}
/* mídia (vídeo/imagem de dados) */
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---- carrossel de CENAS (cross-fade + Ken Burns) ---- */
.hero-scenes { position: absolute; inset: 0; }
.hero-scene {
  position: absolute; inset: 0;
  opacity: 0;
  background-image: var(--img), var(--fallback);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  transform: scale(1.08);
  transition: opacity 1.5s ease;
  will-change: opacity, transform;
}
/* tom distinto por cena (fallback enquanto não há imagem real) — garante que o
   cross-fade seja visível e que cada cena tenha identidade própria */
.hero-scene[data-scene="01"] { --fallback: radial-gradient(80% 75% at 80% 80%, #1a5e7a, transparent 60%), linear-gradient(160deg, #011D31, #082038 50%, #11315f); }
.hero-scene[data-scene="02"] { --fallback: radial-gradient(60% 80% at 62% 42%, #2a6cad, transparent 55%), radial-gradient(70% 90% at 60% 40%, #15406e, #011D31 70%); background-position: 32% center, center, center; }
.hero-scene[data-scene="03"] { --fallback: radial-gradient(75% 70% at 30% 70%, #0e6a8f, transparent 58%), linear-gradient(120deg, #011D31, #0a2c52 60%, #011D31); }
.hero-scene[data-scene="04"] { --fallback: radial-gradient(80% 70% at 75% 25%, #1d4f8c, transparent 60%), linear-gradient(135deg, #011D31, #11315f 55%, #011D31); background-position: center 38%, center, center; }
.hero-scene.is-active {
  opacity: 1;
  animation: kenBurns 7s ease-out forwards;
}
.hero-scene video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* ponto de corte por cena — mantém o assunto-chave visível em qualquer proporção */
.hero-scene[data-scene="01"] video { object-position: center; }     /* grade de dados: textura, corte indiferente */
.hero-scene[data-scene="02"] video { object-position: 32% center; } /* decisor: mantém a pessoa (à esquerda) no quadro */
.hero-scene[data-scene="03"] video { object-position: center; }     /* código: tela, corte central ok */
.hero-scene[data-scene="04"] video { object-position: center 38%; } /* skyline: prioriza prédios, não o céu */
@keyframes kenBurns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.16); }
}
/* etiqueta mono indicando o que entra em cada cena (some quando há imagem real:
   é só remover o <span> ou o atributo). Discreta, canto inferior. */
.scene-tag {
  position: absolute; left: 18px; bottom: 16px;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  background: rgba(1,29,49,.5); border: 1px solid rgba(255,255,255,.14);
  padding: 0.35rem 0.6rem; border-radius: 6px;
  backdrop-filter: blur(4px);
}
@keyframes heroPan { from { transform: scale(1.06) translate(0,0); } to { transform: scale(1.14) translate(-2%, -2%); } }
.hero-gridlines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 90%);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(1,29,49,.55) 0%, rgba(1,29,49,.42) 38%, rgba(1,29,49,.80) 100%),
    radial-gradient(60% 55% at 82% 8%, rgba(10,193,221,.16), transparent 60%),
    radial-gradient(55% 60% at 8% 100%, rgba(10,193,221,.24), transparent 60%);
}
/* conteúdo */
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; will-change: transform, opacity; }
.hero-inner { width: 100%; }
.hero-content h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  color: #fff;
  margin-top: 1.5rem;
  letter-spacing: -0.035em;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-content h1 em { font-style: normal; color: var(--sky-400); }
.hero-content .sub em { font-style: normal; color: var(--sky-400); font-weight: 600; }
.hero-content .sub {
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  color: rgba(255,255,255,.82);
  margin-top: 1.4rem;
  max-width: 40rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.4rem; }

/* badge base (claro) + variante escura para o hero */
.badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--blue-700); text-transform: uppercase;
}
.badge .live { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-600); }
.badge-dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.badge-dark .live { background: var(--sky-400); box-shadow: 0 0 0 0 rgba(10,193,221,.6); animation: blip 2.2s ease-out infinite; }
@keyframes blip { 0%{ box-shadow: 0 0 0 0 rgba(10,193,221,.5);} 70%{ box-shadow: 0 0 0 9px rgba(10,193,221,0);} 100%{ box-shadow:0 0 0 0 rgba(10,193,221,0);} }

/* indicador de rolagem */
.hero-scrollcue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 7px; z-index: 3;
}
.hero-scrollcue span { width: 4px; height: 8px; border-radius: 3px; background: #fff; animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0%,100%{ transform: translateY(0); opacity:1;} 50%{ transform: translateY(10px); opacity:.3;} }

/* =========================================================================
   PROVA SOCIAL — empresas + tecnologias (fork roqt #clientes)
   ========================================================================= */
.prova { background: var(--white); text-align: center; padding-block: clamp(3.5rem, 7vw, 6rem); }
.prova-kicker {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 2rem); color: var(--slate-900);
  letter-spacing: -0.02em; max-width: 24ch; margin: 0 auto; text-wrap: balance;
}
.prova-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; max-width: 60rem;
}
.prova-stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: #0AC1DD; letter-spacing: -0.04em; line-height: 1; }
.prova-stat .l { font-size: 0.9rem; color: var(--slate-500); margin-top: 0.5rem; }
.prova-marquee-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-400); margin: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem; }
@media (min-width: 700px) { .prova-stats { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================================
   LINHA DE PULSO (ECG) — stack & parceiros como batimentos da marca
   Motivo do logo Pulse ID aplicado: cada tecnologia é um pico do sinal.
   ========================================================================= */
/* ECG signal — horizontal scroll on mobile so spikes and labels stay readable */
.tech-signal { max-width: 72rem; margin-inline: auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ts-svg { width: 100%; height: auto; display: block; overflow: visible; min-width: 780px; }
/* linha-guia (baseline do osciloscópio) */
.ts-gl { stroke: var(--slate-200); stroke-width: 1; stroke-dasharray: 2 6; }
/* o sinal: ciano da marca, desenha-se ao entrar na tela */
.ts-line {
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 2.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}
/* ECG: sempre visível (não gata em reduced-motion, só o draw-in anima) */
html.motion .tech-signal .ts-line {
  stroke-dasharray: 3200;
  stroke-dashoffset: 3200;
  transition: stroke-dashoffset 2.2s cubic-bezier(.5,0,.2,1);
}
html.motion .tech-signal.in .ts-line {
  stroke-dashoffset: 0;
  animation: none;
}
@keyframes tsDraw { to { stroke-dashoffset: 0; } }
/* nó: ponto no pico + nome da tech — ciano mesmo com accent-ink navy */
.ts-dot { fill: var(--sky-400); r: 4.5px; }
.ts-txt {
  font-family: var(--mono);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .02em;
  fill: var(--slate-600);
  text-anchor: middle;
}
html.motion .tech-signal .ts-node { opacity: 0; }
html.motion .tech-signal.in .ts-node {
  animation: tsNode .5s ease-out forwards;
  animation-delay: var(--d, 0s);
}
@keyframes tsNode { from { opacity: 0; } to { opacity: 1; } }
/* batimento contínuo discreto nos pontos (após o draw-in) */
html.motion .tech-signal.in .ts-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: tsBeat 3.2s ease-in-out calc(var(--d, 0s) + 2.2s) infinite;
}
@keyframes tsBeat {
  0%, 88%, 100% { transform: scale(1); }
  92% { transform: scale(1.65); }
  96% { transform: scale(1); }
}
@media (max-width: 720px) {
  .ts-txt { font-size: 15px; }
}
/* Reduced motion: sinal sempre visível, sem draw-in nem batimento */
@media (prefers-reduced-motion: reduce) {
  html.motion .tech-signal .ts-line { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; animation: none !important; }
  html.motion .tech-signal .ts-node { opacity: 1 !important; animation: none !important; }
  html.motion .tech-signal .ts-dot { animation: none !important; }
}
/* fallback: sempre mostrar sinal quando html.motion NAO está presente */
:not(.motion) .tech-signal .ts-line { stroke-dashoffset: 0; }

/* Reduced motion: trava as cenas no estado base, sem zoom/cross-fade automático */
@media (prefers-reduced-motion: reduce) {
  .hero-scene.is-active { animation: none; }
}

/* =========================================================================
   HERO — animação de ENTRADA (ao abrir o site): cena cheia → assenta no header
   Roda 1x no load. Não conflita com o scroll-shrink: a animação do .hero-frame
   sobrepõe o inline transform do JS durante ~1.3s e, sem fill-forwards, devolve
   o controle ao JS no fim (estado final = repouso, então o handoff é invisível).
   Os filhos do .hero-inner animam sozinhos (o JS mexe no #heroContent, não neles).
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .hero-frame { animation: heroIntroFrame 1.35s cubic-bezier(.16,.84,.44,1); }
  .hero-scrim { animation: heroIntroFade 1.2s ease both; }
  .hero-gridlines { animation: heroIntroFade 1.6s ease .2s both; }
  .hero-scenes { animation: heroIntroZoom 1.6s cubic-bezier(.16,.84,.44,1) both; }
  .hero-inner > * { opacity: 0; animation: heroIntroRise .9s cubic-bezier(.16,.84,.44,1) forwards; }
  .hero-inner > *:nth-child(1) { animation-delay: .42s; }
  .hero-inner > *:nth-child(2) { animation-delay: .54s; }
  .hero-inner > *:nth-child(3) { animation-delay: .68s; }
  .hero-inner > *:nth-child(4) { animation-delay: .82s; }
  .hero-scrollcue { opacity: 0; animation: heroIntroFade .8s ease 1.25s forwards; }
}
@keyframes heroIntroFrame {
  0%   { transform: scale(1.14); }
  100% { transform: scale(1); }
}
@keyframes heroIntroZoom {
  0%   { transform: scale(1.28); }
  100% { transform: scale(1.06); }
}
@keyframes heroIntroFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroIntroRise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}

/* Hero legacy mock (mantido — .chart é reutilizado em Soluções) */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card .bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--slate-100);
  background: var(--slate-50);
}
.hero-card .bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--slate-300); }
.hero-card .bar .t { margin-left: 0.5rem; font-family: var(--mono); font-size: 0.72rem; color: var(--slate-400); }
.hero-card .body { padding: 1.25rem; display: grid; gap: 0.9rem; }
.mini-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.mini-kpi { background: var(--bg); border: 1px solid var(--slate-100); border-radius: var(--radius-sm); padding: 0.85rem; }
.mini-kpi .k { font-family: var(--mono); font-size: 0.62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); }
.mini-kpi .v { font-size: 1.25rem; font-weight: 800; color: var(--slate-900); margin-top: 0.25rem; letter-spacing: -0.02em; }
.mini-kpi .v small { color: var(--accent-ink); font-size: 0.7rem; font-weight: 700; }
.chart { height: 132px; border: 1px solid rgba(10,193,221,.15); border-radius: var(--radius-sm); padding: 0.9rem; display: flex; align-items: flex-end; gap: 0.5rem; background: rgba(1,29,49,.4); }
.chart .col { flex: 1; background: rgba(10,193,221,.22); border-radius: 4px 4px 0 0; position: relative; }
.chart .col.hi { background: #0AC1DD; box-shadow: 0 0 12px rgba(10,193,221,.5); }
.chart .col::after { content: ""; }
.hero-tag {
  position: absolute;
  bottom: -16px; left: -14px;
  background: var(--slate-900); color: var(--white);
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  padding: 0.6rem 0.85rem; border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-tag .g { width: 7px; height: 7px; border-radius: 50%; background: var(--sky-400); }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

/* =========================================================================
   DORES  (seção 2)
   ========================================================================= */
.dores { background: var(--bg); }
.dores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.dor {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.dor:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--slate-300); }
.dor .ix {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; color: var(--slate-400); text-transform: uppercase;
  margin-bottom: 1rem;
}
.dor h3 { font-size: 1.18rem; color: var(--slate-900); font-weight: 700; letter-spacing: -0.01em; }
.dor p { margin-top: 0.6rem; color: var(--slate-500); font-size: 0.96rem; }
.dor .stat {
  margin-top: auto; padding-top: 1.2rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.dor .stat .big {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  font-size: 0.92rem; color: var(--slate-700); font-weight: 500;
  border-top: 1px solid var(--slate-100); padding-top: 1.1rem;
}
.dor .stat .pct { font-size: 1.5rem; font-weight: 800; color: var(--accent-ink); letter-spacing: -0.03em; line-height: 1; }
.dor .stat .src { font-family: var(--mono); font-size: 0.66rem; color: var(--slate-400); letter-spacing: 0.04em; }

@media (min-width: 640px) { .dores-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .dores-grid { grid-template-columns: repeat(6, 1fr); }
  .dor { grid-column: span 2; }
  .dor:nth-child(4) { grid-column: 2 / span 2; }
  .dor:nth-child(5) { grid-column: span 2; }
}

/* =========================================================================
   SOLUÇÕES  (seção 3)
   ========================================================================= */
.solucoes-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.sol {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
}
.sol:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.sol .map { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 0.9rem; }
.sol h3 { font-size: 1.25rem; color: var(--slate-900); }
.sol .tech {
  font-family: var(--mono); font-size: 0.74rem; color: var(--slate-500);
  margin-top: 0.7rem; line-height: 1.5;
  background: var(--bg); border: 1px solid var(--slate-100);
  border-radius: 7px; padding: 0.55rem 0.7rem;
}
.sol p { margin-top: 0.85rem; color: var(--slate-500); font-size: 0.96rem; }
/* Highlighted card — blue feature */
.sol.feature {
  background: var(--blue-950);
  border-color: var(--blue-800);
  box-shadow: var(--shadow-lg);
}
.sol.feature .map { color: var(--blue-100); }
.sol.feature h3 { color: var(--white); }
.sol.feature p { color: var(--blue-100); }
.sol.feature .tech { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.20); color: #dbeafe; }
.sol.feature .pin {
  align-self: flex-start; margin-bottom: 0.9rem;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--sky-400); color: var(--blue-950); font-weight: 700;
  padding: 0.3rem 0.6rem; border-radius: 999px;
}
@media (min-width: 640px) { .solucoes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .solucoes-grid { grid-template-columns: repeat(3, 1fr); }
  .sol.feature { grid-row: span 1; }
}

/* =========================================================================
   SOLUÇÕES — painéis alternados (scroll-story, ritmo tipo ROQT)
   ========================================================================= */
.sol-rows { display: flex; flex-direction: column; gap: clamp(3.5rem, 8vw, 7rem); }
.sol-row { display: grid; grid-template-columns: 1fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
.sol-text { max-width: 36rem; }
.sol-text .ghost-no {
  font-family: var(--mono); font-weight: 800; line-height: .9;
  font-size: clamp(2.75rem, 7vw, 4.75rem); letter-spacing: -0.05em;
  color: var(--slate-200);
}
.sol-text .map {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-ink); margin-top: 0.75rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.sol-text h3 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); color: var(--slate-900); margin-top: 0.9rem; letter-spacing: -0.025em; }
.sol-text .tech {
  font-family: var(--mono); font-size: 0.76rem; color: var(--slate-500);
  margin-top: 1rem; line-height: 1.5; display: inline-block;
  background: var(--bg); border: 1px solid var(--slate-200);
  border-radius: 8px; padding: 0.6rem 0.85rem;
}
.sol-text p { margin-top: 1.1rem; color: var(--slate-600); font-size: clamp(1rem, 1.5vw, 1.12rem); }

/* Texto centralizado nos painéis 01, 02, 04, 05 (o 03 mantém alinhado à esquerda) */
.sol-row:not(:nth-child(3)) .sol-text { text-align: center; margin-inline: auto; }
.sol-text .feat-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--blue-600); color: var(--slate-900); font-weight: 700;
  padding: 0.35rem 0.7rem; border-radius: 999px; margin-bottom: 0.4rem;
}
.sol-row.is-feature .sol-text .ghost-no { color: var(--blue-100); }

/* ── Panel cards: Pulse dark theme ─────────────────────────────────── */
.panel-card {
  background: #011D31;
  border: 1px solid rgba(10,193,221,.20);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px rgba(10,193,221,.06),
              0 24px 60px -20px rgba(1,29,49,.55),
              0 0 40px -14px rgba(10,193,221,.12);
  overflow: hidden;
}
.panel-card .bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.78rem 1.05rem;
  border-bottom: 1px solid rgba(10,193,221,.12);
  background: rgba(0,0,0,.3);
}
.panel-card .bar i { width: 9px; height: 9px; border-radius: 50%; }
.panel-card .bar i:nth-child(1) { background: #ff5f57; }
.panel-card .bar i:nth-child(2) { background: #febc2e; }
.panel-card .bar i:nth-child(3) { background: #28c840; }
.panel-card .bar .t { margin-left: 0.5rem; font-family: var(--mono); font-size: 0.7rem; color: rgba(10,193,221,.65); }
.panel-card .pbody { padding: 1.1rem; min-height: 200px; }

/* schematic: kanban (CRM) — cards com conteúdo real de "deal" */
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.kanban .kcol { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 9px; padding: 0.6rem; display: flex; flex-direction: column; gap: 0.45rem; }
.kanban .kh { font-family: var(--mono); font-size: 0.58rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(10,193,221,.7); display: flex; align-items: center; justify-content: space-between; }
.kanban .kh .n { background: rgba(10,193,221,.18); color: #0AC1DD; border-radius: 999px; padding: 0 0.35rem; font-size: 0.56rem; line-height: 1.5; }
.kanban .kcard {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px; padding: 0.45rem 0.5rem; display: flex; align-items: center; gap: 0.4rem;
}
.kanban .kcard .av { width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,.14); flex: none; }
.kanban .kcard .lines { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.kanban .kcard .l1 { height: 5px; border-radius: 3px; background: rgba(255,255,255,.18); width: 80%; }
.kanban .kcard .l2 { height: 4px; border-radius: 3px; background: rgba(255,255,255,.10); width: 52%; }
.kanban .kcard .val { font-family: var(--mono); font-size: 0.56rem; font-weight: 600; color: rgba(255,255,255,.35); flex: none; }
.kanban .kcard.b { border-color: rgba(10,193,221,.45); box-shadow: inset 3px 0 0 #0AC1DD; }
.kanban .kcard.b .av { background: rgba(10,193,221,.25); }
.kanban .kcard.b .l1 { background: rgba(10,193,221,.5); }
.kanban .kcard.b .val { color: #0AC1DD; }

/* schematic: chat/automation flow (IA) — conversa animada (lead digitando) */
.flow { display: flex; flex-direction: column; gap: 0.55rem; min-height: 244px; justify-content: flex-end; }
.flow .msg, .flow .typing { max-width: 84%; }
.flow .msg {
  border-radius: 13px; padding: 0.6rem 0.82rem;
  font-family: var(--mono); font-size: 0.72rem; line-height: 1.45;
}
.flow .msg.sys { align-self: center; max-width: 100%; background: none; padding: 0.1rem 0 0.3rem; color: rgba(10,193,221,.45); font-size: 0.62rem; letter-spacing: .08em; }
/* IA = lado direito, ciano da marca */
.flow .msg.ia { align-self: flex-end; background: #0AC1DD; color: #011D31; font-weight: 600; border-bottom-right-radius: 4px; box-shadow: 0 6px 18px -6px rgba(10,193,221,.6); }
/* lead = branco-suave à esquerda */
.flow .msg.user { align-self: flex-start; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.85); border-bottom-left-radius: 4px; }
/* confirmação */
.flow .msg.done { align-self: flex-end; background: rgba(10,193,221,.14); border: 1px solid rgba(10,193,221,.35); color: #0AC1DD; font-weight: 500; border-bottom-right-radius: 4px; }
/* indicador "digitando" — bolinhas ciano */
.flow .typing { align-self: flex-start; display: inline-flex; gap: 5px; align-items: center; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14); border-radius: 13px; border-bottom-left-radius: 4px; padding: 0.7rem 0.95rem; }
.flow .typing span { width: 7px; height: 7px; border-radius: 50%; background: #0AC1DD; box-shadow: 0 0 6px rgba(10,193,221,.6); animation: typeBounce 1.2s infinite ease-in-out; }
.flow .typing span:nth-child(2) { animation-delay: .16s; }
.flow .typing span:nth-child(3) { animation-delay: .32s; }
@keyframes typeBounce { 0%,60%,100% { transform: translateY(0); opacity: .35; } 30% { transform: translateY(-5px); opacity: 1; } }
/* reveal sequencial dirigido por JS */
.flow [data-step] { display: none; animation: flowIn .42s cubic-bezier(.16,.84,.44,1) both; }
.flow [data-step].show { display: inline-flex; }
.flow .msg[data-step].show { display: block; }
@keyframes flowIn { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .flow [data-step] { display: block; animation: none; }
  .flow .typing[data-step] { display: none; }
  .flow .typing span { animation: none; }
}

/* schematic: checklist (Operação) — dark */
.checks { display: flex; flex-direction: column; gap: 0.75rem; }
.checks .ck { display: flex; align-items: center; gap: 0.75rem; }
.checks .box { width: 20px; height: 20px; border-radius: 5px; flex: none; display: grid; place-items: center; }
.checks .box.on { background: #0AC1DD; box-shadow: 0 0 10px rgba(10,193,221,.45); }
.checks .box.on::after { content: ""; width: 9px; height: 5px; border-left: 2px solid #011D31; border-bottom: 2px solid #011D31; transform: rotate(-45deg) translateY(-1px); }
.checks .box.off { border: 1px solid rgba(255,255,255,.18); }
.checks .ln { height: 9px; border-radius: 5px; background: rgba(255,255,255,.08); flex: 1; }
.checks .ck.on .ln { background: linear-gradient(90deg, rgba(10,193,221,.5), rgba(10,193,221,.12)); }

/* schematic: node diagram (Arquitetura) — dark */
.nodes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; align-items: center; }
.nodes .nd { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); border-radius: 8px; height: 46px; display: grid; place-items: center; font-family: var(--mono); font-size: 0.6rem; color: rgba(255,255,255,.55); letter-spacing: .03em; }
.nodes .nd.core { background: #0AC1DD; border-color: #0AC1DD; color: #011D31; font-weight: 700; box-shadow: 0 0 22px rgba(10,193,221,.4); }
.nodes .span2 { grid-column: span 2; }

@media (min-width: 900px) {
  .sol-row { grid-template-columns: 1.05fr 1.1fr; }
  .sol-row.flip .sol-text { order: 2; }
}

/* =========================================================================
   FAIXA DE MÉTRICAS — números gigantes + citação (estilo "Engine")
   ========================================================================= */
.metrics-band { background: var(--white); border-block: 1px solid var(--slate-100); }
.mb-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.mb-quote .eyebrow { margin-bottom: 1.3rem; }
.mb-quote blockquote { font-size: clamp(1.3rem, 2.6vw, 1.85rem); line-height: 1.35; color: var(--slate-900); font-weight: 500; letter-spacing: -0.02em; }
.mb-quote blockquote b { color: var(--accent-ink); font-weight: 600; }
.mb-attrib { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.6rem; }
.mb-attrib .av { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-50); border: 1px solid var(--blue-100); display: grid; place-items: center; flex: none; overflow: hidden; }
.mb-attrib .av img { width: 30px; height: 30px; object-fit: contain; }
.mb-attrib b { display: block; color: var(--slate-900); font-size: 0.96rem; }
.mb-attrib span { font-family: var(--mono); font-size: 0.72rem; color: var(--slate-500); letter-spacing: .04em; }
.mb-stats { display: grid; grid-template-columns: 1fr; gap: 0; }
.mb-stat { padding: 1.5rem 0; border-top: 1px solid var(--slate-200); }
.mb-stat:last-child { border-bottom: 1px solid var(--slate-200); }
.mb-stat .n { font-size: clamp(3rem, 8vw, 5.25rem); font-weight: 800; color: var(--accent-ink); letter-spacing: -0.04em; line-height: 0.95; display: flex; align-items: baseline; }
.mb-stat .n small { font-size: 0.42em; font-weight: 700; color: var(--slate-400); margin-left: 0.15em; }
.mb-stat .d { color: var(--slate-600); font-size: 1rem; margin-top: 0.6rem; max-width: 30rem; }
@media (min-width: 560px) { .mb-stats { grid-template-columns: repeat(3, 1fr); column-gap: 2rem; }
  .mb-stat { border-top: none; border-bottom: none; padding: 0; }
  .mb-stat .d { font-size: 0.92rem; } }
@media (min-width: 900px) { .mb-grid { grid-template-columns: 1fr 1.1fr; } }

/* =========================================================================
   SOLUÇÕES — painéis alternados (fim)
   ========================================================================= */
.cases { background: var(--bg); }

/* --- Frentes de cases --- */
.frente-block + .frente-block { margin-top: 3.5rem; padding-top: 3.5rem; border-top: 1px solid var(--slate-200); }

/* ─── CASES grid (4 cards) ────────────────────────────────────────────── */
.cases { background: var(--bg); }
.cases-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.case {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1.7rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .18s ease, box-shadow .2s ease;
}
.case:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.case-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.case .cliente { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); }
.case .setor { font-family: var(--mono); font-size: 0.68rem; color: var(--slate-400); letter-spacing: .06em; margin-top: 0.2rem; }
.case .eixo {
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 0.3rem 0.55rem; border-radius: 999px; white-space: nowrap;
}
.case dl { display: grid; gap: 0.75rem; }
.case .row { display: grid; gap: 0.2rem; }
.case .row dt { font-family: var(--mono); font-size: 0.62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); }
.case .row dd { font-size: 0.94rem; color: var(--slate-600); }
.case .row.resultado { background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius-sm); padding: 0.95rem 1.05rem; }
.case .row.resultado dt { color: #0AC1DD; }
.case .row.resultado dd { color: var(--slate-800); font-weight: 600; font-size: 0.96rem; }
.cases-note { margin-top: 1.6rem; font-family: var(--mono); font-size: 0.72rem; color: var(--slate-400); font-style: italic; }
@media (min-width: 760px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }

.frente-head { border-left: 4px solid; padding-left: 1.25rem; margin-bottom: 2rem; }
.frente-head.blue    { border-color: var(--blue-600); }
.frente-head.emerald { border-color: #059669; }
.frente-head.sky     { border-color: #0ea5e9; }

.frente-no {
  display: block;
  font-family: var(--mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.frente-head.blue .frente-no    { color: var(--accent-ink); }
.frente-head.emerald .frente-no { color: #059669; }
.frente-head.sky .frente-no     { color: #0ea5e9; }

.frente-head h3 {
  font-size: 1.6rem; font-weight: 800; color: var(--slate-900);
  margin: 0 0 0.5rem; line-height: 1.2;
}
@media (min-width: 640px) { .frente-head h3 { font-size: 2rem; } }
.frente-head > p { font-size: 0.9rem; color: var(--slate-500); max-width: 600px; line-height: 1.6; margin: 0; }

.frente-items { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px) { .frente-items { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .frente-items { grid-template-columns: repeat(3, 1fr); } }

.frente-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .2s ease;
}
.frente-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.frente-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--slate-900); margin: 0 0 0.75rem; line-height: 1.3; }
.frente-card > p { font-size: 0.88rem; color: var(--slate-600); line-height: 1.65; flex: 1; margin: 0; }

.frente-metric {
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--slate-100);
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700; line-height: 1.3;
}
.fdot { display: inline-block; width: 0.5rem; height: 0.5rem; border-radius: 50%; flex-shrink: 0; }
.frente-metric.blue    { color: var(--accent-ink); }
.frente-metric.blue .fdot { background: var(--blue-600); }
.frente-metric.emerald { color: #065f46; }
.frente-metric.emerald .fdot { background: #059669; }
.frente-metric.sky     { color: #0369a1; }
.frente-metric.sky .fdot { background: #0ea5e9; }

.cases-note {
  margin-top: 3rem;
  font-family: var(--mono); font-size: 0.72rem; color: var(--slate-400);
  display: flex; align-items: center; gap: 0.5rem;
}

/* =========================================================================
   DADOS  (seção 5) — DESTAQUE VISUAL, fundo azul escuro
   ========================================================================= */
.dados {
  background: var(--blue-950);
  background-image:
    radial-gradient(60% 50% at 90% 0%, rgba(10,193,221,.18), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(10,193,221,.25), transparent 60%);
  color: var(--white);
  position: relative;
}
.dados .eyebrow { color: var(--sky-400); }
.dados .eyebrow::before { background: var(--sky-400); }
.dados .section-head h2 { color: var(--white); }
.dados .section-head p { color: #b9d2e8; max-width: 44rem; }
.dados-pillars {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.pillar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: background .2s, border-color .2s, transform .18s;
}
.pillar:hover { background: rgba(255,255,255,.08); border-color: rgba(10,193,221,.4); transform: translateY(-3px); }
.pillar .pn { font-family: var(--mono); font-size: 0.7rem; color: var(--sky-400); letter-spacing: .1em; }
.pillar h3 { font-size: 1.1rem; color: var(--white); margin-top: 0.7rem; }
.pillar p { color: #a8b4e0; font-size: 0.9rem; margin-top: 0.5rem; }
@media (min-width: 600px) { .dados-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .dados-pillars { grid-template-columns: repeat(4, 1fr); } }

/* Dashboard viewer — janela Power BI interativa (uma por vez, legível, com abas) */
.dash-viewer {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(56,189,248,.06);
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
/* barra de janela */
.dash-bar {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.8rem 1.1rem;
  background: rgba(1,29,49,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.dash-bar .dots { display: flex; gap: 0.4rem; }
.dash-bar .dots i { width: 11px; height: 11px; border-radius: 50%; }
.dash-bar .dots i:nth-child(1) { background: #ff5f57; }
.dash-bar .dots i:nth-child(2) { background: #febc2e; }
.dash-bar .dots i:nth-child(3) { background: #28c840; }
.dash-bar .winlabel { font-family: var(--mono); font-size: 0.72rem; color: rgba(255,255,255,.6); letter-spacing: .03em; }
.dash-bar .live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: .08em; text-transform: uppercase;
  color: #6ee7a8; background: rgba(40,200,100,.12);
  border: 1px solid rgba(40,200,100,.3); border-radius: 999px; padding: 0.28rem 0.6rem;
}
.dash-bar .live .pip { width: 7px; height: 7px; border-radius: 50%; background: #28c840; animation: livePip 2s ease-out infinite; }
@keyframes livePip { 0% { box-shadow: 0 0 0 0 rgba(40,200,100,.55); } 70% { box-shadow: 0 0 0 7px rgba(40,200,100,0); } 100% { box-shadow: 0 0 0 0 rgba(40,200,100,0); } }

/* palco — mostra o dashboard ativo INTEIRO (sem corte) */
.dash-stage { position: relative; aspect-ratio: 16 / 9; background: #ffffff; }
.dash-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.012);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.dash-slide.is-active { opacity: 1; transform: none; }
.dash-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }

/* abas de troca */
.dash-tabs {
  display: grid; grid-template-columns: 1fr; gap: 0.5rem;
  padding: 0.8rem; background: rgba(1,29,49,.4);
  border-top: 1px solid rgba(255,255,255,.08);
}
.dash-tab {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 0.9rem; text-align: left; cursor: pointer;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px; color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
}
.dash-tab:hover { background: rgba(255,255,255,.07); transform: translateY(-1px); }
.dash-tab .tdot { width: 9px; height: 9px; border-radius: 50%; background: var(--tc, var(--sky-400)); flex: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--tc, var(--sky-400)) 22%, transparent); }
.dash-tab .tlbl { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.dash-tab .tlbl b { font-size: 0.88rem; font-weight: 600; letter-spacing: -0.01em; }
.dash-tab .tlbl span { font-family: var(--mono); font-size: 0.64rem; color: rgba(255,255,255,.5); letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-tab[aria-selected="true"] { background: rgba(56,189,248,.12); border-color: rgba(56,189,248,.5); }
.dash-tab[aria-selected="true"] .tlbl span { color: var(--sky-400); }
.dash-tab .prog { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--sky-400); transform-origin: left; transform: scaleX(0); }
.dash-tab[aria-selected="true"].run .prog { animation: dashProg var(--dash-hold, 6s) linear forwards; }
@keyframes dashProg { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (min-width: 720px) { .dash-tabs { grid-template-columns: repeat(4, 1fr); } }
@media (prefers-reduced-motion: reduce) {
  .dash-slide { transition: none; }
  .dash-tab .prog { display: none; }
}
.dados-quote {
  border-left: 3px solid var(--sky-400);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.dados-quote p { font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--white); font-weight: 500; letter-spacing: -0.01em; line-height: 1.4; }
.dados-quote p b { color: var(--sky-400); font-weight: 600; }

/* =========================================================================
   MÉTODO  (seção 6) — timeline 4 etapas
   ========================================================================= */
.metodo-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; counter-reset: step; }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.step .no {
  font-family: var(--mono); font-size: 0.78rem; font-weight: 700;
  color: var(--accent-ink); letter-spacing: .1em;
}
.step .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-50); border: 1px solid var(--blue-100); display: grid; place-items: center; margin: 0.9rem 0 1.1rem; }
.step .ico span { width: 13px; height: 13px; background: var(--blue-600); border-radius: 3px; }
.step:nth-child(1) .ico span { border-radius: 3px; }
.step:nth-child(2) .ico span { border-radius: 50%; }
.step:nth-child(3) .ico span { transform: rotate(45deg); }
.step:nth-child(4) .ico span { border-radius: 3px; background: var(--sky-400); }
.step h3 { font-size: 1.2rem; color: var(--slate-900); }
.step p { margin-top: 0.6rem; color: var(--slate-500); font-size: 0.94rem; }
.step .connector {
  display: none;
}
@media (min-width: 760px) { .metodo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) {
  .metodo-grid { grid-template-columns: repeat(4, 1fr); }
  .step::after {
    content: "";
    position: absolute; top: calc(1.7rem + 20px); right: -0.85rem;
    width: 1.1rem; height: 1px; background: var(--slate-300);
  }
  .step:last-child::after { display: none; }
}

/* =========================================================================
   SOBRE  (seção 7)
   ========================================================================= */
.sobre { background: var(--bg); }
.sobre-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.sobre-photo { position: relative; }
.brand-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--blue-900), var(--blue-950));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 2rem;
}
.brand-panel::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(55% 45% at 50% 18%, rgba(10,193,221,.16), transparent 70%),
    radial-gradient(50% 40% at 80% 100%, rgba(10,193,221,.30), transparent 70%);
}
.brand-panel > * { position: relative; }
.bp-header { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.10); }
.brand-panel-logo { width: 160px; height: auto; }
.brand-panel-tag { font-family: var(--mono); font-size: 0.65rem; color: var(--sky-400); letter-spacing: .04em; }
.bp-tagline { font-family: var(--display); font-weight: 700; font-size: clamp(1rem, 2vw, 1.15rem); color: #fff; line-height: 1.45; margin-top: 1.5rem; }
.bp-services { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-direction: column; flex: 1; }
.bp-services li { display: flex; align-items: flex-start; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.bp-services li:last-child { border-bottom: none; }
.bp-no { font-family: var(--mono); font-size: 0.65rem; color: var(--sky-400); min-width: 1.6rem; margin-top: 0.15rem; flex-shrink: 0; }
.bp-services strong { display: block; font-size: 0.875rem; font-weight: 600; color: #fff; line-height: 1.2; }
.bp-services span { display: block; font-family: var(--mono); font-size: 0.68rem; color: rgba(180,200,240,.55); margin-top: 0.2rem; }
.bp-footer { margin-top: 1.5rem; font-family: var(--mono); font-size: 0.75rem; color: var(--sky-400); letter-spacing: .05em; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.sobre-body h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--slate-900); margin-top: 1rem; line-height: 1.25; }
.sobre-body p { color: var(--slate-600); font-size: 1.04rem; margin-top: 1.2rem; }
.sobre-body p + p { margin-top: 1rem; }
.stack-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); margin: 2rem 0 1rem; }
.stack { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.stack span {
  font-family: var(--mono); font-size: 0.78rem; font-weight: 500;
  color: var(--slate-700); background: var(--white);
  border: 1px solid var(--slate-200); border-radius: 7px;
  padding: 0.45rem 0.75rem;
  transition: border-color .15s, color .15s;
}
.stack span:hover { border-color: var(--blue-300, #7fb6ff); color: var(--blue-700); }
@media (min-width: 880px) { .sobre-grid { grid-template-columns: 0.85fr 1.15fr; } }

/* =========================================================================
   CONTATO  (seção 8)
   ========================================================================= */
.contato-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contato-body h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); color: var(--slate-900); margin-top: 1rem; }
.contato-body p { color: var(--slate-500); font-size: 1.08rem; margin-top: 1.2rem; max-width: 30rem; }
.contato-alt { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.9rem; }
.alt-link {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1rem 1.1rem; border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm); background: var(--white);
  transition: border-color .15s, transform .15s, box-shadow .2s;
}
.alt-link:hover { border-color: var(--slate-300); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.alt-link .ic { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.alt-link > span:last-child { display: flex; flex-direction: column; justify-content: center; min-width: 0; gap: 0.15rem; }
.alt-link.wa .ic { background: #dcfce7; }
.alt-link.wa .ic svg { color: #16a34a; }
.alt-link.em .ic { background: var(--blue-50); }
.alt-link.em .ic svg { color: var(--accent-ink); }
.alt-link .t { display: block; font-weight: 600; color: var(--slate-900); font-size: 0.96rem; line-height: 1.25; }
.alt-link .s { display: block; font-family: var(--mono); font-size: 0.74rem; color: var(--slate-500); line-height: 1.3; }

.form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.45rem; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 0.96rem;
  color: var(--slate-900);
  background: var(--bg);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,193,221,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn { width: 100%; margin-top: 0.5rem; }
.form-note { font-family: var(--mono); font-size: 0.7rem; color: var(--slate-400); text-align: center; margin-top: 1rem; }
.form-ok {
  display: none;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  color: var(--blue-800); border-radius: var(--radius-sm);
  padding: 1rem; font-size: 0.92rem; text-align: center; margin-top: 1rem;
}
@media (min-width: 860px) { .contato-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--slate-900); color: var(--slate-300); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--slate-800); }
.footer .brand b, .footer .brand span { color: var(--white); }
.footer .pos { color: var(--slate-400); margin-top: 1rem; max-width: 22rem; font-size: 0.95rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-links a { font-size: 0.92rem; color: var(--slate-300); transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 1.75rem; }
.footer-bottom p { font-family: var(--mono); font-size: 0.74rem; color: var(--slate-500); }
@media (min-width: 760px) {
  .footer-top { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .footer-links { justify-content: flex-end; }
}

/* =========================================================================
   MOTION — moved to its own module: see motion.css + motion.js + MOTION.md
   This keeps every animation in one documented, portable place so it can be
   recognized and re-applied (e.g. ported into the Astro codebase) without
   hunting through component styles. Do not add animation rules here.
   ========================================================================= */



/* =========================================================================
   SOLUÇÕES — bento grid (Jun 2026) — substitui .sol-rows / .sol-row
   Cards light, ghost numbers ciano, ECG animado, chat digitando.
   ========================================================================= */

.sol-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "dados dados ia"
    "crm op   ia"
    "arch arch arch";
  gap: 1.1rem;
}
.sol-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.sol-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--slate-300); }
/* ghost number background */
.sol-card::before {
  content: attr(data-no);
  position: absolute; top: -0.18em; right: 0.08em;
  font-family: var(--display); font-weight: 900; font-size: 9rem; line-height: 1;
  color: rgba(10,193,221,.07); letter-spacing: -0.04em;
  pointer-events: none; user-select: none; z-index: 0;
}
.sol-card > * { position: relative; z-index: 1; }

/* grid area assignments */
.sol-dados { grid-area: dados; }
.sol-ia    { grid-area: ia; }
.sol-crm   { grid-area: crm; }
.sol-op    { grid-area: op; }
.sol-arch  { grid-area: arch; }

/* eyebrow tag */
.sol-tag {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #0AC1DD;
  display: inline-flex; align-items: center; gap: 0.45rem; align-self: flex-start;
}
.sol-tag::before { content: ""; width: 18px; height: 2px; background: #0AC1DD; border-radius: 2px; flex: none; }

/* headings & body */
.sol-card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.18rem, 2.2vw, 1.5rem); color: var(--slate-900);
  letter-spacing: -0.025em; line-height: 1.15;
}
.sol-card > p { color: var(--slate-600); font-size: 0.95rem; line-height: 1.65; }

/* tech footnote */
.sol-tech {
  font-family: var(--mono); font-size: 0.68rem; color: var(--slate-400);
  letter-spacing: 0.02em; margin-top: auto; padding-top: 0.75rem;
  border-top: 1px solid var(--slate-100);
}

/* ---- 01 Dados: ECG + KPIs ---- */
.sol-dados-ecg { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.2rem; }
.sol-dados-ecg svg { width: 100%; height: 56px; }
.ecg-bg { stroke: rgba(10,193,221,.12); stroke-width: 1; fill: none; }
.ecg-line {
  stroke: #0AC1DD; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  fill: none; filter: drop-shadow(0 0 5px rgba(10,193,221,.7));
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
}
.sol-dados.in .ecg-line { animation: ecgDraw 2.4s cubic-bezier(.4,0,.2,1) .4s forwards; }
@keyframes ecgDraw { to { stroke-dashoffset: 0; } }
.sol-kpis { display: flex; gap: 2rem; flex-wrap: wrap; }
.sol-kpi { display: flex; flex-direction: column; gap: .2rem; }
.sol-kpi-n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 2rem); color: var(--slate-900); letter-spacing: -0.03em;
}
.sol-kpi-l { font-family: var(--mono); font-size: .68rem; color: var(--slate-400); letter-spacing: .04em; }

/* ---- 02 CRM: pipeline ---- */
.sol-pipeline { display: flex; align-items: center; gap: .5rem; margin: .5rem 0; flex-wrap: wrap; }
.sol-stage { display: flex; flex-direction: column; align-items: center; gap: .35rem; flex: 1; min-width: 52px; }
.ss-n { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--slate-900); letter-spacing: -.03em; line-height: 1; }
.sol-stage-win .ss-n { color: #0AC1DD; }
.ss-bar { width: 100%; height: 6px; background: var(--slate-100); border-radius: 999px; overflow: hidden; }
.ss-bar i { display: block; height: 100%; background: var(--slate-300); border-radius: 999px; }
.sol-stage-win .ss-bar i { background: #0AC1DD; box-shadow: 0 0 8px rgba(10,193,221,.5); }
.ss-l { font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-400); }
.ss-arr { width: 18px; height: 18px; color: var(--slate-300); flex: none; }

/* ---- 03 IA: chat container ---- */
.sol-chat {
  display: flex; flex-direction: column; gap: .6rem;
  background: var(--bg); border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 1rem; flex: 1;
}
.chat-sys {
  align-self: center;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .06em;
  color: var(--slate-400); text-transform: uppercase;
}
.chat-msg {
  max-width: 86%; border-radius: 14px; padding: .65rem .85rem;
  font-family: var(--mono); font-size: .74rem; line-height: 1.5;
}
.chat-ia {
  align-self: flex-end; background: #0AC1DD; color: #011D31; font-weight: 600;
  border-bottom-right-radius: 4px; box-shadow: 0 4px 14px -4px rgba(10,193,221,.5);
}
.chat-user {
  align-self: flex-start; background: var(--white);
  border: 1px solid var(--slate-200); color: var(--slate-700); border-bottom-left-radius: 4px;
}
.chat-done {
  align-self: flex-end; background: rgba(10,193,221,.10);
  border: 1px solid rgba(10,193,221,.30); color: #0892a8;
  font-weight: 500; border-bottom-right-radius: 4px;
}
.chat-typing {
  align-self: flex-start; display: inline-flex; gap: 4px; align-items: center;
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: 14px; border-bottom-left-radius: 4px; padding: .65rem .85rem;
}
.chat-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #0AC1DD;
  animation: typeDot 1.1s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: .18s; }
.chat-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typeDot {
  0%,60%,100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.c-hidden { display: none !important; }
.c-pop { animation: chatPop .32s cubic-bezier(.16,.84,.44,1) both; }
@keyframes chatPop { from { opacity:0; transform: translateY(6px) scale(.96); } to { opacity:1; transform:none; } }

/* ---- 04 Operação: steps ---- */
.sol-steps { display: flex; flex-direction: column; gap: .5rem; margin-top: .2rem; }
.sol-step {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .8rem; background: var(--bg);
  border: 1px solid var(--slate-100); border-radius: var(--radius-sm);
}
.sol-step-n { font-family: var(--mono); font-size: .68rem; font-weight: 700; color: #0AC1DD; letter-spacing: .06em; flex: none; }
.sol-step-l { font-size: .9rem; font-weight: 500; color: var(--slate-700); }

/* ---- 05 Arquitetura: full-width node flow ---- */
.sol-arch-inner { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.sol-arch-copy { flex: 1; min-width: 200px; }
.sol-arch-flow { display: flex; align-items: center; flex: 1.2; min-width: 240px; }
.sol-arch-n {
  font-family: var(--mono); font-size: .74rem; font-weight: 600; color: var(--slate-700);
  background: var(--bg); border: 1px solid var(--slate-200);
  border-radius: 8px; padding: .7rem .9rem; white-space: nowrap;
}
.sol-arch-n-core {
  background: #0AC1DD; border-color: #0AC1DD; color: #011D31;
  box-shadow: 0 0 16px rgba(10,193,221,.4);
}
.sol-arch-line { flex: 1; height: 1px; background: var(--slate-200); position: relative; }
.sol-arch-line::after {
  content: ""; position: absolute; right: -4px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--slate-300); border-top: 1px solid var(--slate-300);
  transform: rotate(45deg);
}

/* responsive */
@media (max-width: 900px) {
  .sol-bento { grid-template-columns: 1fr 1fr; grid-template-areas: "dados dados" "ia ia" "crm op" "arch arch"; }
}
@media (max-width: 560px) {
  .sol-bento { grid-template-columns: 1fr; grid-template-areas: "dados" "ia" "crm" "op" "arch"; }
}
@media (prefers-reduced-motion: reduce) {
  .ecg-line { stroke-dashoffset: 0; animation: none; }
  .chat-typing span { animation: none; opacity: 1; }
  .c-pop { animation: none; }
}
