/* =====================================================================
   ESOLUÇÕES — sistema visual

   Direção: SaaS moderno e claro. Fundo quase branco, cards em cinza muito
   claro com um ou outro invertido em navy para criar ritmo, tipografia
   geométrica pesada em navy e um azul elétrico como único acento — ele
   aparece nos botões, na mancha do hero e em poucos destaques.

   Índice
     1. Tokens            8. Faixa de contexto    15. Diferenciais
     2. Base              9. Seções               16. Para quem é
     3. Movimento        10. Problema             17. Projetos e cases
     4. Reveal           11. Serviços e produtos  18. Formulário/contato
     5. Botões           12. Painéis do sistema   19. CTA e rodapé
     6. Header           13. Processo             20. Flutuante
     7. Hero e mockup    14. Benefícios           21. Responsivo
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------------- */
:root {
  /* Navy — títulos, cards invertidos, rodapé */
  --navy:    #111A38;
  --navy-2:  #1B2650;
  --navy-3:  #28356A;

  /* Azul elétrico — o acento */
  --blue:      #3D4FE8;
  --blue-2:    #5766F2;
  --blue-soft: #E4E7FD;
  --blue-mist: #F1F3FE;

  /* Superfícies */
  --bg:      #F7F8FB;
  --card:    #EFF1F6;
  --card-2:  #E6E9F1;
  --paper:   #FFFFFF;
  --line:    #E4E7EF;

  /* Texto */
  --text:  #3A4159;
  --muted: #7B8299;
  --faint: #A3A9BC;

  /* Estados */
  --ok:        #1F8A5E;
  --ok-soft:   #E1F3EB;
  --warn:      #96671B;
  --warn-soft: #FAF0DC;
  --alert:     #C0392B;
  --wa:        #25D366;

  /* Formas */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(17, 26, 56, .04);
  --sh-md: 0 10px 34px rgba(17, 26, 56, .08);
  --sh-lg: 0 26px 64px rgba(17, 26, 56, .14);
  --sh-blue: 0 12px 30px rgba(61, 79, 232, .28);

  --ease: cubic-bezier(.22, .8, .3, 1);
  /* Desaceleração longa, sem repique — para hovers que devem parecer
     um respiro e não um clique. */
  --ease-soft: cubic-bezier(.25, .6, .25, 1);
  /* Ainda mais lenta na partida que a --ease-soft: o efeito cresce em vez
     de disparar. Para o hover dos cards, que deve mal ser percebido. */
  --ease-hover: cubic-bezier(.33, .04, .24, 1);

  /* Ritmo */
  --edge:  clamp(1rem, 3vw, 2rem);
  --gap:   clamp(.85rem, 1.6vw, 1.15rem);
  --pad-y: clamp(3.5rem, 8vw, 6.5rem);
  --wrap:  1200px;
  /* Altura do cabeçalho — o menu mobile se ancora nela. */
  --header-h: clamp(84px, 9vw, 110px);
}

/* ---------------------------------------------------------------------
   2. BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--navy);
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong, b { font-weight: 700; color: var(--navy); }

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

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

.wrap {
  width: min(100% - (var(--edge) * 2), var(--wrap));
  margin-inline: auto;
}

.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 120; pointer-events: none; }
.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue);
  transition: width .1s linear;
}

/* ---------------------------------------------------------------------
   3. MOVIMENTO
   --------------------------------------------------------------------- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes morph {
  0%, 100% { border-radius: 58% 42% 45% 55% / 55% 48% 52% 45%; transform: rotate(0deg); }
  50%      { border-radius: 42% 58% 56% 44% / 46% 56% 44% 54%; transform: rotate(8deg); }
}
@keyframes driftSoft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -10px, 0); }
}
@keyframes spinSlow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes fabSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes darkHalo {
  0%, 100% { transform: scale(1);    opacity: .7; }
  50%      { transform: scale(1.14); opacity: 1; }
}
@keyframes cardShine {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 105%; opacity: 0; }
}
@keyframes fabShine {
  0%       { transform: translateX(-140%); }
  55%,100% { transform: translateX(140%); }
}
@keyframes fabGlow {
  0%, 100% { box-shadow: 0 14px 34px rgba(37, 211, 102, .35), 0 0 14px rgba(37, 211, 102, .25); }
  50%      { box-shadow: 0 16px 40px rgba(37, 211, 102, .45), 0 0 28px rgba(120, 255, 180, .5); }
}
@keyframes ringOut {
  0%        { transform: scale(.9); opacity: .45; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   4. ENTRADA E REVEAL
   Só escondem conteúdo sob `.js` — sem JavaScript a página aparece inteira.
   --------------------------------------------------------------------- */
.js .intro {
  opacity: 0;
  transform: translateY(20px);
  animation: introIn .8s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes introIn { to { opacity: 1; transform: none; } }

.js .reveal {
  opacity: 0;
  transition: opacity .65s ease, transform .65s var(--ease), filter .65s ease;
}
.js .reveal[data-anim="up"],
.js .reveal:not([data-anim])   { transform: translateY(24px); }
.js .reveal[data-anim="left"]  { transform: translateX(-26px); }
.js .reveal[data-anim="right"] { transform: translateX(26px); }
.js .reveal[data-anim="scale"] { transform: scale(.95); }
.js .reveal[data-anim="blur"]  { filter: blur(8px); transform: translateY(14px); }
.js .reveal[data-anim="flip"]  { transform: translateY(24px); }

.js .reveal.is-in { opacity: 1; transform: none; filter: none; }

/* ---------------------------------------------------------------------
   5. BOTÕES
   --------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.75rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: -.012em;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: background-color .25s ease, color .25s ease,
              box-shadow .25s ease, transform .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn__ico { width: 1.05em; height: 1.05em; flex: none; transition: transform .3s var(--ease); }
.btn:hover .btn__ico { transform: translateX(4px); }
.btn__ico--left { width: 1.2em; height: 1.2em; }
.btn:hover .btn__ico--left { transform: none; }

/* O azul elétrico é a assinatura do CTA. */
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn--primary:hover { background: var(--blue-2); box-shadow: 0 16px 38px rgba(61, 79, 232, .45), 0 0 24px rgba(61, 79, 232, .35); }

/* No hover, a luz gira ao redor do CTA azul — mesmo efeito do botão do WhatsApp. */
.btn--primary:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220%;
  height: 220%;
  margin-left: -110%;
  margin-top: -110%;
  min-width: 320px;
  min-height: 320px;
  transform-origin: 50% 50%;
  background: conic-gradient(
    rgba(255, 255, 255, .10) 0deg,
    rgba(255, 255, 255, 1)   40deg,
    rgba(255, 255, 255, .10) 90deg,
    rgba(255, 255, 255, .10) 180deg,
    rgba(255, 255, 255, 1)   220deg,
    rgba(255, 255, 255, .10) 270deg,
    rgba(255, 255, 255, .10) 360deg);
  animation: fabSpin 2s linear infinite;
  pointer-events: none;
  z-index: -2;
}
.btn--primary:hover::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  opacity: .94;
  pointer-events: none;
  z-index: -1;
}

.btn--ghost { background: var(--paper); color: var(--navy); box-shadow: inset 0 0 0 1px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy), var(--sh-md); }

.btn--wa {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5B 100%);
  color: #FFF;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .3);
}
.btn--wa:hover { box-shadow: 0 16px 38px rgba(37, 211, 102, .45), 0 0 24px rgba(37, 211, 102, .35); }

/* No hover, a mesma luz do botão flutuante gira ao redor do CTA. */
.btn--wa:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220%;
  height: 220%;
  margin-left: -110%;
  margin-top: -110%;
  min-width: 320px;
  min-height: 320px;
  transform-origin: 50% 50%;
  background: conic-gradient(
    rgba(255, 255, 255, .10) 0deg,
    rgba(255, 255, 255, 1)   40deg,
    rgba(255, 255, 255, .10) 90deg,
    rgba(255, 255, 255, .10) 180deg,
    rgba(255, 255, 255, 1)   220deg,
    rgba(255, 255, 255, .10) 270deg,
    rgba(255, 255, 255, .10) 360deg);
  animation: fabSpin 2s linear infinite;
  pointer-events: none;
  z-index: -2;
}
.btn--wa:hover::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, #25D366 0%, #17B054 100%);
  opacity: .94;
  pointer-events: none;
  z-index: -1;
}

.btn--sm { padding: .62rem 1.3rem; font-size: .86rem; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }

/* Sobre bloco escuro, o secundário vira contorno claro. */
.section--dark .btn--ghost,
.split__panel .btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3);
}
.section--dark .btn--ghost:hover { background: rgba(255, 255, 255, .1); box-shadow: inset 0 0 0 1px #fff; }

/* Efeitos do design anterior neutralizados; as classes seguem no HTML. */
.btn--shine::after { content: none; }
.btn--pulse::before { content: none; }

/* ---------------------------------------------------------------------
   6. HEADER — links centralizados, CTA azul à direita
   --------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  transition: background-color .3s ease, box-shadow .3s ease;
}
.header.is-stuck {
  background: rgba(247, 248, 251, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header__inner {
  width: min(100% - (var(--edge) * 2), var(--wrap));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--navy);
}
/* A marca é a logo em imagem — altura fluida, largura proporcional. */
.brand__img {
  display: block;
  width: auto;
  height: clamp(58px, 6.4vw, 86px);
  transition: transform .35s var(--ease), filter .3s ease;
}
.brand:hover .brand__img { transform: scale(1.04); }

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: var(--blue);
  color: #fff;
  transition: transform .35s var(--ease), background-color .3s ease;
}
.brand:hover .brand__mark { transform: rotate(-8deg); background: var(--navy); }
.brand__mark svg { width: 20px; height: 20px; }
.brand__text-alt { color: var(--navy); }
.brand__stack { display: flex; flex-direction: column; line-height: 1.15; }
.brand__sig {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--faint);
}

/* A navegação ocupa o centro; o CTA é empurrado para a direita. */
.nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  margin-inline: auto;
}

.nav a[data-spy],
.nav a[data-route] {
  position: relative;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s ease;
}
.nav a[data-route]::after,
.nav a[data-spy]::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -7px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.nav a[data-spy]:hover,     .nav a[data-route]:hover,
.nav a[data-spy].is-active, .nav a[data-route].is-active { color: var(--navy); }
.nav a[data-spy]:hover::after,     .nav a[data-route]:hover::after,
.nav a[data-spy].is-active::after, .nav a[data-route].is-active::after { width: 100%; }

/* O CTA sai do fluxo centralizado e encosta na direita. */
.nav__cta { margin-left: .8rem; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 13px 11px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .3s var(--ease), opacity .2s ease;
}
.menu-toggle span + span { margin-top: 5px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   7. HERO — claro, com a mancha azul atrás do visual
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  background: var(--bg);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Mancha azul viva — o elemento que dá energia ao layout. */
.blob--1 {
  position: absolute;
  top: 8%; right: 4%;
  width: clamp(260px, 30vw, 460px);
  aspect-ratio: 1;
  background: var(--blue);
  border-radius: 58% 42% 45% 55% / 55% 48% 52% 45%;
  animation: morph 16s ease-in-out infinite;
}
/* Painel cinza que dá base ao mockup. */
.blob--2 {
  position: absolute;
  top: 24%; right: 8%;
  width: clamp(280px, 34vw, 520px);
  height: clamp(220px, 26vw, 380px);
  background: var(--card);
  border-radius: var(--r-2xl);
}
/* Pontinho azul solto. */
.blob--3 {
  position: absolute;
  top: 16%; left: 5%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  animation: driftSoft 7s ease-in-out infinite;
}
.blob--4 {
  position: absolute;
  top: -30%; left: -6%;
  width: clamp(280px, 30vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue-mist);
}
.blob--5 {
  position: absolute;
  bottom: -35%; right: -4%;
  width: clamp(240px, 26vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue-mist);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 26, 56, .08) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: radial-gradient(70% 55% at 12% 30%, #000 5%, transparent 70%);
  -webkit-mask-image: radial-gradient(70% 55% at 12% 30%, #000 5%, transparent 70%);
}

/* Faixa de abertura: cabeçalho central acima do hero. Fica fora do
   .hero para não disputar espaço com os blobs, que são absolutos. O
   respiro até o título do hero vem do padding-top do próprio .hero. */
.hero-head {
  background: var(--bg);
  padding: clamp(2rem, 5vw, 4rem) 0 0;
}
.hero-head .section__head { margin-bottom: 0; }
.hero-head .chain { margin-top: clamp(1.9rem, 3.8vw, 2.75rem); }
.hero-head + .hero { padding-top: clamp(2.25rem, 4.5vw, 3.5rem); }

.hero__inner {
  position: relative;
  width: min(100% - (var(--edge) * 2), var(--wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.badge__pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: dotPulse 2.4s ease-in-out infinite;
}

/* Título gigante em navy, quebrado em duas vozes pela .hl. */
.hero__title {
  margin: 1.4rem 0 0;
  font-size: clamp(2.6rem, 6.6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.048em;
}
.hl { display: block; color: var(--navy); }

.hero__lead {
  margin-top: 1.4rem;
  max-width: 42ch;
  font-size: clamp(.98rem, 1.3vw, 1.06rem);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.2rem; }

.hero__note {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  max-width: 46ch;
  font-size: .9rem;
}

/* Mockup ------------------------------------------------------------- */
.mock { position: relative; padding-bottom: 2.25rem; animation: floatY 9s ease-in-out infinite; }

.mock__laptop {
  border-radius: var(--r-xl) var(--r-xl) var(--r-sm) var(--r-sm);
  background: var(--navy);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.mock__bar { display: flex; align-items: center; gap: .4rem; padding: .62rem .9rem; background: var(--navy); }
.mock__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .2); }
.mock__url { margin-left: .7rem; font-size: .66rem; color: rgba(255, 255, 255, .45); }

/* Usado pelo hero do Eisy Conf, que ainda mostra o mockup esquemático.
   Na home, `.mock__screen` é redefinido adiante como palco das réplicas. */
.mock__screen { display: grid; grid-template-columns: 52px minmax(0, 1fr); background: var(--bg); min-height: 292px; }
.mock__side { display: flex; flex-direction: column; gap: .5rem; padding: .85rem .55rem; background: var(--navy-2); }
.mock__item { height: 7px; border-radius: 3px; background: rgba(255, 255, 255, .14); }
.mock__item.is-on { background: var(--blue); }

.mock__main { display: flex; flex-direction: column; gap: .7rem; padding: .9rem; }
.mock__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.mock__kpi { padding: .55rem .62rem; border-radius: var(--r-sm); background: var(--paper); }
.mock__kpi b { display: block; font-size: 1rem; font-weight: 800; letter-spacing: -.03em; color: var(--navy); }
.mock__kpi i { font-style: normal; font-size: .58rem; color: var(--faint); }

.mock__chart {
  display: flex; align-items: flex-end; gap: .3rem;
  height: 88px; padding: .6rem;
  border-radius: var(--r-sm);
  background: var(--paper);
}

.mock__rows { display: flex; flex-direction: column; gap: .3rem; }
.mock__row { display: flex; align-items: center; gap: .55rem; padding: .42rem .6rem; border-radius: var(--r-sm); background: var(--paper); }
.mock__row > span { flex: 1; height: 5px; border-radius: 3px; background: var(--card); }
.mock__row em { font-style: normal; font-size: .56rem; font-weight: 700; padding: .1rem .45rem; border-radius: var(--r-pill); }
.mock__row em.ok   { background: var(--ok-soft);    color: var(--ok); }
.mock__row em.run  { background: var(--blue-soft);  color: var(--blue); }
.mock__row em.wait { background: var(--card);       color: var(--muted); }

.mock__base { height: 10px; background: var(--navy-2); }

.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .95rem;
  border-radius: var(--r-pill);
  background: var(--paper);
  box-shadow: var(--sh-md);
  font-size: .76rem;
  font-weight: 700;
  color: var(--navy);
}
.chip svg { width: 14px; height: 14px; color: var(--blue); }
.chip--1 { top: 8%; left: -28px; }
.chip--2 { bottom: 18%; right: -22px; }

.seal {
  position: absolute;
  left: -44px; bottom: 8%;
  display: grid;
  place-items: center;
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--sh-md);
}
.seal > * { grid-area: 1 / 1; }
.seal__ring { width: 100%; height: 100%; animation: spinSlow 26s linear infinite; }
.seal__ring text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 8.6px;
  font-weight: 700;
  letter-spacing: .1em;
  fill: currentColor;
}
.seal__core { font-size: .82rem; font-weight: 800; letter-spacing: -.02em; color: var(--blue-2); }

.mock__phone {
  position: absolute;
  right: -12px; bottom: 0;
  width: 108px;
  padding: 5px;
  border-radius: 20px;
  background: var(--navy);
  box-shadow: var(--sh-lg);
}
.mock__phone-screen {
  display: flex; flex-direction: column; gap: .4rem;
  padding: .5rem .45rem;
  border-radius: 16px;
  background: var(--bg);
  min-height: 162px;
}
.mock__phone-title { height: 6px; width: 58%; border-radius: 3px; background: var(--navy); }
.mock__phone-kpi { padding: .42rem .48rem; border-radius: var(--r-sm); background: var(--blue-soft); }
.mock__phone-kpi b { display: block; font-size: .9rem; font-weight: 800; color: var(--blue); }
.mock__phone-kpi i { font-style: normal; font-size: .52rem; color: var(--muted); }
.mock__phone-line { height: 5px; border-radius: 3px; background: var(--card); }
.mock__phone-line.short { width: 62%; }

/* Barras animadas — crescem do zero ao entrar na tela. As medidas reais
   ficam em --h / --w no HTML. */
.bars span {
  flex: 1; min-width: 5px;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: var(--blue);
}
.js .bars span { height: 0; transition: height .9s var(--ease); }
.js .bars.is-in span { height: var(--h); }

.track__bar i { width: var(--w); }
.js .track__bar i { width: 0; transition: width 1s var(--ease); }
.js .track.is-in .track__bar i { width: var(--w); }

.bars span:nth-child(1)  { transition-delay: .03s; }
.bars span:nth-child(2)  { transition-delay: .08s; }
.bars span:nth-child(3)  { transition-delay: .13s; }
.bars span:nth-child(4)  { transition-delay: .18s; }
.bars span:nth-child(5)  { transition-delay: .23s; }
.bars span:nth-child(6)  { transition-delay: .28s; }
.bars span:nth-child(7)  { transition-delay: .33s; }
.bars span:nth-child(8)  { transition-delay: .38s; }
.bars span:nth-child(9)  { transition-delay: .43s; }
.bars span:nth-child(10) { transition-delay: .48s; }
.bars span:nth-child(11) { transition-delay: .53s; }
.bars span:nth-child(12) { transition-delay: .58s; }

.track__row:nth-child(1) i { transition-delay: .05s; }
.track__row:nth-child(2) i { transition-delay: .13s; }
.track__row:nth-child(3) i { transition-delay: .21s; }
.track__row:nth-child(4) i { transition-delay: .29s; }
.track__row:nth-child(5) i { transition-delay: .37s; }

/* ---------------------------------------------------------------------
   8. SEÇÕES
   --------------------------------------------------------------------- */
.section { padding: var(--pad-y) 0; }
.section--soft { background: var(--paper); }

.section--dark {
  position: relative;
  overflow: hidden;
  margin: 0 var(--edge);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-radius: var(--r-2xl);
  background:
    radial-gradient(90% 130% at 50% -15%, #1C2E5A 0%, rgba(28, 46, 90, 0) 62%),
    var(--navy);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
/* Malha de pontos discreta, esmaecida nas bordas. */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 65% at 50% 25%, #000 0%, transparent 78%);
          mask-image: radial-gradient(70% 65% at 50% 25%, #000 0%, transparent 78%);
  pointer-events: none;
}
/* Halo azul respirando atrás do título. */
.section--dark::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -300px;
  width: 660px;
  height: 660px;
  margin-left: -330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 79, 232, .38) 0%, rgba(61, 79, 232, .10) 45%, rgba(61, 79, 232, 0) 68%);
  animation: darkHalo 9s ease-in-out infinite;
  pointer-events: none;
}
.section--dark > .wrap { position: relative; z-index: 1; }

/* Cabeçalho de seção centralizado. Blocos de duas colunas (.split__copy,
   .benefits__copy) continuam alinhados à esquerda por regra própria. */
.section__head {
  max-width: 50rem;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3.25rem);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: .35rem .95rem;
  border-radius: var(--r-pill);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow--light {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.section__title { font-size: clamp(1.95rem, 4.4vw, 3.1rem); }
.section__title--light { color: #fff; }
/* No escuro, o título ganha um leve degradê e brilho. */
.section--dark .section__title--light {
  background: linear-gradient(178deg, #FFFFFF 42%, #B7C4F2 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0 18px 44px rgba(61, 79, 232, .25);
}

.section__lead { margin-top: 1.2rem; max-width: 52ch; font-size: 1.04rem; }
.section__head .section__lead { margin-inline: auto; }
.section__lead--light { color: rgba(255, 255, 255, .7); }
.section__lead--light strong, .section--dark strong { color: #fff; }

.section__cta { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------------------------------------------------------------------
   10. PROBLEMA
   --------------------------------------------------------------------- */
.pains { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: var(--gap); }
.pain {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.3rem 1.4rem;
  border-radius: var(--r-lg);
  background: var(--card);
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy);
  transition: background-color .25s ease, transform .25s var(--ease), color .25s ease;
}
.pain:hover { transform: translateY(-4px); background: var(--navy); color: #fff; }
.pain__x {
  display: grid;
  place-items: center;
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--muted);
  font-size: .7rem;
  transition: background-color .25s ease, color .25s ease;
}
.pain:hover .pain__x { background: var(--blue); color: #fff; }

.pains__note {
  max-width: 56ch;
  margin: clamp(2rem, 4vw, 2.75rem) auto 0;
  text-align: center;
  font-size: 1.02rem;
}

/* Cadeia de etapas — pílulas numeradas ligadas por seta. O número sai de
   um contador CSS, então a ordem acompanha o HTML sem marcação extra. */
.chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  counter-reset: passo;
}
.chain__item {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.5rem .8rem .8rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .75);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(17, 26, 56, .07), inset 0 0 0 1px var(--line);
  font-weight: 700;
  font-size: .94rem;
  color: var(--navy);
  /* A duração aqui é a da SAÍDA: mais longa que a da entrada, para o
     estado desmanchar devagar quando o cursor vai embora. */
  transition: box-shadow .85s var(--ease-soft), color .85s var(--ease-soft);
}

/* Em fundo cinza a pílula fica plana, só com o fio de contorno. */
.section--soft .chain__item {
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line);
}

/* O tom do hover vive numa camada própria e entra só por opacidade:
   cross-fade puro. Gradiente não é interpolável, então essa é a forma de
   tê-lo aparecendo de verdade em transição. */
.chain__item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--blue-mist);
  opacity: 0;
  transition: opacity .85s var(--ease-soft);
}

/* O número vira uma pastilha própria. */
.chain__item::before {
  counter-increment: passo;
  position: relative;
  content: counter(passo, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-soft);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--blue);
  transition: box-shadow .85s var(--ease-soft);
}

/* Hover só tonal: nada se desloca. A pílula recebe um véu azul-claro, o
   fio de contorno esfria e uma sombra larga e rasa aparece; a pastilha
   ganha um halo em vez de inverter as cores. A entrada é mais curta que
   a saída — entra com presença, sai sem que se perceba. */
.chain__item:hover {
  color: var(--blue);
  box-shadow: 0 14px 30px rgba(61, 79, 232, .09),
              inset 0 0 0 1px rgba(61, 79, 232, .16);
  transition-duration: .6s;
}
.chain__item:hover::after { opacity: 1; transition-duration: .6s; }
.chain__item:hover::before {
  box-shadow: 0 0 0 5px rgba(61, 79, 232, .09);
  transition-duration: .6s;
}
/* a seta seguinte acende junto, para a leitura seguir o passo */
.chain__item:hover + .chain__sep { opacity: .6; transition-duration: .6s; }

.chain__sep {
  color: var(--blue);
  opacity: .32;
  font-size: 1.05rem;
  transition: opacity .85s var(--ease-soft);
}


/* ---------------------------------------------------------------------
   11. SERVIÇOS, PRODUTOS E CARDS

   O ritmo da referência: quase todos os cards em cinza-claro e um ou
   outro invertido em navy. A inversão vem por posição, não por conteúdo.
   --------------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: var(--gap); }

.svc {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3.2vw, 2.3rem);
  border-radius: var(--r-xl);
  background: var(--card);
  box-shadow: inset 0 0 0 1px rgba(17, 26, 56, .05);
  transition: box-shadow 1.1s var(--ease-hover),
              background-color 1.1s var(--ease-hover);
}
/* O card nao se desloca: clareia, a sombra abre difusa por baixo e um anel
   azul discreto aparece. Mesma escolha da esteira — a leitura do hover e
   tonal, sem movimento nenhum. */
.svc:hover {
  background-color: var(--paper);
  box-shadow:
    0 1px 2px rgba(11, 22, 48, .03),
    0 34px 70px -32px rgba(11, 22, 48, .20),
    0 18px 44px -24px rgba(61, 79, 232, .24),
    inset 0 0 0 1px rgba(61, 79, 232, .12);
}
/* Os cards tambem sao '.reveal', e '.js .reveal' define a transition com
   especificidade maior que '.svc' — listando so opacity, transform e
   filter. Sem reafirmar aqui, fundo e sombra do hover trocavam de uma vez,
   sem suavizacao nenhuma. Transform continua na lista pela entrada do
   reveal, que e feita com ele; o hover nao usa mais transform. */
.svc.reveal {
  transition: opacity .65s ease,
              filter .65s ease,
              transform 1.1s var(--ease-hover),
              box-shadow 1.1s var(--ease-hover),
              background-color 1.1s var(--ease-hover);
}
.section--soft .svc { background: var(--bg); }

.svc__ico {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  margin-bottom: 1.4rem;
  border-radius: var(--r-md);
  background: var(--paper);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(61, 79, 232, .14);
  transition: color 1.1s var(--ease-hover),
              box-shadow 1.1s var(--ease-hover);
}
/* Gradiente nao interpola: trocar o fundo no hover daria um corte seco.
   Ele fica sempre montado atras do icone e so acende. */
.svc__ico::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-2) 100%);
  opacity: 0;
  transition: opacity 1.1s var(--ease-hover);
}
/* Os delays so existem na entrada — o card acende primeiro, depois o icone,
   depois a seta. Na saida tudo volta junto, que e o que parece natural. */
.svc:hover .svc__ico {
  color: #fff;
  box-shadow: 0 20px 40px -24px rgba(61, 79, 232, .38),
              inset 0 0 0 1px rgba(255, 255, 255, .15);
  transition-delay: .1s;
}
.svc:hover .svc__ico::before { opacity: 1; transition-delay: .1s; }
.svc__ico svg { width: 22px; height: 22px; }

.svc__title { font-size: 1.35rem; }
.svc__text { margin-top: .7rem; font-size: .96rem; }

.svc__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.6rem;
  font-weight: 700;
  font-size: .91rem;
  color: var(--blue);
  transition: color .4s var(--ease-soft);
}
/* A seta anda sozinha em vez de abrir o gap — assim o texto nao reflui. */
.svc__cta svg {
  width: 15px; height: 15px;
  transition: transform .9s var(--ease-hover);
}
.svc:hover .svc__cta svg,
.svc__cta:hover svg { transform: translateX(3px); }
.svc:hover .svc__cta svg { transition-delay: .18s; }

/* Cards invertidos — o segundo e o terceiro, formando uma diagonal. */
.svc--blue, .svc--teal,
.section--soft .svc--blue, .section--soft .svc--teal {
  background:
    radial-gradient(120% 100% at 100% 0%, #1E3162 0%, rgba(30, 49, 98, 0) 58%),
    var(--navy);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.svc--navy, .svc--deep { background: var(--card); }
.section--soft .svc--navy, .section--soft .svc--deep { background: var(--bg); }

/* Nas faixas claras o card ja e quase branco — ali o hover puxa para o azul
   leve, senao o clareado sumiria no fundo. Precisa vir depois das regras
   .section--soft acima, que empatam em especificidade com .svc:hover. */
.section--soft .svc:not(.svc--blue):not(.svc--teal):hover {
  background-color: var(--blue-mist);
}

.svc--blue:hover, .svc--teal:hover {
  background-color: #16224A;
  box-shadow:
    0 1px 2px rgba(6, 12, 30, .18),
    0 42px 80px -38px rgba(6, 12, 30, .55),
    inset 0 0 0 1px rgba(139, 156, 255, .16);
}
/* Malha de pontos e halo azul, como nos demais blocos escuros. */
.svc--blue::before, .svc--teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(80% 70% at 90% 6%, #000 0%, transparent 70%);
          mask-image: radial-gradient(80% 70% at 90% 6%, #000 0%, transparent 70%);
  opacity: .78;
  transition: opacity 1.1s var(--ease-hover);
  pointer-events: none;
  z-index: -1;
}
.svc--blue:hover::before, .svc--teal:hover::before { opacity: 1; }
.svc--blue::after, .svc--teal::after {
  content: '';
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 79, 232, .32) 0%, rgba(61, 79, 232, .08) 45%, rgba(61, 79, 232, 0) 72%);
  animation: darkHalo 10s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.svc--blue .svc__title, .svc--teal .svc__title { color: #fff; }
.svc--blue .svc__text,  .svc--teal .svc__text  { color: rgba(255, 255, 255, .68); }
.svc--blue .svc__cta,   .svc--teal .svc__cta   { color: var(--blue-2); }
.svc--blue .prod__cat,  .svc--teal .prod__cat  { color: rgba(255, 255, 255, .5); }
.svc--blue .svc__ico,   .svc--teal .svc__ico   {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.svc--blue:hover .svc__ico, .svc--teal:hover .svc__ico {
  box-shadow: 0 22px 44px -26px rgba(61, 79, 232, .42),
              inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.prod__cat {
  align-self: flex-start;
  margin-bottom: 1.1rem;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Módulos do Eisy Conf — mesma lógica: dois cards invertidos. */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: var(--gap); }
.card {
  padding: clamp(1.5rem, 2.8vw, 1.95rem);
  border-radius: var(--r-xl);
  background: var(--card);
  transition: transform .3s var(--ease), box-shadow .3s ease, background-color .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.section--soft .card { background: var(--bg); }

.card:nth-child(2), .card:nth-child(5),
.section--soft .card:nth-child(2), .section--soft .card:nth-child(5) { background: var(--navy); }
.card:nth-child(2):hover, .card:nth-child(5):hover { background: var(--navy-2); }
.card:nth-child(2) .card__title, .card:nth-child(5) .card__title { color: #fff; }
.card:nth-child(2) .card__text,  .card:nth-child(5) .card__text  { color: rgba(255, 255, 255, .68); }
.card:nth-child(2) .card__ico,   .card:nth-child(5) .card__ico   { background: rgba(255, 255, 255, .12); color: #fff; }

.card__ico {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 1.25rem;
  border-radius: var(--r-md);
  background: var(--paper);
  color: var(--blue);
  transition: background-color .3s ease, color .3s ease;
}
.card:hover .card__ico { background: var(--blue); color: #fff; }
.card__ico svg { width: 21px; height: 21px; }
.card__title { font-size: 1.22rem; }
.card__text { margin-top: .55rem; font-size: .95rem; }

/* Capacidades — pastilhas leves. */
.bullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: .7rem; }
.bullet {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  font-size: .96rem;
  font-weight: 600;
  color: #fff;
  transition: background-color .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}
.bullet:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(130, 148, 255, .55), 0 16px 32px rgba(6, 12, 30, .45);
}
.bullet::before {
  content: '';
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(87, 102, 242, .16);
  transition: background-color .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}
.bullet:hover::before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(87, 102, 242, .35), 0 0 14px rgba(120, 140, 255, .9);
  transform: scale(1.15);
}
/* Em fundo claro, invertem. */
.section:not(.section--dark) .bullet { background: var(--card); color: var(--navy); }
.section:not(.section--dark) .bullet:hover { background: var(--blue-soft); }
.section:not(.section--dark) .bullet::before { background: var(--blue); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split__copy { text-align: left; }
/* Respiro entre o texto e o CTA da coluna. */
.split__copy .btn { margin-top: 2rem; }
.split__panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2rem, 3.8vw, 2.9rem);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(120% 100% at 100% 0%, #1E3162 0%, rgba(30, 49, 98, 0) 58%),
    var(--navy);
  color: rgba(255, 255, 255, .74);
  box-shadow: 0 30px 64px rgba(11, 22, 48, .28), inset 0 0 0 1px rgba(255, 255, 255, .08);
}
/* Malha de pontos discreta no canto superior. */
.split__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(80% 70% at 88% 8%, #000 0%, transparent 72%);
          mask-image: radial-gradient(80% 70% at 88% 8%, #000 0%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}
/* Halo azul respirando no canto inferior. */
.split__panel::after {
  content: '';
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 79, 232, .32) 0%, rgba(61, 79, 232, .08) 45%, rgba(61, 79, 232, 0) 72%);
  animation: darkHalo 10s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.split__panel p { position: relative; }
.split__panel p + p { margin-top: 1.25rem; }
.split__panel strong { color: #fff; }
/* O primeiro parágrafo abre com um filete azul. */
.split__panel p:first-of-type {
  padding-left: 1.1rem;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, var(--blue-2), rgba(87, 102, 242, 0)) 1;
}

/* ---------------------------------------------------------------------
   12. PAINÉIS DO SISTEMA
   --------------------------------------------------------------------- */
.dash__tabs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.6rem; }
.dash__tab {
  padding: .6rem 1.25rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .08);
  font-size: .87rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  white-space: nowrap;
  transition: background-color .22s ease, color .22s ease;
}
.dash__tab:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.dash__tab.is-on { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }

.dash__stage { border-radius: var(--r-2xl); background: rgba(255, 255, 255, .07); padding: clamp(.75rem, 1.6vw, 1.15rem); }
.dash__panel { animation: panelIn .45s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.shot {
  display: flex; flex-direction: column; gap: 1rem;
  padding: clamp(1rem, 2.2vw, 1.6rem);
  border-radius: var(--r-xl);
  background: var(--paper);
  min-height: 288px;
  overflow-x: auto;
}
.dash__cap { margin-top: 1rem; font-size: .85rem; color: rgba(255, 255, 255, .55); }

/* O último KPI vem destacado em navy, como na referência. */
.shot__kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(138px, 1fr)); gap: .6rem; }
.stat { padding: 1rem 1.1rem; border-radius: var(--r-lg); background: var(--bg); transition: transform .25s var(--ease); }
.stat:hover { transform: translateY(-3px); }
.stat:last-child { background: var(--navy); }
.stat:last-child .stat__v { color: #fff; }
.stat:last-child .stat__l { color: rgba(255, 255, 255, .6); }
.stat__v {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.stat__v.up { color: var(--ok); }
.stat__v.down { color: var(--alert); }
.stat__l { font-size: .76rem; color: var(--muted); }

.shot__chart {
  display: flex; align-items: flex-end; gap: .35rem;
  height: 148px; padding: 1rem .9rem;
  border-radius: var(--r-lg);
  background: var(--bg);
}
.shot__chart span { min-width: 7px; }
.shot__chart--pair span.alt { background: var(--blue-soft); }

.track { display: flex; flex-direction: column; gap: 1rem; }
.track__row { display: grid; grid-template-columns: 108px minmax(0, 1fr) 44px; align-items: center; gap: .85rem; }
.track__name { font-size: .87rem; font-weight: 600; color: var(--navy); }
.track__bar { height: 8px; border-radius: var(--r-pill); background: var(--card); overflow: hidden; }
.track__bar i { display: block; height: 100%; border-radius: var(--r-pill); background: var(--blue); }
.track__row:nth-child(4) i, .track__row:nth-child(5) i { background: var(--blue-soft); }
.track__pct { font-size: .82rem; font-weight: 700; color: var(--navy); text-align: right; font-variant-numeric: tabular-nums; }

.table { min-width: 440px; }
.table__head, .table__row {
  display: grid;
  grid-template-columns: 1fr 1.5fr .7fr 1fr;
  gap: .75rem;
  align-items: center;
  padding: .8rem .55rem;
}
.table__head {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint);
}
.table__row {
  font-size: .88rem; color: var(--text);
  border-radius: var(--r-md);
  transition: background-color .2s ease;
}
.table__row:nth-child(odd) { background: var(--bg); }
.table__row:hover { background: var(--blue-soft); }

.js .shot.is-in .table__row { animation: rowIn .45s var(--ease) backwards; }
.js .shot.is-in .table__row:nth-child(2) { animation-delay: .05s; }
.js .shot.is-in .table__row:nth-child(3) { animation-delay: .11s; }
.js .shot.is-in .table__row:nth-child(4) { animation-delay: .17s; }
.js .shot.is-in .table__row:nth-child(5) { animation-delay: .23s; }
.js .shot.is-in .table__row:nth-child(6) { animation-delay: .29s; }
@keyframes rowIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }

.tag {
  justify-self: start;
  font-style: normal;
  font-size: .72rem; font-weight: 700;
  padding: .22rem .7rem;
  border-radius: var(--r-pill);
}
.tag--ok   { background: var(--ok-soft);   color: var(--ok); }
.tag--run  { background: var(--blue-soft); color: var(--blue); }
.tag--wait { background: var(--card);      color: var(--muted); }

.flow { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin: auto 0; }
.flow__step {
  padding: .8rem 1.3rem;
  border-radius: var(--r-pill);
  background: var(--bg);
  font-size: .88rem; font-weight: 600;
  color: var(--muted);
}
.flow__step.is-done { background: var(--ok-soft); color: var(--ok); }
.flow__step.is-now { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.js .shot.is-in .flow__step { animation: riseIn .5s var(--ease) backwards; }
.js .shot.is-in .flow__step:nth-child(2) { animation-delay: .07s; }
.js .shot.is-in .flow__step:nth-child(3) { animation-delay: .14s; }
.js .shot.is-in .flow__step:nth-child(4) { animation-delay: .21s; }
.js .shot.is-in .flow__step:nth-child(5) { animation-delay: .28s; }

/* ---------------------------------------------------------------------
   13. PROCESSO
   --------------------------------------------------------------------- */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: var(--gap); }
.steps    { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--gap); }

.tl, .step, .pillar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.6rem, 3vw, 2.1rem) clamp(1.3rem, 2.4vw, 1.7rem);
  border-radius: var(--r-xl);
  background: var(--card);
  transition: transform .3s var(--ease), box-shadow .3s ease, background-color .3s ease;
}
.tl:hover, .step:hover, .pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(11, 22, 48, .28), inset 0 0 0 1px rgba(255, 255, 255, .12);
}

/* Hover: a tinta escura se espalha a partir do número, em círculo. */
.tl::before, .step::before, .pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 20% 12%, #1B2C55 0%, var(--navy) 45%, #0A142C 100%);
  clip-path: circle(0% at 22% 16%);
  transition: clip-path .6s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
  z-index: -2;
}
.tl:hover::before, .step:hover::before, .pillar:hover::before { clip-path: circle(145% at 22% 16%); }

/* Faixa de luz que atravessa o card uma vez a cada hover. */
.tl::after, .step::after, .pillar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 55%;
  background: linear-gradient(105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, .18) 45%,
    rgba(255, 255, 255, .42) 50%,
    rgba(255, 255, 255, .18) 55%,
    rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.tl:hover::after, .step:hover::after, .pillar:hover::after { animation: cardShine 1s cubic-bezier(.3, .8, .4, 1) .18s 1 both; }

/* Conteúdo clareia e sobe levemente, em cascata. */
.tl__title, .step__title, .pillar__title,
.tl__text, .step__text, .pillar__text {
  position: relative;
  transition: color .4s ease, transform .45s var(--ease);
}
.tl:hover .tl__title, .step:hover .step__title, .pillar:hover .pillar__title { color: #fff; transform: translateY(-2px); }
.tl:hover .tl__text,  .step:hover .step__text,  .pillar:hover .pillar__text  { color: rgba(255, 255, 255, .74); transform: translateY(-2px); transition-delay: .05s; }
.section--soft .tl, .section--soft .step { background: var(--bg); }

.tl__num, .step__num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 1.25rem;
  border-radius: var(--r-md);
  background: var(--paper);
  color: var(--blue);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: background-color .35s ease, color .35s ease,
              box-shadow .35s ease, transform .45s var(--ease);
}
/* No hover o número inverte: pastilha branca sobre o card escuro. */
.tl:hover .tl__num, .step:hover .step__num {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .3);
  transform: translateY(-3px) scale(1.06);
}

.tl__title, .step__title { font-size: 1.24rem; }
.tl__text, .step__text { margin-top: .5rem; font-size: .95rem; }

/* ---------------------------------------------------------------------
   14. BENEFÍCIOS
   --------------------------------------------------------------------- */
.benefits {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.benefits__copy { text-align: left; }
.benefits__copy .btn { margin-top: 2rem; }

.checks { display: grid; gap: .55rem; }
.check {
  position: relative;
  padding: 1.05rem 1.3rem 1.05rem 3.3rem;
  border-radius: var(--r-lg);
  background: var(--card);
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy);
  transition: background-color .25s ease, transform .25s var(--ease);
}
.check:hover { transform: translateX(6px); background: var(--blue-soft); }
.section--soft .check { background: var(--bg); }
.check::before {
  content: '';
  position: absolute;
  left: 1.25rem; top: 50%;
  width: 15px; height: 8px;
  margin-top: -5px;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------------------
   15. DIFERENCIAIS
   --------------------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: var(--gap); }
.pillar { padding: clamp(1.6rem, 3vw, 2.1rem); }
.section--soft .pillar { background: var(--bg); }

.pillar__title { font-size: 1.24rem; }
.pillar__text { margin-top: .6rem; font-size: .95rem; }

/* ---------------------------------------------------------------------
   16. PARA QUEM É / SEGMENTOS
   --------------------------------------------------------------------- */
.fits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--gap); }
.fit {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--r-lg);
  background: var(--card);
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy);
  transition: transform .25s var(--ease), background-color .25s ease, color .25s ease;
}
.fit:hover { transform: translateY(-4px); background: var(--navy); color: #fff; }
.section--soft .fit { background: var(--bg); }
.fit::before {
  content: '';
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.segs { display: flex; flex-wrap: wrap; gap: .5rem; }
.seg {
  padding: .68rem 1.35rem;
  border-radius: var(--r-pill);
  background: var(--card);
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  transition: background-color .25s ease, color .25s ease;
}
.seg:hover { background: var(--blue); color: #fff; }
.section--soft .seg { background: var(--bg); }

/* ---------------------------------------------------------------------
   17. PROJETOS E CASES
   --------------------------------------------------------------------- */
/* Dois cards por linha: print em cima, texto embaixo. */
.works {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.work {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-2xl);
  background: var(--card);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s var(--ease);
}
.work:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.section--soft .work { background: var(--bg); }

/* Quando a seção mostra um projeto só, ele ocupa a linha inteira e volta
   ao formato de faixa — meio card solto ficaria desequilibrado. */
.work:only-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  min-height: clamp(270px, 28vw, 360px);
}

.work__shot {
  position: relative;
  flex: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
}
.work:only-child .work__shot { flex: 1 1 56%; }
.work__chrome { flex: none; display: flex; align-items: center; gap: .3rem; padding: .6rem .85rem; background: var(--navy); }
.work__chrome i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .22); }

/* `height` explícito é obrigatório: o atributo height="902" do HTML é uma
   dica de apresentação e, sem isto, vence o aspect-ratio e estica o card. */
.work__shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s var(--ease);
}
/* Na faixa larga o print acompanha a altura do card em vez de ter
   proporção própria. */
.work:only-child .work__shot img {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
}
.work:hover .work__shot img { transform: scale(1.03); }

.work__veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(17, 26, 56, .58);
  opacity: 0;
  transition: opacity .3s ease;
}
.work:hover .work__veil,
.work__shot:focus-visible .work__veil { opacity: 1; }

.work__open {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.5rem;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: transform .35s var(--ease);
}
.work:hover .work__open,
.work__shot:focus-visible .work__open { transform: none; }
.work__open svg { width: 14px; height: 14px; }

.work__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: clamp(1.5rem, 2.6vw, 2rem);
}
.work:only-child .work__body {
  flex: 1 1 44%;
  justify-content: center;
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.work__tag {
  align-self: flex-start;
  padding: .28rem .85rem;
  border-radius: var(--r-pill);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.work__title { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.work__text { max-width: 44ch; font-size: .96rem; }

.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--gap); }
.case {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  border-radius: var(--r-xl);
  background: var(--card);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.case:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.section--soft .case { background: var(--bg); }

.case__seg {
  align-self: flex-start;
  padding: .26rem .8rem;
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--blue);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.case__title { font-size: 1.26rem; }
.case__block { display: flex; flex-direction: column; gap: .25rem; }
.case__label { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.case__text { font-size: .94rem; }

/* ---------------------------------------------------------------------
   18. FORMULÁRIO E CANAIS
   --------------------------------------------------------------------- */
.form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  border-radius: var(--r-2xl);
  background: var(--paper);
  box-shadow: var(--sh-md);
  text-align: left;
}
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field__label { font-size: .82rem; font-weight: 700; color: var(--navy); }
.field__input {
  width: 100%;
  padding: .9rem 1.05rem;
  border: 0;
  border-radius: var(--r-md);
  background: var(--bg);
  font: inherit;
  font-size: .95rem;
  color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .2s ease;
}
.field__input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--blue); }
textarea.field__input { resize: vertical; min-height: 118px; }

.form__note { font-size: .83rem; color: var(--faint); }
.form__status {
  padding: .85rem 1.1rem;
  border-radius: var(--r-md);
  background: var(--ok-soft);
  color: var(--ok);
  font-size: .9rem;
  font-weight: 600;
}

.channels { display: grid; gap: .6rem; }
.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  border-radius: var(--r-lg);
  background: var(--card);
  transition: transform .25s var(--ease), background-color .25s ease;
}
.channel:hover { transform: translateY(-3px); background: var(--blue-soft); }
.section--soft .channel { background: var(--bg); }
.channel__ico {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--paper);
  color: var(--blue);
  transition: background-color .3s ease, color .3s ease;
}
.channel:hover .channel__ico { background: var(--blue); color: #fff; }
.channel__ico svg { width: 20px; height: 20px; }
.channel__label { display: block; font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.channel__value { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); }

.placeholder {
  padding: 1.4rem 1.6rem;
  border-radius: var(--r-lg);
  background: var(--card);
  font-size: .92rem;
}
.section--soft .placeholder { background: var(--bg); }

/* ---------------------------------------------------------------------
   19. HERO INTERNO, CTA E RODAPÉ
   --------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2.75rem, 6vw, 4rem);
  background: var(--bg);
  overflow: hidden;
  text-align: left;
}
.page-hero__inner {
  position: relative;
  width: min(100% - (var(--edge) * 2), var(--wrap));
  max-width: none;
  margin-inline: auto;
}
.page-hero__title { margin-top: 1rem; max-width: 20ch; font-size: clamp(2.1rem, 5vw, 3.4rem); }
.page-hero__lead { margin-top: 1.25rem; max-width: 50ch; font-size: clamp(.98rem, 1.3vw, 1.06rem); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.1rem; }

.crumb {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .95rem .35rem .75rem;
  border-radius: var(--r-pill);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease;
}
.crumb:hover { background: var(--blue); color: #fff; }
.crumb svg { width: 14px; height: 14px; }

/* CTA final: painel branco destacado, com o azul só no botão. */
.cta {
  position: relative;
  margin: 0 var(--edge) var(--edge);
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--r-2xl);
  background: var(--paper);
  box-shadow: var(--sh-md);
  overflow: hidden;
  text-align: left;
}
.cta__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta__inner { position: relative; width: min(100%, var(--wrap)); max-width: none; margin-inline: auto; }
.cta__title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); max-width: 22ch; }
.cta__text { margin-top: 1.2rem; max-width: 48ch; font-size: 1.03rem; }
.cta .page-hero__actions,
.cta__inner > .btn { margin-top: 2.2rem; }
.cta__note { margin-top: 1.2rem; font-size: .9rem; }

.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 6vw, 4.75rem) 0 2rem;
  background:
    radial-gradient(85% 120% at 50% 0%, #1A2B55 0%, rgba(26, 43, 85, 0) 62%),
    var(--navy);
  color: rgba(255, 255, 255, .66);
}
/* Malha de pontos suave no topo do rodapé. */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 55%);
          mask-image: linear-gradient(180deg, #000 0%, transparent 55%);
  pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg,
    rgba(255, 255, 255, .04) 0%,
    rgba(255, 255, 255, .22) 50%,
    rgba(255, 255, 255, .04) 100%) 1;
}
.brand--footer { color: #fff; }
.brand--footer .brand__text-alt { color: #fff; }
.brand--footer .brand__sig { color: rgba(255, 255, 255, .5); }
/* No rodapé escuro a logo entra em versão branca, maior. */
.brand--footer .brand__img {
  height: clamp(78px, 9vw, 108px);
  filter: brightness(0) invert(1);
  opacity: .94;
}
.brand--footer:hover .brand__img { opacity: 1; }
.footer__tag { margin-top: 1rem; max-width: 30ch; font-size: .95rem; }

.footer__label {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.2rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue-2);
}
/* Filete que acompanha o rótulo da coluna. */
.footer__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(87, 102, 242, .45), rgba(87, 102, 242, 0));
}
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: .75rem; }
.footer__nav a, .footer__contact a {
  position: relative;
  font-size: .93rem;
  width: fit-content;
  transition: color .25s ease, transform .25s var(--ease);
}
/* Sublinhado que cresce da esquerda no hover. */
.footer__nav a::after, .footer__contact a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-2), rgba(87, 102, 242, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.footer__nav a:hover, .footer__contact a:hover { color: #fff; transform: translateX(4px); }
.footer__nav a:hover::after, .footer__contact a:hover::after { transform: scaleX(1); }
.footer__copy {
  width: min(100% - (var(--edge) * 2), var(--wrap));
  margin: 1.75rem auto 0;
  font-size: .84rem;
  color: rgba(255, 255, 255, .45);
}

/* ---------------------------------------------------------------------
   20. BOTÃO FLUTUANTE
   --------------------------------------------------------------------- */
.fab {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.75rem);
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.4rem;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #25D366 0%, #1EBE5B 100%);
  color: #FFF;
  font-size: .9rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .35);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s var(--ease), visibility .3s, box-shadow .3s ease;
}
.fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
  animation: fabGlow 2.8s ease-in-out infinite;
}
.fab.is-visible:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(37, 211, 102, .5), 0 0 26px rgba(37, 211, 102, .45);
}
.fab svg { width: 22px; height: 22px; flex: none; position: relative; z-index: 3; }
.fab__label { position: relative; z-index: 3; }

/* 1. feixe de luz girando em looping ao redor do botão */
.fab::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220%;
  height: 220%;
  margin-left: -110%;
  margin-top: -110%;
  min-width: 260px;
  min-height: 260px;
  transform-origin: 50% 50%;
  background: conic-gradient(
    rgba(255, 255, 255, .10) 0deg,
    rgba(255, 255, 255, 1)   40deg,
    rgba(255, 255, 255, .10) 90deg,
    rgba(255, 255, 255, .10) 180deg,
    rgba(255, 255, 255, 1)   220deg,
    rgba(255, 255, 255, .10) 270deg,
    rgba(255, 255, 255, .10) 360deg);
  animation: fabSpin 2s linear infinite;
  pointer-events: none;
  z-index: 0;
}
/* 2. face do botão: cobre o miolo e deixa a borda acesa girando */
.fab::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, #25D366 0%, #17B054 100%);
  opacity: .94;
  pointer-events: none;
  z-index: 1;
}
/* 3. reflexo diagonal que atravessa o botão a cada volta */
.fab__ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, .55) 50%,
    rgba(255, 255, 255, 0) 62%);
  animation: fabShine 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

/* Os pilares seguem o hover próprio dos cards, sem o lift genérico do tilt. */
.tilt.is-tilting:not(.pillar) { transform: translateY(-5px); box-shadow: var(--sh-md); }

/* =====================================================================
   21. SELETOR DE TELA, RÉPLICAS DOS SISTEMAS E VISOR

   As telas são réplicas em HTML/CSS dos sistemas reais. Elas são
   desenhadas em escala fixa (em) e o tamanho da fonte-base vem de `cqw`,
   então a mesma marcação serve no notebook do hero e no visor ampliado.
   ===================================================================== */

/* --- Seletor -------------------------------------------------------- */
.switch { position: relative; margin-top: 1.1rem; z-index: 5; }

.switch__btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1rem .6rem 1.15rem;
  border-radius: var(--r-pill);
  background: var(--paper);
  box-shadow: var(--sh-sm), inset 0 0 0 1px var(--line);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  transition: box-shadow .25s ease, transform .25s var(--ease);
}
.switch__btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md), inset 0 0 0 1px var(--blue); }
.switch__hint { font-weight: 500; color: var(--muted); }
.switch__now { color: var(--blue); }
.switch__chev { width: 15px; height: 15px; color: var(--muted); transition: transform .25s var(--ease); }
.switch__btn[aria-expanded="true"] .switch__chev { transform: rotate(180deg); }

.switch__menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 17rem;
  padding: .4rem;
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--sh-lg);
  animation: riseIn .22s var(--ease);
}
.switch__menu button {
  display: block;
  width: 100%;
  padding: .65rem .85rem;
  border-radius: var(--r-md);
  text-align: left;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  transition: background-color .18s ease;
}
.switch__menu button small {
  display: block;
  font-size: .76rem;
  font-weight: 500;
  color: var(--muted);
}
.switch__menu button:hover { background: var(--bg); }
.switch__menu button[aria-selected="true"] { background: var(--blue-soft); }
.switch__menu button[aria-selected="true"] small { color: var(--blue); }

/* --- Palco no notebook ---------------------------------------------- */
.mock__screen {
  position: relative;
  display: block;
  container-type: inline-size;
  background: #EDEFF4;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.mock__zoom {
  position: absolute;
  right: .5rem; bottom: .5rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .8rem;
  border-radius: var(--r-pill);
  background: rgba(17, 26, 56, .82);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity .25s ease, background-color .2s ease;
}
.mock__zoom svg { width: 13px; height: 13px; }
.mock:hover .mock__zoom, .mock__zoom:focus-visible { opacity: 1; }
.mock__zoom:hover { background: var(--blue); }

/* --- Base comum das telas ------------------------------------------- */
.scr {
  /* 1 unidade = 1/118 da largura: a tela foi desenhada para ~1180px. */
  font-size: .88cqw;
  line-height: 1.25;
  font-weight: 500;
  color: #1A2340;
  background: #EDEFF4;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .5em;
  padding: .5em;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}
.scr[hidden] { display: none; }

/* Cabeçalho azul-marinho do aplicativo. */
.scr__top {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: .75em 1em;
  border-radius: .35em;
  background: #17245C;
  color: #fff;
}
.scr__back { font-size: 1.6em; line-height: 1; font-weight: 700; }
.scr__title { flex: 1; text-align: center; font-size: 1.5em; font-weight: 600; color: #C8D2F0; }
.scr__brand { font-size: 1.2em; font-weight: 700; color: #C8D2F0; }

.scr__band {
  padding: .35em 1em;
  border-radius: .3em;
  background: #17245C;
  color: #F0C24A;
  font-size: 1.15em;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* Faixa de indicadores. */
.scr__kpis { display: grid; grid-template-columns: repeat(5, 1fr); gap: .4em; }
.scr__kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1em;
  padding: .45em .5em .55em;
  border-radius: .3em;
  background: #fff;
}
.scr__kpi i { font-style: normal; font-size: 1em; font-weight: 700; color: #3B456B; }
.scr__kpi b { font-size: 2.1em; font-weight: 700; letter-spacing: -.02em; }
.scr__kpi b small { font-size: .6em; font-weight: 600; color: #8A93B0; }
.scr__kpi--blue  b { color: #2E56C8; }
.scr__kpi--green b { color: #1F8A4C; }
.scr__kpi--amber b { color: #9A7412; }
.scr__kpi--red   b { color: #C33A2A; }
.scr__kpi--eff   b { color: #9A7412; }
.scr__kpi--blue  { background: #DCE5FA; }
.scr__kpi--green { background: #D9F2E1; }
.scr__kpi--amber { background: #FBF0CE; }
.scr__kpi--red   { background: #FADFDB; }
.scr__kpi--eff   { background: #FBF0CE; }

/* Colunas de filtro + grade de dados. */
.scr__cols {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 4.7fr;
  gap: .4em;
}
.scr__cols--conf { grid-template-columns: 1fr 1fr 1fr 4.4fr; }

.scr__panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: .3em;
  background: #fff;
  overflow: hidden;
}
.scr__ph {
  padding: .45em .6em;
  background: #17245C;
  color: #fff;
  font-size: 1.15em;
  font-weight: 700;
}
.scr__tabs { display: flex; }
.scr__tabs span {
  flex: 1;
  padding: .45em .6em;
  background: #E3E7F2;
  color: #3B456B;
  font-size: 1.05em;
  font-weight: 700;
  text-align: center;
}
.scr__tabs span.is-on { background: #17245C; color: #fff; }

.scr__list { flex: 1; min-height: 0; overflow: hidden; }
.scr__list li {
  display: flex;
  justify-content: space-between;
  gap: .5em;
  padding: .32em .6em;
  border-bottom: 1px solid #EAEDF4;
  font-size: 1.02em;
}
.scr__list li span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.scr__list li b { font-weight: 700; }
.scr__list li.is-on { background: #4A5473; color: #fff; }
.scr__big { display: block; padding: .2em .6em; font-size: 2em; font-weight: 700; }

/* Grade principal. */
.scr__grid { display: flex; flex-direction: column; min-height: 0; border-radius: .3em; background: #fff; overflow: hidden; }
.scr__gh, .scr__gr {
  display: grid;
  grid-template-columns: .8fr .9fr 1.6fr .9fr .9fr 1.3fr 1.3fr 1.4fr;
  gap: .4em;
  padding: .34em .6em;
  font-size: 1em;
}
.scr__grid--lav .scr__gh, .scr__grid--lav .scr__gr {
  grid-template-columns: .9fr .9fr 1fr 2.1fr 1.2fr 1.1fr .8fr .6fr .6fr;
}
.scr__gh { background: #F2F4F9; font-weight: 700; color: #3B456B; border-bottom: 1px solid #DDE2EE; }
.scr__gr { border-bottom: 1px solid #F0F2F7; }
.scr__gr span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.scr__gr em { font-style: normal; font-weight: 700; color: #C33A2A; }

/* Rodapé de filtros. */
.scr__foot { display: flex; align-items: center; gap: .5em; padding: .2em; font-size: 1.05em; }
.scr__sel, .scr__inp {
  padding: .35em .7em;
  border-radius: .25em;
  background: #fff;
  color: #6B7391;
  min-width: 5em;
}
.scr__lbl { font-weight: 700; }

/* Faixa de performance. */
.scr__perf { display: grid; grid-template-columns: repeat(6, 1fr); gap: .4em; }
.scr__pf {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .4em .5em;
  border-radius: .3em;
  background: #fff;
}
.scr__pf i { font-style: normal; font-size: 1em; font-weight: 700; color: #3B456B; }
.scr__pf b { font-size: 1.9em; font-weight: 700; }
.scr__pf b small { font-size: .6em; }
.scr__pf--box b { color: #2E56C8; }

/* Painéis inferiores + gráfico de barras. */
.scr__bottom { display: grid; grid-template-columns: 1fr 1fr 1.2fr 3.2fr; gap: .4em; }
.scr__panel--sm { min-height: 7em; }
.scr__chart { padding-bottom: .4em; }
.scr__bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: .35em;
  padding: .6em .8em 0;
  min-height: 5.5em;
}
.scr__bars span { flex: 1; height: var(--h); border-radius: .15em .15em 0 0; background: #C3CBE0; }
.scr__bars span.pos { background: #2FA85C; }
.scr__bars span.neg { background: #D8483A; }

/* --- Variante escura (BI) ------------------------------------------- */
.scr--dark { padding: 0; gap: 0; background: #0D1117; color: #C9D1D9; }
.scr__app { flex: 1; min-height: 0; display: grid; grid-template-columns: 12em 1fr; }

.scr__nav { padding: .9em .7em; background: #131A22; }
.scr__navbrand { display: flex; align-items: center; gap: .5em; margin-bottom: 1.2em; font-size: 1.2em; font-weight: 700; color: #fff; }
.scr__navmark { width: 1.4em; height: 1.4em; border-radius: .3em; background: #2E8B7A; }
.scr__nav li { padding: .55em .7em; border-radius: .3em; font-size: 1.05em; color: #8B949E; }
.scr__nav li.is-on { background: #1F2A38; color: #fff; font-weight: 700; }

.scr__body { display: flex; flex-direction: column; gap: .6em; min-height: 0; padding: .8em; }

.scr__filters { display: flex; align-items: flex-end; gap: .5em; }
.scr__f { display: flex; flex-direction: column; gap: .2em; }
.scr__f i { font-style: normal; font-size: .95em; color: #8B949E; }
.scr__f b { padding: .4em .8em; border-radius: .25em; background: #1C2430; font-weight: 500; color: #C9D1D9; min-width: 7em; }
.scr__fbtn { padding: .55em 1em; border-radius: .25em; background: #2563EB; color: #fff; font-weight: 700; }
.scr__fghost { padding: .55em 1em; border-radius: .25em; background: #1C2430; color: #C9D1D9; }

.scr__dkpis { display: grid; grid-template-columns: repeat(6, 1fr); gap: .5em; }
.scr__dk {
  display: flex;
  flex-direction: column;
  gap: .15em;
  padding: .7em .8em;
  border-radius: .4em;
  background: #161C26;
  box-shadow: inset 0 0 0 1px #232C3A;
}
.scr__dk.is-on { box-shadow: inset 0 0 0 1.5px #2563EB; }
.scr__dk i { font-style: normal; font-size: .95em; color: #8B949E; }
.scr__dk b { font-size: 1.9em; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.scr__dk em { font-style: normal; font-size: .9em; font-weight: 700; }
.scr__dk em.up { color: #3FB950; }
.scr__dk em.down { color: #F85149; }
.scr__dk span { font-size: .88em; color: #6E7681; }

.scr__dgrid { flex: 1; min-height: 0; display: grid; grid-template-columns: 1.25fr 1fr; gap: .5em; }
.scr__dchart {
  display: flex;
  flex-direction: column;
  padding: .8em;
  border-radius: .4em;
  background: #161C26;
  box-shadow: inset 0 0 0 1.5px #2563EB;
}
.scr__dbars { flex: 1; display: flex; align-items: flex-end; gap: .5em; min-height: 6em; }
.scr__dbars span { position: relative; flex: 1; height: var(--h); background: #3B82F6; border-radius: .1em .1em 0 0; }
.scr__dbars span i {
  position: absolute;
  bottom: 100%; left: 50%;
  transform: translateX(-50%);
  padding-bottom: .25em;
  font-style: normal;
  font-size: .9em;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.scr__daxis { display: flex; gap: .5em; padding-top: .35em; }
.scr__daxis span { flex: 1; text-align: center; font-size: .9em; color: #6E7681; }

.scr__dtable { display: flex; flex-direction: column; min-height: 0; padding: .8em; border-radius: .4em; background: #161C26; overflow: hidden; }
.scr__dth { margin-bottom: .5em; font-size: 1.25em; font-weight: 700; color: #fff; }
.scr__dhead, .scr__drow {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr .9fr;
  gap: .4em;
  padding: .35em 0;
  font-size: 1em;
}
.scr__dhead { color: #8B949E; font-weight: 700; border-bottom: 1px solid #232C3A; }
.scr__drow { border-bottom: 1px solid #1C2430; }
.scr__drow span:first-child { font-weight: 600; color: #fff; }
.scr__drow em { font-style: normal; font-weight: 700; text-align: right; }
.scr__drow em.up { color: #3FB950; }
.scr__drow em.mid { color: #D29922; }
.scr__drow em.low { color: #F85149; }

/* --- Variante Obras (escura, acento violeta) ------------------------ */
.scr--obras {
  --ob-panel:  #12151E;
  --ob-line:   #1F2430;
  --ob-violet: #8B5CF6;
  --ob-blue:   #2563EB;
  --ob-amber:  #F5B300;
  --ob-green:  #22C55E;
  background: #0A0C12;
  color: #A6ADBD;
}
.scr__app--obras { grid-template-columns: 20em 1fr; }
.scr--obras .scr__nav { display: flex; flex-direction: column; background: #0D1017; padding: 1em .8em; }
.scr--obras .scr__navbrand { font-size: 1.6em; letter-spacing: -.02em; }
.scr--obras .scr__navbrand em { font-style: normal; font-weight: 400; color: #6B7280; }
.scr__navmark--ob { background: var(--ob-blue); }

.scr__navlbl {
  display: block;
  margin-bottom: .6em;
  font-size: .9em;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5A6274;
}
.scr--obras .scr__nav li { margin-bottom: .25em; padding: .7em .9em; border-radius: .4em; font-size: 1.1em; }
.scr--obras .scr__nav li.is-on { background: var(--ob-blue); color: #fff; }

.scr__navuser {
  display: flex;
  align-items: center;
  gap: .6em;
  margin-top: auto;
  padding: .7em;
  border-radius: .4em;
  background: var(--ob-panel);
}
.scr__navav {
  display: grid;
  place-items: center;
  width: 2.2em; height: 2.2em;
  border-radius: .35em;
  background: var(--ob-blue);
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
}
.scr__navuser b { display: block; font-size: 1.05em; color: #fff; }
.scr__navuser i { font-style: normal; font-size: .85em; letter-spacing: .08em; text-transform: uppercase; color: #5A6274; }
.scr__navout { padding: .8em .9em; font-size: 1.05em; color: #6B7280; }

/* Barra superior. */
.scr--obras .scr__body { gap: 1em; padding: 1em 1.4em; }
.scr__obtop { display: flex; align-items: center; justify-content: flex-end; gap: .6em; }
.scr__obpill {
  padding: .7em 1.4em;
  border-radius: .5em;
  background: var(--ob-panel);
  box-shadow: inset 0 0 0 1px var(--ob-line);
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #D5DAE5;
}
.scr__obicon {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.8em; height: 2.8em;
  border-radius: .5em;
  background: var(--ob-panel);
  box-shadow: inset 0 0 0 1px var(--ob-line);
  font-size: .8em;
  font-weight: 700;
  color: #fff;
}
.scr__obav {
  width: 2.6em; height: 2.6em;
  border-radius: .5em;
  background: var(--ob-panel);
  box-shadow: inset 0 0 0 1px var(--ob-line);
}

/* Título e ações. */
.scr__obhead { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5em; }
.scr__obtitle { display: block; font-size: 3em; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.scr__obsub { margin-top: .3em; max-width: 34em; font-size: 1em; color: #6B7280; }
.scr__obacts { display: flex; align-items: center; gap: .6em; flex: none; }

.scr__seg { display: flex; padding: .3em; border-radius: .5em; background: var(--ob-panel); box-shadow: inset 0 0 0 1px var(--ob-line); }
.scr__seg b, .scr__seg i {
  padding: .55em 1.1em;
  border-radius: .4em;
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.scr__seg b { background: var(--ob-violet); color: #fff; }
.scr__seg i { color: #6B7280; }
.scr__obnew {
  padding: .85em 1.3em;
  border-radius: .5em;
  background: var(--ob-violet);
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Cartões-resumo. */
.scr__obstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8em; }
.scr__obstat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .2em .8em;
  padding: .9em 1.1em;
  border-radius: .5em;
  background: var(--ob-panel);
  box-shadow: inset 0 0 0 1px var(--ob-line);
}
.scr__obtile { grid-row: 1 / 3; width: 2.4em; height: 2.4em; border-radius: .4em; }
.scr__obstat b { align-self: end; font-size: 2em; font-weight: 700; color: #fff; }
.scr__obstat i { align-self: start; font-style: normal; font-size: .85em; letter-spacing: .08em; text-transform: uppercase; color: #6B7280; }

.ob-amber  { background: rgba(245, 179, 0, .18);  color: var(--ob-amber); }
.ob-violet { background: rgba(139, 92, 246, .18); color: var(--ob-violet); }
.ob-green  { background: rgba(34, 197, 94, .18);  color: var(--ob-green); }
.ob-purple { background: rgba(124, 58, 237, .18); color: var(--ob-violet); }

/* Colunas por fase. */
.scr__obcols { flex: 1; min-height: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8em; }
.scr__obcol { display: flex; flex-direction: column; gap: .8em; min-height: 0; }

.scr__obch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8em;
  padding: .85em 1.1em;
  border-radius: .5em;
  background: var(--ob-panel);
  box-shadow: inset 0 0 0 1px var(--ob-line);
  font-size: 1.15em;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.scr__obch::before { content: '•'; margin-right: -.5em; font-size: 1.2em; }
.scr__obch span { flex: 1; }
.scr__obch b { padding: .1em .6em; border-radius: .3em; background: rgba(255, 255, 255, .08); font-size: .75em; }

.scr__obcard {
  display: flex;
  flex-direction: column;
  gap: .45em;
  padding: 1em;
  border-radius: .5em;
  background: var(--ob-panel);
  box-shadow: inset 0 0 0 1px var(--ob-line);
}
.scr__obmeta { display: flex; align-items: center; gap: .6em; font-size: .9em; font-weight: 700; letter-spacing: .06em; color: #6B7280; }
.scr__obmeta em { padding: .15em .5em; border-radius: .25em; background: rgba(139, 92, 246, .18); color: var(--ob-violet); font-style: normal; }
.scr__obname { font-size: 1.35em; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; color: #fff; }
.scr__obwho { font-size: 1em; letter-spacing: .04em; text-transform: uppercase; color: #6B7280; }
.scr__obdates { display: flex; justify-content: space-between; gap: .8em; font-size: .95em; color: #6B7280; }

.scr__obtrack { display: flex; gap: .3em; height: .35em; }
.scr__obtrack i { width: var(--w); border-radius: .2em; }
.scr__obtrack::after { content: ''; flex: 1; border-radius: .2em; background: rgba(255, 255, 255, .07); }
.scr__obtrack i.ob-amber  { background: var(--ob-amber); }
.scr__obtrack i.ob-violet { background: var(--ob-violet); }

.scr__obphase {
  margin-top: .2em;
  padding: .7em .9em;
  border-radius: .4em;
  font-size: 1em;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* --- Botão "Ver a tela" nos cards de produto ------------------------ */
.svc__foot { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem 1.1rem; margin-top: auto; padding-top: 1.6rem; }
.svc__foot .svc__cta { margin-top: 0; padding-top: 0; }
.svc__see {
  font-size: .9rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.svc__see:hover { color: var(--navy); }

/* --- Visor de tela cheia -------------------------------------------- */
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(.75rem, 3vw, 2rem);
  background: rgba(17, 26, 56, .72);
  backdrop-filter: blur(6px);
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb[hidden] { display: none; }

.lb__panel {
  width: min(100%, 1200px);
  border-radius: var(--r-xl);
  background: var(--paper);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  animation: riseIn .28s var(--ease);
}
.lb__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.lb__title { font-size: .95rem; font-weight: 700; color: var(--navy); }
.lb__close {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--navy);
  transition: background-color .2s ease, color .2s ease;
}
.lb__close:hover { background: var(--navy); color: #fff; }
.lb__close svg { width: 17px; height: 17px; }

/* O palco reaproveita a mesma escala em `cqw` do notebook. */
.lb__stage { container-type: inline-size; aspect-ratio: 16 / 10; background: #EDEFF4; }
.lb__note { padding: .75rem 1.2rem; font-size: .82rem; color: var(--faint); }

/* =====================================================================
   22. RESPONSIVO
   ===================================================================== */

/* Sem hover (toque): "Ampliar" e o véu dos projetos ficam sempre visíveis. */
@media (hover: none) {
  .mock__zoom { opacity: 1; }

  .work__veil {
    opacity: 1;
    background: linear-gradient(180deg, transparent 58%, rgba(17, 26, 56, .6));
    place-items: end center;
    padding-bottom: .9rem;
  }
  .work__open { transform: none; padding: .55rem 1.15rem; font-size: .82rem; }
}

@media (max-width: 1100px) {
  .nav { gap: 1.15rem; }
  .nav a[data-spy], .nav a[data-route] { font-size: .84rem; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { order: 2; max-width: 540px; margin-inline: auto; width: 100%; }
  .blob--1 { top: auto; bottom: 6%; right: 2%; width: clamp(220px, 44vw, 320px); }
  .blob--2 { display: none; }
  .mock__phone { right: 0; width: 94px; }
  .chip--1 { left: -10px; }
  .chip--2 { right: -6px; }
  .seal { left: -16px; width: 88px; height: 88px; }
  .footer__inner { grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

/* Menu mobile --------------------------------------------------------- */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .brand { margin-right: auto; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 1rem 1.25rem 1.75rem;
    background: var(--paper);
    border-radius: 0 0 var(--r-2xl) var(--r-2xl);
    box-shadow: var(--sh-lg);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .3s var(--ease), visibility .3s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }

  .nav a {
    padding: .95rem .25rem;
    font-size: 1rem !important;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open a { animation: riseIn .35s var(--ease) backwards; }
  .nav.is-open a:nth-child(1) { animation-delay: .03s; }
  .nav.is-open a:nth-child(2) { animation-delay: .07s; }
  .nav.is-open a:nth-child(3) { animation-delay: .11s; }
  .nav.is-open a:nth-child(4) { animation-delay: .15s; }
  .nav.is-open a:nth-child(5) { animation-delay: .19s; }
  .nav.is-open a:nth-child(6) { animation-delay: .23s; }
  .nav.is-open a:nth-child(7) { animation-delay: .27s; }

  .nav a[data-spy]::after, .nav a[data-route]::after { display: none; }
  .nav a[data-spy].is-active, .nav a[data-route].is-active { color: var(--blue); }

  .nav__cta {
    margin: 1rem 0 0;
    justify-content: center;
    border-bottom: 0 !important;
    padding: 1rem 1.4rem !important;
    color: #fff !important;
  }
}

/* No visor, telas densas não cabem em tela estreita: em vez de encolher a
   fonte até virar borrão, a tela ganha largura fixa e rola na horizontal. */
@media (max-width: 900px) {
  .lb__stage {
    container-type: normal;
    aspect-ratio: auto;
    height: min(70vh, 560px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lb__stage .scr { width: 1000px; height: 625px; font-size: 8.5px; }
  .switch__menu { min-width: min(19rem, 82vw); }
}

@media (max-width: 860px) {
  .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .split, .benefits { grid-template-columns: minmax(0, 1fr); }
  .benefits__copy .btn { width: 100%; }

  /* Uma coluna: o print precisa de largura para continuar legível. */
  .works { grid-template-columns: minmax(0, 1fr); }
  .work:only-child { flex-direction: column; min-height: 0; }
  .work:only-child .work__shot { flex: none; }
  .work:only-child .work__shot img { height: auto; aspect-ratio: 16 / 9; }
  .work:only-child .work__body { flex: 1 1 auto; }
}

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: minmax(0, 1fr); gap: 1.75rem; }
  .footer__brand { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --pad-y: clamp(2.75rem, 10vw, 4rem); --r-2xl: 22px; }

  .cards, .grid-3, .pillars, .cases, .timeline, .steps { grid-template-columns: minmax(0, 1fr); }

  .dash__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .35rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
  }
  .dash__tabs::-webkit-scrollbar { display: none; }
  .dash__tab { scroll-snap-align: start; }

  /* CTAs ocupam a largura toda — alvo de toque maior. */
  .hero__actions, .page-hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn, .page-hero__actions .btn, .section__cta .btn { width: 100%; }

  .seal { display: none; }
  .chip { font-size: .7rem; padding: .42rem .78rem; }
  .chip--1 { top: 5%; left: -4px; }
  .chip--2 { bottom: 24%; right: -2px; }

  /* A cadeia vira vertical e as setas apontam para baixo. */
  .chain__item { width: 100%; justify-content: center; }
  .chain__sep { transform: rotate(90deg); }

  .track__row { grid-template-columns: 78px minmax(0, 1fr) 38px; gap: .55rem; }
  .track__name { font-size: .79rem; }

  .work__shot img { aspect-ratio: 3 / 2; }
  .form__row { grid-template-columns: minmax(0, 1fr); }

  /* No mobile o botão fica sempre acessível — não espera a rolagem. */
  .fab { padding: 1rem; opacity: 1; visibility: visible; transform: none; }
  .fab__label { display: none; }
}

@media (max-width: 520px) {
  .mock__phone { display: none; }
}

/* =====================================================================
   MOVIMENTO REDUZIDO
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .js .intro,
  .js .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .js .bars span { height: var(--h) !important; }
  .js .track__bar i { width: var(--w) !important; }

  .blob--1, .blob--3, .fab.is-visible, .fab__ring,
  .badge__pulse, .mock, .seal__ring { animation: none !important; }

  /* os botões do WhatsApp mantêm a luz girando, porém mais lenta e discreta */
  .fab::before,
  .btn--wa:hover::before,
  .btn--primary:hover::before {
    animation-name: fabSpin !important;
    animation-duration: 3.4s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }
  .fab__ring { display: none; }

  /* Os cards mantêm a transição do hover, apenas um pouco mais contida. */
  .tl, .step, .pillar, .tl::before, .step::before, .pillar::before,
  .tl__title, .step__title, .pillar__title,
  .tl__text, .step__text, .pillar__text,
  .tl__num, .step__num { transition-duration: .45s !important; }
  .tl:hover::after, .step:hover::after, .pillar:hover::after {
    animation-name: cardShine !important;
    animation-duration: 1s !important;
    animation-fill-mode: both !important;
  }
}
