/* =========================================================
   Argos — landing waitlist
   Tokens espelham os do app principal (frontend/index.css).
   ========================================================= */

:root {
  /* Brand — Petrol Teal (profundo, premium).
     Mantém o DNA teal do app, mas mergulhado e dessaturado:
     deixa de ser "mentinha viva" e vira um petróleo caro. */
  --brand-50:  hsl(186, 34%, 96%);
  --brand-100: hsl(186, 36%, 90%);
  --brand-200: hsl(187, 38%, 79%);
  --brand-300: hsl(187, 42%, 62%);
  --brand-400: hsl(187, 52%, 42%);
  --brand-500: hsl(187, 62%, 31%); /* mid */
  --brand-600: hsl(187, 67%, 24%); /* #145C66 — principal / botões */
  --brand-700: hsl(187, 70%, 19%); /* #0F4A52 — hover / texto sobre claro */
  --brand-800: hsl(188, 68%, 14%);
  --brand-900: hsl(189, 62%, 10%);

  /* Accent — Sand / Brass. Calor premium, uso PONTUAL
     (plano em destaque, aspas do founder, detalhes). Nunca como fundo amplo. */
  --accent-50:  hsl(34, 56%, 96%);
  --accent-100: hsl(33, 58%, 90%);
  --accent-200: hsl(32, 60%, 82%);
  --accent-300: hsl(31, 62%, 72%);
  --accent-400: hsl(31, 62%, 66%);
  --accent-500: hsl(30, 62%, 60%); /* #D99A5B — principal */
  --accent-600: hsl(28, 56%, 50%);
  --accent-700: hsl(26, 54%, 41%); /* texto/contraste sobre claro */

  /* Slate — neutros teal-ink (frios, atados ao petrol em vez de azul genérico) */
  --slate-50:  hsl(190, 24%, 97%);
  --slate-100: hsl(190, 18%, 95%);
  --slate-200: hsl(192, 15%, 89%);
  --slate-300: hsl(193, 12%, 82%);
  --slate-400: hsl(195, 9%, 61%);
  --slate-500: hsl(197, 10%, 43%);
  --slate-600: hsl(198, 12%, 31%);
  --slate-700: hsl(199, 15%, 23%);
  --slate-800: hsl(196, 19%, 14%);
  --slate-900: hsl(190, 24%, 10%);

  /* Paper — fundo sand quente. É daqui que vem o "calor" da paleta:
     base levemente bege, com cartões #fff flutuando por cima. */
  --paper:   hsl(42, 50%, 99%);
  --paper-2: hsl(38, 36%, 95%);

  --ink: hsl(188, 26%, 11%); /* #14201F — teal-ink profundo */

  /* Tipografia */
  --font-sans: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", "Plus Jakarta Sans", ui-serif, Georgia, serif;

  /* Layout */
  --container-max: 1180px;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Sombras tintadas (teal-ink, nunca preto puro) */
  --shadow-sm:
    0 1px 2px hsl(187 35% 12% / 0.06),
    0 1px 1px hsl(187 35% 12% / 0.04);
  --shadow-md:
    0 1px 2px hsl(187 35% 14% / 0.06),
    0 8px 24px -8px hsl(187 35% 14% / 0.12),
    0 3px 8px -3px hsl(187 35% 14% / 0.08);
  --shadow-lg:
    0 1px 2px hsl(187 35% 14% / 0.06),
    0 32px 80px -24px hsl(187 40% 16% / 0.22),
    0 12px 32px -12px hsl(187 40% 16% / 0.14);
  --shadow-glow:
    0 0 0 1px hsl(187 80% 50% / 0.08),
    0 32px 80px -24px hsl(187 60% 30% / 0.28),
    0 12px 32px -12px hsl(187 60% 30% / 0.18);
  --inset-light: inset 0 1px 0 hsl(0 0% 100% / 0.7);

  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --focus-ring: 0 0 0 2px #fff, 0 0 0 4px var(--brand-500);
  --focus-ring-inset: inset 0 0 0 2px var(--brand-500);
}

/* ----- Reset ligeiro ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
/* overflow-x: clip (não 'hidden') corta o transbordo horizontal SEM criar
   scroll-container — isso preserva o position: sticky dos descendentes
   (scrollytelling "Como funciona" e pin do "versus"). Fallback: hidden. */
html, body { margin: 0; padding: 0; overflow-x: hidden; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01", "kern";
  letter-spacing: -0.005em;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection {
  background: var(--brand-200);
  color: var(--brand-900);
}

/* ----- Util ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .container { padding-inline: 40px; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-700);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ----- Tipografia ----- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5.2vw + 0.5rem, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--slate-900);
  margin: 0 0 1.25rem;
  text-wrap: balance;
  /* opsz 60 (e não 144): hairlines mais robustas = mais legível, mantendo a Fraunces */
  font-variation-settings: "opsz" 60;
}
.display em {
  font-family: var(--font-display);
  /* romano (não itálico) — o itálico real da Fraunces nem é carregado, então
     itálico = faux/skew distorcido. Upright + peso 700 + petrol = ênfase limpa. */
  font-style: normal;
  font-weight: 700;
  color: var(--brand-700);
  letter-spacing: -0.014em;
  font-variation-settings: "opsz" 60;
}
.display-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2.6vw + 0.8rem, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin: 0 0 0.9rem;
  text-wrap: balance;
  font-variation-settings: "opsz" 110;
}
.lede {
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.2rem);
  line-height: 1.5;
  color: var(--slate-600);
  margin: 0 0 1.25rem;
  max-width: 46ch;
  text-wrap: pretty;
}
.hero-pain {
  margin: 0 0 1.6rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--slate-500);
  max-width: 46ch;
  text-wrap: pretty;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 56ch;
  margin: 0 auto;
  text-wrap: pretty;
}
.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin-bottom: 0.85rem;
}

.section-head {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 720px;
}

/* ----- Botões ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  min-height: 44px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease-out), background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.btn-sm { padding: 0.55rem 0.95rem; font-size: 0.875rem; }
.btn-lg { padding: 0.95rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-md), inset 0 1px 0 hsl(187 80% 60% / 0.4);
}
.btn-primary:hover { background: var(--brand-700); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--slate-200);
}
.btn-ghost:hover { background: var(--slate-50); border-color: var(--slate-300); }
/* no hero o ghost fica sobre fundo creme — bg branco + leve sombra pra destacar */
.hero .btn-ghost { background: #fff; border-color: var(--slate-200); box-shadow: var(--shadow-sm); }
.hero .btn-ghost:hover { background: var(--slate-50); border-color: var(--slate-300); }

.link-ghost {
  color: var(--slate-600);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-md);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.link-ghost:hover { color: var(--slate-900); background: var(--slate-50); }

/* ----- Header — Compact Floating Island -----
   .site-header centraliza a pílula no topo (sem fundo — só posicionamento).
   .header-inner é a pílula glass compacta, sempre destacada do topo.
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding-top: 18px;
  pointer-events: none;
  transition: padding-top 0.45s var(--ease-spring);
}
.site-header > * { pointer-events: auto; }
.site-header.is-scrolled { padding-top: 11px; }

/* Pílula glass compacta — largura do conteúdo, sempre flutuante */
.header-inner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  height: 58px;
  max-width: calc(100vw - 28px);
  padding: 0 0.5rem 0 1.1rem;
  background: hsl(0 0% 100% / 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid hsl(187 22% 88% / 0.5);
  border-radius: var(--radius-lg);
  box-shadow:
    var(--inset-light),
    0 6px 20px -10px hsl(187 35% 14% / 0.13);
  transition:
    height 0.4s var(--ease-spring),
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
/* Reforço sutil ao rolar — mais opacidade e sombra */
.site-header.is-scrolled .header-inner {
  height: 54px;
  background: hsl(0 0% 100% / 0.86);
  border-color: hsl(187 22% 84% / 0.7);
  box-shadow:
    var(--inset-light),
    0 10px 26px -12px hsl(187 35% 14% / 0.16);
}

.brand-mark {
  transition: transform 0.35s var(--ease-spring);
}
.site-header.is-scrolled .brand-mark { transform: scale(0.92); }

@media (max-width: 720px) {
  .header-nav { display: none; }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.32rem;
  color: var(--brand-800);
  letter-spacing: -0.02em;
  padding: 6px 4px;
  border-radius: var(--radius-md);
}
.brand:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.brand-mark {
  display: inline-flex;
  color: var(--brand-800);
}
.brand-word { font-family: var(--font-sans); }
.header-nav { display: flex; align-items: center; gap: 0.95rem; }

.header-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 0.4rem 0.55rem;
  white-space: nowrap;
  transition: color 0.18s ease;
}
/* Underline sutil no hover — afordância sem "pílula" */
.header-link::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.15rem;
  height: 1.5px;
  border-radius: 1px;
  background: var(--brand-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease-out);
}
.header-link:hover { color: var(--slate-900); }
.header-link:hover::after { transform: scaleX(1); }
.header-link:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }
/* seção atual (scroll-spy): underline fixo + cor da marca */
.header-link.is-active { color: var(--brand-700); }
.header-link.is-active::after { transform: scaleX(1); background: var(--brand-600); }

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
/* CTA do header — outline discreto: presente mas sem dominar o menu */
.header-cta {
  background: var(--brand-600);
  color: #fff;
  border: 1px solid var(--brand-600);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 16px -8px hsl(187 60% 18% / 0.45);
  font-weight: 600;
}
.header-cta:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
  color: #fff;
  box-shadow: 0 9px 22px -8px hsl(187 60% 18% / 0.5);
  transform: translateY(-1px);
}

/* Link discreto pra usuário já cadastrado fazer login */
.header-login {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  color: var(--slate-600);
  font-weight: 500;
  padding: 0.4rem 0.35rem;
  border-radius: var(--radius-sm);
  transition: color 0.18s ease;
  white-space: nowrap;
}
.header-login:hover { color: var(--slate-900); }
.header-login:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.header-login-prefix { color: var(--slate-500); }
.header-login-cta {
  color: var(--brand-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--brand-200);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.header-login:hover .header-login-cta {
  text-decoration-color: var(--brand-500);
}
@media (max-width: 640px) {
  /* Em mobile, esconde o prefixo pra economizar espaço — só "Entrar" */
  .header-login-prefix { display: none; }
  .header-login { font-size: 0.86rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(64px + 4.25rem) 0 4.5rem;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 60%);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { padding: calc(64px + 6rem) 0 6rem; }
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.orb-a {
  width: 520px; height: 520px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, var(--brand-300), transparent 65%);
  animation: drift-a 22s var(--ease-out) infinite alternate;
}
.orb-b {
  width: 460px; height: 460px;
  bottom: -180px; right: -100px;
  background: radial-gradient(circle, var(--brand-500), transparent 60%);
  opacity: 0.32;
  animation: drift-b 26s var(--ease-out) infinite alternate;
}
.orb-c {
  width: 600px; height: 600px;
  top: -120px; right: -180px;
  background: radial-gradient(circle, var(--brand-200), transparent 60%);
  opacity: 0.5;
  filter: blur(100px);
}
@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, 30px, 0) scale(1.08); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-30px, -40px, 0) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .orb { animation: none !important; }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr); gap: 3.5rem; }
}
/* mobile/tablet (hero empilhado): centraliza a coluna de texto */
@media (max-width: 1023px) {
  .hero-copy { text-align: center; }
  .hero-copy .cta-row { justify-content: center; }
  .hero-copy .hero-urgency { justify-content: center; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-800);
  background: hsl(0 0% 100% / 0.6);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px hsl(187 80% 40% / 0.18);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--slate-700);
  background: hsl(0 0% 100% / 0.7);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-chips li svg { color: var(--brand-600); flex-shrink: 0; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--slate-600);
  margin: 1.4rem 0 0;
  max-width: 44ch;
}
.hero-proof-avatar {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--inset-light), 0 2px 6px -2px hsl(187 35% 14% / 0.25);
}
.hero-proof-text { line-height: 1.4; }
.hero-proof-text strong { color: var(--slate-900); font-weight: 600; }
.hero-proof strong { color: var(--slate-900); font-weight: 600; }

/* Microline abaixo dos CTAs: info contextual sem peso visual */
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.4rem 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--brand-700);
  text-wrap: balance;
}
.hero-urgency svg { flex: none; color: var(--accent-500); }
.hero-microline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate-500);
}
.hero-microline .micro-dot {
  flex: none;
  width: 5px;
  height: 5px;
  /* dot visual de 5px centralizado num slot de 15px = mesma largura do ícone do raio,
     para o texto desta linha alinhar com o da .hero-urgency */
  margin: 0 5px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 3px hsl(187 80% 40% / 0.18);
}
.avatars { display: inline-flex; }
.avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -8px;
  background-size: cover;
}
.avatar.a1 { background: linear-gradient(135deg, var(--brand-400), var(--brand-700)); }
.avatar.a2 { background: linear-gradient(135deg, hsl(200 70% 60%), hsl(220 60% 38%)); }
.avatar.a3 { background: linear-gradient(135deg, hsl(30 60% 70%), hsl(20 50% 45%)); }

/* ----- Mock-up do produto ----- */
.hero-mock {
  position: relative;
}
/* Wrapper que isola o mock-window + suas floating-pills, pra que os pips
   fiquem fora desse contexto de posicionamento — assim a pill não invade
   o espaço dos pips. */
.mock-window-wrap {
  position: relative;
  perspective: 1600px;
  animation: mock-float 8s var(--ease-out) infinite alternate;
}
.mock-parallax {
  position: relative;
  will-change: transform;
}
.mock-window {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid hsl(187 22% 90%);
  box-shadow:
    28px 40px 90px -28px hsl(187 40% 16% / 0.26),
    10px 16px 36px -14px hsl(187 40% 16% / 0.16),
    0 2px 6px -2px hsl(187 40% 16% / 0.18),
    var(--inset-light);
  overflow: hidden;
  isolation: isolate;
  transform: rotateY(-5deg) rotateX(3deg) translateZ(0);
  transform-origin: center center;
}
.mock-window::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(125deg, hsl(0 0% 100% / 0.14) 0%, hsl(0 0% 100% / 0.04) 18%, transparent 42%);
  mix-blend-mode: screen;
}
.mock-window::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(180deg, hsl(187 30% 96% / 0.5), hsl(187 25% 92% / 0.2));
  border: 1px solid hsl(187 25% 85% / 0.4);
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .mock-window {
    transform: rotateY(-8deg) rotateX(4deg);
  }
}
@keyframes mock-float { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .mock-window { animation: none !important; transform: none; }
  .mock-window-wrap { animation: none !important; }
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  padding: 0.65rem 0.9rem;
}
.mock-chrome .dot-r,
.mock-chrome .dot-y,
.mock-chrome .dot-g {
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, hsl(0 0% 100% / 0.6), var(--slate-300));
  box-shadow: inset 0 -1px 1px hsl(187 20% 70% / 0.5);
  border: 1px solid var(--slate-200);
}
.mock-url {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--slate-500);
  background: #fff;
  border: 1px solid var(--slate-200);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
}

.mock-body { padding: 1.25rem 1.25rem 1.4rem; }

/* Stack de mocks (intimações ⇄ financeiro ⇄ etc) — empilhados em grid */
.mock-stack {
  display: grid;
}
.mock-stack > .mock-body {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  transition:
    opacity 850ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 850ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 600ms ease-out;
  transform-origin: center 30%;
}
/* Tab-content visível estica pra preencher a altura disponível do mock-body.
   Exclui .mock-kanban porque ele JÁ é display:grid e não pode virar flex-column. */
.mock-stack > .mock-body > [data-tab-content]:not([hidden]):not(.mock-kanban) {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
/* mock-kanban se estica via grid item (align-self:stretch é default) — não precisa virar flex. */
.mock-stack > .mock-body > .mock-kanban:not([hidden]) {
  align-self: stretch;
}
.mock-stack > .mock-body:not(.is-active) {
  opacity: 0;
  transform: translateY(26px) scale(0.93);
  filter: blur(14px);
  pointer-events: none;
  /* permitem o item ativo dominar a altura */
  visibility: hidden;
}
.mock-stack > .mock-body.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  visibility: visible;
}

/* Stagger interno: filhos do mock ativo aparecem em waterfall a cada ativação */
.mock-stack > .mock-body.is-active .mock-top,
.mock-stack > .mock-body.is-active [data-tab-content]:not([hidden]) > *,
.mock-stack > .mock-body.is-active .feed-item,
.mock-stack > .mock-body.is-active .kpi,
.mock-stack > .mock-body.is-active .week-col,
.mock-stack > .mock-body.is-active .cal-event,
.mock-stack > .mock-body.is-active .dash-event,
.mock-stack > .mock-body.is-active .kanban-col,
.mock-stack > .mock-body.is-active .tasklist-row,
.mock-stack > .mock-body.is-active .timeline-item,
.mock-stack > .mock-body.is-active .month-day {
  animation: mock-child-in 600ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.mock-stack > .mock-body.is-active .mock-top { animation-delay: 60ms; }

/* Cascata por nth-child nos containers comuns */
.mock-stack > .mock-body.is-active .mock-feed .feed-item:nth-child(1),
.mock-stack > .mock-body.is-active .mock-kpis .kpi:nth-child(1),
.mock-stack > .mock-body.is-active .mock-week .week-col:nth-child(1),
.mock-stack > .mock-body.is-active .dash-agenda .dash-event:nth-child(1),
.mock-stack > .mock-body.is-active .kanban-col:nth-child(1),
.mock-stack > .mock-body.is-active .mock-tasklist .tasklist-row:nth-child(1),
.mock-stack > .mock-body.is-active .timeline-item:nth-child(1) { animation-delay: 160ms; }

.mock-stack > .mock-body.is-active .mock-feed .feed-item:nth-child(2),
.mock-stack > .mock-body.is-active .mock-kpis .kpi:nth-child(2),
.mock-stack > .mock-body.is-active .dash-agenda .dash-event:nth-child(2),
.mock-stack > .mock-body.is-active .kanban-col:nth-child(2),
.mock-stack > .mock-body.is-active .mock-tasklist .tasklist-row:nth-child(2),
.mock-stack > .mock-body.is-active .timeline-item:nth-child(2) { animation-delay: 240ms; }

.mock-stack > .mock-body.is-active .mock-feed .feed-item:nth-child(3),
.mock-stack > .mock-body.is-active .mock-kpis .kpi:nth-child(3),
.mock-stack > .mock-body.is-active .dash-agenda .dash-event:nth-child(3),
.mock-stack > .mock-body.is-active .kanban-col:nth-child(3),
.mock-stack > .mock-body.is-active .mock-tasklist .tasklist-row:nth-child(3),
.mock-stack > .mock-body.is-active .timeline-item:nth-child(3) { animation-delay: 320ms; }

.mock-stack > .mock-body.is-active .mock-feed .feed-item:nth-child(4),
.mock-stack > .mock-body.is-active .mock-kpis .kpi:nth-child(4),
.mock-stack > .mock-body.is-active .mock-tasklist .tasklist-row:nth-child(4),
.mock-stack > .mock-body.is-active .timeline-item:nth-child(4) { animation-delay: 400ms; }

@keyframes mock-child-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Sem stagger quando o mock está inativo — reseta pra próxima ativação */
.mock-stack > .mock-body:not(.is-active) .mock-top,
.mock-stack > .mock-body:not(.is-active) .feed-item,
.mock-stack > .mock-body:not(.is-active) .kpi,
.mock-stack > .mock-body:not(.is-active) .cal-event,
.mock-stack > .mock-body:not(.is-active) .week-col,
.mock-stack > .mock-body:not(.is-active) .dash-event,
.mock-stack > .mock-body:not(.is-active) .kanban-col,
.mock-stack > .mock-body:not(.is-active) .tasklist-row,
.mock-stack > .mock-body:not(.is-active) .timeline-item,
.mock-stack > .mock-body:not(.is-active) .month-day {
  animation: none;
}

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .mock-stack > .mock-body {
    transition: opacity 0.25s ease;
    transform: none;
    filter: none;
  }
  .mock-stack > .mock-body.is-active * { animation: none !important; }
}
.mock-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}
.mock-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brand-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mock-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--slate-900);
  margin-top: 0.2rem;
  letter-spacing: -0.015em;
}
/* Tabs (não-lidas / todas) */
.mock-tabs {
  display: inline-flex;
  gap: 0.25rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 3px;
  border-radius: var(--radius-pill);
}
.mock-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 0.28rem 0.6rem;
  border: 0;
  background: transparent;
  font-family: inherit;
  border-radius: var(--radius-pill);
  transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}
button.mock-tab { cursor: pointer; }
button.mock-tab:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.mock-tab.is-active {
  background: #fff;
  color: var(--slate-900);
  font-weight: 600;
  box-shadow:
    0 1px 2px hsl(187 30% 14% / 0.06),
    var(--inset-light);
}
.tab-count {
  font-size: 0.62rem;
  font-weight: 700;
  background: var(--brand-500);
  color: #fff;
  padding: 0.05rem 0.35rem;
  border-radius: var(--radius-pill);
  min-width: 16px;
  text-align: center;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}

/* Feed de intimações */
.mock-feed {
  margin-top: 0.25rem;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
}
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid var(--slate-100);
  position: relative;
  transition: background-color 0.2s ease;
  opacity: 0;
  transform: translateY(8px);
  animation: feed-in 700ms var(--ease-spring) forwards;
}
.feed-item:nth-child(1) { animation-delay: 200ms; }
.feed-item:nth-child(2) { animation-delay: 320ms; }
.feed-item:nth-child(3) { animation-delay: 440ms; }
.feed-item:last-child { border-bottom: none; }

.feed-item.is-unread {
  background: hsl(187 80% 97% / 0.4);
}
.feed-item.is-unread::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-500);
}
.feed-item:not(.is-unread) .feed-body { opacity: 0.62; }

@keyframes feed-in {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .feed-item { opacity: 1; transform: none; animation: none; }
}

.feed-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px hsl(187 80% 40% / 0.15);
  animation: feed-pulse 2.2s ease-out infinite;
}
@keyframes feed-pulse {
  0%, 100% { box-shadow: 0 0 0 4px hsl(187 80% 40% / 0.15); }
  50%      { box-shadow: 0 0 0 6px hsl(187 80% 40% / 0.06); }
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .feed-dot { animation: none; }
}

.feed-body { flex: 1; min-width: 0; }

.feed-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.32rem;
  font-size: 0.7rem;
  flex-wrap: wrap;
}
.feed-tag {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-xs);
  font-size: 0.62rem;
}
.feed-process {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--slate-700);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.feed-date {
  margin-left: auto;
  color: var(--slate-500);
  font-size: 0.68rem;
}
.feed-text {
  font-size: 0.78rem;
  color: var(--slate-700);
  margin: 0 0 0.5rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feed-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  flex-wrap: wrap;
}
.feed-client {
  color: var(--slate-800);
  font-weight: 500;
}
.feed-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--slate-600);
  background: var(--slate-100);
  padding: 0.18rem 0.45rem;
  border-radius: var(--radius-pill);
}
.feed-badge.urgent {
  color: hsl(0 70% 40%);
  background: hsl(0 90% 97%);
  border: 1px solid hsl(0 80% 92%);
  font-weight: 600;
}
.feed-badge.urgent svg {
  animation: badge-pulse 2s ease-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .feed-badge.urgent svg { animation: none; }
}

/* ---------- Mock Financeiro: KPIs + transações ---------- */
.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 0.15rem;
  margin-bottom: 0.85rem;
}
.kpi {
  padding: 0.7rem 0.75rem;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  box-shadow: var(--shadow-sm);
}
.kpi.is-alert {
  border-color: hsl(0 80% 92%);
  background: hsl(0 90% 99%);
}
.kpi-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}
.kpi-value {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--slate-900);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.kpi.is-alert .kpi-value { color: hsl(0 70% 38%); }
.kpi-trend {
  font-size: 0.64rem;
  font-weight: 500;
  color: var(--slate-500);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.kpi-trend.up { color: hsl(160 65% 32%); }
.kpi-trend.down {
  color: hsl(0 70% 42%);
}
.kpi-trend.down svg { transform: rotate(180deg); }

/* Mini chart inline em KPIs */
.kpi-chart {
  display: block;
  margin-top: 0.45rem;
  height: 24px;
  width: 100%;
}
.kpi-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
/* Animação de "desenho" quando o mock financeiro fica ativo */
.kpi-chart svg path[fill="none"] {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
[data-mock-view="financeiro"].is-active .kpi-chart svg path[fill="none"] {
  animation: chart-draw 1.4s var(--ease-spring) 250ms forwards;
}
[data-mock-view="financeiro"].is-active .kpi-chart svg circle,
[data-mock-view="financeiro"].is-active .kpi-chart svg rect {
  opacity: 0;
  animation: chart-fade 0.5s var(--ease-spring) 1.4s forwards;
}
[data-mock-view="financeiro"].is-active .kpi-chart svg rect:nth-child(1) { animation-delay: 0.2s; }
[data-mock-view="financeiro"].is-active .kpi-chart svg rect:nth-child(2) { animation-delay: 0.3s; }
[data-mock-view="financeiro"].is-active .kpi-chart svg rect:nth-child(3) { animation-delay: 0.4s; }
[data-mock-view="financeiro"].is-active .kpi-chart svg rect:nth-child(4) { animation-delay: 0.5s; }
[data-mock-view="financeiro"].is-active .kpi-chart svg rect:nth-child(5) { animation-delay: 0.6s; }
[data-mock-view="financeiro"].is-active .kpi-chart svg rect:nth-child(6) { animation-delay: 0.7s; }
@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes chart-fade {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .kpi-chart svg path[fill="none"] { stroke-dashoffset: 0; }
  .kpi-chart svg circle,
  .kpi-chart svg rect { opacity: 1; animation: none; }
}

/* Status icons (paid/pending/overdue) */
.feed-status {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feed-status.paid {
  background: hsl(160 55% 92%);
  color: hsl(160 65% 28%);
  border: 1px solid hsl(160 50% 82%);
}
.feed-status.pending {
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
}
.feed-status.overdue {
  background: hsl(0 90% 96%);
  color: hsl(0 70% 42%);
  border: 1px solid hsl(0 80% 90%);
  animation: feed-pulse 2.2s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .feed-status.overdue { animation: none; }
}

/* Variações do feed-head pro financeiro */
.feed-tag-soft {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-600);
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-xs);
}
.feed-desc {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate-800);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.feed-amount {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate-900);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
.feed-amount.paid { color: hsl(160 65% 28%); }
.feed-amount.overdue { color: hsl(0 70% 42%); }

.feed-date-soft {
  margin-left: auto;
  font-size: 0.68rem;
  color: var(--slate-500);
}
.feed-date-soft.overdue { color: hsl(0 70% 42%); font-weight: 500; }
.feed-item.is-overdue { background: hsl(0 90% 99%); }
.feed-item.is-overdue::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: hsl(0 70% 55%);
}

/* ---------- Mock Agenda: semana + grid de eventos ---------- */
.mock-week {
  display: grid;
  grid-template-columns: 36px repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 0.55rem;
}
.mock-week::before {
  /* spacer alinhado com a coluna de horas */
  content: "";
}
.week-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.32rem 0;
  border-radius: var(--radius-xs);
}
.week-col.is-today {
  background: var(--brand-50);
  border: 1px solid var(--brand-200);
}
.week-day {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}
.week-col.is-today .week-day { color: var(--brand-700); }
.week-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-900);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.week-col.is-today .week-num { color: var(--brand-700); }

.mock-cal {
  display: grid;
  grid-template-columns: 36px 1fr;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cal-hours {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-right: 1px solid var(--slate-100);
  padding: 6px 0;
}
.cal-hours span {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--slate-400);
  text-align: center;
  letter-spacing: 0.02em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}
.cal-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 56px);
  padding: 4px;
  background-image:
    repeating-linear-gradient(to right,
      transparent 0,
      transparent calc((100% - 8px) / 5 - 1px),
      var(--slate-100) calc((100% - 8px) / 5 - 1px),
      var(--slate-100) calc((100% - 8px) / 5));
  background-position: 4px 0;
  background-size: calc(100% - 8px) 100%;
  background-repeat: no-repeat;
}
.cal-grid::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(to bottom,
    transparent 0,
    transparent calc((100% / 4) - 1px),
    var(--slate-100) calc((100% / 4) - 1px),
    var(--slate-100) calc(100% / 4));
  pointer-events: none;
}

.cal-event {
  grid-column: var(--col);
  grid-row: var(--row) / span var(--span, 1);
  margin: 3px;
  padding: 4px 6px;
  border-radius: var(--radius-xs);
  font-size: 0.62rem;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
  border: 1px solid;
  z-index: 1;
}
.cal-event.audiencia {
  background: var(--brand-50);
  border-color: var(--brand-200);
}
.cal-event.prazo {
  background: hsl(0 90% 97%);
  border-color: hsl(0 80% 90%);
}
.cal-event.reuniao {
  background: var(--slate-100);
  border-color: var(--slate-200);
}
.event-label {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-600);
}
.cal-event.audiencia .event-label { color: var(--brand-700); }
.cal-event.prazo .event-label { color: hsl(0 70% 42%); }
.event-google {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  color: var(--slate-700);
  font-size: 0.55rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  font-family: var(--font-sans);
}
.event-title {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--slate-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.005em;
}
.cal-event.audiencia .event-title { color: var(--brand-900); }
.cal-event.prazo .event-title { color: hsl(0 70% 28%); }
.event-meta {
  font-size: 0.55rem;
  color: var(--slate-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-cal-footer {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.7rem;
  color: var(--slate-600);
}
.mock-cal-footer strong {
  color: var(--slate-900);
  font-weight: 600;
}

/* Mês view (calendar grid 7×5) */
.mock-month {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: var(--shadow-sm);
}
.month-grid-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.35rem;
  padding: 0 2px;
}
.month-grid-head span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  text-align: center;
  text-transform: uppercase;
}
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.month-day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: var(--radius-xs);
  background: hsl(187 20% 98%);
  font-variant-numeric: tabular-nums;
  gap: 2px;
  padding: 2px 0;
}
.month-day.muted { color: var(--slate-300); background: transparent; }
.month-day.today {
  background: var(--brand-500);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--inset-light);
}
.month-day.has-events {
  background: #fff;
  border: 1px solid var(--slate-200);
  font-weight: 600;
}
.month-day.today.has-events { border-color: var(--brand-600); }
.day-num { line-height: 1; }
.day-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: inline-block;
}
.day-dot.brand { background: var(--brand-500); }
.day-dot.rose { background: hsl(0 70% 55%); }
.month-day .day-dot + .day-dot { margin-left: -1px; }
.month-day.today .day-dot.brand { background: #fff; }
.month-day.today .day-dot.rose { background: hsl(0 80% 88%); }

.month-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.6rem;
  font-size: 0.65rem;
  color: var(--slate-600);
}

/* Timeline cheia (Movimentações view) — mais densa, sem o painel IA */
.proc-timeline-full {
  max-height: none;
}
.proc-timeline-full .timeline-item {
  padding-bottom: 0.45rem;
}
.proc-timeline-full .timeline-item:not(:last-child) {
  margin-bottom: 0.45rem;
}

/* Mobile: agenda fica apertada — simplifica */
@media (max-width: 480px) {
  .cal-grid { grid-template-rows: repeat(4, 48px); }
  .event-meta { display: none; }
}

/* ---------- Mock Processo + IA ---------- */
.proc-cnj {
  font-family: var(--font-sans) !important;
  font-size: 1.02rem !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em !important;
}
.proc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.7rem;
  color: var(--slate-700);
  padding: 0.55rem 0.7rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
}
.proc-meta-item strong {
  display: inline-block;
  color: var(--slate-500);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 0.35rem;
}

.mock-process-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.65rem;
}
@media (max-width: 520px) {
  .mock-process-grid { grid-template-columns: 1fr; }
}

.proc-timeline {
  padding: 0.65rem 0.7rem;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
}
.proc-section-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0 0 0.65rem;
}
.timeline-item {
  display: flex;
  gap: 0.55rem;
  padding-bottom: 0.55rem;
  position: relative;
}
.timeline-item:not(:last-child) {
  border-bottom: 1px dashed var(--slate-100);
  margin-bottom: 0.55rem;
}
.timeline-item.is-muted { opacity: 0.5; }
.timeline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-500);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px hsl(187 80% 40% / 0.14);
}
.timeline-item.is-muted .timeline-dot {
  background: var(--slate-300);
  box-shadow: none;
}
.timeline-content { flex: 1; min-width: 0; }
.timeline-date {
  font-size: 0.62rem;
  color: var(--slate-500);
  display: block;
  margin-bottom: 0.18rem;
}
.timeline-text {
  font-size: 0.72rem;
  color: var(--slate-800);
  line-height: 1.4;
  margin: 0;
}

.proc-ai {
  padding: 0.8rem 0.85rem;
  background: linear-gradient(135deg, hsl(187 30% 96%), hsl(187 35% 92%));
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm), var(--inset-light);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.proc-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 110% -10%, hsl(187 80% 60% / 0.22), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.proc-ai > * { position: relative; z-index: 1; }
.ai-header {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-700);
  margin-bottom: 0.5rem;
}
.ai-header svg {
  animation: ai-sparkle 2.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes ai-sparkle {
  0%, 100% { transform: rotate(0) scale(1); opacity: 1; }
  50%      { transform: rotate(14deg) scale(1.1); opacity: 0.75; }
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .ai-header svg { animation: none; }
}
.ai-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ai-suggestion-title {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0 0 0.35rem;
}
.ai-text {
  font-size: 0.7rem;
  line-height: 1.45;
  color: var(--slate-700);
  margin: 0 0 0.7rem;
}
.ai-actions {
  display: flex;
  gap: 0.4rem;
}
.ai-btn {
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 0.34rem 0.7rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.ai-btn.primary {
  background: var(--brand-600);
  color: #fff;
  border: 1px solid var(--brand-700);
  box-shadow: inset 0 1px 0 hsl(187 80% 60% / 0.4);
}
.ai-btn.primary:hover { background: var(--brand-700); }
.ai-btn.ghost {
  background: #fff;
  color: var(--brand-700);
  border: 1px solid var(--brand-200);
}
.ai-btn.ghost:hover { background: var(--brand-50); }

/* ---------- Mock Dashboard: greeting editorial + KPIs + Publicações ---------- */
.dash-top {
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.dash-greeting-block {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.dash-eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.dash-greeting {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.4vw + 0.9rem, 1.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--slate-900);
  margin: 0.1rem 0 0.22rem;
}
.dash-greeting em {
  font-style: italic;
  color: var(--brand-700);
}
.dash-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.dash-rule {
  width: 18px;
  height: 1px;
  background: var(--brand-500);
}

.dash-kpis {
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}
.dash-kpis .kpi {
  padding: 0.55rem 0.6rem;
  gap: 0.12rem;
}
.dash-kpis .kpi-value {
  font-size: 1rem;
}
.dash-kpis .kpi-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.dash-kpis .kpi-trend {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.kpi-value.emphasis { color: var(--brand-700); }

/* KPI dashboard: head com label + ícone, foot com valor + trend */
.kpi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}
.kpi-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-xs);
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kpi-icon.icon-warning {
  background: hsl(38 90% 96%);
  color: hsl(38 70% 35%);
  border-color: hsl(38 80% 88%);
}
.kpi-foot {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.kpi-trend.alert {
  color: hsl(0 70% 45%) !important;
  font-weight: 700 !important;
}
.kpi-trend.warning {
  color: hsl(38 75% 38%) !important;
  font-weight: 700 !important;
}

/* Card de Publicação (replaces "Hoje na agenda") */
.dash-pub-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}
.dash-pub-section-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash-pub-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0;
  letter-spacing: -0.005em;
}
.dash-pub-sub {
  font-size: 0.65rem;
  color: var(--slate-500);
  margin: 0;
}

.dash-pub {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  background: hsl(187 25% 98%);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--brand-500);
}
.dash-pub-bell {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.dash-pub-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}
.dash-pub-case {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--slate-900);
  margin: 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.dash-pub-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  color: var(--slate-600);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.dash-pub-process {
  color: var(--slate-700);
  font-weight: 500;
}
.dash-pub-sep { color: var(--slate-400); }
.dash-pub-court {
  color: var(--slate-700);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.dash-pub-vinculo {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: hsl(160 65% 32%);
  font-weight: 600;
}
.dash-pub-vinculo::before {
  content: "•";
  color: var(--slate-400);
  margin-right: 0.15rem;
}
.dash-pub-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  flex-shrink: 0;
}
.dash-pub-date {
  font-size: 0.6rem;
  color: var(--slate-500);
  font-variant-numeric: tabular-nums;
}
.dash-pub-pill {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(0 70% 38%);
  background: hsl(0 90% 97%);
  border: 1px solid hsl(0 75% 90%);
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
}

/* Fluxo de Caixa — mini chart com área + linha sólida + linha tracejada (projeção) */
.dash-cashflow {
  margin-top: 0.55rem;
}
.dash-cashflow-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.dash-cashflow-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0;
  letter-spacing: -0.005em;
}
.dash-cashflow-sub {
  font-size: 0.62rem;
  color: var(--slate-500);
  margin: 0;
}
.dash-cashflow-period {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-700);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 0.22rem 0.5rem 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
}
.dash-cashflow-period svg { color: var(--slate-500); }
.dash-cashflow-body {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.dash-cashflow-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--slate-400);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  text-align: right;
  width: 22px;
  flex-shrink: 0;
  padding: 2px 0;
}
.dash-cashflow-chart {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.dash-cashflow-chart svg {
  display: block;
  width: 100%;
  height: 56px;
  overflow: visible;
}
.dash-cashflow-legend {
  display: flex;
  gap: 0.8rem;
  font-size: 0.6rem;
  color: var(--slate-600);
}
.dash-cashflow-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.legend-swatch {
  display: inline-block;
  width: 14px;
  height: 0;
  border-top: 1.5px solid var(--brand-500);
}
.legend-swatch.dashed {
  border-top-style: dashed;
  opacity: 0.6;
}

/* Anima o desenho da linha quando dashboard fica ativo */
[data-mock-view="dashboard"].is-active .dash-cashflow-chart svg path[fill="none"] {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: cf-draw 1.4s var(--ease-spring) 350ms forwards;
}
[data-mock-view="dashboard"].is-active .dash-cashflow-chart svg path[fill="none"]:nth-of-type(2) {
  animation-delay: 950ms;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
[data-mock-view="dashboard"].is-active .dash-cashflow-chart svg circle {
  opacity: 0;
  animation: cf-dot-in 0.4s ease-out 1.3s forwards;
}
@keyframes cf-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes cf-dot-in {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  [data-mock-view="dashboard"].is-active .dash-cashflow-chart svg path[fill="none"] {
    stroke-dashoffset: 0;
    animation: none;
  }
  [data-mock-view="dashboard"].is-active .dash-cashflow-chart svg circle {
    opacity: 1;
    animation: none;
  }
}

.dash-section {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
  box-shadow: var(--shadow-sm);
}
.dash-agenda {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.dash-event {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.event-time {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate-600);
  font-variant-numeric: tabular-nums;
  width: 38px;
  flex-shrink: 0;
}
.event-color {
  width: 3px;
  height: 26px;
  border-radius: 2px;
  flex-shrink: 0;
}
.event-color.audiencia { background: var(--brand-500); }
.event-color.prazo { background: hsl(0 70% 55%); }
.dash-event-body { flex: 1; min-width: 0; line-height: 1.3; }
.event-name {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--slate-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event-loc {
  font-size: 0.66rem;
  color: var(--slate-600);
}

@media (max-width: 480px) {
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
}

/* O atributo [hidden] tem que vencer qualquer display: grid/flex/etc
   declarado pelas classes dos blocos togglados via tabs. */
[hidden] { display: none !important; }

/* ---------- Mock Tarefas: quadro sóbrio (não-startup) ---------- */
.mock-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.35rem;
  flex: 1;
  min-height: 0;
}
.kanban-col {
  background: hsl(187 20% 97%);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.kanban-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  padding: 0 0.15rem;
}
.kanban-col-title {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-600);
}
.kanban-col-count {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--slate-500);
  background: #fff;
  border: 1px solid var(--slate-200);
  padding: 0.05rem 0.4rem;
  border-radius: var(--radius-pill);
  min-width: 18px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
/* Frame: estica via flex pra preencher o col, define o "viewport"
   da área scrollable sem que o conteúdo dos cards conte pra altura
   natural do col (que entraria no cálculo da grid row do mock-stack). */
.kanban-cards-frame {
  position: relative;
  flex: 1;
  min-height: 0;
}
.kanban-cards {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-300) transparent;
  scroll-behavior: smooth;
}
.kanban-cards::-webkit-scrollbar { width: 4px; }
.kanban-cards::-webkit-scrollbar-track { background: transparent; }
.kanban-cards::-webkit-scrollbar-thumb {
  background: var(--brand-300);
  border-radius: 2px;
}
.kanban-cards::-webkit-scrollbar-thumb:hover {
  background: var(--brand-500);
}
.kanban-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s var(--ease-spring),
    box-shadow 0.18s ease,
    opacity 0.18s ease,
    border-color 0.18s ease;
}
.kanban-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.kanban-card.is-urgent { border-color: hsl(0 75% 90%); }
.kanban-card.is-done { opacity: 0.65; }

/* Cursor de arrastar */
.kanban-card[draggable="true"] { cursor: grab; }
.kanban-card[draggable="true"]:active { cursor: grabbing; }

/* Estado durante drag */
.kanban-card.is-dragging {
  opacity: 0.45;
  transform: scale(0.96);
  cursor: grabbing;
  box-shadow: 0 24px 60px -20px hsl(187 30% 12% / 0.35);
}

/* Coluna recebendo drop */
.kanban-col.is-drop-target {
  background: hsl(187 40% 95%);
  border-color: var(--brand-400);
  box-shadow: 0 0 0 2px var(--brand-200) inset;
}
.kanban-col.is-drop-target .kanban-col-title { color: var(--brand-700); }
.kanban-col {
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.kanban-card.is-done .kanban-card-title {
  text-decoration: line-through;
  color: var(--slate-500);
}
.kanban-card-prio {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-300);
}
.kanban-card-prio.urgent { background: hsl(0 75% 55%); }
.kanban-card-prio.medium { background: hsl(35 85% 55%); }
.kanban-card-prio.low { background: hsl(220 12% 70%); }
.kanban-card-prio.active { background: var(--brand-500); }
.kanban-card-prio.done {
  background: hsl(160 50% 90%);
  color: hsl(160 65% 28%);
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 7px;
  right: 7px;
}
.kanban-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-900);
  letter-spacing: -0.005em;
  padding-right: 16px;
  line-height: 1.3;
}
.kanban-card-meta {
  font-size: 0.62rem;
  color: var(--slate-600);
}
.kanban-card-due {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.22rem;
  display: inline-block;
  padding: 0.12rem 0.42rem;
  border-radius: var(--radius-pill);
  background: var(--slate-100);
  color: var(--slate-700);
  width: fit-content;
}
.kanban-card-due.urgent {
  background: hsl(0 90% 96%);
  color: hsl(0 70% 38%);
}
.kanban-card-due.brand {
  background: var(--brand-50);
  color: var(--brand-700);
}

/* Mobile: kanban mantém 3 colunas mas vira scroll horizontal com snap
   (em vez de empilhar vertical, que descaracteriza o kanban) */
@media (max-width: 520px) {
  .mock-kanban {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .mock-kanban::-webkit-scrollbar { display: none; }
  .kanban-col {
    min-width: 140px;
    min-height: auto;
    scroll-snap-align: start;
  }
}

/* ---------- Mock Tarefas: visão Lista ---------- */
.mock-tasklist {
  margin-top: 0.35rem;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tasklist-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--slate-100);
  transition: background-color 0.18s ease;
}
.tasklist-row:last-child { border-bottom: none; }
.tasklist-row:hover { background: var(--slate-50); }
.tasklist-row.is-done { opacity: 0.62; }
.tasklist-row.is-done .tasklist-title {
  text-decoration: line-through;
  color: var(--slate-500);
}

.tasklist-prio {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-300);
}
.tasklist-prio.urgent { background: hsl(0 75% 55%); }
.tasklist-prio.medium { background: hsl(35 85% 55%); }
.tasklist-prio.active { background: var(--brand-500); }
.tasklist-prio.done {
  background: hsl(160 50% 90%);
  color: hsl(160 65% 28%);
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tasklist-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
}
.tasklist-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-900);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tasklist-meta {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tasklist-status {
  flex-shrink: 0;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.tasklist-status.afazer {
  background: var(--slate-100);
  color: var(--slate-700);
  border-color: var(--slate-200);
}
.tasklist-status.andamento {
  background: var(--brand-50);
  color: var(--brand-700);
  border-color: var(--brand-200);
}
.tasklist-status.concluido {
  background: hsl(160 60% 95%);
  color: hsl(160 65% 28%);
  border-color: hsl(160 50% 86%);
}

.tasklist-due {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate-500);
  font-variant-numeric: tabular-nums;
  min-width: 56px;
  text-align: right;
}
.tasklist-due.urgent { color: hsl(0 70% 42%); }
.tasklist-due.brand { color: var(--brand-700); }

@media (max-width: 480px) {
  /* Em mobile, esconde o status pill (informação já está no dot de prio) */
  .tasklist-status { display: none; }
  .tasklist-row { gap: 0.55rem; padding: 0.55rem 0.7rem; }
  .tasklist-title { font-size: 0.74rem; }
}

.floating-pill {
  position: absolute;
  bottom: -18px;
  left: -18px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid hsl(192 15% 92%);
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-800);
  box-shadow:
    0 2px 4px hsl(187 35% 14% / 0.08),
    0 12px 28px -10px hsl(187 40% 16% / 0.20),
    var(--inset-light);
  opacity: 0;
  transform: translate(-12px, 12px) scale(0.92);
  transition:
    opacity 600ms var(--ease-spring),
    transform 600ms var(--ease-spring);
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
}
/* Toggle de teste — oculta os pills/badges flutuantes dos mocks.
   Para reativar, basta remover esta regra. */
.floating-pill { display: none !important; }
.floating-pill.is-active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  animation: float-pill 6s ease-in-out infinite 900ms;
}
.floating-pill svg { color: var(--brand-600); }

/* Posições alternativas — origem direcional muda conforme o canto */
.floating-pill.pos-tl {
  bottom: auto;
  right: auto;
  top: -16px;
  left: -16px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  transform: translate(-12px, -12px) scale(0.92);
}
.floating-pill.pos-tl.is-active { transform: translate(0, 0) scale(1); }

.floating-pill.pos-tr {
  bottom: auto;
  left: auto;
  top: -16px;
  right: -16px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  transform: translate(12px, -12px) scale(0.92);
}
.floating-pill.pos-tr.is-active { transform: translate(0, 0) scale(1); }

.floating-pill.pos-br {
  bottom: -18px;
  left: auto;
  right: -16px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  transform: translate(12px, 12px) scale(0.92);
}
.floating-pill.pos-br.is-active { transform: translate(0, 0) scale(1); }

/* Variantes de cor */
.floating-pill.is-success {
  border-color: hsl(160 45% 80%);
  color: hsl(160 60% 22%);
  background: hsl(160 60% 99%);
}
.floating-pill.is-success svg { color: hsl(160 65% 32%); }

.floating-pill.is-urgent {
  border-color: hsl(0 75% 88%);
  color: hsl(0 70% 32%);
  background: hsl(0 90% 99%);
}
.floating-pill.is-urgent svg { color: hsl(0 70% 45%); }

.floating-pill.is-counter {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-700);
  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 hsl(187 80% 60% / 0.4);
}
.floating-pill.is-counter svg,
.floating-pill.is-counter .pill-dot { color: #fff; }

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}
.pill-dot.pulse {
  animation: pill-dot-pulse 1.7s ease-out infinite;
}
@keyframes pill-dot-pulse {
  0%   { box-shadow: 0 0 0 0   currentColor; }
  70%  { box-shadow: 0 0 0 6px transparent; }
  100% { box-shadow: 0 0 0 0   transparent; }
}

@keyframes float-pill {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(0, -6px) scale(1); }
}
@keyframes float-pill-up {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(0, 4px) scale(1); }
}

/* Stagger das float animations para evitar sincronia */
.floating-pill.is-active.pos-tl {
  animation: float-pill-up 6s ease-in-out infinite 1300ms;
}
.floating-pill.is-active.pos-tr {
  animation: float-pill-up 6s ease-in-out infinite 1700ms;
}
.floating-pill.is-active.pos-br {
  animation: float-pill 6s ease-in-out infinite 3100ms;
}

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .floating-pill.is-active,
  .floating-pill.is-active.pos-tr,
  .floating-pill.is-active.pos-br { animation: none; }
  .pill-dot.pulse { animation: none; }
}

/* Mobile: mantém só a pill principal pra não poluir */
@media (max-width: 640px) {
  .floating-pill { left: 50%; transform: translate(-50%, 8px); bottom: -22px; right: auto; top: auto; }
  .floating-pill.is-active { transform: translate(-50%, 0); }
  .floating-pill.pos-tr,
  .floating-pill.pos-br { display: none; }
}

/* Pips de troca entre mocks — quebra em múltiplas linhas em telas estreitas */
.mock-pips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 0.35rem;
  column-gap: 0.15rem;
  margin: 3rem auto 0;  /* clearance pra pill flutuante não bater nos pips */
  padding: 0.4rem 0.5rem;
  background: hsl(187 25% 96% / 0.6);
  border: 1px solid hsl(187 22% 90% / 0.8);
  border-radius: var(--radius-lg);
  width: fit-content;
  max-width: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}
.mock-pip {
  white-space: nowrap;
}
/* Em viewport amplo, mantém todos os pips numa linha só com pill perfeito */
@media (min-width: 768px) {
  .mock-pips {
    flex-wrap: nowrap;
    border-radius: var(--radius-pill);
    padding: 0.4rem 1.25rem;
    column-gap: 0.15rem;
  }
}
.mock-pip {
  position: relative;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    background-color 0.25s var(--ease-spring),
    color 0.25s var(--ease-spring),
    box-shadow 0.25s var(--ease-spring);
}
.mock-pip:hover { color: var(--slate-900); background: hsl(187 25% 100% / 0.7); }
.mock-pip.is-active {
  background: #fff;
  color: var(--slate-900);
  font-weight: 600;
  box-shadow:
    0 1px 2px hsl(187 30% 14% / 0.08),
    var(--inset-light);
}
.mock-pip:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
@media all {
  .mock-pip.is-active::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 3px;
    height: 2px;
    border-radius: 1px;
    background: var(--brand-600);
    transform-origin: left;
    animation: pip-progress 5s linear;
  }
  .mock-pips.is-paused .mock-pip.is-active::after { animation-play-state: paused; }
}
@keyframes pip-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ============================================================
   TRUST
   ============================================================ */
.trust {
  padding: 1.5rem 0 3rem;
  background: #fff;
  border-bottom: 1px solid var(--slate-100);
}
.trust-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-500);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.chip svg { color: var(--brand-600); }
.chip:hover {
  background: #fff;
  border-color: var(--brand-200);
  color: var(--slate-900);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 6rem 0 3rem;
  background: hsl(186 34% 93%);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}

.feature {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
/* Destaque do card de acompanhamento processual — o diferencial do Argos */
.feature--primary {
  border-color: var(--brand-200);
  background: linear-gradient(180deg, var(--brand-50), #fff 60%);
  box-shadow: var(--shadow-md), inset 0 2px 0 var(--brand-500);
}
.feature--primary .feature-body { display: flex; flex-direction: column; }
.feature--primary h3 { font-size: 1.22rem; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-50);
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border: 1px solid var(--brand-100);
}
.feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--slate-900);
}
.feature {
  display: flex;
  flex-direction: column;
}
.feature p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.96rem;
  line-height: 1.55;
}
/* Benefit promise (linklei-style: a promessa antes da descrição) */
.feature p.feature-benefit {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: var(--brand-700);
}
/* Garante respiro entre descrição e a prova, e empurra a prova p/ a base */
.feature p:not(.feature-benefit) { margin-bottom: 1.15rem; }
.feature-proof {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.36rem 0.72rem 0.36rem 0.62rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--slate-700);
  background: var(--paper-2);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-pill);
}
.feature-proof::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent-500);
  box-shadow: 0 0 0 3px hsl(30 62% 60% / 0.18);
}

/* ============================================================
   LOSS AVERSION ("Pare de…")
   ============================================================ */
.loss-aversion {
  padding: 6rem 0;
  background: var(--brand-50);
  position: relative;
  overflow: hidden;
}
.loss-aversion::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(hsl(187 50% 40% / 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}

/* Editorial-magazine layout: numeral massivo em Fraunces + row horizontal */
.loss-list {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin: 0 auto;
}
.loss-row {
  display: grid;
  grid-template-columns: minmax(72px, 110px) 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-top: 1px solid var(--brand-200);
}
.loss-row:last-child {
  border-bottom: 1px solid var(--brand-200);
}
.loss-bignum {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.6rem, 4vw + 1rem, 4rem);
  line-height: 0.85;
  letter-spacing: -0.035em;
  color: var(--brand-500);
  font-variation-settings: "opsz" 72;
  font-variant-numeric: lining-nums;
}
.loss-row-body h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.18rem, 0.6vw + 1rem, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--slate-900);
  text-wrap: balance;
}
.loss-row-body p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 60ch;
}
.loss-row:hover .loss-bignum {
  color: var(--brand-700);
  transition: color 0.3s ease;
}

@media (max-width: 640px) {
  .loss-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1.4rem 0;
  }
  .loss-bignum {
    line-height: 1;
  }
}

/* ============================================================
   FOUNDER BLOCK
   ============================================================ */
.founder {
  padding: 3.25rem 0;
  /* halo radial bem leve atrás do card, dá um "spotlight" sem trocar a cor da dobra */
  background:
    radial-gradient(88% 64% at 50% 40%, hsl(187 32% 97.5%), transparent 72%),
    var(--paper);
}
.founder-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.founder-card .kicker { display: block; margin-bottom: 0.75rem; }
.founder-statement {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 80;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.18rem, 1.2vw + 0.85rem, 1.45rem);
  line-height: 1.45;
  /* itálico real da Fraunces é caligráfico/apertado — abrir o tracking para respirar */
  letter-spacing: 0.02em;
  color: var(--slate-900);
  margin: 0 auto 1.4rem;
  max-width: 44ch;
  text-wrap: balance;
}
.founder-statement::before { content: "“"; color: var(--accent-500); margin-right: 0.04em; }
.founder-statement::after  { content: "”"; color: var(--accent-500); margin-left: 0.04em; }
.founder-quote {
  margin: 0 0 1.5rem;
}
.founder-quote p {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.6vw + 0.8rem, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--slate-900);
  margin: 0;
  text-wrap: balance;
}
.founder-quote p::before { content: "“"; color: var(--accent-500); margin-right: 0.05em; }
.founder-quote p::after  { content: "”"; color: var(--accent-500); margin-left: 0.05em; }

.founder-cite {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}
.founder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-400), var(--brand-700));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founder-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.founder-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-900);
}
.founder-role {
  font-size: 0.82rem;
  color: var(--slate-500);
  margin-top: 2px;
}

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist {
  position: relative;
  padding: 6rem 0 7rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--brand-50) 100%);
  overflow: hidden;
}
.waitlist-orbs { position: absolute; inset: 0; pointer-events: none; }

.waitlist-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .waitlist-wrap {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 2.5rem;
    /* Perks centralizadas verticalmente em relação ao card do form/sucesso */
    align-items: center;
  }
}

.waitlist-perks {
  padding: 0.4rem 0.25rem 0;
}
.perks-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-900);
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}
.perks-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.perks-list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--slate-700);
}
.perks-list strong { color: var(--slate-900); font-weight: 600; }
.perk-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.waitlist-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2.2rem;
}
@media (max-width: 640px) {
  .waitlist-card { padding: 1.6rem; }
}
.waitlist-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, hsl(187 80% 60% / 0.4), transparent 50%);
  z-index: -1;
  filter: blur(14px);
  opacity: 0.6;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1.2rem;
  margin: 2.5rem auto 0;
  max-width: 880px;
  padding-top: 1.75rem;
  border-top: 1px dashed var(--slate-200);
}
.trust-band li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-600);
}
.trust-band li svg { color: var(--brand-600); flex-shrink: 0; }

.waitlist-form { display: flex; flex-direction: column; gap: 1.25rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-700);
  letter-spacing: -0.005em;
}
.field label .opt {
  color: var(--slate-400);
  font-weight: 400;
}
.field input,
.field select {
  font: inherit;
  font-size: 0.98rem;
  color: var(--slate-900);
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2364748b' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 7.5 10 12.5 15 7.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 16px;
  padding-right: 2.4rem;
}
.field input::placeholder { color: var(--slate-400); }
.field input:hover,
.field select:hover { border-color: var(--slate-300); }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand-400);
  box-shadow: 0 0 0 4px hsl(187 80% 52% / 0.18);
}
.field.has-error input,
.field.has-error select {
  border-color: hsl(0 70% 55%);
  box-shadow: 0 0 0 4px hsl(0 70% 55% / 0.15);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field-error {
  font-size: 0.8rem;
  color: hsl(0 70% 45%);
  min-height: 1em;
}

.form-fine {
  font-size: 0.82rem;
  color: var(--slate-500);
  text-align: center;
  margin: 0.4rem 0 0;
}

.btn-spinner {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid hsl(0 0% 100% / 0.4);
  border-top-color: #fff;
  display: none;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading .btn-label { opacity: 0.7; }
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading { pointer-events: none; }

.waitlist-success {
  text-align: center;
  padding: 0.5rem 0.25rem 0.25rem;
}
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid var(--brand-100);
  animation: pop 0.5s var(--ease-out);
}
@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.waitlist-success h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
  color: var(--slate-900);
}
.waitlist-success p {
  margin: 0 0 0.6rem;
  color: var(--slate-600);
  font-size: 0.98rem;
}
.waitlist-success strong { color: var(--brand-700); font-weight: 600; }

.success-share {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--slate-100);
}
.success-share-title {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--slate-700) !important;
  margin: 0 0 0.9rem !important;
  line-height: 1.5 !important;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
.success-actions .btn { flex: 0 1 auto; }

.success-fine {
  margin-top: 1.1rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  font-size: 0.85rem !important;
  color: var(--slate-500) !important;
}

/* ============================================================
   STICKY CTA (mobile)
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  transform: translate(-50%, 12px);
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  background: var(--brand-600);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 36px -10px hsl(187 60% 18% / 0.45), 0 4px 14px -6px hsl(187 60% 18% / 0.25);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out), background-color 0.18s ease;
}
.sticky-cta svg { stroke: currentColor; }
.sticky-cta:hover,
.sticky-cta:focus-visible { background: var(--brand-700); }
.sticky-cta:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 14px 36px -10px hsl(187 60% 18% / 0.45);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .sticky-cta { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .sticky-cta { transition: opacity 0.2s ease; transform: translate(-50%, 0); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 6rem 0;
  background: var(--paper);
}
.faq-inner { max-width: 760px; }
.section-head + .faq-list { margin-top: 0; }
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--slate-300); }
.faq-item[open] {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--slate-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  display: inline-flex;
  color: var(--slate-500);
  transition: transform 0.25s var(--ease-out), color 0.2s ease;
}
.faq-item[open] .faq-chev {
  transform: rotate(180deg);
  color: var(--brand-700);
}
.faq-body {
  padding: 0 1.3rem 1.2rem;
  color: var(--slate-600);
  font-size: 0.96rem;
  line-height: 1.6;
}
.faq-body p { margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, hsl(40 30% 90%) 0%, hsl(36 28% 85%) 100%);
  border-top: 1px solid hsl(38 26% 86%);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 700;
}
.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--slate-500);
}
.footer-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.88rem;
}
.footer-nav a {
  color: var(--slate-600);
  transition: color 0.15s ease;
}
.footer-nav a:hover { color: var(--brand-700); }

/* ============================================================
   REVEAL ON SCROLL — blur + spring + subtle scale (Linear-style)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 900ms var(--ease-spring),
    transform 900ms var(--ease-spring),
    filter 900ms var(--ease-spring);
  will-change: transform, opacity, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Waterfall stagger por nth-child em grids comuns (features, loss, perks) */
.feature-grid .feature.reveal:nth-child(1) { transition-delay: 0ms; }
.feature-grid .feature.reveal:nth-child(2) { transition-delay: 70ms; }
.feature-grid .feature.reveal:nth-child(3) { transition-delay: 140ms; }
.feature-grid .feature.reveal:nth-child(4) { transition-delay: 210ms; }
.feature-grid .feature.reveal:nth-child(5) { transition-delay: 280ms; }
.feature-grid .feature.reveal:nth-child(6) { transition-delay: 350ms; }

.loss-grid .loss-item.reveal:nth-child(1) { transition-delay: 0ms; }
.loss-grid .loss-item.reveal:nth-child(2) { transition-delay: 90ms; }
.loss-grid .loss-item.reveal:nth-child(3) { transition-delay: 180ms; }
.loss-grid .loss-item.reveal:nth-child(4) { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    transition-delay: 0ms !important;
  }
}

/* ============================================================
   VISUAL UPGRADES — depth, texture, micro-interactions
   ============================================================ */

/* --- Double-bezel: waitlist card (substitui o glow antigo) --- */
.waitlist-card {
  border-color: hsl(187 22% 88%);
  box-shadow: var(--shadow-lg), var(--inset-light);
  isolation: isolate;
}
.waitlist-card::before {
  /* halo difuso atrás do card */
  content: "";
  position: absolute;
  inset: -50px -30px -30px -30px;
  background: radial-gradient(ellipse at 30% 0%, hsl(187 80% 60% / 0.22), transparent 55%);
  filter: blur(28px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.85;
}
.waitlist-card::after {
  /* "bandeja" externa onde a placa de vidro repousa */
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: calc(var(--radius-xl) + 10px);
  background: linear-gradient(180deg, hsl(187 30% 96% / 0.55), hsl(187 30% 93% / 0.25));
  border: 1px solid hsl(187 25% 85% / 0.5);
  box-shadow: var(--inset-light);
  z-index: -1;
  pointer-events: none;
}

/* --- Founder card: refinamento sutil sem virar caixa pesada --- */
.founder-card {
  padding: 1.75rem 2rem;
  background: linear-gradient(180deg, #ffffff, hsl(187 30% 97.5%));
  border: 1px solid hsl(187 28% 88%);
  border-radius: var(--radius-lg);
  /* elevação premium: sombra ambiente MUITO difusa (flutua, não vira caixa) */
  box-shadow:
    var(--inset-light),
    0 1px 2px hsl(187 40% 16% / 0.04),
    0 18px 40px -24px hsl(187 48% 18% / 0.22),
    0 6px 16px -12px hsl(187 42% 16% / 0.12);
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  /* hairline editorial no topo */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-400), transparent);
  opacity: 0.7;
}

/* --- Spotlight cursor-aware em cards (só desktop com mouse) --- */
@media (hover: hover) and (pointer: fine) {
  .feature,
  .loss-item {
    position: relative;
    isolation: isolate;
  }
  .feature::after,
  .loss-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      300px circle at var(--mx, 50%) var(--my, 50%),
      hsl(187 80% 50% / 0.10),
      transparent 45%
    );
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--ease-spring);
    z-index: 0;
  }
  .feature:hover::after,
  .loss-item:hover::after {
    opacity: 1;
  }
  .feature > *,
  .loss-item > * {
    position: relative;
    z-index: 1;
  }
}

/* --- Noise overlay (textura editorial sutil) --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  opacity: 0.04;
  mix-blend-mode: multiply;
}

/* --- CTA com ilha (button-in-island) --- */
.btn-magnetic {
  position: relative;
  padding-right: 0.55rem;
  gap: 0.6rem;
}
.btn-magnetic .btn-label {
  position: relative;
  z-index: 1;
}
.btn-island {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: hsl(0 0% 100% / 0.18);
  flex-shrink: 0;
  transition:
    transform 0.45s var(--ease-spring),
    background-color 0.18s ease;
}
.btn-magnetic:hover .btn-island {
  background: hsl(0 0% 100% / 0.28);
  transform: translateX(3px) scale(1.06);
}
.btn-magnetic:active {
  transform: scale(0.98);
}
.btn-magnetic.is-loading .btn-island { display: none; }
/* .btn-magnetic define position:relative e vinha sobrescrevendo o fixed do
   sticky-cta (mesma especificidade, depois no arquivo) — restaura o fixed. */
.sticky-cta.btn-magnetic { padding-right: 0.45rem; position: fixed; }
.sticky-cta.btn-magnetic .btn-island {
  width: 26px;
  height: 26px;
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .btn-magnetic:hover .btn-island { transform: none; }
}

/* --- Ajuste de contraste no shadow do feature/perks card --- */
.feature:hover {
  box-shadow: var(--shadow-md), var(--inset-light);
}
.loss-item:hover {
  box-shadow: var(--shadow-md), var(--inset-light);
}

/* ============================================================
   MID-PAGE CTA — captura leitores quentes antes do bloco do founder
   ============================================================ */
.mid-cta {
  padding: 1rem 0 3.5rem;
  background: #fff;
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--brand-50), hsl(187 35% 96%));
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm), var(--inset-light);
  position: relative;
  overflow: hidden;
}
.mid-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, hsl(187 80% 60% / 0.18), transparent 55%);
  pointer-events: none;
}
.mid-cta-text { position: relative; z-index: 1; }
.mid-cta-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin: 0 0 0.25rem;
}
.mid-cta-headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.4vw + 0.8rem, 1.7rem);
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin: 0;
}
.mid-cta-inner .btn { position: relative; z-index: 1; flex-shrink: 0; }
@media (max-width: 640px) {
  .mid-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.25rem 1.4rem;
  }
}

/* ============================================================
   FOOTER INSTITUCIONAL
   ============================================================ */
.site-footer {
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--slate-200);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand-block { max-width: 320px; }
.footer-tagline {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.55;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0 0 0.4rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--slate-700);
  transition: color 0.15s ease;
  text-decoration: none;
}
.footer-col a:hover { color: var(--brand-700); }
.footer-col a.link-muted { color: var(--slate-500); }
.footer-meta {
  font-size: 0.78rem;
  color: var(--slate-500);
  margin: 0.3rem 0 0;
  line-height: 1.5;
}
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem 1.5rem;
}
.footer-legal {
  margin: 0;
  font-size: 0.78rem;
  color: var(--slate-500);
}
.footer-legal strong { color: var(--slate-700); font-weight: 600; }
.footer-lgpd {
  margin: 0;
  font-size: 0.72rem;
  color: var(--slate-400);
  max-width: 480px;
  text-align: right;
}
@media (max-width: 640px) {
  .footer-lgpd { text-align: left; }
}

/* ============================================================
   FOUNDER AVATAR refinado — maior, com ring brand
   ============================================================ */
.founder-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, hsl(187 70% 55% / 0.9), hsl(187 80% 25%) 75%),
    linear-gradient(135deg, var(--brand-400), var(--brand-800));
  box-shadow:
    0 0 0 1px hsl(187 35% 80% / 0.6),
    0 0 0 4px #fff,
    0 4px 14px -4px hsl(187 35% 14% / 0.25),
    inset 0 1px 0 hsl(0 0% 100% / 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.founder-avatar-initials {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 2px hsl(187 80% 20% / 0.4);
  position: relative;
  z-index: 1;
}

/* Mobile: também esconde pos-tl (não só pos-tr/pos-br) */
@media (max-width: 640px) {
  .floating-pill.pos-tl {
    display: none;
  }
}

/* ============================================================
   MOBILE FIXES (overflow on narrow viewports)
   ============================================================ */
/* Mock: desliga rotação 3D em mobile pra não estourar a coluna */
@media (max-width: 768px) {
  .mock-window {
    transform: translateZ(0) !important;
    animation: none !important;
  }
  .mock-window-wrap { animation: none !important; }
}

/* Eyebrow e chips: reduz em telas estreitas pra não overflowar */
@media (max-width: 480px) {
  .eyebrow {
    font-size: 0.74rem;
    padding: 0.32rem 0.7rem;
    max-width: 100%;
  }
  .hero-chips li {
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
    max-width: 100%;
  }
  .hero-chips li svg { width: 12px; height: 12px; }
}

/* Grid items podem encolher conforme o viewport (sem min-content forçando) */
@media (max-width: 768px) {
  .hero-grid > * { min-width: 0; }
  .hero-copy, .hero-mock { min-width: 0; max-width: 100%; }
  /* Hero text: garante que palavras quebrem se forem maiores que o container */
  .display, .lede {
    overflow-wrap: anywhere;
    word-break: normal;
    max-width: 100%;
  }
}

/* H1 mais compacto em mobile pra não estourar o container */
@media (max-width: 480px) {
  .display {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 8.5vw, 2.4rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    /* desliga 'balance' que tenta encaixar palavras grandes em poucas linhas */
    text-wrap: pretty;
  }
  .lede {
    font-size: clamp(0.95rem, 3.6vw, 1.1rem);
  }
}

/* ============================================================
   MOBILE PERFORMANCE — aliviar GPU em telas pequenas
   - backdrop-filter, mix-blend-mode, filter:blur são CAROS em mobile
   - animations infinitas drenam bateria + GPU continuamente
   ============================================================ */
@media (max-width: 768px) {

  /* P0.1 — substitui backdrop-filter por background sólido */
  .header-inner,
  .site-header.is-scrolled .header-inner {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: hsl(0 0% 100% / 0.96);
  }
  .hero-chips li {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: hsl(0 0% 100% / 0.95);
  }
  .eyebrow {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: hsl(0 0% 100% / 0.9);
  }
  .mock-pips {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: hsl(187 25% 95%);
  }

  /* P0.2 — remove o noise overlay (mix-blend-mode é caro) */
  body::after {
    display: none;
  }

  /* P0.3 — remove filter:blur dos reveals (mantém só translate+opacity) */
  .reveal {
    filter: none;
    will-change: auto;
    transform: translateY(20px);
    transition:
      opacity 700ms var(--ease-spring),
      transform 700ms var(--ease-spring);
  }
  .reveal.is-visible {
    filter: none;
    transform: translateY(0);
  }

  /* Mock crossfade entre views: sem filter:blur (caríssimo) */
  .mock-stack > .mock-body {
    filter: none !important;
    transition:
      opacity 500ms var(--ease-spring),
      transform 500ms var(--ease-spring);
  }
  .mock-stack > .mock-body:not(.is-active) {
    filter: none !important;
  }

  /* P1.4 — pausa só animações INFINITAS (não as de mount/entrance) */
  .orb,
  .floating-pill.is-active,
  .floating-pill.is-active.pos-tl,
  .floating-pill.is-active.pos-tr,
  .floating-pill.is-active.pos-br,
  .feed-dot,
  .feed-badge.urgent svg,
  .ai-header svg,
  .pill-dot.pulse,
  .feed-status.overdue {
    animation: none !important;
  }
  /* IMPORTANTE: .feed-item NÃO entra aqui — sua animação 'feed-in' é
     responsável por levar opacity 0→1. Sem ela, os items ficam invisíveis. */
}

/* ============================================================
   MOCK RESPONSIVIDADE — adequar layout interno dos mocks em mobile
   A) mock-top stack vertical (toggle visível)
   B) reduzir paddings/sizing geral
   C) ajustes por mock (financeiro, processo+IA, dashboard)
   ============================================================ */
@media (max-width: 480px) {
  /* A — Mock-top empilha vertical (eyebrow+title em cima, tabs embaixo) */
  .mock-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
  }
  .mock-tabs {
    align-self: flex-start;
  }
  /* Dash-top também — pra o "Boa noite, Fernando" não competir com tabs */
  .dash-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  /* B — Mock geral mais compacto */
  .mock-body { padding: 0.85rem 0.7rem 0.95rem; }
  .mock-window { border-radius: 14px; }
  .mock-chrome { padding: 0.5rem 0.7rem; }
  .mock-chrome .dot-r,
  .mock-chrome .dot-y,
  .mock-chrome .dot-g { display: none; }
  .mock-url {
    font-size: 0.66rem;
    padding: 0.18rem 0.55rem;
    margin-left: 0;
  }

  /* Reduzir alguns sizing internos */
  .mock-eyebrow { font-size: 0.62rem; }
  .mock-title { font-size: 1rem; }

  /* C1 — Financeiro: KPIs 3-col → 2-col */
  .mock-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  .kpi { padding: 0.5rem 0.55rem; }
  .kpi-value { font-size: 0.88rem; }

  /* C2 — Processo+IA: timeline + IA panel stacked (já tem rule em 520px,
     reforço com gap menor e ai-text com line-clamp pra não esticar muito) */
  .mock-process-grid { gap: 0.6rem; }
  .ai-text { -webkit-line-clamp: 3; }
  .proc-meta { gap: 0.3rem 0.7rem; padding: 0.45rem 0.6rem; }

  /* C3 — Dashboard greeting menor (Fraunces 800 italic 1.7rem é demais em 320px) */
  .dash-greeting {
    font-size: clamp(1.05rem, 5.5vw, 1.4rem);
    line-height: 1.05;
  }
  .dash-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }
  .dash-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }
  .dash-rule { width: 12px; }
  .dash-kpis .kpi-value { font-size: 0.92rem; }
  .kpi-icon { width: 18px; height: 18px; }
  .kpi-icon svg { width: 9px; height: 9px; }
  .dash-pub-case { font-size: 0.68rem; line-height: 1.25; }

  /* C4 — Agenda Mês: dots menores, tirar legenda inline (some pra economizar) */
  .month-day { font-size: 0.62rem; }
  .day-dot { width: 3px; height: 3px; }
  .month-legend { font-size: 0.55rem; }

  /* C5 — Tarefas (kanban): col-title menor */
  .kanban-col-title { font-size: 0.55rem; }
  .kanban-card-title { font-size: 0.68rem; }
  .kanban-card-meta { font-size: 0.58rem; }
}

/* ============================================================
   COOKIE NOTICE (transparência LGPD — discreto)
   ============================================================ */
/* barra fina colada na borda inferior (não um card flutuante) */
.cookie-notice {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: hsl(0 0% 100% / 0.96);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  backdrop-filter: blur(10px) saturate(160%);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -10px 28px -18px hsl(187 35% 18% / 0.3);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.45s var(--ease-spring), opacity 0.35s ease;
  pointer-events: none;
}
.cookie-notice.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-notice-inner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem 16px;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
}
/* enquanto o cookie está aberto, o sticky CTA cede o rodapé (um de cada vez) */
body.cookie-open .sticky-cta {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-50%, 12px) !important;
}
.cookie-notice-text {
  margin: 0;
  font-size: 0.78rem;
  color: var(--slate-700);
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}
.cookie-notice-text strong {
  color: var(--slate-900);
  font-weight: 600;
}
.cookie-notice-text a {
  color: var(--brand-700);
  text-decoration: underline;
  text-decoration-color: var(--brand-200);
  text-underline-offset: 2px;
}
.cookie-notice-text a:hover { text-decoration-color: var(--brand-500); }
.cookie-notice-btn {
  flex-shrink: 0;
  background: var(--brand-600);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.2rem;
  min-height: 44px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s var(--ease-spring);
}
.cookie-notice-btn:hover { background: var(--brand-700); }
.cookie-notice-btn:active { transform: scale(0.97); }
.cookie-notice-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .cookie-notice { transition: opacity 0.3s ease; transform: translateY(0); }
}

/* ============================================================
   SMALL POLISH
   ============================================================ */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  html { scroll-behavior: auto; }
}


/* ===== Planos / pricing — contratação aberta (substituiu a waitlist) ===== */
.pricing { position: relative; padding: 6rem 0; background: var(--brand-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
  align-items: stretch;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.price-card:hover {
  transform: translateY(-9px);
  border-color: var(--brand-200);
  box-shadow:
    0 28px 54px -26px hsl(187 45% 18% / 0.36),
    0 10px 24px -14px hsl(187 40% 16% / 0.18);
}
.price-card.is-featured { border: 1px solid var(--accent-300); box-shadow: var(--shadow-lg), inset 0 2px 0 var(--accent-500); background: linear-gradient(180deg, var(--accent-50), #fff 60%); }
.price-card.is-featured:hover {
  transform: translateY(-9px);
  border-color: var(--accent-300);
  box-shadow:
    inset 0 2px 0 var(--accent-500),
    0 30px 58px -26px hsl(30 55% 32% / 0.4),
    0 10px 24px -14px hsl(30 45% 28% / 0.22);
}
.price-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--accent-300), var(--accent-500));
  border-radius: var(--radius-pill); padding: .25rem .625rem;
  box-shadow: inset 0 1px 0 hsl(40 80% 90% / 0.7);
}
.price-card__name { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--ink); line-height: 1.1; font-variation-settings: "opsz" 80; }
.price-card__label { font-size: .8125rem; color: var(--slate-500); margin-top: .2rem; }
.price-card__price { display: flex; align-items: baseline; gap: .25rem; margin: 1.25rem 0 .15rem; }
.price-card__amount { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums lining-nums; font-feature-settings: "tnum", "lnum"; }
.price-card__per { font-size: .8125rem; font-weight: 600; color: var(--slate-500); font-variant-numeric: tabular-nums lining-nums; font-feature-settings: "tnum", "lnum"; }
.price-card__annual { font-size: .75rem; color: var(--slate-500); margin: 0 0 1.25rem; }
.price-card__features { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .625rem; flex: 1 1 auto; }
.price-card__features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .8125rem; color: var(--slate-700); line-height: 1.4; }
.price-card__check { display: inline-flex; flex: none; margin-top: .1rem; color: hsl(187 60% 38%); }
.price-card .btn { margin-top: auto; width: 100%; }
.price-card--contact { background: var(--slate-50, #f8fafc); border-style: dashed; }
.price-card__amount--sm { font-size: 1.375rem; line-height: 1.15; }
.pricing-note { text-align: center; margin-top: 1.75rem; font-size: .8125rem; color: var(--slate-500); }

/* ============================================================
   CALCULADORA DE PROCESSOS — destaca o card do plano ideal ao digitar
   ============================================================ */
.pricing-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));   /* mesmo grid dos cards de preço */
  gap: 1rem;
  align-items: end;                                    /* toggle alinha pelo bottom da calc */
  margin: 1.6rem 0 1.4rem;
}
.plan-calc {
  grid-column: span 2;                                 /* calc = 2 cards */
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.1rem 1.75rem; flex-wrap: wrap;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(155deg, #fff, var(--paper-2));
  border: 1px solid hsl(33 30% 88%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.plan-calc__title {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 700; color: var(--ink); line-height: 1.18;
  margin: 0; max-width: 15em; font-variation-settings: "opsz" 40;
}
.plan-calc__field { display: flex; flex-direction: column; gap: 0.4rem; }
.plan-calc__label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate-500);
}
.plan-calc__inputwrap {
  display: flex; align-items: center; gap: 0.3rem;
  background: #fff; border: 1.5px solid var(--slate-200); border-radius: var(--radius-md);
  padding-right: 0.9rem;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.plan-calc__inputwrap:focus-within { border-color: var(--brand-500); box-shadow: 0 0 0 3px hsl(187 60% 40% / 0.16); }
.plan-calc__input {
  width: 6rem; border: 0; outline: none; background: transparent;
  font-family: var(--font-sans); font-size: 1.3rem; font-weight: 800; color: var(--ink);
  padding: 0.6rem 0.4rem 0.6rem 1rem;
  font-variant-numeric: tabular-nums lining-nums; font-feature-settings: "tnum","lnum";
}
.plan-calc__input::placeholder { color: var(--slate-300); font-weight: 600; font-size: 1rem; }
.plan-calc__input::-webkit-outer-spin-button, .plan-calc__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.plan-calc__input[type=number] { -moz-appearance: textfield; }
.plan-calc__suffix { font-size: 0.85rem; font-weight: 600; color: var(--slate-500); white-space: nowrap; }
.plan-calc__result {
  text-align: center; margin: 0 auto 1.6rem; min-height: 1.3em; max-width: 42rem;
  font-size: 0.95rem; color: var(--slate-600);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.plan-calc__result.is-shown { opacity: 1; transform: none; }
.plan-calc__result strong { color: var(--brand-700); font-weight: 800; }
.pricing-controls .pricing-toggle { margin: 0; grid-column: span 2; width: 100%; }   /* toggle = 2 cards */
.pricing-controls .pricing-toggle-opt { flex: 1; }

/* Card do plano recomendado — destaque teal forte */
.pricing-grid .price-card.is-recommended {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 2px var(--brand-500), 0 32px 64px -28px hsl(187 50% 20% / 0.42);
  transform: translateY(-8px);
}
.pricing-grid .price-card.is-recommended:hover { transform: translateY(-12px); }
.pricing-grid .price-card.is-recommended .price-card__body {
  background: linear-gradient(180deg, var(--brand-50), #fff 72%);
}

@media (max-width: 768px) {
  .pricing-controls { grid-template-columns: 1fr; }
  .plan-calc {
    grid-column: auto; width: 100%;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0.85rem;
  }
  .plan-calc__field { width: 100%; min-width: 0; }
  .plan-calc__inputwrap { width: 100%; box-sizing: border-box; justify-content: space-between; }
  .plan-calc__input { width: auto; flex: 1 1 auto; min-width: 0; }
  .plan-calc__suffix { flex: 0 0 auto; }
  .pricing-controls .pricing-toggle { grid-column: auto; width: auto; justify-self: center; }
  .pricing-controls .pricing-toggle-opt { flex: 0 0 auto; }
}

/* ============================================================
   COMPARATIVO DE PLANOS (A5) — colapsável, scroll horizontal no mobile
   ============================================================ */
.compare {
  max-width: none;        /* mesma largura dos cards de planos (largura do container) */
  margin: 4.5rem auto 2.5rem;
  border: 1px solid hsl(33 30% 88%);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow:
    0 1px 2px hsl(187 35% 14% / 0.05),
    0 30px 72px -34px hsl(187 35% 16% / 0.18);
  overflow: clip;   /* arredonda os cantos SEM virar scroll-container → preserva o sticky do thead */
}
.compare__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.15rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--brand-800);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.compare__summary::-webkit-details-marker { display: none; }
.compare__summary:hover { background: var(--paper-2); color: var(--brand-900); }
.compare__summary:focus-visible { outline: none; box-shadow: var(--focus-ring-inset); }
/* chevron "island" (button-in-button) */
.compare__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--brand-700);
  box-shadow: inset 0 0 0 1px hsl(33 30% 86%);
  transition: transform 0.5s var(--ease-spring), background-color 0.3s var(--ease-out);
  flex-shrink: 0;
}
.compare__summary:hover .compare__chev { background: #fff; }
.compare[open] .compare__chev { transform: rotate(180deg); }
.compare[open] .compare__summary { border-bottom: 1px solid hsl(33 30% 90%); }

.compare__scroll { -webkit-overflow-scrolling: touch; }
.compare__scroll:focus-visible { outline: none; box-shadow: var(--focus-ring-inset); }
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.compare__table th,
.compare__table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid hsl(190 18% 93%);
  color: var(--slate-700);
  vertical-align: middle;
}

/* ---- Header do plano: fica grudado no topo ao rolar a tabela ---- */
.compare__table thead th {
  position: sticky;
  top: var(--header-h, 64px);
  z-index: 4;
  background: var(--paper-2);
  vertical-align: top;
  padding: 2.05rem 1rem 1.1rem;   /* padding-top reserva espaço p/ o badge "Mais popular" */
  box-shadow: inset 0 -1px 0 hsl(33 26% 87%);
}
.compare__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 0.4rem;
}
.compare__col-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; color: var(--ink); line-height: 1.05;
  font-variation-settings: "opsz" 40;
}
.compare__price {
  display: block; margin-top: 0.4rem;
  font-family: var(--font-sans);
  font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum", "lnum";
}
.compare__price .compare__per { font-weight: 600; color: var(--slate-400); font-size: 0.72rem; }
.compare__annual {
  display: block; margin-top: 0.3rem;
  font-size: 0.66rem; font-weight: 500; color: var(--slate-400);
  font-variant-numeric: tabular-nums lining-nums;
}
/* primeira coluna (recursos) fixa horizontalmente no scroll mobile */
.compare__table tbody th[scope="row"] {
  position: sticky; left: 0; z-index: 2;
  text-align: left;
  font-weight: 600; color: var(--slate-800);
  background: #fff;
  padding-left: 1.15rem;
  min-width: 12rem;
  line-height: 1.3;
}
.compare__table thead .compare__corner {
  position: sticky; left: 0; top: var(--header-h, 64px); z-index: 6;
  background: var(--paper-2);
  box-shadow: inset 0 -1px 0 hsl(33 26% 87%);
}
.compare__table tfoot .compare__corner {
  position: sticky; left: 0; z-index: 2;
  background: var(--paper);
}
.compare__table tbody tr:hover th[scope="row"],
.compare__table tbody tr:hover td { background: var(--paper-2); }
.compare__table strong { color: var(--ink); font-weight: 700; }
/* tag de recurso (ex.: IA) ao lado do nome */
.ct-tag {
  display: inline-block; margin-left: 0.45rem; vertical-align: middle;
  font-family: var(--font-sans);
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--slate-500);
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-pill);
  padding: 0.08rem 0.42rem;
}

/* Coluna em destaque (Pro) — listra brass contínua */
.compare__table .is-featured {
  background: var(--accent-50);
  box-shadow: inset 1px 0 0 var(--accent-200), inset -1px 0 0 var(--accent-200);
}
.compare__table thead th.is-featured {
  background: linear-gradient(180deg, var(--accent-100), var(--accent-50));
  box-shadow: inset 1px 0 0 var(--accent-200), inset -1px 0 0 var(--accent-200), inset 0 3px 0 var(--accent-500), inset 0 -1px 0 var(--accent-200);
}
.compare__table thead th.is-featured .compare__col-name,
.compare__table thead th.is-featured .compare__price { color: var(--accent-700); }
.compare__table tbody tr:hover td.is-featured { background: var(--accent-100); }
.compare__pop {
  position: absolute;
  top: 0.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-400), var(--accent-600));
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.55rem;
  box-shadow: 0 5px 12px -5px hsl(28 56% 40% / 0.55);
}

/* "Incluído" — check verde e bold */
.ct-yes { display: inline-flex; align-items: center; justify-content: center; color: hsl(150 60% 36%); }
.ct-yes svg { width: 19px; height: 19px; stroke-width: 3.75; stroke-linecap: round; stroke-linejoin: round; }
/* "Não incluído" — X em vermelho suave (combina com a paleta quente) */
.ct-no { position: relative; display: inline-flex; width: 16px; height: 16px; font-size: 0; }
.ct-no::before, .ct-no::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 2.5px; border-radius: 2px;
  background: hsl(6 55% 62%);
}
.ct-no::before { transform: translate(-50%, -50%) rotate(45deg); }
.ct-no::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.compare__table tfoot td { border-bottom: none; padding-top: 1.15rem; padding-bottom: 1.3rem; background: var(--paper); }

/* Linha de categoria (agrupa recursos). Faixa sand quente + label ink + ponto brass. */
.compare__group th {
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2);
  padding: 0.95rem 1rem 0.95rem 1.15rem;
  border-top: 1px solid hsl(33 26% 89%);
  border-bottom: 1px solid hsl(33 26% 89%);
  position: static;        /* anula o sticky herdado de th[scope] */
}
.compare__group th::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.6rem;
  border-radius: 2px;
  background: var(--accent-500);
  vertical-align: middle;
  transform: translateY(-1px);
}
/* primeira faixa não precisa da borda superior (encosta no thead) */
.compare__table tbody tr.compare__group:first-child th { border-top: none; }

/* CTAs no rodapé da tabela */
.compare__table tfoot .btn { width: 100%; padding: 0.62rem 0.5rem; font-size: 0.8rem; }

/* Seletor de plano (chips) — só aparece no mobile */
.compare__plans { display: none; }

/* ============================================================
   Comparador no MOBILE (≤768px): em vez de rolar 4 colunas na horizontal
   (ruim no touch), mostra UM plano por vez via seletor de chips. Sem
   scroll horizontal, header do plano fixo, alvos de toque ≥44px.
   ============================================================ */
@media (max-width: 768px) {
  .compare__plans {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem; padding: 0.8rem;
    background: var(--paper);
    border-bottom: 1px solid hsl(33 30% 90%);
  }
  .compare__plan-chip {
    min-height: 44px; padding: 0.4rem 0.25rem;
    border: 1px solid var(--slate-200); border-radius: var(--radius-md);
    background: #fff; color: var(--slate-600);
    font-family: var(--font-sans); font-size: 0.8rem; font-weight: 700; line-height: 1.1;
    cursor: pointer;
    transition: background-color .2s var(--ease-out), color .2s var(--ease-out), border-color .2s var(--ease-out);
  }
  .compare__plan-chip.is-active {
    background: var(--brand-600); color: #fff; border-color: var(--brand-600);
    box-shadow: 0 6px 14px -8px hsl(187 60% 24% / 0.6);
  }
  .compare__plan-chip:focus-visible { outline: none; box-shadow: var(--focus-ring); }

  /* uma coluna por vez: sem scroll horizontal */
  .compare__scroll { overflow-x: visible; }
  .compare__table { min-width: 0; }
  .compare__table tr > :nth-child(n+2) { display: none; }            /* esconde todas as colunas de plano */
  .compare[data-mobile-plan="0"] .compare__table tr > :nth-child(2),
  .compare[data-mobile-plan="1"] .compare__table tr > :nth-child(3),
  .compare[data-mobile-plan="2"] .compare__table tr > :nth-child(4),
  .compare[data-mobile-plan="3"] .compare__table tr > :nth-child(5) { display: table-cell; }  /* mostra a selecionada */

  /* 1ª coluna ocupa ~55%; header do plano volta a grudar no topo */
  .compare__table tbody th[scope="row"] { min-width: 0; width: 55%; }
  /* no mobile o badge é estático (em fluxo), então o padding-top extra não é necessário */
  .compare__table thead th { position: sticky; top: var(--header-h, 56px); padding-top: 1rem; }
  .compare__table thead .compare__corner { top: var(--header-h, 56px); }
  /* badge "Mais popular" como pílula centrada no header (sem absoluto) */
  .compare__pop { position: static; transform: none; display: inline-block; margin: 0 auto 0.45rem; }
}
@media (max-width: 560px) {
  .compare__table th, .compare__table td { padding: 0.8rem 0.75rem; }
  .compare__table tfoot .btn { padding: 0.65rem 0.5rem; font-size: 0.82rem; }
  .compare__col-name { font-size: 1.1rem; }
  .compare__price { font-size: 0.95rem; }
}

/* Utilitário: visível só para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   PLAN FINDER / CALCULADORA (A1) — band sand (B7) + double-bezel (B6)
   ============================================================ */
.plan-finder {
  padding: 6rem 0;
  background:
    radial-gradient(120% 80% at 50% -10%, var(--brand-50), transparent 60%),
    var(--paper-2);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

/* Doppelrand: casca externa + núcleo interno com curvas concêntricas */
.finder-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 10px;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, #fff, var(--brand-50));
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
}
.finder-inner {
  background: #fff;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid var(--slate-100);
  padding: 2.4rem 2.1rem 1.8rem;
  box-shadow: var(--inset-light);
}
@media (max-width: 560px) {
  .finder-inner { padding: 1.8rem 1.3rem 1.4rem; }
}
.finder-head { text-align: center; margin-bottom: 1.9rem; }
.finder-head .display-sm { margin-bottom: 0.5rem; }

/* Progresso */
.finder-progress { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.6rem; }
.finder-progress[hidden] { display: none; }
.finder-progress-label {
  font-size: 0.76rem; font-weight: 600; color: var(--brand-700);
  white-space: nowrap; letter-spacing: 0.02em; font-variant-numeric: tabular-nums;
}
.finder-progress-track { flex: 1; height: 6px; border-radius: var(--radius-pill); background: var(--slate-100); overflow: hidden; }
.finder-progress-bar {
  height: 100%; width: 33.33%; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
  transition: width 0.55s var(--ease-spring);
}

/* Stage / steps */
.finder-stage { position: relative; }
.finder-step { border: 0; margin: 0; padding: 0; min-inline-size: 0; }
.finder-step:not(.is-active) { display: none; }
.finder-step.is-active { animation: finder-in 0.5s var(--ease-spring) both; }
.finder-q {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700; letter-spacing: -0.015em;
  color: var(--slate-900); line-height: 1.2; margin: 0; padding: 0;
  font-variation-settings: "opsz" 72;
}
.finder-help { font-size: 0.86rem; color: var(--slate-500); margin: 0.4rem 0 1.25rem; }
.finder-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
@media (max-width: 520px) { .finder-options { grid-template-columns: 1fr; } }
.finder-opt {
  display: flex; flex-direction: column; gap: 0.15rem; align-items: flex-start;
  text-align: left; padding: 0.9rem 1.05rem;
  border: 1px solid var(--slate-200); border-radius: var(--radius-md);
  background: #fff;
  transition: transform 0.2s var(--ease-spring), border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.2s ease;
}
.finder-opt:hover { border-color: var(--brand-400); background: var(--brand-50); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.finder-opt:active { transform: translateY(0) scale(0.99); }
.finder-opt:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.finder-opt.is-selected { border-color: var(--brand-600); background: var(--brand-50); box-shadow: inset 0 0 0 1px var(--brand-600); }
.finder-opt-main { font-weight: 600; color: var(--slate-900); font-size: 0.98rem; letter-spacing: -0.005em; }
.finder-opt-sub { font-size: 0.78rem; color: var(--slate-500); }

@keyframes finder-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .finder-step.is-active, .finder-result:not([hidden]) { animation: none; }
  .finder-progress-bar { transition: none; }
}

/* Resultado */
.finder-result[hidden] { display: none; }
.finder-result:not([hidden]) { animation: finder-in 0.5s var(--ease-spring) both; }
.finder-result-eyebrow {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-700);
  margin-bottom: 0.5rem;
}
.finder-result-title {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 700;
  color: var(--slate-900); margin: 0; line-height: 1.15; letter-spacing: -0.015em;
  font-variation-settings: "opsz" 90;
}
.finder-result-title em { font-style: italic; color: var(--accent-600); }
.finder-result-card {
  margin-top: 1.15rem; padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid var(--accent-300); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--accent-50), #fff 55%);
  box-shadow: var(--shadow-md), inset 0 2px 0 var(--accent-500);
}
.finder-result-rowtop { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.finder-result-plan { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; font-variation-settings: "opsz" 90; }
.finder-result-label { display: block; font-size: 0.8rem; color: var(--slate-500); margin-top: 0.2rem; }
.finder-result-pricewrap { text-align: right; }
.finder-result-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--ink); font-variation-settings: "opsz" 80; font-variant-numeric: tabular-nums lining-nums; font-feature-settings: "tnum", "lnum"; }
.finder-result-per { font-size: 0.8rem; font-weight: 600; color: var(--slate-500); margin-left: 0.15rem; }
.finder-result-annual { display: block; font-size: 0.74rem; color: var(--slate-500); margin-top: 0.1rem; }
.finder-result-specs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.1rem 0 1.3rem; padding: 0; }
.finder-result-specs li {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 500; color: var(--slate-700);
  background: #fff; border: 1px solid var(--slate-200);
  padding: 0.32rem 0.65rem; border-radius: var(--radius-pill);
}
.finder-result-specs li::before {
  content: "✓"; color: var(--brand-600); font-weight: 800; font-size: 0.8rem;
}
.finder-result-actions { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 1.1rem; }
.finder-result-actions .link-ghost { background: transparent; border: 0; cursor: pointer; font-family: inherit; }

/* Nav */
.finder-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; min-height: 36px; }
.finder-nav[hidden] { display: none; }
.finder-nav-hint { font-size: 0.76rem; color: var(--slate-400); margin-left: auto; }
@media (max-width: 480px) { .finder-nav-hint { display: none; } }

/* ============================================================
   CREDIBILITY ANCHORS (A3) — fatos reais, escaneável
   ============================================================ */
.anchors { padding: 4rem 0; }
.anchor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 720px) { .anchor-grid { grid-template-columns: 1fr; gap: 1.1rem; max-width: 460px; } }
.anchor {
  padding-left: 1rem;
  border-left: 2px solid var(--accent-400);
}
.anchor-lead {
  display: block;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.3rem;
  font-variation-settings: "opsz" 60;
}
.anchor-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--slate-600);
  text-wrap: pretty;
}

/* ============================================================
   PROVA SOCIAL (band após o hero) — ⚠️ números MOCK no HTML
   ============================================================ */
.social-proof {
  padding: 5rem 0;
  background:
    radial-gradient(120% 140% at 50% -20%, hsl(187 55% 20%), transparent 60%),
    linear-gradient(135deg, var(--brand-900), var(--brand-800));
  color: #fff;
  border-top: 1px solid hsl(187 40% 18%);
  border-bottom: 1px solid hsl(187 40% 18%);
}
.proof-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 1rem;
  text-align: center;
}
@media (min-width: 768px) { .proof-stats { grid-template-columns: repeat(4, 1fr); } }
.proof-stat {
  display: flex; flex-direction: column; gap: 0.35rem;
  transition: transform .5s var(--ease-spring);
}
/* hover premium (sem mudar o cursor): sobe, número "acende", + cresce, label clareia */
.proof-stat:hover { transform: translateY(-7px); }
.proof-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 2vw + 1.2rem, 2.75rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
  transition: text-shadow .5s var(--ease-out);
  /* banda de altura constante (= tamanho do número) com conteúdo centralizado:
     o 4º stat (texto menor) passa a alinhar com os números, e as legendas batem na mesma linha.
     flex ROW mantém "2.099" + "+" lado a lado (grid os empilhava). */
  min-height: clamp(1.9rem, 2vw + 1.2rem, 2.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-stat:hover .proof-stat-num { text-shadow: 0 6px 34px hsl(187 85% 58% / 0.6); }
.proof-stat-plus { color: var(--accent-400); display: inline-block; transition: transform .5s var(--ease-spring), color .35s ease; }
.proof-stat:hover .proof-stat-plus { transform: scale(1.28); color: var(--accent-500); }
.proof-stat-label {
  font-size: 0.85rem;
  color: hsl(187 28% 80%);
  line-height: 1.35;
  transition: color .35s ease;
}
.proof-stat:hover .proof-stat-label { color: #fff; }

/* ============================================================
   COMO FUNCIONA (4 passos)
   ============================================================ */
.how {
  padding: 4.5rem 0;
  background: var(--paper-2);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how-steps { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }
.how-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
}
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--inset-light);
}
.how-step h3,
.how-step h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--slate-900);
  line-height: 1.25;
}
.how-step p { margin: 0; font-size: 0.9rem; line-height: 1.5; color: var(--slate-600); }

/* "Como funciona" embutido na seção de Recursos (sem dobra própria) */
.how-inline {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--slate-200);
}
.how-inline-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--slate-900);
  margin: 0 0 1.5rem;
}

/* ============================================================
   DEMONSTRAÇÃO
   ============================================================ */
.demo {
  padding: 4.5rem 0;
  background: var(--paper-2);
  border-top: 1px solid hsl(40 26% 89%);
  border-bottom: 1px solid hsl(40 26% 89%);
}
.demo-card { max-width: 620px; margin: 0 auto; text-align: center; }
.demo-card .kicker { display: block; margin-bottom: 0.6rem; }
.demo-card .section-sub { margin-left: auto; margin-right: auto; }
.demo-card .btn { margin-top: 1.6rem; }
.demo-note { margin: 1rem 0 0; font-size: 0.82rem; color: var(--slate-500); }

/* ============================================================
   SEGURANÇA — faixa compacta (não interrompe o fluxo)
   ============================================================ */
.security-band {
  padding: 1.6rem 0;
  background: var(--paper);
  border-bottom: 1px solid hsl(40 26% 89%);
}
.security-band-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 2rem;
}
.security-band-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-600);
}
.security-band-list svg { color: var(--brand-600); flex: none; }

/* ============================================================
   DIFERENCIAÇÃO (antes × depois)
   ============================================================ */
.versus { padding: 1.5rem 0 3rem; background: var(--paper); }
/* título dentro do palco pinado — fica visível durante a convergência */
.versus-head { max-width: 600px; margin: 0 auto; }
.versus-head .section-sub { margin-bottom: 0; }
.versus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .versus-grid { grid-template-columns: 1fr auto 1fr; gap: 1.5rem; }
}
.versus-col { }
.versus-tag {
  display: block;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--slate-500);
}
/* "HOJE" — chips soltos, tortos e de cores diferentes = ferramentas dispersas */
.versus-before ul {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.versus-before li {
  align-self: center;
  width: max-content;
  max-width: 94%;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid hsl(var(--chip-h) 48% 80%);
  color: var(--slate-700);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem 0.55rem 0.8rem;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 6px 16px -10px hsl(var(--chip-h) 45% 30% / 0.55);
  margin-left: var(--ml, 0);
  margin-right: var(--mr, 0);
  transform: rotate(var(--rot));
  transform-origin: center;
}
.versus-before li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: hsl(var(--chip-h) 60% 52%);
  flex: none;
}
/* cada "ferramenta" = fornecedor diferente: cor, ângulo e deslocamento (via margem) */
.versus-before li:nth-child(1) { --chip-h: 213; --rot: -3deg;   --mr: 40px; }
.versus-before li:nth-child(2) { --chip-h: 152; --rot:  2.5deg; --ml: 64px; }
.versus-before li:nth-child(3) { --chip-h: 42;  --rot: -2deg;   --mr: 72px; }
.versus-before li:nth-child(4) { --chip-h: 270; --rot:  3.5deg; --ml: 34px; }
.versus-before li:nth-child(5) { --chip-h: 330; --rot: -2.5deg; --mr: 14px; }

/* Entrada escalonada (fallback sem scrub): chips "caem" espalhados ao aparecer */
.versus-grid.is-visible .versus-before li {
  animation: chip-in 0.55s var(--ease-out) backwards;
}
.versus-grid.is-visible .versus-before li:nth-child(1) { animation-delay: 0.05s; }
.versus-grid.is-visible .versus-before li:nth-child(2) { animation-delay: 0.13s; }
.versus-grid.is-visible .versus-before li:nth-child(3) { animation-delay: 0.21s; }
.versus-grid.is-visible .versus-before li:nth-child(4) { animation-delay: 0.29s; }
.versus-grid.is-visible .versus-before li:nth-child(5) { animation-delay: 0.37s; }
@keyframes chip-in {
  from { opacity: 0; transform: rotate(0deg) translate(0, -12px) scale(0.9); }
  to   { opacity: 1; transform: rotate(var(--rot)); }
}
/* Com scrub ativo (desktop), o JS controla transform/opacity dos chips e do card */
.versus-grid.is-scrub .versus-before li,
.versus-grid.is-scrub .versus-arrow,
.versus-grid.is-scrub .versus-after-card { animation: none !important; }

/* Seta de convergência — entra apontando para o Argos depois dos chips */
.versus-arrow { display: flex; justify-content: center; align-items: center; color: var(--brand-500); opacity: 0; }
.versus-grid.is-visible .versus-arrow { opacity: 1; animation: arrow-in 0.5s var(--ease-out) 0.45s backwards; }
@keyframes arrow-in {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (max-width: 767px) {
  .versus-arrow { transform: rotate(90deg); }
  .versus-grid.is-visible .versus-arrow { animation: none; opacity: 1; }
}

.versus-after .versus-tag { color: var(--brand-700); }
/* wrapper transparente — o laptop é o visual; mantém halo/ondas/clímax */
.versus-after-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  opacity: 0;
}
/* halo que cresce conforme os chips são "absorvidos" pelo Argos */
.versus-after-card::before {
  content: "";
  position: absolute; inset: -22%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(187 72% 48% / 0.4), transparent 66%);
  opacity: var(--vp, 0);
  pointer-events: none;
}
/* CLÍMAX "wow" — quando o último chip entra: 3 ondas de choque a partir do card */
.versus-waves { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.versus-waves i {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid hsl(187 72% 50% / 0.55);
  opacity: 0;
  transform-origin: center;
}
.versus-after-card.is-converged .versus-waves i { animation: versus-shock 1.2s var(--ease-out) backwards; }
.versus-after-card.is-converged .versus-waves i:nth-child(2) { animation-delay: 0.18s; border-color: hsl(187 72% 52% / 0.4); }
.versus-after-card.is-converged .versus-waves i:nth-child(3) { animation-delay: 0.36s; border-color: hsl(187 72% 54% / 0.28); }
@keyframes versus-shock {
  0%   { opacity: 0.8; transform: scale(0.95); }
  60%  { opacity: 0.35; }
  100% { opacity: 0; transform: scale(1.95); }
}
/* o nome "Argos" dá um pulse no clímax */
.versus-after-card.is-converged .versus-brand { animation: versus-brand-pop 0.6s var(--ease-spring); }
@keyframes versus-brand-pop {
  0%   { transform: scale(1); }
  42%  { transform: scale(1.13); }
  100% { transform: scale(1); }
}
/* o card "pousa" depois dos chips = resultado da convergência (mais elevado) */
.versus-grid.is-visible .versus-after-card {
  opacity: 1;
  animation: card-land 0.6s var(--ease-spring) 0.55s backwards;
}
@keyframes card-land {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Acessibilidade — sem movimento: mostra o estado final, chips ainda espalhados */
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .versus-before li,
  .versus-arrow,
  .versus-after-card { animation: none !important; opacity: 1 !important; }
}
.versus-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.versus-after-card p { margin: 0; font-size: 0.92rem; line-height: 1.5; color: var(--slate-700); }

/* ============================================================
   SEGURANÇA E PRIVACIDADE
   ============================================================ */
.security { padding: 4.5rem 0; background: var(--paper-2); border-top: 1px solid var(--slate-100); }
.security-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .security-grid { grid-template-columns: repeat(3, 1fr); } }
.security-item {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.35rem;
}
.security-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
  margin-bottom: 0.85rem;
}
.security-item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--slate-900);
}
.security-item p { margin: 0; font-size: 0.88rem; line-height: 1.5; color: var(--slate-600); }

/* ============================================================
   CTA FINAL — fechamento centralizado
   ============================================================ */
.final-cta { padding: 5rem 0 5.5rem; background: hsl(39 30% 96%); }
.final-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.final-cta-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin: 0 0 0.9rem;
  text-wrap: balance;
}
.final-cta-support {
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--slate-600);
  margin: 0 auto 1.75rem;
  max-width: 48ch;
  text-wrap: pretty;
}
.final-cta-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-500);
}

/* ============================================================
   #1 SCROLLYTELLING — "Como funciona" (sticky visual + passos)
   Mobile/base: layout simples empilhado (sem sticky).
   ============================================================ */
.how-visual { display: none; }
/* Double-bezel: bandeja externa (paper) + núcleo interno (branco), raios concêntricos */
.how-frame-tray {
  width: 100%; max-width: 416px; margin: 0 auto;
  padding: 8px;
  background: var(--paper-2);
  border: 1px solid var(--slate-200);
  border-radius: calc(var(--radius-lg) + 8px);
  box-shadow:
    0 32px 60px -34px hsl(187 45% 16% / 0.30),
    0 10px 24px -16px hsl(187 35% 14% / 0.13);
}
.how-frame { width: 100%; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: inset 0 1px 0 #fff; }
.how-frame-chrome { position: relative; display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--slate-100); background: var(--paper-2); }
.how-frame-chrome span { width: 9px; height: 9px; border-radius: 50%; background: var(--slate-300); }
.how-frame-chrome::after { content: "useargos.com.br"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 0.66rem; font-weight: 500; color: var(--slate-400); }
.how-screens { position: relative; min-height: 336px; }
.how-screen { position: absolute; inset: 0; padding: 1.7rem 1.5rem; opacity: 0; transform: translateY(10px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); pointer-events: none; display: flex; flex-direction: column; justify-content: center; gap: 0.8rem; }
.how-screen.is-active { opacity: 1; transform: none; }
.how-screen-eyebrow { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-700); }
.how-field { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 0.9rem; border: 1px solid var(--slate-200); border-radius: var(--radius-md); font-size: 0.9rem; color: var(--slate-700); font-variant-numeric: tabular-nums lining-nums; background: var(--paper-2); }
.how-field svg { color: var(--slate-400); flex: none; }
.how-okchip { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.75rem; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; color: var(--brand-700); background: var(--brand-50); border: 1px solid var(--brand-100); }
.how-okchip svg { color: var(--brand-600); }
.how-pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-500); flex: none; box-shadow: 0 0 0 3px hsl(30 62% 60% / 0.25); }
.how-feedrow { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.7rem; border: 1px solid var(--slate-100); border-radius: var(--radius-md); }
.how-feedrow b { display: block; font-size: 0.84rem; color: var(--slate-900); }
.how-feedrow small { font-size: 0.76rem; color: var(--slate-500); }
.how-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-500); flex: none; }
.how-week { display: flex; gap: 0.4rem; }
.how-week span { flex: 1; text-align: center; padding: 0.55rem 0; border-radius: var(--radius-sm); background: var(--slate-50); font-size: 0.7rem; font-weight: 700; color: var(--slate-500); }
.how-week span.is-on { background: var(--brand-600); color: #fff; }
.how-alert { align-self: stretch; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.6rem 0.85rem; border-radius: var(--radius-md); background: hsl(0 72% 97%); border: 1px solid hsl(0 70% 88%); color: hsl(0 58% 44%); font-size: 0.82rem; font-weight: 600; }
.how-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.how-kpi { background: var(--paper-2); border: 1px solid var(--slate-200); border-radius: var(--radius-md); padding: 0.8rem 0.85rem; }
.how-kpi b { display: block; font-family: var(--font-display); font-size: 1.45rem; line-height: 1; color: var(--slate-900); }
.how-kpi small { font-size: 0.72rem; color: var(--slate-500); }

@media (min-width: 1024px) {
  /* só vira scrollytelling quando o JS marca .is-ready (senão: fallback empilhado) */
  .how-scrolly.is-ready { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4.5rem; align-items: start; }
  /* coluna dos passos: trilha vertical (timeline) + preenchimento por progresso */
  .how-scrolly.is-ready .how-steps { display: block; position: relative; --how-fill: 0; }
  /* trilha vai do centro do 1º passo (≈32vh) ao centro do último (≈224vh);
     bottom 78vh = spacer(46vh) + meia-altura do passo(32vh), p/ não invadir o spacer */
  .how-scrolly.is-ready .how-steps::before {
    content: ""; position: absolute; left: 18px; top: 32vh; bottom: 78vh; width: 2px;
    background: var(--slate-200);
  }
  .how-scrolly.is-ready .how-steps::after {
    content: ""; position: absolute; left: 17px; top: 32vh; bottom: 78vh; width: 4px; border-radius: 4px;
    background: linear-gradient(var(--brand-400), var(--brand-700));
    transform-origin: top; transform: scaleY(var(--how-fill, 0));
    transition: transform .12s linear; /* segue o scroll de perto */
  }
  .how-scrolly.is-ready .how-step {
    position: relative;
    min-height: 64vh;
    display: flex; flex-direction: column; justify-content: center;
    background: transparent; border: 0; padding: 0 0 0 3.5rem;
    opacity: 0.4; transform: translateY(8px); filter: saturate(0.55);
    transition: opacity .55s var(--ease-spring), transform .55s var(--ease-spring), filter .55s var(--ease-spring);
  }
  .how-scrolly.is-ready .how-step.is-active { opacity: 1; transform: none; filter: none; }
  .how-scrolly.is-ready .how-num {
    position: absolute; left: 0; top: 50%; transform: translateY(-50%) scale(0.9);
    margin: 0;
    background: #fff; color: var(--slate-400);
    border: 2px solid var(--slate-200);
    box-shadow: 0 0 0 6px #fff;
    transition: background .4s var(--ease-spring), color .4s var(--ease-spring), border-color .4s var(--ease-spring), transform .4s var(--ease-spring), box-shadow .4s var(--ease-spring);
  }
  .how-scrolly.is-ready .how-step.is-active .how-num {
    background: var(--brand-600); color: #fff; border-color: var(--brand-600);
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 6px #fff, 0 6px 16px -6px hsl(187 60% 24% / 0.5);
  }
  .how-scrolly.is-ready .how-step h4 { font-size: 1.5rem; margin-bottom: 0.55rem; letter-spacing: -0.02em; }
  .how-scrolly.is-ready .how-step p { font-size: 1.02rem; max-width: 34ch; line-height: 1.5; }
  /* spacer no fim: dá "dwell" para a janela segurar a ÚLTIMA tela antes de soltar */
  .how-scrolly.is-ready .how-spacer { display: block; min-height: 46vh; }
  .how-scrolly.is-ready .how-visual { display: flex; position: sticky; top: 18vh; height: 64vh; align-items: center; }
}
.how-spacer { display: none; }   /* só existe no desktop scrollytelling */

/* #2 PIN + SCRUB "antes × depois" (versus) → ver bloco consolidado
   "Gravity Snap" no fim do arquivo (pin/rails/scrub/fallback num só lugar). */

/* ============================================================
   Acessibilidade — sem movimento: tudo estático, sem pin nem sticky
   ============================================================ */
@media (prefers-reduced-motion: reduce) and (min-width: 99999px) {
  .how-scrolly { display: block !important; }
  .how-visual { display: none !important; }
  .how-step { min-height: auto !important; opacity: 1 !important; transform: none !important; padding: 0 !important; }
  .versus-scroll { height: auto !important; }
  .versus-stage { position: static !important; min-height: 0 !important; }
}

/* ============================================================
   RESPONSIVIDADE MOBILE
   ============================================================ */

/* --- P0: menu mobile (hambúrguer + overlay) --- */
.nav-toggle { display: none; }
.nav-toggle-bars { position: relative; width: 22px; height: 14px; }
.nav-toggle-bars span {
  position: absolute; left: 0; right: 0; height: 2px; border-radius: 2px;
  background: currentColor;
  transition: top .3s var(--ease-spring), transform .3s var(--ease-spring);
}
.nav-toggle-bars span:nth-child(1) { top: 4px; }
.nav-toggle-bars span:nth-child(2) { top: 10px; }
body.menu-open .nav-toggle-bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
body.menu-open .nav-toggle-bars span:nth-child(2) { top: 7px; transform: rotate(-45deg); }

/* MENU MOBILE — bottom sheet: alça + arrastar p/ baixo + tocar fora fecha */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80;          /* acima do header(70), sticky(40), cookie(60) */
  display: flex; flex-direction: column; justify-content: flex-end;
  visibility: hidden; pointer-events: none;
}
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }

/* escurecido — tocar fecha */
.mobile-menu-scrim {
  position: absolute; inset: 0;
  background: hsl(188 38% 8% / 0.5);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .35s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu-scrim { opacity: 1; }

/* painel que sobe de baixo */
.mobile-menu-sheet {
  position: relative; z-index: 1;
  background: var(--paper);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -18px 44px -16px hsl(188 45% 10% / 0.4);
  padding: 0 1.5rem calc(1.6rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform .42s var(--ease-spring);
  max-height: 88vh; overflow-y: auto;
  touch-action: pan-y;
}
.mobile-menu.is-open .mobile-menu-sheet { transform: translateY(0); }

/* band alto no topo: área generosa pra arrastar OU tocar pra fechar */
.mobile-menu-handle {
  display: block; width: 100%; height: 46px;
  margin: 0; padding: 0; border: 0; background: transparent;
  position: relative; cursor: pointer; touch-action: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-handle::before {
  content: ""; position: absolute; left: 50%; top: 14px; transform: translateX(-50%);
  width: 44px; height: 5px; border-radius: 3px; background: var(--slate-300);
  transition: background-color .18s ease, width .18s ease;
}
.mobile-menu-handle:hover::before,
.mobile-menu-handle:active::before { background: var(--slate-400); width: 54px; }
.mobile-menu-handle:active { cursor: grabbing; }

.mobile-menu-close {
  position: absolute; top: 8px; right: 10px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; background: transparent; color: var(--slate-500); cursor: pointer;
  border-radius: 50%; transition: background-color .18s ease, color .18s ease;
}
.mobile-menu-close:hover { background: hsl(187 20% 92%); color: var(--ink); }
.mobile-menu-close:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.mobile-menu-nav { display: flex; flex-direction: column; align-items: stretch; text-align: center; padding-top: .15rem; }
.mobile-menu-nav a:not(.btn) {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
  padding: 0.7rem 0.5rem; border-radius: var(--radius-md);
}
.mobile-menu-nav a:not(.btn):active { background: var(--slate-50); }
.mobile-menu-login { font-size: 1.02rem !important; color: var(--brand-700) !important; font-family: var(--font-sans) !important; font-weight: 600 !important; }
.mobile-menu-cta { margin-top: .9rem; }
body.menu-open { overflow: hidden; }
body.menu-open .sticky-cta, body.menu-open .cookie-notice { display: none !important; }

@media (max-width: 720px) {
  .site-header { z-index: 70; }            /* header/X acima do overlay */
  .header-inner { width: calc(100vw - 24px); justify-content: space-between; }
  .header-nav, .header-actions { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; padding: 0;
    border: 0; background: transparent; color: var(--ink); cursor: pointer;
  }
}

/* --- P1: mock do hero no mobile (achata o 3D, alvo de toque dos pips) --- */
@media (max-width: 768px) {
  .mock-window { transform: none !important; }
  .mock-pip { min-height: 42px; padding: 0.55rem 0.85rem; }
}

/* --- P1: "antes × depois" no mobile (chips centrados, sem espalhamento) --- */
@media (max-width: 767px) {
  .versus-before li {
    margin-left: 0; margin-right: 0;
    transform: none;
    align-self: center; width: 100%; max-width: 280px;
    justify-content: flex-start;
  }
  .versus-grid.is-visible .versus-before li { animation: none; }
}

/* --- "Como funciona" no MOBILE: estático e limpo (SEM scrollytelling) ---
   passos viram cards horizontais (número à esquerda, título+texto à direita). */
@media (max-width: 1023px) {
  .how-scrolly.is-ready { display: block; }     /* desfaz qualquer sticky/flex */
  .how-scrolly.is-ready .how-visual { display: none; }
  .how-scrolly.is-ready .how-steps { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }
  .how-scrolly.is-ready .how-step {
    min-height: 0; opacity: 1; transform: none; filter: none;
    display: grid; grid-template-columns: auto 1fr; column-gap: 1.1rem; align-items: start;
  }
  .how-scrolly.is-ready .how-step .how-num { grid-row: 1 / span 2; margin: 0; position: static; }
  .how-scrolly.is-ready .how-step h4 { grid-column: 2; margin: 0 0 0.25rem; font-size: 1.05rem; }
  .how-scrolly.is-ready .how-step p { grid-column: 2; }
}

/* ============================================================
   "Antes × Depois" — clímax: NOTEBOOK / tela do produto
   Os chips convergem para a TELA; no clímax ela "acende" com os 6 pilares.
   ============================================================ */
.versus-laptop { position: relative; width: 100%; max-width: 340px; display: flex; flex-direction: column; align-items: center; }
.versus-screen {
  width: 100%;
  background: linear-gradient(180deg, #fff, hsl(187 30% 99%));
  border: 1px solid var(--brand-200);
  border-radius: 12px 12px 5px 5px;
  overflow: hidden;
  box-shadow:
    0 16px 44px -20px hsl(187 55% 22% / calc(0.2 + 0.28 * var(--vp, 0))),
    0 0 calc(18px + 64px * var(--vp, 0)) hsl(187 72% 46% / calc(0.32 * var(--vp, 0))),
    inset 0 1px 0 #fff;
}
.versus-screen-chrome { position: relative; display: flex; align-items: center; gap: 5px; padding: 9px 12px; border-bottom: 1px solid var(--slate-100); background: var(--paper-2); }
.versus-screen-chrome span { width: 8px; height: 8px; border-radius: 50%; background: var(--slate-300); }
.versus-screen-chrome::after { content: "useargos.com.br"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 0.62rem; font-weight: 500; color: var(--slate-400); }
.versus-screen-body { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0.45rem; padding: 1.6rem 1.2rem; min-height: 156px; }
.versus-screen .versus-brand { font-size: 1.55rem; margin-bottom: 0; }
.versus-screen-sub { margin: 0; font-size: 0.78rem; color: var(--slate-500); }
.versus-pillars { list-style: none; margin: 0.45rem 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; max-width: 250px; }
.versus-pillars li {
  font-size: 0.75rem; font-weight: 600; color: var(--brand-700);
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--radius-pill); padding: 0.28rem 0.6rem;
  opacity: 1; transform: none;
  transition: opacity .45s var(--ease-spring), transform .45s var(--ease-spring);
}
/* base do notebook (deck/dobradiça) */
.versus-laptop-base {
  width: 122%; height: 11px; margin-top: -1px;
  background: linear-gradient(180deg, hsl(187 18% 90%), hsl(187 16% 82%));
  border: 1px solid hsl(187 18% 80%); border-top: 0;
  border-radius: 2px 2px 11px 11px;
  clip-path: polygon(2.5% 0, 97.5% 0, 100% 100%, 0 100%);
  position: relative;
}
.versus-laptop-base::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 46px; height: 4px; background: hsl(187 16% 78%); border-radius: 0 0 5px 5px; }

/* DESKTOP (scrub): pilares escondidos até o clímax, então aparecem em stagger */
.versus-grid.is-scrub .versus-pillars li { opacity: 0; transform: translateY(8px) scale(0.92); }
.versus-grid.is-scrub .versus-after-card.is-converged .versus-pillars li { opacity: 1; transform: none; }
.versus-after-card.is-converged .versus-pillars li:nth-child(1) { transition-delay: .04s; }
.versus-after-card.is-converged .versus-pillars li:nth-child(2) { transition-delay: .10s; }
.versus-after-card.is-converged .versus-pillars li:nth-child(3) { transition-delay: .16s; }
.versus-after-card.is-converged .versus-pillars li:nth-child(4) { transition-delay: .22s; }
.versus-after-card.is-converged .versus-pillars li:nth-child(5) { transition-delay: .28s; }
.versus-after-card.is-converged .versus-pillars li:nth-child(6) { transition-delay: .34s; }

/* ============================================================
   "COMO FUNCIONA" — Plano C: passos com mini-tela, rolagem normal (sem pin)
   ============================================================ */
.how-list { list-style: none; margin: 2.75rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 2.75rem; }
.how-row { display: grid; grid-template-columns: 1fr; gap: 1.4rem; align-items: center; }
.how-row-text { max-width: 40ch; }
.how-row-text .how-num { position: static; margin: 0 0 0.85rem; }
.how-row-text h4 { font-size: 1.35rem; margin: 0 0 0.5rem; letter-spacing: -0.02em; line-height: 1.2; color: var(--slate-900); }
.how-row-text p { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--slate-600); }
.how-row-visual { display: flex; justify-content: center; }
.how-row-visual .how-frame-tray { width: 100%; max-width: 340px; }
/* tela ESTÁTICA — sobrescreve o absolute/opacity:0 herdado da versão sticky */
.how-row-visual .how-screen {
  position: static; inset: auto; opacity: 1; transform: none; pointer-events: auto;
  padding: 1.5rem 1.4rem; min-height: 0;
}
@media (min-width: 768px) {
  .how-row { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  /* zig-zag: nas linhas pares o visual vai pra esquerda */
  .how-row:nth-child(even) .how-row-text { order: 2; justify-self: end; }
  .how-row:nth-child(even) .how-row-visual { order: 1; }
}

/* ---- copy: destaque da lede do hero ---- */
.lede strong { color: var(--slate-900); font-weight: 600; }

/* ---- Planos: linha de risco (stakes) antes dos cards ---- */
.pricing-stakes {
  margin: 0 auto 2.5rem;
  max-width: 42ch;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.1vw + 0.92rem, 1.5rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--brand-900);
  text-wrap: balance;
}
@media (max-width: 520px) {
  .pricing-stakes br { display: none; }   /* deixa fluir natural no mobile */
}
/* ---- Planos: reasseguro "sem risco" (4 checks) ---- */
.pricing-reassure {
  list-style: none; margin: 2rem 0 0.6rem; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1.75rem;
}
.pricing-reassure li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.92rem; font-weight: 600; color: var(--slate-700);
}
.pricing-reassure svg { color: hsl(187 60% 38%); flex: none; }

/* ============================================================
   "COMO FUNCIONA" — faixa compacta (4 passos, sem mini-telas)
   ============================================================ */
.how-compact { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 760px) { .how-compact { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; } }
.how-cstep { display: flex; flex-direction: column; }
.how-cstep .how-num { position: static; margin: 0 0 0.85rem; }
.how-cstep h4 { margin: 0 0 0.3rem; font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; color: var(--slate-900); }
.how-cstep p { margin: 0; font-size: 0.9rem; line-height: 1.45; color: var(--slate-600); }

/* ============================================================
   VERSUS — "antes × depois" ESTÁTICO (sem scroll/scrub/pin/orbit).
   Layout único em todas as larguras: tag + cluster de chips (ferramentas
   dispersas) -> seta -> notebook do Argos com os 6 pilares acesos.
   Nada de position:absolute, nada de JS, nada de media-query de layout.
   ============================================================ */
.versus { padding: 4rem 0 4.5rem; background: var(--paper); }
.versus-head { max-width: 600px; margin: 0 auto 2.5rem; text-align: center; }
.versus-head .section-sub { margin-bottom: 0; }

/* neutraliza qualquer regra legada que escondia/animava o laptop */
.versus-after-card { opacity: 1 !important; animation: none !important; }
.versus-grid.is-visible .versus-after-card { opacity: 1 !important; animation: none !important; }
.versus-pillars li { opacity: 1 !important; transform: none !important; }
.versus-scroll { height: auto !important; }
.versus-stage  { position: static !important; min-height: 0 !important; }

.versus-grid { display: flex; flex-direction: column; align-items: center; max-width: 720px; margin: 0 auto; }
/* beat-label do estado "antes" — espelha o .versus-tag-after, mas neutro
   (slate, peso 600, SEM bolinha). Mora DENTRO do painel, acima dos chips. */
.versus-tag-before { margin: 0; color: var(--slate-500); letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; font-weight: 600; }

/* FRAMER fora do card — tese persistente "Sem Argos × Com Argos".
   Pílula sutil (device distinto dos rótulos internos); NÃO anima no hover. */
.versus-switch {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin: 0 0 1.7rem; padding: 0.5rem 1rem;
  background: var(--paper-2);
  border: 1px solid hsl(187 24% 91%);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.7);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.76rem; font-weight: 700; line-height: 1;
}
.versus-switch-off { color: var(--slate-400); }
.versus-switch-x   { color: var(--slate-300); font-weight: 500; }
.versus-switch-on  { color: var(--brand-700); }

.versus-orbit-wrap { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

/* chips = cluster centralizado e desordenado (sem sobreposição, sem animar) */
.versus-orbit {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .6rem .55rem; max-width: 560px;
}
/* seta sutil "isto vira aquilo" entre os chips e o notebook */
.versus-orbit-arrow {
  width: 30px; height: 30px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--brand-600); background: var(--brand-50);
  border: 1px solid var(--brand-100);
}
.versus-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--slate-700);
  border: 1px solid hsl(var(--chip-h) 48% 80%);
  border-radius: var(--radius-pill);
  padding: .5rem .95rem .5rem .75rem;
  font-size: .88rem; line-height: 1.2; white-space: nowrap;
  box-shadow: 0 8px 20px -12px hsl(var(--chip-h) 45% 30% / .5);
  transform: rotate(var(--rot));
}
.versus-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: hsl(var(--chip-h) 60% 52%); flex: none; }
/* hue por "fornecedor" distinto + leve inclinação (bagunça leve) */
.versus-chip:nth-child(1) { --chip-h: 213; --rot: -2deg;   }
.versus-chip:nth-child(2) { --chip-h: 152; --rot:  1.5deg; }
.versus-chip:nth-child(3) { --chip-h: 42;  --rot: -1.5deg; }
.versus-chip:nth-child(4) { --chip-h: 270; --rot:  2deg;   }
.versus-chip:nth-child(5) { --chip-h: 330; --rot: -1deg;   }

/* notebook do Argos — centralizado, tela acesa (estado final) */
.versus-orbit-wrap .versus-after-card { width: 100%; max-width: 340px; --vp: 1; }

/* ============================================================
   DEPOIMENTOS (⚠️ MOCK — trocar por reais antes do go-live)
   Cards brancos sobre cream; avatar de iniciais com hue por pessoa.
   ============================================================ */
.testimonials { padding: 5rem 0; background: var(--paper-2); border-top: 1px solid hsl(38 26% 88%); }
.testimonials-head { max-width: 600px; margin: 0 auto 2.5rem; text-align: center; }
.testi-grid {
  list-style: none; padding: 0; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  max-width: 1080px;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  display: flex; flex-direction: column; gap: 1.4rem;
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-out);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-quote {
  margin: 0; flex: 1;
  font-size: 1.02rem; line-height: 1.55; color: var(--slate-800);
}
.testi-quote::before {
  content: "\201C";
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.2rem; line-height: 0; color: var(--accent-400);
  margin-right: .12rem; vertical-align: -0.42rem;
}
.testi-person { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .92rem; font-weight: 700; letter-spacing: .02em;
  color: hsl(var(--av-h, 187) 52% 30%);
  background: hsl(var(--av-h, 187) 48% 92%);
  border: 1px solid hsl(var(--av-h, 187) 44% 80%);
}
.testi-id { display: flex; flex-direction: column; gap: .12rem; }
.testi-name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.testi-meta { font-size: .8rem; color: var(--slate-500); }

/* ============================================================
   PLANOS — carrossel arrastável no mobile (<=767px)
   Desktop intacto (grid). Acessível: cards seguem no DOM/Tab; dots = botões.
   ============================================================ */
.pricing-swipe-hint, .pricing-dots { display: none; }   /* desktop: ocultos */

@media (max-width: 767px) {
  .pricing-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;          /* impede o overflow-y de virar 'auto' e prender o scroll vertical */
    scroll-snap-type: x proximity;
    /* touch-action fica em 'auto': o navegador roteia o swipe horizontal pro
       carrossel e o vertical pra página. (pan-x prendia o vertical — era o bug.) */
    scroll-padding-inline: 24px;
    gap: 0.85rem;
    margin-inline: -24px;            /* sangra até as bordas (container tem padding 24px) */
    padding: 0.9rem 24px 0.9rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-grid > .price-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    min-width: 0;
  }

  .pricing-swipe-hint {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    margin: 0.15rem 0 0.85rem;
    font-size: 0.8rem; color: var(--slate-500);
  }
  .pricing-swipe-hint svg { color: var(--brand-500); flex: none; }

  .pricing-dots {
    display: flex; align-items: center; justify-content: center; gap: 0.1rem;
    margin: 0 0 0.5rem;
  }
  .pricing-dot {
    width: 30px; height: 30px; padding: 0; border: 0; background: transparent;
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  }
  .pricing-dot::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--slate-300);
    transition: width 0.25s var(--ease-spring), background-color 0.25s ease;
  }
  .pricing-dot.is-active::before { width: 22px; border-radius: 4px; background: var(--brand-600); }
  .pricing-dot:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 9px; }
}

/* ============================================================
   DEPOIMENTOS — carrossel arrastável no mobile (<=767px)
   ============================================================ */
.testi-swipe-hint, .testi-dots { display: none; }   /* desktop: ocultos */

@media (max-width: 767px) {
  .testi-grid {
    display: flex;
    grid-template-columns: none;
    max-width: none;
    overflow-x: auto;
    overflow-y: hidden;          /* impede o overflow-y de virar 'auto' e prender o scroll vertical */
    scroll-snap-type: x proximity;
    /* touch-action fica em 'auto': o navegador roteia o swipe horizontal pro
       carrossel e o vertical pra página. (pan-x prendia o vertical — era o bug.) */
    scroll-padding-inline: 24px;
    gap: 0.85rem;
    margin-inline: -24px;
    padding: 0.9rem 24px 0.9rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-grid > .testi-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
    min-width: 0;
  }

  .testi-swipe-hint {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    margin: 0.6rem 0 0.85rem;
    font-size: 0.8rem; color: var(--slate-500);
  }
  .testi-swipe-hint svg { color: var(--brand-500); flex: none; }

  .testi-dots {
    display: flex; align-items: center; justify-content: center; gap: 0.1rem;
    margin: 0;
  }
  .testi-dot {
    width: 30px; height: 30px; padding: 0; border: 0; background: transparent;
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  }
  .testi-dot::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--slate-300);
    transition: width 0.25s var(--ease-spring), background-color 0.25s ease;
  }
  .testi-dot.is-active::before { width: 22px; border-radius: 4px; background: var(--brand-600); }
  .testi-dot:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 9px; }
}

/* ============================================================
   RECURSOS (features) — carrossel só em telas pequenas (<=599px).
   >=600px continua grid 2-col (e 4-col >=1024). 2-col abaixo de 600
   espremeria demais os títulos-benefício longos.
   ============================================================ */
.feature-swipe-hint, .feature-dots { display: none; }   /* >=600px: ocultos */

@media (max-width: 599px) {
  .feature-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;          /* impede o overflow-y de virar 'auto' e prender o scroll vertical */
    scroll-snap-type: x proximity;
    /* touch-action fica em 'auto': o navegador roteia o swipe horizontal pro
       carrossel e o vertical pra página. (pan-x prendia o vertical — era o bug.) */
    scroll-padding-inline: 24px;
    gap: 0.85rem;
    margin-inline: -24px;
    padding: 0.9rem 24px 0.9rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .feature-grid::-webkit-scrollbar { display: none; }
  .feature-grid > .feature {
    flex: 0 0 84%;
    scroll-snap-align: center;
    min-width: 0;
  }

  .feature-swipe-hint {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    margin: 0.6rem 0 0.85rem;
    font-size: 0.8rem; color: var(--slate-500);
  }
  .feature-swipe-hint svg { color: var(--brand-500); flex: none; }

  .feature-dots {
    display: flex; align-items: center; justify-content: center; gap: 0.1rem;
    margin: 0;
  }
  .feature-dot {
    width: 30px; height: 30px; padding: 0; border: 0; background: transparent;
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  }
  .feature-dot::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--slate-300);
    transition: width 0.25s var(--ease-spring), background-color 0.25s ease;
  }
  .feature-dot.is-active::before { width: 22px; border-radius: 4px; background: var(--brand-600); }
  .feature-dot:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 9px; }
}

/* ============================================================
   A — Header esconde ao rolar pra baixo / revela ao subir (mobile)
   ============================================================ */
@media (max-width: 768px) {
  .site-header { transition: transform 0.35s var(--ease-out), padding-top 0.45s var(--ease-spring); }
  .site-header.is-hidden { transform: translateY(-135%); }
}

/* ============================================================
   B — Ritmo vertical padronizado das dobras no mobile (64px topo/base).
   Exceções propositais: hero (folga do header fixo) e security-band (faixa
   compacta divisora) — não entram.
   ============================================================ */
@media (max-width: 768px) {
  .social-proof,
  .testimonials,
  .founder,
  .features,
  .demo,
  .versus,
  .pricing,
  .faq,
  .final-cta {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* ============================================================
   NOVOS BLOCOS (CRO) — urgência, métrica-texto, identificação, destaque
   ============================================================ */

/* 1. métrica qualitativa (texto no lugar de número) na faixa de prova social */
.proof-stat-num--text {
  font-size: clamp(1.05rem, 0.7vw + 0.85rem, 1.35rem);
  line-height: 1.2;
}

/* 3. faixa de urgência — discreta, abaixo do hero */
.urgency-band {
  background: var(--brand-50);
  border-top: 1px solid var(--brand-100);
  border-bottom: 1px solid var(--brand-100);
  padding: 2.25rem 0;
  transition: background-color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.urgency-band:hover { background: var(--brand-100); border-color: var(--brand-200); }
.urgency-band:hover .urgency-band-text { color: var(--brand-800); }
.urgency-band-text { transition: color .3s var(--ease-out); }
.urgency-band-text {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1vw + 0.82rem, 1.3rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--brand-900);
  text-wrap: balance;
}

/* 4. dobra "O Argos é ideal para" — identificação */
.audience { padding: 6rem 0; background: var(--paper); }
.audience .section-head { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.audience-grid {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  max-width: 1120px;
}
@media (min-width: 640px)  { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .audience-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }
.audience-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.95rem;
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), border-color .35s ease;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.audience-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--brand-50); color: var(--brand-600); border: 1px solid var(--brand-100);
}
.audience-card p { margin: 0; font-size: 0.95rem; line-height: 1.5; color: var(--slate-700); }

/* 5. dobra de destaque máximo (risco) — antes dos planos */
.stakes-band {
  padding: 6rem 0;
  background:
    radial-gradient(120% 130% at 50% -10%, hsl(187 55% 20%), transparent 60%),
    linear-gradient(135deg, var(--brand-900), var(--brand-800));
  color: #fff;
  border-top: 1px solid hsl(187 40% 18%);
  border-bottom: 1px solid hsl(187 40% 18%);
}
.stakes-band .container { max-width: 840px; text-align: center; }
.stakes-band-headline {
  margin: 0 auto; text-align: center; max-width: 19ch;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw + 1rem, 3rem);
  line-height: 1.15; letter-spacing: -0.02em; color: #fff;
  text-wrap: balance;
}
.stakes-band-support {
  margin: 1.6rem auto 0; text-align: center; max-width: 48ch;
  font-size: clamp(0.98rem, 0.6vw + 0.85rem, 1.12rem);
  line-height: 1.5; color: hsl(187 30% 82%);
  text-wrap: balance;
}

/* 5. CTA da dobra de destaque (botão branco invertido sobre o petróleo escuro) */
.stakes-band-cta {
  margin: 2.1rem auto 0;
  background: #fff;
  color: var(--brand-800);
  border: 1px solid #fff;
  box-shadow: 0 16px 38px -16px hsl(0 0% 0% / 0.45);
}
.stakes-band-cta:hover {
  background: hsl(40 33% 96%);
  color: var(--brand-900);
  transform: translateY(-1px);
  box-shadow: 0 20px 44px -16px hsl(0 0% 0% / 0.5);
}
.stakes-band-cta .btn-island { background: var(--brand-100); color: var(--brand-700); }
.stakes-band-cta:hover .btn-island { background: var(--brand-200); transform: translateX(2px); }
.stakes-band-note {
  margin: 1rem auto 0;
  font-size: 0.85rem;
  color: hsl(187 28% 78%);
  letter-spacing: 0.01em;
}

/* 5.1 CTA secundário de WhatsApp — UMA linha discreta abaixo dos planos
   (não repetido por card; não compete com o "Começar grátis") */
.pricing-help {
  margin: 1.3rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--slate-500);
  text-wrap: balance;
}
.pricing-help a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--brand-700);
  white-space: nowrap;
  transition: color 0.18s ease;
}
.pricing-help a svg { color: #25d366; flex: none; }
.pricing-help a:hover { color: var(--brand-800); }
.pricing-help a:hover svg { color: #1da851; }
.pricing-help a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }

/* ============================================================
   VERSUS — refinamento visual (v59)
   1) glow único e controlado  2) cena contida/escalada no desktop
   3) label "Com o Argos"  4) chips com dispersão deliberada
   5) conector mais elaborado  6) notebook com bezel duplo (hardware)
   Estas regras vêm depois no arquivo → vencem por ordem de cascata.
   ============================================================ */

/* (2) GLOW ÚNICO — um só halo petrol, suave e centralizado atrás do device.
   Substitui o halo grande + o bloom do screen, que se somavam (muddy). */
.versus-after-card::before {
  content: "";
  position: absolute;
  left: 50%; top: 53%;
  width: 118%; height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    hsl(187 62% 44% / 0.26),
    hsl(187 62% 44% / 0.09) 56%,
    transparent 78%);
  filter: blur(7px);
  opacity: var(--vp, 0);
  pointer-events: none;
}

/* (6) BEZEL DUPLO — moldura "usinada" (alumínio) ao redor da tela.
   O screen vira o núcleo de vidro interno com raio concêntrico menor. */
.versus-bezel {
  width: 100%;
  padding: 7px;
  background: linear-gradient(158deg, hsl(187 16% 93%), hsl(187 14% 83%));
  border: 1px solid hsl(187 18% 79%);
  border-radius: 16px 16px 7px 7px;
  box-shadow:
    inset 0 1px 0 hsl(0 0% 100% / 0.85),
    inset 0 0 0 1px hsl(187 22% 90% / 0.6),
    0 20px 50px -24px hsl(187 50% 18% / 0.4),
    0 7px 20px -12px hsl(187 42% 22% / 0.28);
}
/* (2) screen interno: sem o bloom grande de antes; só vidro + hairline */
.versus-orbit-wrap .versus-screen {
  border: 1px solid hsl(187 24% 88%);
  border-radius: 9px 9px 3px 3px;
  box-shadow: inset 0 1px 0 #fff;
}

/* (3) LABEL "COM O ARGOS" — contraparte petrol do "Hoje, sem o Argos" */
.versus-tag-after {
  margin: 0;
  color: var(--brand-700);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 0.78rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.versus-tag-after::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 4px hsl(187 60% 45% / 0.16);
}

/* (5) CONECTOR — badge petrol preenchido + hastes que "fluem" chips→device */
.versus-orbit-arrow {
  position: relative;
  width: 34px; height: 34px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
  border: 0;
  box-shadow:
    0 7px 16px -6px hsl(187 60% 22% / 0.55),
    inset 0 1px 0 hsl(187 70% 62% / 0.5);
}
.versus-orbit-arrow::before,
.versus-orbit-arrow::after {
  content: ""; position: absolute; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 0.85rem;
}
.versus-orbit-arrow::before { bottom: 100%; background: linear-gradient(transparent, var(--brand-200)); }
.versus-orbit-arrow::after  { top: 100%;    background: linear-gradient(var(--brand-300), transparent); }

/* (4) CHIPS — dispersão deliberada (rotação + deslocamento vertical + profundidade) */
.versus-orbit { gap: 0.7rem 0.6rem; }
.versus-chip {
  transform: rotate(var(--rot)) translateY(var(--ty, 0));
  box-shadow: 0 calc(8px + var(--lift, 0px)) calc(20px + var(--lift, 0px)) -12px hsl(var(--chip-h) 45% 30% / 0.5);
}
.versus-chip:nth-child(1) { --chip-h: 213; --rot: -4deg;   --ty: 7px;  --lift: 0px; }
.versus-chip:nth-child(2) { --chip-h: 152; --rot:  3deg;   --ty: -9px; --lift: 6px; }
.versus-chip:nth-child(3) { --chip-h: 42;  --rot: -2.5deg; --ty: 11px; --lift: 0px; }
.versus-chip:nth-child(4) { --chip-h: 270; --rot:  4.5deg; --ty: -5px; --lift: 5px; }
.versus-chip:nth-child(5) { --chip-h: 330; --rot: -3deg;   --ty: 9px;  --lift: 0px; }

/* (1) COMPOSIÇÃO DESKTOP — cena contida num palco + notebook maior.
   Só ≥768px; no mobile permanece o stack solto que já funciona. */
@media (min-width: 768px) {
  .versus-grid { max-width: 760px; }
  .versus-orbit-wrap {
    position: relative;
    padding: 3rem 2.5rem 3.25rem;
    border-radius: var(--radius-xl);
    background:
      radial-gradient(125% 100% at 50% 0%, hsl(187 32% 98%), transparent 68%),
      var(--paper);
    border: 1px solid hsl(187 24% 90%);
    box-shadow:
      inset 0 1px 0 hsl(0 0% 100% / 0.7),
      0 24px 60px -34px hsl(187 45% 18% / 0.3);
  }
  .versus-orbit { max-width: 600px; }
  .versus-orbit-wrap .versus-after-card { max-width: 408px; }
  .versus-orbit-wrap .versus-laptop { max-width: 408px; }
  .versus-screen-body { min-height: 184px; }
  .versus-screen .versus-brand { font-size: 1.75rem; }
}

/* ============================================================
   VERSUS — hover "sucção" (v60)  ·  só desktop com mouse fino
   Ao passar o mouse no palco: os 5 chips são SUGADOS para dentro do
   notebook (descem+convergem, encolhem, somem em cascata) enquanto o
   notebook se destaca — sobe, glow petrol intensifica, pilares acendem
   em cascata e UMA onda de choque pulsa no clímax.
   Tudo transform/opacity (GPU). Estado de repouso = layout estático v59;
   hover-out reverte por transição. Sem JS, sem scroll, sem @property.
   Mobile/toque: nada disparado (bloco inteiro dentro do @media).
   ============================================================ */
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {

  /* nova camada de glow dedicada — NÃO mexe em --vp (que clampa/é no-op);
     pré-borrada uma vez, anima só opacity+scale (composite barato). */
  .versus-after-card::after {
    content: "";
    position: absolute; left: 50%; top: 53%;
    width: 120%; height: 102%;
    transform: translate(-50%, -50%) scale(0.88);
    border-radius: 50%;
    background: radial-gradient(closest-side,
      hsl(187 66% 46% / 0.42),
      hsl(187 62% 44% / 0.12) 56%,
      transparent 78%);
    filter: blur(10px);
    opacity: 0; z-index: -1; pointer-events: none;
    /* base = retorno seco (hover-out); o delay do bloom vive só no :hover */
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  }

  /* CHIPS — repouso: retorno SECO (ease-out, sem mola → evita "bounce-in"
     coletivo dos 5 chips ao sair; sem stagger) */
  .versus-orbit-wrap .versus-chip {
    transition: transform 0.42s var(--ease-out), opacity 0.4s var(--ease-out), filter 0.4s var(--ease-out);
  }
  /* chips passam À FRENTE do laptop no hover, para ENTRAREM na tela */
  .versus-orbit { position: relative; }
  .versus-orbit-wrap:hover .versus-orbit { z-index: 3; }
  /* CHIPS — hover: sucção PARA DENTRO da tela do device.
     - viagem longa (215px) p/ ALCANÇAR o notebook, não evaporar no meio
     - scale 0.16: encolhe até virar um ponto que entra na tela
     - opacity em EASE-IN: fica visível durante a queda e só some AO CHEGAR */
  .versus-orbit-wrap:hover .versus-chip,
  .versus-orbit-wrap:focus-within .versus-chip {
    transform: rotate(calc(var(--rot) * 0.3))
               translate(var(--chip-pull, 0px), calc(var(--ty, 0px) + 215px))
               scale(0.16);
    opacity: 0;
    filter: saturate(0.55) blur(2px);
    will-change: transform, opacity;
    transition: transform 0.52s cubic-bezier(0.5, 0, 0.82, 0.32),
                opacity 0.52s cubic-bezier(0.74, 0, 0.92, 0.28),
                filter 0.5s var(--ease-out);
  }
  /* convergência horizontal suave (sinal puxa p/ o centro; magnitudes gentis
     → imune a reflow do flex-wrap, nunca "abre" para fora) */
  .versus-orbit-wrap:hover .versus-chip:nth-child(1) { --chip-pull:  44px; transition-delay: 0s;     }
  .versus-orbit-wrap:hover .versus-chip:nth-child(2) { --chip-pull: -34px; transition-delay: 0.045s; }
  .versus-orbit-wrap:hover .versus-chip:nth-child(3) { --chip-pull:  22px; transition-delay: 0.09s;  }
  .versus-orbit-wrap:hover .versus-chip:nth-child(4) { --chip-pull: -40px; transition-delay: 0.135s; }
  .versus-orbit-wrap:hover .versus-chip:nth-child(5) { --chip-pull:  28px; transition-delay: 0.18s;  }
  .versus-orbit-wrap:focus-within .versus-chip:nth-child(1) { --chip-pull:  44px; }
  .versus-orbit-wrap:focus-within .versus-chip:nth-child(2) { --chip-pull: -34px; }
  .versus-orbit-wrap:focus-within .versus-chip:nth-child(3) { --chip-pull:  22px; }
  .versus-orbit-wrap:focus-within .versus-chip:nth-child(4) { --chip-pull: -40px; }
  .versus-orbit-wrap:focus-within .versus-chip:nth-child(5) { --chip-pull:  28px; }

  /* CONECTOR — um único pulso (nunca infinito) sincronizado com a sucção */
  .versus-orbit-wrap:hover .versus-orbit-arrow {
    animation: versus-arrow-pulse 0.52s var(--ease-spring);
  }
  @keyframes versus-arrow-pulse {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.14); }
    100% { transform: scale(1); }
  }

  /* CONECTOR + RÓTULO — eram transitórios; somem após guiar a absorção,
     liberando o espaço para o notebook subir e crescer. */
  .versus-orbit-wrap .versus-orbit-arrow { transition: opacity 0.34s var(--ease-out), transform 0.5s var(--ease-spring); }
  .versus-orbit-wrap:hover .versus-orbit-arrow { opacity: 0; transition-delay: 0.30s; }
  /* o "Com o Argos" PERMANECE — ele rotula o laptop-herói; sobe junto com ele
     (mesmo delay/curva do notebook) para seguir coroando o resultado. */
  .versus-orbit-wrap .versus-tag-after { transition: transform 0.4s var(--ease-out); }
  .versus-orbit-wrap:hover .versus-tag-after { transform: translateY(-78px); transition: transform 0.62s cubic-bezier(0.34, 1.18, 0.40, 1) 0.30s; }
  /* o beat-label "antes" some com os chips que ele descreve (cedo, antes do "depois") */
  .versus-orbit-wrap .versus-tag-before { transition: opacity 0.34s var(--ease-out), transform 0.34s var(--ease-out); }
  .versus-orbit-wrap:hover .versus-tag-before { opacity: 0; transform: translateY(-18px); transition-delay: 0.10s; }

  /* NOTEBOOK — SOBE e CRESCE para ocupar o espaço que os chips deixaram.
     Escala o .versus-after-card inteiro: glow, ondas e laptop crescem juntos.
     (transform puro; transform-origin centro; reverte limpo no hover-out.) */
  /* base = retorno SECO (hover-out reverte em 0.40s, sem mola, sem lag) */
  .versus-orbit-wrap .versus-after-card { transition: transform 0.4s var(--ease-out); }
  /* ida = delay 0.30 (parte no momentum da sucção) + overshoot CONTIDO só aqui */
  .versus-orbit-wrap:hover .versus-after-card {
    transform: translateY(-58px) scale(1.16);
    transition: transform 0.62s cubic-bezier(0.34, 1.18, 0.40, 1) 0.30s;
    will-change: transform;
  }
  .versus-orbit-wrap .versus-laptop { transition: transform 0.6s var(--ease-spring); }
  .versus-orbit-wrap .versus-bezel { transition: box-shadow 0.4s var(--ease-out); }
  .versus-orbit-wrap:hover .versus-bezel {
    box-shadow:
      inset 0 1px 0 hsl(0 0% 100% / 0.85),
      inset 0 0 0 1px hsl(187 22% 90% / 0.6),
      0 32px 66px -26px hsl(187 50% 18% / 0.5),
      0 12px 28px -12px hsl(187 42% 22% / 0.34);
    transition: box-shadow 0.46s var(--ease-out) 0.42s;
  }
  /* glow on — bloom como consequência da subida (delay 0.42, só no :hover) */
  .versus-orbit-wrap:hover .versus-after-card::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    transition: opacity 0.46s var(--ease-out) 0.42s, transform 0.46s var(--ease-out) 0.42s;
  }

  /* PILARES — acendem em cascata. Contorna o !important da linha ~5114
     (transform:none) ignição via ::after (anel) + background-color, sem tocar transform. */
  .versus-pillars li { position: relative; transition: background-color 0.34s var(--ease-out), border-color 0.34s var(--ease-out); }
  .versus-pillars li::after {
    content: ""; position: absolute; inset: -2px; border-radius: inherit;
    opacity: 0; box-shadow: 0 0 0 0 hsl(187 70% 50% / 0);
    transition: opacity 0.34s var(--ease-out); pointer-events: none;
  }
  .versus-orbit-wrap:hover .versus-pillars li { background: hsl(187 55% 95%); border-color: var(--brand-200); }
  .versus-orbit-wrap:hover .versus-pillars li::after { opacity: 1; box-shadow: 0 0 0 2px hsl(187 70% 50% / 0.30); }
  /* ATO 3 — finale: cascata começa em 0.58 (sobrepõe a cauda do notebook) */
  .versus-orbit-wrap:hover .versus-pillars li:nth-child(1) { transition-delay: 0.58s; }
  .versus-orbit-wrap:hover .versus-pillars li:nth-child(2) { transition-delay: 0.62s; }
  .versus-orbit-wrap:hover .versus-pillars li:nth-child(3) { transition-delay: 0.66s; }
  .versus-orbit-wrap:hover .versus-pillars li:nth-child(4) { transition-delay: 0.70s; }
  .versus-orbit-wrap:hover .versus-pillars li:nth-child(5) { transition-delay: 0.74s; }
  .versus-orbit-wrap:hover .versus-pillars li:nth-child(6) { transition-delay: 0.78s; }

  /* CLÍMAX — UMA onda de choque "whump" no pico da subida, antes do finale */
  .versus-orbit-wrap:hover .versus-waves i:first-child {
    animation: versus-hover-ring 0.44s var(--ease-out) 0.46s backwards;
  }
  @keyframes versus-hover-ring {
    0%   { opacity: 0.45; transform: scale(0.95); }
    100% { opacity: 0;    transform: scale(1.16); }
  }
}

/* ============================================================
   TIPOGRAFIA — opsz padronizado (Fraunces)
   Antes cada título/número fixava um optical-size diferente (110, 90, 80,
   72, 48… ou "auto"), o que deixava as hairlines com espessuras desiguais
   entre H1, títulos de seção e números. Aqui um único valor (--opsz-display)
   alinha todos os textos GRANDES de display ao mesmo contraste do H1 (60).
   Regra agrupada no fim do arquivo → vence as declarações individuais por ordem.
   (Acentos serifados pequenos — th da tabela, menu mobile, aspas decorativas —
   ficam de fora de propósito: opsz baixo é o correto no tamanho pequeno.)
   ============================================================ */
:root { --opsz-display: 60; }
.display, .display em, .display-sm,
.proof-stat-num, .loss-bignum, .founder-statement,
.price-card__name, .price-card__amount, .pricing-stakes,
.finder-q, .finder-result-title, .finder-result-plan, .finder-result-price,
.how-num, .how-inline-title, .versus-brand,
.final-cta-headline, .mid-cta-headline,
.urgency-band-text, .stakes-band-headline, .anchor-lead {
  font-variation-settings: "opsz" var(--opsz-display);
}

/* ============================================================
   HERO VIDEO LINK — CTA secundário estilo "play" (à la Astrea).
   Definido sem escopo: serve aos dois temas; o tema escuro só
   reescreve as cores mais abaixo.
   ============================================================ */
.hero-video {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-700);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-pill);
  transition: color 0.18s ease;
}
.hero-video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--slate-200);
  color: var(--brand-600);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.hero-video-icon svg { margin-left: 2px; } /* centra o triângulo opticamente */
.hero-video:hover { color: var(--slate-900); }
.hero-video:hover .hero-video-icon { transform: scale(1.06); box-shadow: var(--shadow-md); }
.hero-video:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-pill); }

/* ============================================================
   TEMA "FAIXA DE MARCA" — experimental, inspirado no Astrea.
   Ativado por <body class="theme-astrea">. Remova a classe do
   <body> em index.html para voltar 100% ao layout original
   (papel claro + pílula flutuante + Fraunces grande).

   Reúne, num só toggle, os 5 testes pedidos:
     1. Hero como faixa full-bleed Petrol Teal + texto claro
     2. CTA único dominante (branco) + link de vídeo
     3. Mockup em perspectiva sangrando pela borda direita
     4. Header fixo full-width (sem pílula flutuante)
     5. Tipografia menor e em sans (mais minimalista)
   ============================================================ */

/* --- 4. Header full-width fixo (sem pílula) --- */
body.theme-astrea .site-header {
  display: block;
  padding-top: 0;
  background: hsl(0 0% 100% / 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid hsl(187 22% 88% / 0.6);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s var(--ease-out);
}
body.theme-astrea .site-header.is-scrolled {
  padding-top: 0;
  background: hsl(0 0% 100% / 0.96);
  border-bottom-color: hsl(187 22% 84% / 0.85);
  box-shadow: 0 6px 24px -16px hsl(187 35% 14% / 0.28);
}
body.theme-astrea .header-inner {
  display: flex;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  height: 64px;
  padding: 0 24px;
  gap: 1.5rem;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
body.theme-astrea .site-header.is-scrolled .header-inner {
  height: 60px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
@media (min-width: 1024px) {
  body.theme-astrea .header-inner { height: 66px; padding: 0 40px; }
  body.theme-astrea .site-header.is-scrolled .header-inner { height: 62px; }
}

/* --- 5. Tipografia do hero: sans, menor, minimalista --- */
body.theme-astrea .hero .display {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw + 0.6rem, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.026em;
  font-variation-settings: normal;
}
body.theme-astrea .hero .display em {
  font-family: var(--font-sans);
  font-weight: 700;
  font-variation-settings: normal;
}
body.theme-astrea .hero .lede {
  font-size: clamp(1rem, 0.4vw + 0.92rem, 1.1rem);
  font-weight: 400;
  line-height: 1.55;
}

/* --- 1. Faixa de marca + texto claro --- */
body.theme-astrea .hero {
  background: linear-gradient(168deg, var(--brand-700) 0%, var(--brand-800) 58%, var(--brand-900) 100%);
  padding-top: calc(64px + 3.5rem);
}
@media (min-width: 1024px) {
  body.theme-astrea .hero { padding-top: calc(66px + 4.5rem); padding-bottom: 4rem; }
}
/* As orbs claras sumiriam no fundo escuro — troca por brilhos sutis */
body.theme-astrea .orb-a { background: radial-gradient(circle, var(--brand-500), transparent 65%); opacity: 0.5; }
body.theme-astrea .orb-b { background: radial-gradient(circle, var(--accent-600), transparent 62%); opacity: 0.18; }
body.theme-astrea .orb-c { background: radial-gradient(circle, var(--brand-600), transparent 60%); opacity: 0.45; }

body.theme-astrea .hero .display { color: #fff; }
body.theme-astrea .hero .display em { color: var(--accent-300); }
body.theme-astrea .hero .lede { color: hsl(187 28% 84%); }
body.theme-astrea .hero .lede strong { color: #fff; }
body.theme-astrea .hero .hero-urgency { color: hsl(38 55% 82%); }
body.theme-astrea .hero .hero-urgency svg { color: var(--accent-400); }
body.theme-astrea .hero .hero-microline { color: hsl(187 20% 70%); }
body.theme-astrea .hero .hero-microline .micro-dot {
  background: var(--brand-200);
  box-shadow: 0 0 0 3px hsl(187 55% 55% / 0.25);
}

/* --- 2. CTA único dominante (branco) + link de vídeo na faixa --- */
body.theme-astrea .hero .btn-primary {
  background: #fff;
  color: var(--brand-700);
  box-shadow: 0 12px 32px -12px hsl(189 62% 5% / 0.55), inset 0 1px 0 hsl(0 0% 100% / 0.6);
}
body.theme-astrea .hero .btn-primary:hover {
  background: var(--brand-50);
  color: var(--brand-800);
  box-shadow: 0 16px 40px -12px hsl(189 62% 5% / 0.6);
}
body.theme-astrea .hero .btn-primary .btn-island { background: hsl(187 67% 24% / 0.14); }
body.theme-astrea .hero .btn-primary:hover .btn-island { background: hsl(187 67% 24% / 0.22); }

body.theme-astrea .hero .hero-video { color: #fff; }
body.theme-astrea .hero .hero-video-icon {
  background: hsl(0 0% 100% / 0.12);
  border-color: hsl(0 0% 100% / 0.32);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.theme-astrea .hero .hero-video:hover { color: #fff; }
body.theme-astrea .hero .hero-video:hover .hero-video-icon {
  background: hsl(0 0% 100% / 0.22);
  border-color: hsl(0 0% 100% / 0.5);
}

/* --- 3. Mockup sangrando pela borda direita (desktop) ---
   .hero tem overflow:hidden, então o que passa da borda é cortado
   pelo limite da janela = efeito "monitor sangrando", à la Astrea. */
@media (min-width: 1024px) {
  body.theme-astrea .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
    gap: 3.25rem;
  }
  body.theme-astrea .hero-mock { margin-right: -4vw; }
  body.theme-astrea .mock-window {
    transform: perspective(1800px) rotateY(-11deg) rotateX(4deg) scale(0.92);
    transform-origin: left center;
  }
}

/* ============================================================
   TEMA "FAIXA DE MARCA" — extensão para a LP INTEIRA
   (segunda leva: fontes minimalistas + cores coesas em todas
   as seções, não só o hero). Tudo escopado em body.theme-astrea,
   então o toggle continua revertendo 100%.
   ============================================================ */

/* --- FONTES: Fraunces (serif) -> Plus Jakarta Sans em TODA a LP.
   Como tudo usa var(--font-display), trocar a variável vira todos
   os títulos de seção de uma vez (minimalista, à la Astrea). --- */
body.theme-astrea {
  --font-display: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;

  /* COR: branco QUENTE (creme) — alterna com o "branco gelo" (--ice)
     pra delimitar as dobras. Quente um pouco mais profundo pra a
     alternância ser perceptível sem voltar ao cinza. */
  --paper:   hsl(38, 52%, 97%);
  --paper-2: hsl(40, 34%, 95.5%);
}

/* Títulos em sans pedem tracking um pouco mais fechado e peso firme
   pra manter a presença que a Fraunces tinha pelo desenho serifado. */
body.theme-astrea .display-sm,
body.theme-astrea .stakes-band-headline,
body.theme-astrea .final-cta-headline,
body.theme-astrea .mid-cta-headline,
body.theme-astrea .how-inline-title,
body.theme-astrea .pricing-stakes,
body.theme-astrea .anchor-lead {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variation-settings: normal;
}
/* Numerais grandes (stats / loss) ficam mais bonitos com tabular sans */
body.theme-astrea .loss-bignum,
body.theme-astrea .proof-stat-num,
body.theme-astrea .price-card__amount {
  font-variation-settings: normal;
  font-feature-settings: "tnum", "lnum";
  letter-spacing: -0.03em;
}
/* Aspas decorativas do founder em sans (sem serifa solta) */
body.theme-astrea .founder-statement,
body.theme-astrea .founder-quote p { font-variation-settings: normal; }

/* --- COR: faixas escuras com o MESMO "material" petrol do hero ---
   (antes brand-900/800 chapado; agora o gradiente vivo do hero) */
body.theme-astrea .social-proof,
body.theme-astrea .stakes-band {
  background:
    radial-gradient(120% 130% at 50% -10%, hsl(187 58% 24%), transparent 60%),
    linear-gradient(168deg, var(--brand-700) 0%, var(--brand-800) 60%, var(--brand-900) 100%);
  border-top-color: hsl(187 45% 22% / 0.55);
  border-bottom-color: hsl(187 45% 22% / 0.55);
}

/* --- COR: seções que eram quentes (bege) -> neutro frio limpo --- */
body.theme-astrea .final-cta {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
body.theme-astrea .final-cta-headline { color: var(--slate-900); }
body.theme-astrea .site-footer {
  background: linear-gradient(168deg, var(--brand-800) 0%, var(--brand-900) 100%);
  border-top: 1px solid hsl(187 45% 22% / 0.5);
  color: hsl(187 26% 82%);
}
body.theme-astrea .footer-grid { border-bottom-color: hsl(187 40% 24% / 0.5); }
body.theme-astrea .footer-brand { color: #fff; }
body.theme-astrea .footer-tagline { color: hsl(187 24% 78%); }
body.theme-astrea .footer-col-title { color: hsl(187 22% 62%); }
body.theme-astrea .footer-col a { color: hsl(187 24% 84%); }
body.theme-astrea .footer-col a:hover { color: #fff; }
body.theme-astrea .footer-col a.link-muted { color: hsl(187 20% 64%); }
body.theme-astrea .footer-meta { color: hsl(187 20% 64%); }
body.theme-astrea .footer-legal { color: hsl(187 22% 72%); }
body.theme-astrea .footer-legal strong { color: #fff; }
body.theme-astrea .footer-lgpd { color: hsl(187 18% 58%); }

/* --- COR: detalhes que reforçam a paleta ---
   eyebrow/kicker e checks puxam pro petrol mais profundo; o accent
   (brass) segue pontual nas aspas e no plano em destaque. */
body.theme-astrea .kicker { color: var(--brand-600); }
body.theme-astrea .eyebrow { border-color: var(--brand-200); color: var(--brand-700); }

/* ============================================================
   RECURSOS — showcase ALTERNADO (print de um lado, texto do outro;
   inverte a cada linha), inspirado na seção do Astrea.
   Token-driven: funciona no tema claro e no theme-astrea.
   A moldura mostra um wireframe do app por padrão; quando houver
   print real em screens/<feature>.png, o <img> entra por cima.
   ============================================================ */
.feature-rows { display: flex; flex-direction: column; gap: 3.5rem; margin-top: 0.5rem; }
@media (min-width: 900px) { .feature-rows { gap: 6rem; } }

.feature-row { display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: center; }
@media (min-width: 900px) {
  .feature-row { grid-template-columns: 1.06fr 0.94fr; gap: 4.5rem; }
  /* inverte a cada linha par: o print vai para a direita */
  .feature-row:nth-child(even) .feature-shot { order: 2; }
}

.feature-row-text { max-width: 30rem; }
@media (max-width: 899px) { .feature-row-text { max-width: 100%; } }
.feature-row-tag {
  display: inline-flex; align-items: center;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-pill);
  padding: 0.32rem 0.72rem;
  margin-bottom: 1rem;
}
.feature-row-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1vw + 1rem, 1.85rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--slate-900);
  margin: 0 0 0.8rem;
  text-wrap: balance;
}
.feature-row-text p { font-size: 1.02rem; line-height: 1.6; color: var(--slate-600); margin: 0; }

/* ----- moldura "print" ----- */
.feature-shot { position: relative; }
.feature-shot::before {
  /* brilho suave do petrol atrás da moldura (profundidade) */
  content: ""; position: absolute; inset: -6% -4% -10% -4%;
  background: radial-gradient(60% 60% at 50% 30%, hsl(187 60% 40% / 0.16), transparent 70%);
  filter: blur(8px); z-index: 0; pointer-events: none;
}
.feature-shot-frame {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.feature-shot-bar {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.6rem 0.85rem;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.fs-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.fs-dot-r { background: hsl(2 70% 70%); }
.fs-dot-y { background: hsl(40 80% 68%); }
.fs-dot-g { background: hsl(140 45% 64%); }
.feature-shot-url {
  margin-left: 0.5rem; font-size: 0.72rem; color: var(--slate-500);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.feature-shot-canvas {
  position: relative; aspect-ratio: 16 / 10;
  background:
    radial-gradient(130% 120% at 85% -10%, var(--brand-50), transparent 55%),
    var(--paper-2);
}
.feature-shot-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; z-index: 2; display: block;
}

/* ----- wireframe genérico (placeholder até o print real) ----- */
.fs-ui {
  position: absolute; inset: 0; z-index: 1;
  display: grid; grid-template-columns: 54px 1fr;
}
.fs-side {
  background: #fff; border-right: 1px solid var(--slate-200);
  padding: 14px 9px; display: flex; flex-direction: column; gap: 9px;
}
.fs-side span { height: 8px; border-radius: 4px; background: var(--slate-200); }
.fs-side span.on { background: var(--brand-500); }
.fs-main { padding: 15px 17px; display: flex; flex-direction: column; gap: 11px; min-width: 0; }
.fs-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.fs-h { width: 40%; height: 12px; border-radius: 6px; background: var(--slate-300); }
.fs-pill { width: 60px; height: 18px; border-radius: 999px; background: var(--brand-100); flex: none; }

.fs-rows { display: flex; flex-direction: column; gap: 8px; }
.fs-r {
  display: grid; grid-template-columns: 12px 1fr 44px; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--slate-200); border-radius: 9px; padding: 10px 11px;
}
.fs-r i { width: 10px; height: 10px; border-radius: 50%; background: var(--brand-400); }
.fs-r.urgent i { background: var(--accent-500); }
.fs-r b { height: 9px; border-radius: 5px; background: var(--slate-200); }
.fs-r u { height: 8px; border-radius: 4px; background: var(--slate-100); }

/* variante: financeiro (KPIs + gráfico) */
.fs-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.fs-kpi {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 9px;
  padding: 10px; display: flex; flex-direction: column; gap: 7px;
}
.fs-kpi span { height: 6px; width: 65%; border-radius: 3px; background: var(--slate-200); }
.fs-kpi b { height: 13px; width: 82%; border-radius: 5px; background: var(--brand-500); }
.fs-bars { display: flex; align-items: flex-end; gap: 8px; height: 70px; margin-top: auto; }
.fs-bars i { flex: 1; background: linear-gradient(180deg, var(--brand-300), var(--brand-500)); border-radius: 5px 5px 0 0; }
.fs-bars i:nth-child(1) { height: 42%; }
.fs-bars i:nth-child(2) { height: 64%; }
.fs-bars i:nth-child(3) { height: 52%; }
.fs-bars i:nth-child(4) { height: 80%; }
.fs-bars i:nth-child(5) { height: 68%; }
.fs-bars i:nth-child(6) { height: 95%; }

/* variante: agenda (faixa de dias) */
.fs-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.fs-day { height: 30px; border-radius: 7px; background: #fff; border: 1px solid var(--slate-200); }
.fs-day.on { background: var(--brand-500); border-color: var(--brand-500); }

/* variante: IA (card gerado) */
.fs-aicard {
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px solid var(--brand-100); border-radius: 9px;
  padding: 12px; display: flex; flex-direction: column; gap: 8px;
}
.fs-aicard .l { height: 8px; border-radius: 4px; background: var(--brand-200); }
.fs-aicard .l.short { width: 55%; }
.fs-btn { height: 20px; width: 90px; border-radius: 999px; background: var(--brand-500); margin-top: 2px; }

/* ============================================================
   PLANOS — refinamento estilo Astrea (toggle Mensal/Anual,
   selo "economize", eyebrow PLANO, métrica em destaque,
   CTA contornado + aba no popular). Token-driven (2 temas).
   ============================================================ */

/* toggle de ciclo de cobrança */
.pricing-toggle {
  display: flex; align-items: center; gap: 0.25rem;
  width: fit-content; margin: 1.6rem auto 2.5rem;
  padding: 0.3rem;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.pricing-toggle-opt {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  border: 0; background: transparent; cursor: pointer;
  font-size: 0.9rem; font-weight: 600; color: var(--slate-600);
  padding: 0.5rem 1.9rem; border-radius: var(--radius-pill);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-toggle-opt:hover { color: var(--slate-900); }
.pricing-toggle-opt.is-active {
  background: var(--brand-600); color: #fff;
  box-shadow: 0 4px 12px -4px hsl(187 60% 18% / 0.5);
}
.pricing-toggle-opt:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.pricing-toggle-save {
  font-size: 0.72rem; font-weight: 700;
  color: hsl(152 52% 32%);
  background: hsl(150 50% 93%);
  border-radius: var(--radius-pill); padding: 0.1rem 0.42rem;
}
.pricing-toggle-opt.is-active .pricing-toggle-save { color: #fff; background: hsl(0 0% 100% / 0.22); }

/* eyebrow "PLANO" + métrica em destaque */
.price-card__eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 0.2rem;
}
.price-card__label { min-height: 2.4em; }
.price-card__lead {
  font-size: 0.95rem; font-weight: 700; color: var(--brand-700);
  margin: 0 0 0.85rem;
}
.price-card__contact-text { font-size: 0.86rem; color: var(--slate-600); line-height: 1.5; margin: 0.7rem 0 1.2rem; }

/* botão acima da lista (não mais no rodapé) */
.price-card .btn { margin-top: 0; }
.price-card__price { margin: 0.85rem 0 0.15rem; }
.price-card__annual { margin: 0 0 1.1rem; min-height: 1.1em; }

/* CTA contornado (preenchido fica só no popular) */
.btn-outline {
  background: #fff;
  color: var(--brand-700);
  border-color: var(--brand-300);
}
.btn-outline:hover { background: var(--brand-50); border-color: var(--brand-500); color: var(--brand-800); }

/* selo "economize R$X/ano" — só no ciclo anual */
.price-card__ribbon {
  display: none;
  align-self: flex-start; align-items: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.01em;
  color: hsl(152 52% 28%);
  background: hsl(150 50% 94%);
  border: 1px solid hsl(150 40% 82%);
  border-radius: var(--radius-pill);
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.85rem;
}
.pricing.is-annual .price-card__ribbon { display: inline-flex; }

/* aba superior do plano popular (no lugar do badge antigo) */
.price-card.is-featured { padding-top: 2.6rem; }
.price-card__tab {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  border-radius: var(--radius-pill);
  padding: 0.36rem 0.95rem;
  box-shadow: 0 8px 20px -8px hsl(30 60% 32% / 0.55), inset 0 1px 0 hsl(40 80% 88% / 0.6);
  white-space: nowrap; z-index: 2;
}

/* no mobile (carrossel), garante espaço pra aba não ser cortada */
@media (max-width: 767px) {
  .pricing-grid { padding-top: 1.7rem; }
}

/* ============================================================
   PLANOS v2 — card em 2 zonas + faixas full-width (estilo Astrea),
   mantendo bordas arredondadas e cores do Argos (petrol/brass).
   ============================================================ */
.price-card {
  padding: 0;
  overflow: hidden;            /* faixas e zonas seguem o raio do card */
  border-radius: var(--radius-xl);   /* bordas bem arredondadas (Argos) */
}
.price-card.is-featured {
  padding-top: 0;
  background: #fff;
  border-color: var(--brand-300);
  box-shadow: var(--shadow-lg);
}

/* faixas full-width no topo */
.price-card__ribbon {
  position: static; transform: none;
  display: none; width: 100%; justify-content: center; text-align: center;
  align-items: center; align-self: stretch;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.01em;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 0; border-radius: 0;
  padding: 0.55rem 0.75rem; margin: 0;
}
.pricing.is-annual .price-card__ribbon { display: flex; }
.price-card__tab {
  position: static; transform: none;
  display: flex; width: 100%; justify-content: center;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  border-radius: 0; padding: 0.55rem 0.75rem; box-shadow: none;
}

/* zona superior (branca): plano, preço, CTA */
.price-card__body {
  display: flex; flex-direction: column;
  padding: 1.6rem 1.5rem 1.5rem;
  background: #fff;
}
.price-card.is-featured .price-card__body { background: hsl(187 44% 98%); }

/* zona inferior (tonalizada): métrica + lista */
.price-card__panel {
  flex: 1 1 auto;
  padding: 1.35rem 1.5rem 1.6rem;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
}
.price-card.is-featured .price-card__panel {
  background: hsl(187 40% 95%);
  border-top-color: hsl(187 30% 88%);
}

.price-card__eyebrow { margin-bottom: 0.15rem; }
.price-card__price { margin: 0.85rem 0 0.15rem; }
.price-card__annual { margin: 0 0 1.1rem; min-height: 1.1em; }
.price-card .btn { margin-top: 0.35rem; }   /* CTA logo após o preço (como no Astrea) */
.price-card__lead { margin: 0 0 0.9rem; }

/* lista sem checks (texto puro, como o Astrea) */
.price-card__features { display: grid; gap: 0.7rem; margin: 0; padding: 0; list-style: none; }
.price-card__features li { display: block; font-size: 0.85rem; color: var(--slate-600); line-height: 1.45; }

/* selo "−20%" do toggle em petrol (cor do Argos, não verde) */
.pricing-toggle-save { color: var(--brand-700); background: var(--brand-50); }
.pricing-toggle-opt.is-active .pricing-toggle-save { color: #fff; background: hsl(0 0% 100% / 0.22); }

/* contato segue as 2 zonas */
.price-card--contact { border-style: dashed; }
.price-card--contact .price-card__body,
.price-card--contact .price-card__panel { background: var(--slate-50); }

/* ============================================================
   PLANOS v3 — alturas iguais + selo "Mais popular" FORA do card.
   O conteúdo recortado vai pra .price-card__inner (mantém o raio);
   o card vira só o "trilho" de posicionamento (overflow visível),
   deixando o selo flutuar acima sem empurrar o conteúdo.
   ============================================================ */
.price-card {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.price-card__inner {
  display: flex; flex-direction: column;
  height: 100%;                 /* preenche a altura igualada pelo grid (align-items: stretch) */
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;             /* faixas e zonas seguem o raio arredondado */
}
.price-card:hover { transform: translateY(-9px); }
.price-card:hover .price-card__inner {
  border-color: var(--brand-200);
  box-shadow:
    0 28px 54px -26px hsl(187 45% 18% / 0.36),
    0 10px 24px -14px hsl(187 40% 16% / 0.18);
}
.price-card.is-featured { background: transparent; box-shadow: none; padding: 0; }
.price-card.is-featured .price-card__inner {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-lg);
}
.price-card--contact .price-card__inner { border-style: dashed; }

/* selo "Mais popular" flutuando acima do card (fora) */
.price-card__tab {
  position: absolute;
  left: 50%; bottom: 100%;
  transform: translateX(-50%);
  margin-bottom: -0.7rem;       /* leve sobreposição na borda superior */
  width: auto;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px -8px hsl(30 60% 32% / 0.55), inset 0 1px 0 hsl(40 80% 88% / 0.6);
  z-index: 3;
}

/* espaço acima dos cards pro selo não ser cortado */
.pricing-grid { padding-top: 1.85rem; align-items: stretch; }
@media (max-width: 767px) { .pricing-grid { padding-top: 2.1rem; } }

/* realce sutil enquanto o preço "rola" (sobe/desce) no toggle de planos */
.price-card__amount { transition: transform 0.3s var(--ease-out); }
.price-card__amount.is-rolling { transform: translateY(-2px); }

/* destaque "depois R$ 47/mês" no plano grátis (Start) */
.price-card__after {
  align-self: flex-start;
  display: inline-flex; align-items: baseline; gap: 0.3rem;
  margin: 0 0 1.1rem; min-height: 1.1em;
  font-size: 0.8rem; font-weight: 600;
  color: var(--brand-700);
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-pill);
  padding: 0.32rem 0.72rem;
}
.price-card__after strong { font-weight: 800; }

/* checklist dos planos — checks crispos em petrol (via mask, sem SVG no HTML) */
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--slate-700);
}
.price-card__features li::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  background-color: var(--brand-600);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ============================================================
   PLANOS v4 — "Mais popular" em dourado/sand + alinhamento.
   A faixa do topo passa a existir em TODOS os cards (inclusive o
   grátis: "6 meses grátis"), então os corpos começam na mesma
   altura e os cards ficam alinhados em qualquer ciclo.
   ============================================================ */
.price-card__ribbon { display: flex; }   /* sempre presente → alinha os corpos */

/* card popular: dourado/brass no lugar do petrol */
.price-card.is-featured .price-card__inner {
  border-color: var(--accent-300);
  box-shadow: var(--shadow-lg);
}
.price-card.is-featured:hover .price-card__inner { border-color: var(--accent-300); }
.price-card.is-featured .price-card__body {
  background: linear-gradient(180deg, hsl(36 56% 97.5%) 0%, hsl(38 46% 99%) 70%);
}
.price-card.is-featured .price-card__panel {
  background: hsl(35 44% 95.5%);
  border-top-color: hsl(34 40% 88%);
}
.price-card.is-featured .price-card__ribbon {
  color: var(--accent-700);
  background: var(--accent-50);
}

/* ============================================================
   PLANOS v5 — fundo quente quase-branco + alinhamento do grátis
   ============================================================ */
/* a nota "cobrado anualmente…" passa a reservar a MESMA altura da
   pílula "depois R$ 47/mês" do Start → botões e listas alinham */
.price-card__annual { min-height: 2rem; display: flex; align-items: center; }
.price-card__after  { min-height: 2rem; }

/* fundo da dobra de planos: mais quente e mais claro (quase branco) */
body.theme-astrea .pricing { background: hsl(40 47% 98%); }

/* ============================================================
   INTEGRAÇÕES — faixa de logos (substitui a antiga "Para quem é")
   Logos reais entram em landing/logos/*.svg; sem o arquivo, o
   onerror troca o <img> por um wordmark de texto (fallback limpo).
   ============================================================ */
.integrations { padding: 4.5rem 0; }
.integrations-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.4vw + 1rem, 1.9rem);
  letter-spacing: -0.02em;
  color: var(--brand-700);
  margin: 0 0 2.75rem;
  text-wrap: balance;
}
.integrations-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 2.25rem 3.25rem;
}
.integ-item { display: inline-flex; align-items: center; justify-content: center; }
.integ-logo {
  height: 40px; width: auto; max-width: 170px;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.integ-item:hover .integ-logo { opacity: 1; transform: translateY(-2px); }
/* fallback em texto enquanto não há o arquivo do logo */
.integ-name {
  font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em;
  color: var(--slate-500);
}
@media (max-width: 600px) {
  .integrations { padding: 3.25rem 0; }
  .integrations-list { gap: 1.75rem 2.25rem; }
  .integ-logo { height: 32px; }
  .integ-name { font-size: 1.05rem; }
}

/* INTEGRAÇÕES v2 — logo + nome embaixo */
.integ-item { flex-direction: column; gap: 0.6rem; }
.integ-logo-wrap { height: 42px; display: flex; align-items: center; justify-content: center; }
.integ-logo { height: 38px; max-width: 150px; }
.integ-name {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0;
  color: var(--slate-600);
}
@media (max-width: 600px) {
  .integ-logo-wrap { height: 34px; }
  .integ-logo { height: 30px; }
  .integ-name { font-size: 0.75rem; }
}

/* INTEGRAÇÕES — hover: área maior (padding no item, pega um pouco à
   esquerda/direita do logo) + pop ÚNICO e rápido (overshoot de mola que
   estoura e estabiliza um pouco maior), sombra difusa e nome em petrol. */
.integrations-list { gap: 1.1rem 1.4rem; }
.integ-item {
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.integ-logo {
  opacity: 1;
  transition: transform 0.13s cubic-bezier(0.3, 1.6, 0.5, 1), filter 0.12s ease;
  will-change: transform;
}
.integ-name { transition: color 0.1s ease, transform 0.13s cubic-bezier(0.3, 1.6, 0.5, 1); }
.integ-item:hover .integ-logo {
  transform: scale(1.18);
  filter: drop-shadow(0 10px 16px hsl(187 45% 18% / 0.22));
}
.integ-item:hover .integ-name { color: var(--brand-700); transform: translateY(2px); }
@media (prefers-reduced-motion: reduce) {
  .integ-logo, .integ-name { transition: none; }
  .integ-item:hover .integ-logo { transform: scale(1.12); filter: none; }
}

/* ============================================================
   RECURSOS — hover quente: passar o mouse na linha (texto OU print)
   levanta o print e o "aquece" (brass/sand = cor quente da LP),
   com zoom sutil da imagem e a tag esquentando. Dispara em toda a
   linha, então funciona tanto no texto quanto na imagem.
   ============================================================ */
.feature-shot-frame { transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-out), border-color 0.4s ease; }
.feature-shot::before { transition: background 0.45s ease, filter 0.45s ease; }
.feature-shot-img { transition: transform 0.6s var(--ease-out); }
.feature-row-tag { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }

.feature-row:hover .feature-shot-frame {
  transform: translateY(-8px) scale(1.012);
  border-color: var(--accent-300);
  box-shadow:
    0 34px 64px -26px hsl(30 58% 34% / 0.36),
    0 14px 30px -16px hsl(30 52% 30% / 0.22);
}
.feature-row:hover .feature-shot::before {
  background: radial-gradient(60% 60% at 50% 35%, hsl(32 76% 56% / 0.32), transparent 70%);
  filter: blur(16px);
}
.feature-row:hover .feature-shot-img { transform: scale(1.045); }
.feature-row:hover .feature-row-tag {
  color: var(--accent-700);
  background: var(--accent-50);
  border-color: var(--accent-200);
}
@media (prefers-reduced-motion: reduce) {
  .feature-shot-frame, .feature-shot-img, .feature-shot::before, .feature-row-tag { transition: none; }
  .feature-row:hover .feature-shot-frame { transform: none; }
  .feature-row:hover .feature-shot-img { transform: none; }
}

/* ============================================================
   URGÊNCIA ("Informações espalhadas geram retrabalho…") — faixa
   PRÓPRIA entre o hero e os stats. Em vez de um bloco chapado (que
   virava "emenda"), recebe um SPOTLIGHT petrol: centro mais claro e
   bordas em brand-900 → uma pausa intencional, com profundidade e
   sem linhas duras. Copy branca + "Retrabalho gera erros." em brass.
   (Escopo no tema; não mexe no bg do hero.)
   ============================================================ */
body.theme-astrea .urgency-band {
  background:
    radial-gradient(72% 150% at 50% 50%, hsl(187 52% 17%), transparent 62%),
    var(--brand-900);
  border-top: 1px solid hsl(187 50% 22% / 0.35);
  border-bottom: 0;
  padding: 3.75rem 0;
}
body.theme-astrea .urgency-band-text { color: #fff; }
body.theme-astrea .urgency-band-text em { font-style: normal; color: var(--accent-400); }
/* faixa não é interativa → hover não muda nada (evita o "verde chapado") */
body.theme-astrea .urgency-band:hover {
  background:
    radial-gradient(72% 150% at 50% 50%, hsl(187 52% 17%), transparent 62%),
    var(--brand-900);
  border-color: hsl(187 50% 22% / 0.35);
}
body.theme-astrea .urgency-band:hover .urgency-band-text { color: #fff; }

/* ============================================================
   DEPOIMENTOS — refino: estrelas (brass), card flutuante com sombra
   quente em camadas, aspas watermark, divisória antes da pessoa e
   entrada em cascata. (Os dados continuam MOCK — trocar no go-live.)
   ============================================================ */
.testimonials { background: linear-gradient(180deg, var(--paper-2), var(--paper) 120%); }
.testi-card {
  position: relative;
  border-radius: var(--radius-xl);
  border-color: hsl(36 30% 88%);
  padding: 1.9rem 1.7rem;
  gap: 1.1rem;
  box-shadow: 0 1px 2px hsl(30 30% 28% / 0.05), 0 16px 38px -24px hsl(30 42% 24% / 0.18);
  overflow: hidden;
}
.testi-card::after {            /* aspas decorativas (watermark) */
  content: "\201D";
  position: absolute; top: 0.15rem; right: 0.9rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 5.5rem; line-height: 1; color: var(--accent-400);
  opacity: 0.13; pointer-events: none; user-select: none;
}
.testi-stars { color: var(--accent-500); font-size: 0.95rem; letter-spacing: 0.14em; line-height: 1; position: relative; z-index: 1; }
.testi-quote::before { content: none; }   /* tira a aspa inline: já há estrelas + watermark */
.testi-quote { font-size: 1rem; color: var(--slate-700); position: relative; z-index: 1; }
.testi-person { padding-top: 0.95rem; border-top: 1px solid hsl(36 26% 90%); }
.testi-card:hover {
  transform: translateY(-7px);
  border-color: var(--accent-200);
  box-shadow: 0 2px 5px hsl(30 30% 26% / 0.07), 0 30px 56px -22px hsl(30 46% 22% / 0.28);
}
/* entrada em cascata (dominó) */
.testi-grid .testi-card.reveal:nth-child(1) { transition-delay: 0ms; }
.testi-grid .testi-card.reveal:nth-child(2) { transition-delay: 90ms; }
.testi-grid .testi-card.reveal:nth-child(3) { transition-delay: 180ms; }

/* ============================================================
   FUNDADOR ("Por que o Argos existe") — pull-quote editorial mais
   quente/humano: aspa grande em brass acima da frase, card sand
   "flutuante", avatar maior com anel, lift sutil no hover.
   ============================================================ */
.founder { padding: 4rem 0; }
.founder-card {
  max-width: 820px;
  padding: 2.75rem 3rem 2.4rem;
  border-radius: var(--radius-xl);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-out);
}
.founder-card:hover { transform: translateY(-5px); }
.founder-card .kicker { margin-bottom: 1rem; }

/* aspa grande (bloco) acima da frase; tira as aspas inline antigas */
.founder-statement::after { content: none; }
.founder-statement::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 3.4rem; line-height: 0.5;
  color: var(--accent-400);
  margin: 0.2rem 0 0.7rem;
}
.founder-statement {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.05rem, 0.7vw + 0.85rem, 1.3rem);
  letter-spacing: -0.012em;
  line-height: 1.5;
  max-width: 58ch;
  margin: 0 auto 1.7rem;
}
.founder-avatar {
  width: 54px; height: 54px;
  font-size: 1rem;
  box-shadow: 0 0 0 3px hsl(34 52% 91%), 0 8px 16px -6px hsl(30 50% 30% / 0.38);
}
.founder-cite { gap: 0.9rem; }
.founder-name { font-size: 1rem; }

/* warm (tema): card sand + hairline/halo brass em vez de petrol */
body.theme-astrea .founder {
  background:
    radial-gradient(80% 60% at 50% 35%, hsl(34 50% 96%), transparent 72%),
    var(--paper);
}
body.theme-astrea .founder-card {
  background: linear-gradient(180deg, #fff, hsl(36 44% 98%));
  border-color: hsl(34 34% 88%);
  box-shadow:
    var(--inset-light),
    0 1px 2px hsl(30 40% 20% / 0.04),
    0 22px 46px -26px hsl(30 45% 24% / 0.24),
    0 8px 18px -12px hsl(30 40% 22% / 0.14);
}
body.theme-astrea .founder-card::before {
  background: linear-gradient(90deg, transparent, var(--accent-400), transparent);
}
body.theme-astrea .founder-card:hover {
  box-shadow:
    var(--inset-light),
    0 2px 4px hsl(30 40% 20% / 0.05),
    0 34px 60px -24px hsl(30 48% 22% / 0.3),
    0 10px 22px -12px hsl(30 42% 20% / 0.16);
}

/* ============================================================
   REFINO "EMPRESA SÉRIA" (itens 2,3,4,5,6,7 da auditoria):
   contenção de motion/glow, cor disciplinada, ritmo vertical
   consistente, craft (sombras contidas + hairlines) e logos
   sóbrios. Mantém os toques quentes APROVADOS (hover dos recursos
   e fundador) só nos momentos certos. Escopo no tema.
   ============================================================ */
body.theme-astrea { --shadow-quiet: 0 1px 2px hsl(190 22% 18% / 0.05), 0 14px 32px -20px hsl(190 26% 18% / 0.2); }

/* (4) ritmo vertical consistente nas seções claras */
body.theme-astrea .features,
body.theme-astrea .testimonials,
body.theme-astrea .founder,
body.theme-astrea .integrations,
body.theme-astrea .demo,
body.theme-astrea .pricing,
body.theme-astrea .faq { padding-top: 6.5rem; padding-bottom: 6.5rem; }
@media (max-width: 768px) {
  body.theme-astrea .features, body.theme-astrea .testimonials, body.theme-astrea .founder,
  body.theme-astrea .integrations, body.theme-astrea .demo, body.theme-astrea .pricing,
  body.theme-astrea .faq { padding-top: 4rem; padding-bottom: 4rem; }
}

/* (6) logos sóbrios: monocromáticos, cor só no hover + (2) hover calmo (sem overshoot) */
body.theme-astrea .integ-logo {
  filter: grayscale(1) opacity(0.55);
  transition: transform 0.13s var(--ease-out), filter 0.13s ease;
}
body.theme-astrea .integ-item:hover .integ-logo { filter: grayscale(0) opacity(1); transform: scale(1.12); }
body.theme-astrea .integ-name { color: var(--slate-500); }

/* Mobile: ícones já coloridos por padrão, SEM hover, e grade uniforme 4×2 */
@media (max-width: 768px) {
  body.theme-astrea .integ-logo { filter: none; opacity: 1; }
  .integrations-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem 0.5rem;
    max-width: 30rem;
    margin-inline: auto;
  }
  .integ-item { padding: 0.15rem; cursor: default; gap: 0.5rem; }
  .integ-logo-wrap { height: 36px; }
  .integ-logo { height: 30px; max-width: 100%; }
  .integ-name { font-size: 0.68rem; line-height: 1.2; text-align: center; }
  /* neutraliza qualquer efeito de hover/tap no touch */
  .integ-logo, body.theme-astrea .integ-logo { transition: none; will-change: auto; }
  .integ-item:hover .integ-logo,
  body.theme-astrea .integ-item:hover .integ-logo { transform: none; filter: none; }
  .integ-item:hover .integ-name,
  body.theme-astrea .integ-item:hover .integ-name { transform: none; color: var(--slate-500); }
}

/* (5/7) craft + estrutura: sombras contidas e hairlines crispas, menos glow */
body.theme-astrea .testi-card,
body.theme-astrea .feature-shot-frame {
  box-shadow: var(--shadow-quiet);
  border-color: hsl(195 15% 88%);
}
body.theme-astrea .founder-card { box-shadow: var(--shadow-quiet); }   /* mantém a borda quente do fundador */
body.theme-astrea .testi-card::after { opacity: 0.08; }                /* watermark mais discreta */
body.theme-astrea .feature-shot::before { opacity: 0.6; }              /* halo de fundo mais sutil (resting) */
body.theme-astrea .testi-card:hover {
  transform: translateY(-5px);
  border-color: hsl(195 16% 82%);
  box-shadow: 0 2px 4px hsl(190 22% 18% / 0.06), 0 24px 46px -22px hsl(190 26% 18% / 0.26);
}

/* ============================================================
   PREMIUM PASS (itens 1,2,4,5 — item 6 já vive no .reveal):
   1) escala/detalhes finos de tipografia (mesma fonte)
   2) textura (grão) + mesh nas faixas escuras + highlight interno
   4) craft: highlight interno + hairline nos cards
   5) iconografia unificada (um traço fino)
   ============================================================ */

/* (1) tracking mais fechado e eyebrow refinada (sem trocar a fonte) */
body.theme-astrea .display-sm { letter-spacing: -0.03em; }
body.theme-astrea .hero .display { letter-spacing: -0.032em; }
body.theme-astrea .kicker {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--brand-600); margin-bottom: 1rem;
}

/* (5) iconografia unificada — um traço fino em todos os ícones de linha */
body.theme-astrea svg { stroke-width: 1.6; }

/* (4) craft: highlight interno (aresta "usinada") nos cards principais */
body.theme-astrea .testi-card,
body.theme-astrea .feature-shot-frame { box-shadow: var(--shadow-quiet), inset 0 1px 0 hsl(0 0% 100% / 0.6); }
body.theme-astrea .founder-card { box-shadow: var(--shadow-quiet), inset 0 1px 0 hsl(0 0% 100% / 0.7); }

/* (2) textura: grão sutil em toda a página (filme/película premium) */
body.theme-astrea::after {
  content: "";
  position: fixed; inset: 0; z-index: 8;
  pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body.theme-astrea::after { display: none; } }

/* (2) mesh sutil nas faixas escuras (footer) — profundidade, não cor plana */
body.theme-astrea .site-footer {
  background:
    radial-gradient(60% 85% at 12% 0%, hsl(187 52% 18% / 0.55), transparent 60%),
    radial-gradient(46% 70% at 96% 8%, hsl(187 46% 16% / 0.4), transparent 60%),
    linear-gradient(168deg, var(--brand-800) 0%, var(--brand-900) 100%);
}

/* ============================================================
   ITEM 3 — variar arquétipo de layout: FAQ vira split editorial
   (cabeçalho à esquerda, sticky + perguntas à direita). Quebra a
   monotonia de "tudo centralizado". Empilha no mobile.
   ============================================================ */
@media (min-width: 900px) {
  body.theme-astrea .faq-inner {
    max-width: 1080px;
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 4.5rem;
    align-items: start;
  }
  body.theme-astrea .faq .section-head {
    text-align: left;
    max-width: none;
    margin: 0;
    position: sticky;
    top: 96px;
  }
}

/* ============================================================
   PREMIUM PASS 2 — itens 1,3,4,5 da análise de seções:
   (1) Stats: split editorial (frase à esquerda, métricas 2x2 à direita)
   (3) CTA final: bloco escuro com mesh (grão já vem do overlay global)
   (4) Segurança: itens viram chips com craft
   (5) Stakes: spotlight central + tracking
   ============================================================ */

/* (1) STATS — split editorial */
@media (min-width: 900px) {
  body.theme-astrea .social-proof .container {
    display: grid;
    grid-template-columns: 0.9fr 1.25fr;
    gap: 4.5rem;
    align-items: center;
  }
  body.theme-astrea .proof-lead { text-align: left; margin: 0; max-width: 22ch; }
  body.theme-astrea .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 2.6rem 2rem; }
  body.theme-astrea .proof-stat { text-align: left; align-items: flex-start; }
  body.theme-astrea .proof-stat-num { justify-content: flex-start; font-size: clamp(2.2rem, 2.2vw + 1.2rem, 3rem); min-height: clamp(2.2rem, 2.2vw + 1.2rem, 3rem); }
}

/* (3) CTA FINAL — bloco escuro com mesh + CTA branco */
body.theme-astrea .final-cta {
  background:
    radial-gradient(58% 90% at 18% 0%, hsl(187 52% 18% / 0.6), transparent 60%),
    radial-gradient(50% 80% at 92% 100%, hsl(187 46% 16% / 0.5), transparent 60%),
    linear-gradient(168deg, var(--brand-800) 0%, var(--brand-900) 100%);
}
body.theme-astrea .final-cta-headline { color: #fff; letter-spacing: -0.03em; }
body.theme-astrea .final-cta-support { color: hsl(187 26% 82%); }
body.theme-astrea .final-cta-note { color: hsl(187 20% 66%); }
body.theme-astrea .final-cta .btn-primary {
  background: #fff; color: var(--brand-700);
  box-shadow: 0 14px 34px -14px hsl(189 62% 5% / 0.6), inset 0 1px 0 hsl(0 0% 100% / 0.6);
}
body.theme-astrea .final-cta .btn-primary:hover { background: var(--brand-50); color: var(--brand-800); }
body.theme-astrea .final-cta .btn-primary .btn-island { background: hsl(187 67% 24% / 0.16); }

/* (4) SEGURANÇA — itens viram chips com craft */
body.theme-astrea .security-band { padding: 2.6rem 0; }
body.theme-astrea .security-band-list { gap: 0.7rem 0.9rem; }
body.theme-astrea .security-band-list li {
  padding: 0.6rem 1.05rem;
  background: #fff;
  border: 1px solid hsl(195 16% 89%);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px hsl(190 22% 20% / 0.05), inset 0 1px 0 hsl(0 0% 100% / 0.7);
  color: var(--slate-700);
}

/* (5) STAKES — spotlight central + tracking */
body.theme-astrea .stakes-band {
  background:
    radial-gradient(62% 120% at 50% 50%, hsl(187 54% 18%), transparent 62%),
    linear-gradient(168deg, var(--brand-800) 0%, var(--brand-900) 100%);
}
body.theme-astrea .stakes-band-headline { letter-spacing: -0.03em; }

/* (1) STATS — âncora editorial à esquerda (base; o layout split vive no @media 900 acima) */
.proof-lead { text-align: center; margin: 0 auto 2rem; max-width: 40ch; }
.proof-lead-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-400);
  margin-bottom: 0.9rem;
}
.proof-lead-text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.5vw + 0.95rem, 1.95rem);
  line-height: 1.25; letter-spacing: -0.02em;
  color: #fff; text-wrap: balance;
}

/* ============================================================
   STATS v2 — corrige o split: métricas viram um "ledger" vertical
   alinhado (número | rótulo) com hairlines. Esconde o 4º item
   (texto "Novas movimentações"), que quebrava o ritmo do grid.
   ============================================================ */
@media (min-width: 900px) {
  body.theme-astrea .social-proof .container {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 4rem;
    align-items: center;
  }
  body.theme-astrea .proof-stats {
    display: flex; flex-direction: column; gap: 0;
    grid-template-columns: none;
  }
  body.theme-astrea .proof-stat {
    flex-direction: row; align-items: center; gap: 1.3rem;
    padding: 1.2rem 0;
    border-top: 1px solid hsl(187 42% 26% / 0.45);
    text-align: left;
  }
  body.theme-astrea .proof-stat:first-child { border-top: 0; padding-top: 0; }
  body.theme-astrea .proof-stat:nth-child(4) { display: none; }   /* item de texto quebrava o ritmo */
  body.theme-astrea .proof-stat-num {
    flex: none; min-width: 6ch; justify-content: flex-start;
    font-size: clamp(1.9rem, 1.5vw + 1.05rem, 2.5rem);
    min-height: auto;
  }
  body.theme-astrea .proof-stat-label { flex: 1; margin: 0; }
}

/* ============================================================
   STATS v3 — sem a âncora: métricas viram um "stats bar" centrado
   (3 números grandes, centralizados, com divisórias verticais).
   Sobrescreve o split (v2). 4º item (texto) segue oculto.
   ============================================================ */
@media (min-width: 768px) {
  body.theme-astrea .social-proof .container { display: block; }
  body.theme-astrea .proof-stats {
    display: flex; flex-direction: row; flex-wrap: nowrap;
    justify-content: center; align-items: stretch;
    gap: 0; max-width: 900px; margin: 0 auto;
    grid-template-columns: none;
  }
  body.theme-astrea .proof-stat {
    flex: 1; flex-direction: column; align-items: center;
    text-align: center; gap: 0.45rem;
    padding: 0.4rem 2rem;
    border-top: 0;
    border-left: 1px solid hsl(187 42% 26% / 0.45);
  }
  body.theme-astrea .proof-stat:first-child { border-left: 0; }
  body.theme-astrea .proof-stat:nth-child(4) { display: none; }
  body.theme-astrea .proof-stat-num {
    justify-content: center; min-width: 0; min-height: auto;
    font-size: clamp(2.1rem, 2.2vw + 1.2rem, 3.1rem);
  }
  body.theme-astrea .proof-stat-label { text-align: center; flex: none; margin: 0; max-width: 22ch; }
}

/* ============================================================
   RECURSOS — BENTO GRID (Linear/Notion/Attio-style): cards de
   tamanhos variados, screenshot "espiando" do canto, borda fina,
   sombra suave e hover levantando. Substitui as linhas alternadas.
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
.bento-card {
  grid-column: span 3;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 340px;
  background: #fff;
  border: 1px solid hsl(195 16% 89%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 1px 2px hsl(190 22% 18% / 0.05), 0 16px 36px -22px hsl(190 28% 18% / 0.22);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out), border-color 0.4s ease;
}
.bento-card--third { grid-column: span 2; min-height: 310px; }
.bento-card--wide  { grid-column: span 6; }

.bento-card__body { padding: 1.65rem 1.65rem 0.9rem; }
.bento-card__tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-600); margin-bottom: 0.6rem;
}
.bento-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.15rem, 0.6vw + 1rem, 1.42rem);
  line-height: 1.2; letter-spacing: -0.025em; color: var(--slate-900);
  margin: 0 0 0.45rem; text-wrap: balance;
}
.bento-card__desc { margin: 0; font-size: 0.92rem; line-height: 1.5; color: var(--slate-600); max-width: 42ch; }

.bento-card__shot {
  position: relative;
  margin-top: auto;
  flex: 1; min-height: 165px;
  background:
    radial-gradient(120% 120% at 85% 0%, var(--brand-50), transparent 58%),
    var(--paper-2);
  overflow: hidden;
}
.bento-card__shot img {
  position: absolute;
  top: 1.4rem; left: 1.6rem;
  width: calc(100% - 1.6rem);
  height: auto;
  object-fit: cover; object-position: top left;
  border-radius: 10px 0 0 0;
  border: 1px solid hsl(195 18% 88%);
  border-right: 0; border-bottom: 0;
  box-shadow: -10px -8px 34px -18px hsl(190 30% 18% / 0.22);
  transition: transform 0.6s var(--ease-out);
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-200);
  box-shadow: 0 2px 4px hsl(190 22% 18% / 0.06), 0 32px 58px -24px hsl(190 30% 18% / 0.3);
}
.bento-card:hover .bento-card__shot img { transform: scale(1.025) translate(-2px, -2px); }

/* card largo (hero/closer): texto à esquerda, screenshot à direita */
.bento-card--wide { flex-direction: row; align-items: stretch; min-height: 300px; }
.bento-card--wide .bento-card__body { flex: 0 0 40%; align-self: center; padding: 2.4rem; }
.bento-card--wide .bento-card__desc { font-size: 1rem; }
.bento-card--wide .bento-card__shot { flex: 1; margin-top: 0; min-height: 100%; }

/* responsivo */
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card, .bento-card--third { grid-column: span 1; }
  .bento-card--wide { grid-column: span 2; flex-direction: column; }
  .bento-card--wide .bento-card__body { flex: none; align-self: stretch; padding: 1.65rem 1.65rem 0.9rem; }
  .bento-card--wide .bento-card__shot { min-height: 210px; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-card--third, .bento-card--wide { grid-column: span 1; min-height: 300px; }
}

/* Bento — mais respiro: separação maior entre cards + padding interno */
.bento { gap: 1.65rem; }
.bento-card { min-height: 365px; }
.bento-card--third { min-height: 335px; }
.bento-card__body { padding: 2rem 2rem 1rem; }
.bento-card--wide .bento-card__body { padding: 2.75rem; }
.bento-card__shot img { top: 1.85rem; left: 2rem; width: calc(100% - 2rem); }
@media (max-width: 600px) {
  .bento { gap: 1.25rem; }
  .bento-card__body { padding: 1.6rem 1.6rem 0.9rem; }
}

/* ============================================================
   BENTO — clicar no CARD INTEIRO amplia/recolhe no próprio grid
   (sem popup): o card vira full-width e o screenshot aparece inteiro.
   ============================================================ */
.bento-card[role="button"] { cursor: zoom-in; -webkit-tap-highlight-color: transparent; }
.bento-card[role="button"]:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.bento-card.is-zoomed { cursor: zoom-out; }
.bento-card__zoom-hint {
  position: absolute; z-index: 4; top: 0.85rem; right: 0.85rem;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: hsl(190 32% 14% / 0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px -4px hsl(190 40% 10% / 0.5);
  opacity: 0; transform: scale(0.88);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), background-color .2s ease;
  pointer-events: none;
}
.bento-card:hover .bento-card__zoom-hint,
.bento-card[role="button"]:focus-visible .bento-card__zoom-hint,
.bento-card.is-zoomed .bento-card__zoom-hint { opacity: 1; transform: none; }
.bento-card__zoom-hint .ico-close { display: none; }
.bento-card.is-zoomed .bento-card__zoom-hint .ico-expand { display: none; }
.bento-card.is-zoomed .bento-card__zoom-hint .ico-close { display: block; }

.bento-card.is-zoomed {
  grid-column: 1 / -1;
  flex-direction: column;
}
.bento-card.is-zoomed:hover {
  transform: none;
  box-shadow: 0 2px 4px hsl(190 22% 18% / 0.06), 0 32px 58px -24px hsl(190 30% 18% / 0.3);
}
.bento-card.is-zoomed .bento-card__body { flex: 0 0 auto; align-self: stretch; }
.bento-card.is-zoomed .bento-card__shot {
  cursor: zoom-out;
  flex: 0 0 auto; min-height: 0;
  margin-top: 0.25rem;
  padding: 0.5rem clamp(0.75rem, 2vw, 2rem) 1.75rem;
  background: var(--paper-2);
  display: flex; justify-content: center; align-items: flex-start;
}
.bento-card.is-zoomed .bento-card__shot img,
.bento-card.is-zoomed:hover .bento-card__shot img {
  position: static;
  width: auto; max-width: 100%;
  height: auto; max-height: 76vh;
  object-fit: contain; object-position: center;
  border: 1px solid hsl(195 18% 86%);
  border-radius: 12px;
  box-shadow: 0 30px 70px -30px hsl(190 30% 18% / 0.42);
  transform: none;
  animation: bentoZoomIn 0.45s var(--ease-out) both;
}
@keyframes bentoZoomIn {
  from { opacity: 0; transform: translateY(8px) scale(0.99); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   FUNDOS — unifica o conteúdo em branco (remove os cinzas/teal
   intermediários: .features/bento, depoimentos, demo, how). Só os
   âncoras ficam escuros (hero+intro, CTAs, footer). Menos troca.
   ============================================================ */
body.theme-astrea .features,
body.theme-astrea .testimonials,
body.theme-astrea .demo,
body.theme-astrea .how,
body.theme-astrea .security { background: var(--paper); }
body.theme-astrea .testimonials { border-top: 0; }

/* ============================================================
   FOOTER v2 — mais "produto": watermark sutil da marca ao fundo,
   logo maior, slogan mais presente e redes sociais. (Mantém o
   gradiente petrol + mesh já definidos.)
   ============================================================ */
body.theme-astrea .site-footer {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 2.25rem;
}
/* watermark sutil da marca (ilustração de fundo) */
body.theme-astrea .site-footer::before {
  content: "";
  position: absolute; right: -1.5%; bottom: -36%;
  width: 460px; height: 460px;
  background: url("favicon.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.05;
  pointer-events: none;
}
body.theme-astrea .footer-grid,
body.theme-astrea .footer-bottom { position: relative; z-index: 1; }

/* logo maior + slogan mais presente */
.footer-brand { font-size: 1.5rem; gap: 0.6rem; }
.footer-brand .brand-mark svg { width: 40px; height: 40px; }
.footer-tagline { font-size: 1rem; max-width: 34ch; }

/* redes sociais */
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: hsl(187 24% 84%);
  background: hsl(0 0% 100% / 0.06);
  border: 1px solid hsl(187 40% 32% / 0.5);
  transition: transform 0.25s var(--ease-spring), background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
body.theme-astrea .footer-social-link:hover {
  color: #fff;
  background: hsl(0 0% 100% / 0.12);
  border-color: hsl(187 45% 48% / 0.65);
  transform: translateY(-2px);
}

/* ============================================================
   FAIXAS ESCURAS — resolve as "dobras escuras seguidas":
   TOPO clareado (só o hero escuro; urgência + números viram claros)
   FECHO escuro contínuo (CTA final + footer = um bloco, sem emenda).
   Ritmo final: escuro → claro → escuro (stakes) → claro → escuro.
   ============================================================ */

/* TOPO — urgência clara */
body.theme-astrea .urgency-band { background: var(--paper); border-top: 0; border-bottom: 0; }
body.theme-astrea .urgency-band-text { color: var(--slate-900); }
body.theme-astrea .urgency-band-text em { color: var(--accent-700); }
body.theme-astrea .urgency-band:hover { background: var(--paper); }
body.theme-astrea .urgency-band:hover .urgency-band-text { color: var(--slate-900); }   /* mantém texto escuro no hover (faixa é clara) */
body.theme-astrea .urgency-band:hover .urgency-band-text em { color: var(--accent-700); }

/* TOPO — números claros */
body.theme-astrea .social-proof {
  background: var(--paper);
  border-top: 0; border-bottom: 0;
  color: var(--slate-700);
}
body.theme-astrea .proof-stat-num { color: var(--ink); }
body.theme-astrea .proof-stat-plus { color: var(--accent-600); }
body.theme-astrea .proof-stat-label { color: var(--slate-500); }
body.theme-astrea .proof-stat:hover { transform: translateY(-4px); }
body.theme-astrea .proof-stat:hover .proof-stat-num { text-shadow: none; }
body.theme-astrea .proof-stat:hover .proof-stat-label { color: var(--slate-700); }
@media (min-width: 768px) {
  body.theme-astrea .proof-stat { border-left-color: hsl(195 16% 88%); }
}

/* FECHO — CTA final + footer como um bloco escuro contínuo */
body.theme-astrea .final-cta {
  background:
    radial-gradient(58% 90% at 18% 0%, hsl(187 52% 18% / 0.5), transparent 60%),
    linear-gradient(180deg, var(--brand-800) 0%, var(--brand-900) 100%);
}
body.theme-astrea .site-footer {
  background:
    radial-gradient(70% 100% at 88% 10%, hsl(187 48% 17% / 0.45), transparent 60%),
    linear-gradient(180deg, var(--brand-900) 0%, hsl(189 62% 8%) 100%);
}

/* ============================================================
   ALTERNÂNCIA DE TONS — delimita as dobras claras alternando
   branco QUENTE (--paper) e BRANCO GELO (--ice). Default = quente;
   as seções abaixo recebem o gelo, intercalando na ordem da página:
   urgência(q) · stats(gelo) · depoimentos(q) · fundador(gelo) ·
   recursos(q) · integrações(gelo) · demo(q) · segurança(gelo) ·
   [stakes escuro] · planos(q) · faq(gelo) · [fecho escuro]
   ============================================================ */
body.theme-astrea { --ice: hsl(205, 45%, 99.5%); }
body.theme-astrea .social-proof,
body.theme-astrea .founder,
body.theme-astrea .integrations,
body.theme-astrea .security-band,
body.theme-astrea .faq { background: var(--ice); }

/* CTA final com TOM PRÓPRIO — petrol mais claro/brilhante + spotlight
   central (um "momento"), distinto do footer (que é a base profunda). */
body.theme-astrea .final-cta {
  background:
    radial-gradient(70% 130% at 50% 42%, hsl(187 56% 23%), transparent 60%),
    linear-gradient(165deg, var(--brand-700) 0%, var(--brand-800) 100%);
}

/* ============================================================
   FUNDADOR ("Por que o Argos existe") — mesmo verde/petrol do CTA
   final: vira um "momento" escuro de citação (card transparente,
   texto branco, aspa e eyebrow em brass).
   ============================================================ */
body.theme-astrea .founder {
  background:
    radial-gradient(70% 130% at 50% 42%, hsl(187 56% 23%), transparent 60%),
    linear-gradient(165deg, var(--brand-700) 0%, var(--brand-800) 100%);
}
body.theme-astrea .founder-card { background: transparent; border: 0; box-shadow: none; }
body.theme-astrea .founder-card::before { display: none; }
body.theme-astrea .founder .kicker { color: var(--accent-400); }
body.theme-astrea .founder-statement { color: #fff; }
body.theme-astrea .founder-statement::before { color: var(--accent-400); }
body.theme-astrea .founder-name { color: #fff; }
body.theme-astrea .founder-role { color: hsl(187 26% 80%); }
body.theme-astrea .founder-avatar { box-shadow: 0 0 0 3px hsl(187 45% 34% / 0.6), 0 8px 16px -6px hsl(189 60% 6% / 0.5); }

/* ============================================================
   FUNDADOR — split editorial: pessoa (avatar+nome) à esquerda como
   âncora, citação à direita. Preenche o escuro sem card nem vazio.
   ============================================================ */
.founder-person { display: flex; flex-direction: column; align-items: center; gap: 1.05rem; text-align: center; max-width: 210px; margin: 0 auto; }
.founder-avatar { width: 96px; height: 96px; font-size: 1.6rem; }
.founder-avatar-initials { font-size: 1.5rem; }
.founder-meta { align-items: center; }
@media (min-width: 760px) {
  body.theme-astrea .founder { padding: 4.75rem 0; }
  body.theme-astrea .founder-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
    max-width: 920px;
    text-align: left;
    padding: 0;
  }
  body.theme-astrea .founder-person { margin: 0; }
  body.theme-astrea .founder-quote-block .kicker { display: block; margin-bottom: 0.85rem; }
  body.theme-astrea .founder-statement { text-align: left; margin: 0; max-width: none; font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem); }
  body.theme-astrea .founder-statement::before { margin: 0 0 0.4rem; }
}

/* ============================================================
   FUNDADOR v3 — pull-quote centrado, limpo e composto (corrige o
   split "feio" e remove o hover). Citação centralizada, divisória
   fina, e autor (avatar+nome) embaixo com contraste no escuro.
   ============================================================ */
.founder-card:hover { transform: none; }            /* mata o hover horrível */
body.theme-astrea .founder-card:hover { transform: none; }
@media (min-width: 760px) {
  body.theme-astrea .founder-card {
    display: flex; flex-direction: column; align-items: center;
    grid-template-columns: none;
    max-width: 660px; margin: 0 auto;
    text-align: center; gap: 0; padding: 0;
  }
  body.theme-astrea .founder-statement { text-align: center; max-width: none; }
}
body.theme-astrea .founder-quote-block { order: 1; }
body.theme-astrea .founder-quote-block .kicker { display: inline-block; margin-bottom: 0.9rem; }
body.theme-astrea .founder-statement { margin: 0 0 1.6rem; }

/* autor embaixo, com divisória */
body.theme-astrea .founder-person {
  order: 2;
  flex-direction: row; align-items: center; justify-content: center; gap: 0.85rem;
  max-width: none; margin: 1.6rem auto 0; text-align: left;
  padding-top: 1.6rem;
  border-top: 1px solid hsl(187 40% 30% / 0.5);
}
body.theme-astrea .founder-meta { align-items: flex-start; }
body.theme-astrea .founder-avatar {
  width: 46px; height: 46px; font-size: 0.92rem;
  background: linear-gradient(135deg, var(--brand-300), var(--brand-500));
  box-shadow: 0 0 0 3px hsl(187 48% 30% / 0.55);
}
body.theme-astrea .founder-avatar-initials { font-size: 0.92rem; }

/* FUNDADOR — remover qualquer hover/transição no bloco de citação */
body.theme-astrea .founder-card { transition: none; }
body.theme-astrea .founder-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
