/* ============================================================
   Aureon — Landing institucional (apex)
   Consome os tokens da marca (tokens.css). Superfície pública:
   inclina no gradiente Aureon (decisão registrada no plano).
   ============================================================ */

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--surface-card);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}
@media (max-width: 600px) {
  .container { padding-inline: var(--space-4); }
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -48px;
  z-index: var(--z-toast);
  padding: var(--space-2) var(--space-4);
  background: var(--surface-card);
  color: var(--accent-soft-text);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  font-weight: var(--weight-semibold);
  transition: top var(--motion-base) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); }

/* ---------- Foco visível global ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--border-focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   BOTÕES (próprios — não importa app.css)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: var(--btn-h-md);
  padding: 0 var(--btn-px-md);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--motion-base) var(--ease-out),
              border-color var(--motion-base) var(--ease-out),
              color var(--motion-base) var(--ease-out),
              transform var(--motion-fast) var(--ease-out),
              box-shadow var(--motion-base) var(--ease-out);
}
.btn--primary {
  background: var(--accent);
  color: var(--text-on-accent);
  font-weight: var(--weight-semibold);
}
.btn--primary:hover { background: var(--accent-hover); }
.btn--ghost {
  background: transparent;
  color: var(--text-body);
  border-color: var(--border-default);
}
.btn--ghost:hover { background: var(--surface-subtle); color: var(--text-primary); }
.btn--sm { height: var(--btn-h-sm); padding: 0 var(--btn-px-sm); font-size: var(--text-sm); }
.btn--lg { height: var(--btn-h-lg); padding: 0 var(--space-6); font-size: var(--text-md); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: oklch(99% 0.001 250 / 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--motion-base) var(--ease-out);
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  height: 64px;
}

.brand { display: inline-flex; align-items: center; gap: var(--space-2); }
.brand__mark { display: block; }
.brand__name {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}
.brand--sm .brand__name { font-size: var(--text-md); }

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
}
.site-nav__link {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  transition: color var(--motion-base) var(--ease-out);
}
.site-nav__link:hover { color: var(--text-primary); }

.site-header .btn--primary { margin-left: var(--space-2); }

@media (max-width: 760px) {
  .site-nav { display: none; }
  .site-header__inner { gap: var(--space-3); }
  .site-header .btn--primary { margin-left: auto; }
}

/* ============================================================
   HERO — gradiente Aureon
   ============================================================ */
.hero {
  position: relative;
  background: var(--gradient-hero);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* Brilho radial sutil pra dar profundidade sem virar "infoproduto" */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 78% 8%, oklch(100% 0 0 / 0.16), transparent 60%),
    radial-gradient(50% 60% at 8% 100%, oklch(0% 0 0 / 0.18), transparent 70%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: var(--space-8);
  padding-block: clamp(var(--space-16), 11vw, 6.5rem);
}
.hero__content { max-width: 520px; }
.hero__preview { margin-right: 0; }
/* mockup maior: aumenta o conteúdo interno só no hero */
.hero__preview .preview__body { padding: var(--space-4); gap: var(--space-3); }
.hero__preview .prow { padding: var(--space-4); }
.hero__preview .prow__title { font-size: var(--text-base); }
.hero__preview .prow__pri { width: 34px; height: 34px; }
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero__content { max-width: 640px; }
  .hero__preview { display: none; }   /* mockup é decorativo (aria-hidden) */
}
.hero__mark {
  margin-bottom: var(--space-6);
  filter: drop-shadow(0 6px 18px oklch(0% 0 0 / 0.25));
  background: oklch(100% 0 0 / 0.92);
  border-radius: var(--radius-md);
  padding: var(--space-2);
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: oklch(100% 0 0 / 0.82);
  margin-bottom: var(--space-3);
}
.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.05;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  color: #fff;
}
.hero__sub {
  margin-top: var(--space-5);
  font-size: clamp(var(--text-md), 2.4vw, var(--text-xl));
  line-height: var(--leading-normal);
  color: oklch(100% 0 0 / 0.88);
  max-width: 56ch;
}
.hero__actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* CTAs sobre o gradiente: primário branco (invertido) pra contrastar */
.hero .btn--primary {
  background: #fff;
  color: var(--violet-700);
  box-shadow: 0 8px 24px -8px oklch(0% 0 0 / 0.4);
}
.hero .btn--primary:hover {
  background: oklch(100% 0 0 / 0.92);
  transform: translateY(-1px);
}
.hero .btn--ghost {
  background: oklch(100% 0 0 / 0.08);
  color: #fff;
  border-color: oklch(100% 0 0 / 0.45);
}
.hero .btn--ghost:hover {
  background: oklch(100% 0 0 / 0.18);
  border-color: oklch(100% 0 0 / 0.7);
}

/* ---------- Preview do produto (mockup Modo Operação) ---------- */
.preview {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 26px 60px -26px oklch(0% 0 0 / 0.45),
              0 0 0 1px oklch(100% 0 0 / 0.5);
}
.preview__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-3) var(--space-4);
  background: var(--surface-page);
  border-bottom: 1px solid var(--border-subtle);
}
.preview__os { width: 10px; height: 10px; border-radius: 50%; background: var(--neutral-300); }
.preview__tab {
  margin-left: var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.preview__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.prow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--surface-card);
}
.prow--urgent { border-color: var(--violet-200); box-shadow: inset 3px 0 0 0 var(--accent); }
.prow--muted { opacity: 0.7; }
.prow__pri {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  font-variant-numeric: tabular-nums;
  background: var(--neutral-100);
  color: var(--text-secondary);
}
.prow__pri--star { background: var(--gradient-brand-mark); color: #fff; font-size: var(--text-sm); }
.prow__pri--high { background: var(--amber-100); color: var(--amber-700); }
.prow__pri--low { background: var(--neutral-100); color: var(--text-tertiary); }
.prow__main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.prow__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prow__meta { font-size: var(--text-xs); color: var(--text-tertiary); }
.pill {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pill--novo { background: var(--accent); color: #fff; }
.pill--resp { background: var(--blue-100); color: var(--blue-700); }
.pill--and  { background: var(--green-100); color: var(--green-700); }
.pill--wait { background: var(--amber-100); color: var(--amber-700); }

/* ============================================================
   SEÇÕES genéricas
   ============================================================ */
.section { padding-block: clamp(5rem, 12vw, 9rem); }
.section--produto { background: var(--surface-card); }
.section--passos { background: var(--surface-page); border-block: 1px solid var(--border-subtle); }

.section__head { max-width: 620px; margin-bottom: var(--space-12); }
.section__title {
  font-size: clamp(var(--text-2xl), 4vw, 2.25rem);
  line-height: var(--leading-tight);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}
.section__lead {
  margin-top: var(--space-3);
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

/* ---------- Cards de valor ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.card {
  position: relative;
  padding: var(--space-6);
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 360ms var(--ease-out),
              box-shadow 360ms var(--ease-out),
              transform 360ms var(--ease-out);
}
.card:hover {
  border-color: var(--violet-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
/* Fio de gradiente no topo do card no hover */
.card::before {
  content: "";
  position: absolute;
  left: var(--space-6);
  right: var(--space-6);
  top: 0;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand-mark);
  opacity: 0;
  transition: opacity 360ms var(--ease-out);
}
.card:hover::before { opacity: 1; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--violet-50);
  color: var(--violet-700);
  margin-bottom: var(--space-4);
  transition: background 360ms var(--ease-out),
              color 360ms var(--ease-out),
              transform 360ms var(--ease-out);
}
.card__icon svg { width: 22px; height: 22px; }
.card:hover .card__icon { background: var(--gradient-brand-mark); color: #fff; }
.card__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.card__text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* ---------- Passos (como funciona) ---------- */
.passos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
  counter-reset: passo;
}
.passo { position: relative; }
.passo__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand-mark);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: var(--weight-semibold);
  font-size: var(--text-md);
  margin-bottom: var(--space-4);
  box-shadow: 0 4px 12px -4px oklch(54.5% 0.248 294 / 0.5);
}
.passo__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.passo__text { font-size: var(--text-base); color: var(--text-secondary); }

/* ---------- Confiança ---------- */
.section--confianca {
  background: var(--violet-50);
  border-block: 1px solid var(--violet-100);
}
.section--confianca .section__title { max-width: 18ch; }
.section--confianca .section__lead { max-width: 60ch; }

/* ============================================================
   CTA FINAL — gradiente (bookend do hero)
   ============================================================ */
.cta-final {
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  position: relative;
  isolation: isolate;
}
.cta-final::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 100% at 50% 0%, oklch(100% 0 0 / 0.14), transparent 60%);
}
.cta-final__inner {
  padding-block: clamp(var(--space-16), 10vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.cta-final__title {
  font-size: clamp(var(--text-2xl), 4vw, 2.25rem);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
}
.cta-final__text { font-size: var(--text-lg); color: oklch(100% 0 0 / 0.88); max-width: 48ch; }
.cta-final .btn--primary {
  margin-top: var(--space-2);
  background: #fff;
  color: var(--violet-700);
  box-shadow: 0 8px 24px -8px oklch(0% 0 0 / 0.4);
}
.cta-final .btn--primary:hover { background: oklch(100% 0 0 / 0.92); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-card);
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--space-8);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
}
.footer-nav {
  display: flex;
  gap: var(--space-5);
  margin-left: auto;
}
.footer-nav__link {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--motion-base) var(--ease-out);
}
.footer-nav__link:hover { color: var(--text-primary); }
.site-footer__legal {
  flex-basis: 100%;
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* ============================================================
   MOTION
   Entrada do hero no load + reveal scroll-driven das seções.
   Tudo gated por prefers-reduced-motion. O reveal só "esconde"
   o estado inicial em navegadores que suportam animation-timeline
   (@supports) E sem reduce, então quem não suporta vê tudo normal.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .hero__content { animation: rise-in 600ms var(--ease-out) both; }
  .hero__preview { animation: fade-soft 800ms var(--ease-out) 140ms both; }

  @keyframes rise-in {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
  }
  @keyframes fade-soft {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}

/* Reveal ao rolar — dirigido por JS (IntersectionObserver), funciona em
   qualquer navegador. A classe .reveal é adicionada pelo landing.js só a
   elementos abaixo da dobra (sem flash). */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
/* stagger dentro dos grupos */
.card-grid .reveal:nth-child(2), .dif-grid .reveal:nth-child(2), .numeros__grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.card-grid .reveal:nth-child(3), .dif-grid .reveal:nth-child(3), .numeros__grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.card-grid .reveal:nth-child(4), .dif-grid .reveal:nth-child(4), .numeros__grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.faq .reveal:nth-child(2) { transition-delay: 0.06s; }
.faq .reveal:nth-child(3) { transition-delay: 0.12s; }
.faq .reveal:nth-child(4) { transition-delay: 0.18s; }
.faq .reveal:nth-child(5) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ============================================================
   PRESENÇA / PROFUNDIDADE (pass 2c)
   Camada e luz, sem adicionar conteúdo. Grão nas faixas de cor,
   brilhos suaves nas seções claras, foto em duotone, motion mais vivo.
   ============================================================ */

/* Grão reutilizável (mata banding/"chapado"). Aplicado só onde há cor/foto. */
.hero::before,
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cta-final::before { z-index: -1; }

/* ---- Profundidade nas seções claras: brilhos suaves (não interativos) ---- */
.section--produto,
.section--passos {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section--passos { border-block: 0; }   /* tira a linha dura; a luz separa */
.section--produto::before,
.section--produto::after,
.section--passos::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(20px);
}
.section--produto::before {
  top: -18%; right: -10%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, oklch(54.5% 0.248 294 / 0.12), transparent 68%);
}
.section--produto::after {
  bottom: -22%; left: -12%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, oklch(78% 0.13 195 / 0.12), transparent 70%);
}
.section--passos::before {
  top: 50%; left: 50%;
  width: 760px; height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, oklch(55.5% 0.235 268 / 0.10), transparent 72%);
}

/* ---- Confiança: foto da equipe em DUOTONE Aureon ---- */
.section--confianca {
  position: relative;
  isolation: isolate;
  border: 0;
  background: oklch(20% 0.07 290);          /* fallback escuro */
  color: #fff;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding-block: clamp(6rem, 13vw, 10rem);
}
/* o recorte da foto (escala/translate do parallax) vai no wrapper */
.confianca__bg { position: absolute; inset: 0; z-index: -3; pointer-events: none; overflow: hidden; }
.confianca__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 70% center;
  filter: saturate(1.06) contrast(1.03);   /* foto em cor, nítida */
  transform: scale(1.4);                     /* base; o parallax (JS) move daqui (1.20->1.62) */
  transform-origin: 70% 38%;                 /* zoom ancorado no rosto (não corta) */
  will-change: transform;
}
.section--confianca::before {                /* gradiente Aureon POR CIMA, foto aparecendo */
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background: var(--gradient-hero);
  opacity: 0.6;
  mix-blend-mode: multiply;
}
.section--confianca::after {                 /* escurece a esquerda p/ legibilidade do texto */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(90deg,
    oklch(15% 0.05 290 / 0.82) 0%,
    oklch(15% 0.05 290 / 0.42) 48%,
    oklch(15% 0.05 290 / 0.05) 88%);
}
.confianca__content { max-width: 620px; }
.confianca__eyebrow {
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: oklch(88% 0.06 195);               /* aqua claro */
  margin-bottom: var(--space-3);
}
.section--confianca .section__title { color: #fff; max-width: 18ch; }
.section--confianca .section__lead { color: oklch(100% 0 0 / 0.86); max-width: 56ch; }

/* ---- Micro-interações ---- */
.card:hover .card__icon { transform: scale(1.06); }

/* ============================================================
   MOTION 2c — mais vida, tudo com fallback reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* gradiente do hero respirando devagar */
  .hero { background-size: 200% 200%; animation: hero-pan 22s ease-in-out infinite alternate; }
  @keyframes hero-pan {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
  }
  /* marca do hero flutuando de leve */
  .hero__mark { animation: float 6s ease-in-out 0.6s infinite; }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }
  /* linhas do mockup entrando em sequência */
  .hero__preview .prow { animation: rise-in 520ms var(--ease-out) both; }
  .hero__preview .prow:nth-child(1) { animation-delay: 0.30s; }
  .hero__preview .prow:nth-child(2) { animation-delay: 0.42s; }
  .hero__preview .prow:nth-child(3) { animation-delay: 0.54s; }
  .hero__preview .prow:nth-child(4) { animation-delay: 0.66s; }
}

/* ============================================================
   REFINO 2d — eyebrows, seta no CTA, chip do mockup, passos conectados
   ============================================================ */

/* Eyebrow editorial das seções claras (com tique de gradiente) */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--accent-soft-text);
  margin-bottom: var(--space-3);
}
.section__eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand-mark);
}

/* Seta que desliza no hover dos CTAs */
.btn__arrow {
  width: 18px;
  height: 18px;
  margin-left: -2px;
  transition: transform 280ms var(--ease-out);
}
.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow { transform: translateX(4px); }

/* Passos conectados por um fio de gradiente (desktop) */
.passos { position: relative; }
.passo { position: relative; z-index: 1; }
@media (min-width: 720px) {
  .passos::before {
    content: "";
    position: absolute;
    top: 20px;            /* centro do .passo__num (40px) */
    left: 14%;
    right: 14%;
    height: 2px;
    z-index: 0;
    background: linear-gradient(90deg,
      transparent,
      var(--violet-200) 22%,
      var(--brand-aqua-100) 78%,
      transparent);
  }
}

/* ============================================================
   BOLD 2f — estilo mais ousado / menos genérico
   Display font distinta (Bricolage Grotesque), tipografia
   dramática, labels editoriais em mono, seção escura de contraste.
   ============================================================ */
:root { --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif; }

/* ---- Tipografia dramática ---- */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 7.2vw, 5rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.1rem);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.brand__name { font-family: var(--font-display); font-weight: 800; }

/* ---- Eyebrows editoriais em mono, com índice ---- */
.section__eyebrow,
.confianca__eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.section__eyebrow { color: var(--text-tertiary); }
.section__eyebrow::before { display: none; }   /* tira o tique antigo; o índice vira o marcador */
.section__eyebrow-idx {
  font-family: var(--font-mono);
  font-weight: var(--weight-semibold);
  background: var(--gradient-brand-mark);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- PRODUTO: seção escura de contraste (cards como tiles elevados) ---- */
.section--produto {
  background: oklch(17% 0.025 286);
  color: #fff;
}
.section--produto .section__eyebrow { color: oklch(78% 0.02 286); }
.section--produto .section__title { color: #fff; }
.section--produto .section__lead { color: oklch(100% 0 0 / 0.64); }
.section--produto::before {
  background: radial-gradient(circle, oklch(54.5% 0.248 294 / 0.28), transparent 68%);
  filter: blur(30px);
}
.section--produto::after {
  background: radial-gradient(circle, oklch(78% 0.13 195 / 0.22), transparent 70%);
  filter: blur(30px);
}
.section--produto .card {
  background: oklch(22% 0.02 286);
  border-color: oklch(100% 0 0 / 0.09);
  box-shadow: none;
}
.section--produto .card:hover {
  border-color: oklch(100% 0 0 / 0.2);
  box-shadow: 0 20px 40px -20px oklch(0% 0 0 / 0.6);
}
.section--produto .card__title { color: #fff; }
.section--produto .card__text { color: oklch(100% 0 0 / 0.62); }
.section--produto .card__icon {
  background: oklch(100% 0 0 / 0.08);
  color: #fff;
}
.section--produto .card:hover .card__icon { background: var(--gradient-brand-mark); color: #fff; }

/* ---- Hero: sub um pouco maior pra acompanhar o título ---- */
.hero__sub { max-width: 50ch; }

/* ============================================================
   HERO 2g — headline centrado + showcase grande do produto
   ============================================================ */
/* duas colunas assimétrico: texto à esquerda, janela do produto sangrando à direita */
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(var(--space-8), 5vw, var(--space-12));
  padding-block: clamp(var(--space-16), 10vw, 7rem);
}
.hero__content { max-width: 460px; margin: 0; text-align: left; }
.hero__mark { margin-left: 0; margin-right: 0; }
.hero__title { font-size: clamp(2.4rem, 4.2vw, 4rem); }
.hero__sub { margin-left: 0; margin-right: 0; max-width: 44ch; }
.hero__actions { justify-content: flex-start; }

/* janela grande, INTEIRA na tela, encostando na direita (sem cortar conteúdo) */
.hero__showcase {
  position: relative;
  width: 100%;
  justify-self: end;
  text-align: left;
}
.hero__showcase::before {            /* halo atrás da janela */
  content: "";
  position: absolute;
  inset: -8% -6% -16%;
  z-index: -1;
  background: radial-gradient(60% 60% at 42% 8%, oklch(100% 0 0 / 0.26), transparent 72%);
  filter: blur(18px);
}

/* empilha em telas estreitas (sem sangrar) */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero__content { max-width: 640px; }
  .hero__showcase { width: 100%; }
}

.app {
  background: var(--surface-card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 50px 100px -32px oklch(0% 0 0 / 0.6),
              0 0 0 1px oklch(100% 0 0 / 0.5);
}

/* top bar (parece app real, não mockup genérico) */
.app__top {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--surface-page);
  border-bottom: 1px solid var(--border-subtle);
}
.app__brandbox { display: flex; align-items: center; gap: var(--space-3); }
.app__logo { display: block; }
.app__appname { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--text-primary); }
.app__count {
  font-size: var(--text-xs); font-weight: var(--weight-semibold);
  color: var(--accent-soft-text); background: var(--violet-50);
  padding: 3px 10px; border-radius: var(--radius-pill);
}
.app__tools { display: flex; align-items: center; gap: var(--space-3); }
.app__search {
  font-size: var(--text-sm); color: var(--text-tertiary);
  background: var(--surface-inset); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: var(--space-2) var(--space-4);
  flex: 1 1 auto; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.app__tools { flex: 1 1 auto; min-width: 0; justify-content: flex-end; }
.app__brandbox { flex: 0 0 auto; }
.app__cta, .app__avatar { flex: 0 0 auto; }
.app__cta {
  font-size: var(--text-sm); font-weight: var(--weight-semibold); color: #fff;
  background: var(--gradient-brand-mark); padding: var(--space-2) var(--space-4);
  border-radius: var(--radius); white-space: nowrap;
  box-shadow: 0 6px 16px -6px oklch(54.5% 0.248 294 / 0.6);
}
.app__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: var(--weight-semibold); color: #fff;
  background: oklch(48% 0.13 286);
}

/* fila — linhas grandes e caprichadas */
.app__queue { padding: var(--space-2); display: flex; flex-direction: column; }
.qrow {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-4);
  border-radius: var(--radius-md);
}
.qrow + .qrow { box-shadow: 0 -1px 0 0 var(--border-subtle); }
.qrow--active {
  background: var(--violet-50);
  box-shadow: inset 3px 0 0 0 var(--accent);
}
.qrow--active + .qrow { box-shadow: none; }
.qrow--muted { opacity: 0.72; }
.qpri {
  width: 42px; height: 42px; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: var(--weight-semibold); font-size: var(--text-sm);
  font-variant-numeric: tabular-nums;
  background: var(--neutral-100); color: var(--text-secondary);
}
.qpri--star { background: var(--gradient-brand-mark); color: #fff; font-size: var(--text-lg); }
.qpri--high { background: var(--amber-100); color: var(--amber-700); }
.qpri--low { background: var(--neutral-100); color: var(--text-tertiary); }
.qmain { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.qtitle {
  font-size: var(--text-md); font-weight: var(--weight-semibold); color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.qmeta { font-size: var(--text-sm); color: var(--text-tertiary); display: inline-flex; align-items: center; gap: var(--space-2); }
.qdot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }
.qdot--red { background: var(--red-500); }
.qdot--amber { background: var(--amber-500); }
.qassignee {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: var(--weight-semibold); color: #fff;
  background: oklch(55% 0.16 268);
}
.qassignee--alt { background: oklch(58% 0.13 195); }
.qstatus {
  font-size: var(--text-sm); font-weight: var(--weight-semibold);
  padding: 7px 14px; border-radius: var(--radius-pill); white-space: nowrap;
}
.qstatus--novo { background: var(--accent); color: #fff; }
.qstatus--resp { background: var(--blue-100); color: var(--blue-700); }
.qstatus--and  { background: var(--green-100); color: var(--green-700); }
.qstatus--wait { background: var(--amber-100); color: var(--amber-700); }

@media (max-width: 720px) {
  .app__search, .app__avatar { display: none; }
  .app__appname { font-size: var(--text-md); }
  .qtitle { font-size: var(--text-sm); }
  .qpri { width: 36px; height: 36px; }
  .qstatus { padding: 6px 10px; font-size: var(--text-xs); }
  .qrow { padding: var(--space-3); gap: var(--space-3); }
}

/* entrada em sequência das linhas (load) */
@media (prefers-reduced-motion: no-preference) {
  .hero__showcase { animation: rise-in 700ms var(--ease-out) 120ms both; }
  .app__queue .qrow { animation: rise-in 500ms var(--ease-out) both; }
  .app__queue .qrow:nth-child(1) { animation-delay: 0.30s; }
  .app__queue .qrow:nth-child(2) { animation-delay: 0.40s; }
  .app__queue .qrow:nth-child(3) { animation-delay: 0.50s; }
  .app__queue .qrow:nth-child(4) { animation-delay: 0.60s; }
  .app__queue .qrow:nth-child(5) { animation-delay: 0.70s; }
}

/* ============================================================
   SEÇÕES 2h: Recursos (linhas alternadas), Números (band escuro),
   Diferenciais, FAQ — todas no estilo bold.
   ============================================================ */

/* ---- Recursos: linhas alternadas (editorial) ---- */
.section--recursos { background: var(--surface-card); }
.frows { display: grid; gap: clamp(var(--space-12), 7vw, 6rem); margin-top: clamp(var(--space-10), 6vw, var(--space-16)); }
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-12));
  align-items: center;
}
.frow:nth-child(even) .frow__text { order: 2; }   /* alterna o visual de lado */
.frow__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--text-primary); margin-bottom: var(--space-3);
}
.frow__lead { font-size: var(--text-lg); color: var(--text-secondary); margin-bottom: var(--space-5); max-width: 46ch; }
.frow__visual {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius-lg);
  background: var(--gradient-hero);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; justify-content: center; gap: var(--space-5);
  padding: var(--space-8);
}
.frow__visual::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 90% at 80% 12%, oklch(100% 0 0 / 0.18), transparent 60%);
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: oklch(100% 0 0 / 0.16); color: #fff;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature-bars { display: grid; gap: var(--space-3); }
.feature-bars span { height: 14px; border-radius: var(--radius-pill); background: oklch(100% 0 0 / 0.28); }
.feature-bars span:nth-child(1) { width: 86%; }
.feature-bars span:nth-child(2) { width: 60%; }
.feature-bars span:nth-child(3) { width: 74%; background: oklch(100% 0 0 / 0.42); }

.ticklist { display: grid; gap: var(--space-3); }
.ticklist li { position: relative; padding-left: var(--space-7); color: var(--text-body); }
.ticklist li::before { content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--violet-50); }
.ticklist li::after { content: ""; position: absolute; left: 6px; top: 6px; width: 8px; height: 5px; border-left: 2px solid var(--violet-700); border-bottom: 2px solid var(--violet-700); transform: rotate(-45deg); }

@media (max-width: 760px) {
  .frow { grid-template-columns: 1fr; gap: var(--space-6); }
  .frow:nth-child(even) .frow__text { order: 0; }
  .frow__visual { min-height: 200px; }
}

/* ---- Números: band escuro ---- */
.numeros { background: oklch(16% 0.025 286); color: #fff; padding-block: clamp(4rem, 9vw, 7rem); }
.numeros__eyebrow {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: var(--text-xs); font-weight: var(--weight-medium);
  color: oklch(80% 0.02 286); text-align: center; margin-bottom: var(--space-8);
}
.numeros__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: var(--space-8); text-align: center; }
.stat { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1; letter-spacing: -0.02em;
  background: var(--gradient-brand-mark); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { font-size: var(--text-base); color: oklch(100% 0 0 / 0.66); max-width: 22ch; }

/* ---- Diferenciais ---- */
.section--dif { background: var(--surface-page); }
.dif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--space-5); }
.dif {
  display: flex; gap: var(--space-4); align-items: flex-start; padding: var(--space-5);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); background: var(--surface-card);
  transition: border-color 360ms var(--ease-out), box-shadow 360ms var(--ease-out), transform 360ms var(--ease-out);
}
.dif:hover { border-color: var(--violet-200); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dif__icon {
  flex: 0 0 auto; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md); background: var(--violet-50); color: var(--violet-700);
}
.dif__icon svg { width: 22px; height: 22px; }
.dif__title { font-size: var(--text-md); font-weight: var(--weight-semibold); color: var(--text-primary); margin-bottom: var(--space-1); }
.dif__text { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-normal); }

/* ---- FAQ ---- */
.section--faq { background: var(--surface-card); }
.faq__wrap { max-width: 760px; }
.faq { display: grid; gap: var(--space-3); margin-top: clamp(var(--space-8), 5vw, var(--space-10)); }
.faq__item { border: 1px solid var(--border-subtle); border-radius: var(--radius-md); background: var(--surface-card); transition: border-color 200ms var(--ease-out); }
.faq__item[open] { border-color: var(--violet-200); }
.faq__q {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-4) var(--space-5); font-weight: var(--weight-semibold); color: var(--text-primary); font-size: var(--text-md);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:focus-visible { outline: 2px solid var(--border-focus); outline-offset: 2px; border-radius: var(--radius-sm); }
.faq__chev {
  flex: 0 0 auto; width: 11px; height: 11px;
  border-right: 2px solid var(--text-secondary); border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg); transition: transform 240ms var(--ease-out);
}
.faq__item[open] .faq__chev { transform: rotate(-135deg); }
.faq__a { padding: 0 var(--space-5) var(--space-5); color: var(--text-secondary); font-size: var(--text-base); line-height: var(--leading-normal); }

/* ============================================================
   RECURSOS 2i — mini-mockups reais + pad com gradiente suave
   ============================================================ */
.section--recursos { position: relative; isolation: isolate; overflow: hidden; }
.section--recursos::before {       /* atmosfera no fundo (não chapado) */
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  top: 10%; right: -8%; width: 620px; height: 620px; border-radius: 50%; filter: blur(40px);
  background: radial-gradient(circle, oklch(54.5% 0.248 294 / 0.08), transparent 70%);
}
.section--recursos::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  bottom: 4%; left: -10%; width: 540px; height: 540px; border-radius: 50%; filter: blur(40px);
  background: radial-gradient(circle, oklch(78% 0.13 195 / 0.08), transparent 72%);
}

/* pad claro com leve gradiente da marca; o mockup branco flutua nele */
.frow__visual {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: row;
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: none;
  background:
    radial-gradient(120% 110% at 0% 0%, var(--violet-100), transparent 55%),
    radial-gradient(120% 110% at 100% 100%, var(--brand-aqua-100), transparent 55%),
    var(--surface-page);
}
.frow__visual::after { content: none; }

/* janelinha branca (mockup) */
.mini {
  width: 100%; max-width: 380px;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  box-shadow: 0 26px 50px -24px oklch(0% 0 0 / 0.4), 0 0 0 1px oklch(0% 0 0 / 0.05);
  overflow: hidden;
}
.mini__bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--surface-page);
  border-bottom: 1px solid var(--border-subtle);
}
.mini__tab { font-size: var(--text-xs); font-weight: var(--weight-semibold); color: var(--text-secondary); }
.mini__count {
  font-size: var(--text-xs); font-weight: var(--weight-semibold);
  color: var(--accent-soft-text); background: var(--violet-50); padding: 2px 8px; border-radius: var(--radius-pill);
}
.mini__rows { padding: var(--space-2); display: flex; flex-direction: column; gap: 2px; }
.mini__pad { padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-4); }

/* linhas (fila) */
.mrow { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--space-3); padding: var(--space-2) var(--space-3); border-radius: var(--radius); }
.mrow--active { background: var(--violet-50); box-shadow: inset 2px 0 0 0 var(--accent); }
.mpri {
  width: 28px; height: 28px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: var(--weight-semibold);
  background: var(--neutral-100); color: var(--text-secondary);
}
.mpri--star { background: var(--gradient-brand-mark); color: #fff; }
.mpri--amber { background: var(--amber-100); color: var(--amber-700); }
.mtitle { font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mpill { font-size: 11px; font-weight: var(--weight-semibold); padding: 3px 10px; border-radius: var(--radius-pill); white-space: nowrap; }
.mpill--novo { background: var(--accent); color: #fff; }
.mpill--resp { background: var(--blue-100); color: var(--blue-700); }
.mpill--and  { background: var(--green-100); color: var(--green-700); }
.mpill--ok   { background: var(--green-100); color: var(--green-700); }
.mpill--ghost { background: var(--neutral-100); color: var(--text-secondary); }
.mpill--primary { background: var(--gradient-brand-mark); color: #fff; }

/* SLA (barras de prazo) */
.sla { display: grid; gap: var(--space-2); }
.sla__row { display: flex; justify-content: space-between; font-size: var(--text-xs); }
.sla__lbl { color: var(--text-secondary); }
.sla__val { color: var(--text-primary); font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.sla__val--warn { color: var(--amber-700); }
.sla__track { height: 8px; border-radius: var(--radius-pill); background: var(--neutral-100); overflow: hidden; }
.sla__track > i { display: block; height: 100%; border-radius: var(--radius-pill); background: var(--gradient-brand-mark); }
.sla__track > i.sla__warn { background: var(--amber-500); }

/* timeline (aluno) */
.track { display: grid; gap: var(--space-3); }
.track__step { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-sm); color: var(--text-tertiary); }
.track__dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--border-default); background: var(--surface-card); flex: 0 0 auto; }
.track__step--done { color: var(--text-body); }
.track__step--done .track__dot { background: var(--green-500); border-color: var(--green-500); }
.track__step--active { color: var(--text-primary); font-weight: var(--weight-semibold); }
.track__step--active .track__dot { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 4px var(--violet-100); }
.linkrow { display: flex; align-items: center; gap: var(--space-2); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: var(--space-2); }
.linkrow__url { flex: 1; font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.linkrow__btn { font-size: 11px; font-weight: var(--weight-semibold); color: #fff; background: var(--gradient-brand-mark); padding: 4px 10px; border-radius: var(--radius-sm); }

/* operação */
.mchips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.mchip { font-size: 11px; color: var(--text-secondary); background: var(--surface-inset); border: 1px solid var(--border-subtle); padding: 3px 8px; border-radius: var(--radius-pill); }
.mtxt { font-size: var(--text-sm); color: var(--text-body); font-style: italic; }
.macts { display: flex; gap: var(--space-2); }
.mavatar { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: var(--weight-semibold); color: #fff; background: oklch(55% 0.16 268); }

@media (max-width: 760px) {
  .frow__visual { min-height: 240px; }
  .mini { max-width: 340px; }
}

/* ============================================================
   RECURSOS 2j — seção ESCURA (mockups brancos saltam)
   ============================================================ */
.section--recursos { background: oklch(15% 0.022 286); color: #fff; }
.section--recursos .section__eyebrow { color: oklch(78% 0.02 286); }
.section--recursos .section__title { color: #fff; }
.section--recursos .section__lead { color: oklch(100% 0 0 / 0.66); }
.section--recursos .frow__title { color: #fff; }
.section--recursos .frow__lead { color: oklch(100% 0 0 / 0.66); }
.section--recursos .ticklist li { color: oklch(100% 0 0 / 0.82); }

/* glows um pouco mais visíveis no escuro */
.section--recursos::before { background: radial-gradient(circle, oklch(54.5% 0.248 294 / 0.22), transparent 70%); }
.section--recursos::after  { background: radial-gradient(circle, oklch(78% 0.13 195 / 0.18), transparent 72%); }

/* pad escuro elevado; o mockup branco flutua e salta */
.frow__visual {
  background: oklch(19% 0.025 286);
  border: 1px solid oklch(100% 0 0 / 0.08);
}
.frow__visual::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(80% 80% at 50% 0%, oklch(54.5% 0.248 294 / 0.22), transparent 65%);
}

/* ============================================================
   DIFERENCIAIS 2k — fundo gradiente forte da marca + cards vidro
   ============================================================ */
.section--dif {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
}
/* profundidade: brilho + grão (não chapar o gradiente) */
.section--dif::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 70% at 80% 0%, oklch(100% 0 0 / 0.18), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, oklch(0% 0 0 / 0.16), transparent 70%);
}
.section--dif::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section--dif .section__eyebrow { color: oklch(100% 0 0 / 0.82); }
.section--dif .section__eyebrow-idx { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.section--dif .section__title { color: #fff; }

/* cards de vidro sobre o gradiente */
.section--dif .dif {
  background: oklch(100% 0 0 / 0.10);
  border-color: oklch(100% 0 0 / 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px -24px oklch(0% 0 0 / 0.5);
}
.section--dif .dif:hover {
  background: oklch(100% 0 0 / 0.16);
  border-color: oklch(100% 0 0 / 0.38);
  box-shadow: 0 22px 50px -24px oklch(0% 0 0 / 0.55);
}
.section--dif .dif__icon { background: oklch(100% 0 0 / 0.18); color: #fff; }
.section--dif .dif:hover .dif__icon { background: oklch(100% 0 0 / 0.26); }
.section--dif .dif__title { color: #fff; }
.section--dif .dif__text { color: oklch(100% 0 0 / 0.78); }

/* ============================================================
   TEMA ESCURO 2l — partes "brancas" viram cinza escuro
   (conforto: sem branco colado em preto)
   ============================================================ */
body { background: oklch(17% 0.022 286); }

/* Header escuro translúcido */
.site-header { background: oklch(16% 0.02 286 / 0.72); border-bottom-color: oklch(100% 0 0 / 0.08); }
.brand__name { color: #fff; }
.site-nav__link { color: oklch(100% 0 0 / 0.7); }
.site-nav__link:hover { color: #fff; }

/* Como funciona (era claro) -> cinza escuro */
.section--passos { background: oklch(20% 0.02 286); color: #fff; }
.section--passos .section__eyebrow { color: oklch(78% 0.02 286); }
.section--passos .section__title { color: #fff; }
.section--passos .passo__title { color: #fff; }
.section--passos .passo__text { color: oklch(100% 0 0 / 0.66); }

/* FAQ (era branco) -> cinza escuro + cards escuros */
.section--faq { background: oklch(18% 0.022 286); color: #fff; }
.section--faq .section__eyebrow { color: oklch(78% 0.02 286); }
.section--faq .section__title { color: #fff; }
.faq__item { background: oklch(23% 0.02 286); border-color: oklch(100% 0 0 / 0.08); }
.faq__item[open] { border-color: oklch(100% 0 0 / 0.22); }
.faq__q { color: #fff; }
.faq__chev { border-color: oklch(100% 0 0 / 0.6); }
.faq__a { color: oklch(100% 0 0 / 0.66); }

/* Rodapé escuro */
.site-footer { background: oklch(14% 0.022 286); border-top-color: oklch(100% 0 0 / 0.08); }
.site-footer .brand__name { color: #fff; }
.footer-nav__link { color: oklch(100% 0 0 / 0.6); }
.footer-nav__link:hover { color: #fff; }
.site-footer__legal { color: oklch(100% 0 0 / 0.42); }

/* ============================================================
   TEMA CLARO 2m — claro suave (marca é branca; sem preto)
   Cinza claro + branco alternando; gradiente/foto = acentos.
   ============================================================ */
:root { --g-soft: oklch(96.5% 0.004 286); --g-soft2: oklch(94.5% 0.004 286); }
body { background: var(--surface-card); color: var(--text-body); }

/* Header claro translúcido */
.site-header { background: oklch(99% 0.001 250 / 0.82); border-bottom-color: var(--border-subtle); }
.brand__name { color: var(--text-primary); }
.site-nav__link { color: var(--text-secondary); }
.site-nav__link:hover { color: var(--text-primary); }

/* PRODUTO -> cinza claro, cards brancos */
.section--produto { background: var(--g-soft); color: var(--text-body); }
.section--produto .section__eyebrow { color: var(--text-tertiary); }
.section--produto .section__title { color: var(--text-primary); }
.section--produto .section__lead { color: var(--text-secondary); }
.section--produto::before { background: radial-gradient(circle, oklch(54.5% 0.248 294 / 0.07), transparent 70%); }
.section--produto::after  { background: radial-gradient(circle, oklch(78% 0.13 195 / 0.07), transparent 72%); }
.section--produto .card { background: var(--surface-card); border-color: var(--border-default); box-shadow: var(--shadow-sm); }
.section--produto .card:hover { border-color: var(--violet-200); box-shadow: var(--shadow-md); }
.section--produto .card__title { color: var(--text-primary); }
.section--produto .card__text { color: var(--text-secondary); }
.section--produto .card__icon { background: var(--violet-50); color: var(--violet-700); }
.section--produto .card:hover .card__icon { background: var(--gradient-brand-mark); color: #fff; }

/* RECURSOS -> branco, pads claros tintados */
.section--recursos { background: var(--surface-card); color: var(--text-body); }
.section--recursos .section__eyebrow { color: var(--text-tertiary); }
.section--recursos .section__title { color: var(--text-primary); }
.section--recursos .section__lead { color: var(--text-secondary); }
.section--recursos .frow__title { color: var(--text-primary); }
.section--recursos .frow__lead { color: var(--text-secondary); }
.section--recursos .ticklist li { color: var(--text-body); }
.section--recursos::before { background: radial-gradient(circle, oklch(54.5% 0.248 294 / 0.07), transparent 70%); }
.section--recursos::after  { background: radial-gradient(circle, oklch(78% 0.13 195 / 0.07), transparent 72%); }
.frow__visual {
  background:
    radial-gradient(120% 110% at 0% 0%, var(--violet-100), transparent 55%),
    radial-gradient(120% 110% at 100% 100%, var(--brand-aqua-100), transparent 55%),
    var(--g-soft);
  border-color: var(--border-subtle);
}
.frow__visual::before { content: none; }

/* COMO FUNCIONA -> cinza claro */
.section--passos { background: var(--g-soft); color: var(--text-body); }
.section--passos .section__eyebrow { color: var(--text-tertiary); }
.section--passos .section__title { color: var(--text-primary); }
.section--passos .passo__title { color: var(--text-primary); }
.section--passos .passo__text { color: var(--text-secondary); }

/* NÚMEROS -> branco com tinta leve, números em gradiente */
.numeros { background: var(--surface-card); color: var(--text-body); border-block: 1px solid var(--border-subtle); }
.numeros__eyebrow { color: var(--text-tertiary); }
.stat__label { color: var(--text-secondary); }

/* FAQ -> cinza claro, itens brancos */
.section--faq { background: var(--g-soft); color: var(--text-body); }
.section--faq .section__eyebrow { color: var(--text-tertiary); }
.section--faq .section__title { color: var(--text-primary); }
.faq__item { background: var(--surface-card); border-color: var(--border-subtle); }
.faq__item[open] { border-color: var(--violet-200); }
.faq__q { color: var(--text-primary); }
.faq__chev { border-color: var(--text-secondary); }
.faq__a { color: var(--text-secondary); }

/* RODAPÉ claro */
.site-footer { background: var(--g-soft2); border-top-color: var(--border-subtle); }
.site-footer .brand__name { color: var(--text-primary); }
.footer-nav__link { color: var(--text-secondary); }
.footer-nav__link:hover { color: var(--text-primary); }
.site-footer__legal { color: var(--text-tertiary); }

/* ============================================================
   RECURSOS 2n — gradiente criativo de 2 cores, mais escuro
   (malha violeta + aqua sobre base escura; mockups brancos saltam)
   ============================================================ */
.section--recursos {
  background:
    radial-gradient(110% 120% at 6% 0%, oklch(50% 0.23 293), transparent 66%),
    radial-gradient(110% 120% at 100% 100%, oklch(54% 0.15 198), transparent 68%),
    linear-gradient(135deg, oklch(42% 0.18 282), oklch(44% 0.12 212));
  color: #fff;
}
.section--recursos::before, .section--recursos::after { content: none; }  /* o próprio gradiente já dá a cor */
.section--recursos .section__eyebrow { color: oklch(84% 0.05 290); }
.section--recursos .section__title { color: #fff; }
.section--recursos .section__lead { color: oklch(100% 0 0 / 0.72); }
.section--recursos .frow__title { color: #fff; }
.section--recursos .frow__lead { color: oklch(100% 0 0 / 0.72); }
.section--recursos .ticklist li { color: oklch(100% 0 0 / 0.84); }

/* pad de vidro translúcido sobre o gradiente; o mockup branco flutua */
.frow__visual {
  background: oklch(100% 0 0 / 0.06);
  border: 1px solid oklch(100% 0 0 / 0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.frow__visual::before { content: none; }

/* ============================================================
   COMO FUNCIONA 2o — passos viram cards com FOTO real
   ============================================================ */
.section--passos .passos::before { display: none; }   /* tira o conector (agora há fotos) */
.passos { align-items: stretch; }
.passo {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.passo__photo { height: 180px; overflow: hidden; }
.passo__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.passo__body { position: relative; padding: var(--space-7) var(--space-5) var(--space-5); }
.passo__num {
  position: absolute; top: 0; left: var(--space-5);
  transform: translateY(-50%);
  margin: 0;
  box-shadow: 0 8px 18px -6px oklch(54.5% 0.248 294 / 0.55);
}
.passo__title { color: var(--text-primary); margin-top: var(--space-2); }
