/* ============================================================
   somado · home.css — LP principal (marketing-supermercado)
   EDIÇÃO FUTURISTA CLARA — mesh no hero, vidro nos cards,
   navy como contraste, feixes de energia. LP de conversão:
   efeito nunca compete com o CTA.
   ============================================================ */

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 85% 0%, hsl(28 95% 60% / 0.16), transparent 60%),
    radial-gradient(700px 540px at 0% 100%, hsl(222 60% 55% / 0.09), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-alt) 100%);
  background-size: 160% 160%, 150% 150%, 100% 100%;
  animation: mesh-drift 16s ease-in-out infinite alternate;
  padding-block: var(--sp-8) var(--sp-10);
}
@keyframes mesh-drift {
  0%   { background-position: 0% 0%, 100% 100%, 0 0; }
  100% { background-position: 60% 40%, 40% 60%, 0 0; }
}
/* orb de luz no canto (CSS-only, sem markup novo) */
.hero::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  right: 4%; top: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, hsl(28 96% 72% / 0.5), hsl(20 90% 55% / 0.2) 55%, transparent 72%);
  filter: blur(2px);
  pointer-events: none;
  animation: orb-float 9s ease-in-out infinite alternate;
}
@keyframes orb-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-26px, 22px, 0) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) { .hero, .hero::after { animation: none; } }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-6);
  align-items: center;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-4xl));
  margin-block: 0.4rem var(--sp-2);
  text-wrap: balance;
}
.hero__sub {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 30ch;
  margin-bottom: var(--sp-3);
}
.hero__cta { margin-bottom: var(--sp-2); }
.hero__reassure {
  font-size: var(--fs-sm);
  color: var(--navy-800);
  background: var(--glass-bg-strong);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--orange-500);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  max-width: 46ch;
  margin-bottom: var(--sp-2);
  box-shadow: var(--shadow-sm);
}
.hero__cred { font-size: var(--fs-xs); color: var(--color-text-muted); font-family: var(--font-mono); }
/* typewriter da headline (sempre na própria linha) */
.typer { display: block; }
.typer__caret { display: inline-block; width: 3px; height: 0.95em; margin-left: 3px; vertical-align: text-bottom; background: var(--orange-500); border-radius: 2px; animation: caret-blink 1s steps(1) infinite; }
@keyframes caret-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .typer__caret { display: none; } }
.hero__media .imgph { box-shadow: var(--shadow-lg); }
.hero__img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 26px 42px hsl(222 50% 25% / 0.26));
  animation: hero-float 6s ease-in-out infinite alternate;
}
@keyframes hero-float { from { transform: translateY(0); } to { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .hero__img { animation: none; } }
/* mascote maior no desktop */
@media (min-width: 901px) { .hero__media { transform: scale(1.14); transform-origin: center; } }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hero__sub { max-width: none; }
  .hero__media { order: -1; }
  .hero::after { width: 140px; height: 140px; right: -6%; }
}

/* ---- Diagnóstico (seção 3) ---- */
.diag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: center;
}
.diag__text h2 { margin-block: 0.4rem var(--sp-2); }
.diag__text p { color: var(--color-text-muted); margin-bottom: var(--sp-2); }
.diag__text strong { color: var(--navy-900); }
.diag__box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #fff;
  border: 1px solid hsl(222 45% 45% / 0.4);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-lg);
}
/* fio de energia no topo do box */
.diag__box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(28 95% 55% / 0.8), transparent);
}
/* glow quente no canto */
.diag__box::after {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(closest-side, hsl(28 95% 55% / 0.14), transparent);
  pointer-events: none;
}
.diag__box > * { position: relative; z-index: 1; }
.diag__box-title { font-size: var(--fs-md); margin-bottom: var(--sp-3); }
.diag__box-title strong { color: var(--orange-400); }
.diag__box .checklist li { color: #DDE3F1; font-size: var(--fs-sm); }
.diag__box .checklist li strong { color: #fff; }
.diag__box .checklist svg { color: var(--orange-400); filter: drop-shadow(0 0 6px hsl(28 95% 55% / 0.5)); }
.diag__close { margin-top: var(--sp-3); padding-top: var(--sp-2); border-top: 1px solid hsl(220 30% 35% / .5); font-size: var(--fs-sm); color: #C5CEE3; }
@media (max-width: 860px) { .diag { grid-template-columns: 1fr; } }

/* ---- Pilares (seção 4) — vidro com glare/tilt (futurista.js) ---- */
.pillar {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3);
  box-shadow: var(--shadow-sm), inset 0 1px 0 var(--glass-highlight);
  transition:
    transform var(--dur-slow) var(--ease-out),
    box-shadow var(--dur-slow) var(--ease),
    border-color var(--dur) var(--ease);
  transform-style: preserve-3d;
  transform:
    perspective(900px)
    rotateX(calc(var(--tiltX, 0) * 1deg))
    rotateY(calc(var(--tiltY, 0) * 1deg));
}
.pillar:hover {
  box-shadow: var(--shadow-md), var(--glow-orange-soft), inset 0 1px 0 var(--glass-highlight);
  border-color: hsl(28 95% 55% / 0.4);
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at calc(var(--px, 0.5) * 100%) calc(var(--py, 0.5) * 100%),
    hsl(28 95% 60% / 0.12),
    transparent 65%
  );
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
  z-index: 0;
}
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; z-index: 1; }
/* destaque: borda conic girando */
.pillar--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    conic-gradient(from var(--angle),
      #FBA81A 0%,
      hsl(28 95% 75% / 0.5) 20%,
      hsl(222 45% 80% / 0.6) 45%,
      hsl(28 95% 75% / 0.5) 70%,
      #F15A22 100%) border-box;
  box-shadow: var(--shadow-orange);
  animation: spin-border 5s linear infinite;
}
@keyframes spin-border { to { --angle: 360deg; } }
@media (prefers-reduced-motion: reduce) { .pillar--featured { animation: none; } }
.pillar h3 { margin-bottom: 0.5rem; }
.pillar p { color: var(--color-text-muted); font-size: var(--fs-sm); }
.pillar__note {
  display: block; margin-top: var(--sp-2); font-size: var(--fs-xs);
  color: var(--orange-700); font-weight: var(--fw-semibold);
  background: var(--color-primary-soft); padding: 0.6rem 0.8rem; border-radius: var(--radius-sm);
  border: 1px solid hsl(28 95% 55% / 0.2);
}
.solucao__close { text-align: center; max-width: 60ch; margin: var(--sp-5) auto 0; font-weight: var(--fw-semibold); color: var(--navy-900); }

/* ---- Prova social (seção 5, navy de contraste) ---- */
#prova {
  position: relative;
  overflow: hidden;
  background-color: var(--navy-900);
  background-image: radial-gradient(hsl(0 0% 100% / 0.06) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
}
#prova::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, hsl(28 95% 55% / 0.8), transparent);
}
#prova > .container { position: relative; z-index: 1; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); text-align: center; margin-bottom: var(--sp-4); }
.stat {
  padding: var(--sp-3) var(--sp-2);
  border: 1px solid hsl(220 60% 80% / 0.12);
  border-radius: var(--radius-lg);
  background: hsl(222 50% 100% / 0.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.stat:hover {
  border-color: hsl(28 95% 55% / 0.45);
  box-shadow: 0 0 30px hsl(28 95% 55% / 0.12);
  transform: translateY(-3px);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  background: var(--grad-orange);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  filter: drop-shadow(0 0 18px hsl(28 95% 55% / 0.3));
  font-variant-numeric: tabular-nums;
}
.stat__label { display: block; color: #C5CEE3; font-size: var(--fs-sm); margin-top: 0.4rem; }
.prova__text { text-align: center; max-width: 64ch; margin: 0 auto var(--sp-5); color: #C5CEE3; }

/* mapa de alcance nacional (seção prova) */
.prova__reach { display: flex; flex-direction: column; align-items: center; margin: 0 auto var(--sp-5); }
.reach-map { position: relative; width: 100%; max-width: 360px; aspect-ratio: 1 / 1; }
.reach-map__img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 12px 32px hsl(24 90% 50% / 0.3)); }
.reach-pin {
  position: absolute; width: 10px; height: 10px; margin: -5px 0 0 -5px;
  border-radius: 50%; background: #fff; border: 2px solid var(--orange-500);
  box-shadow: 0 0 0 0 hsl(28 95% 60% / 0.6); animation: reach-pulse 2.6s ease-out infinite;
}
@keyframes reach-pulse {
  0%   { box-shadow: 0 0 0 0 hsl(28 95% 60% / 0.6); }
  70%  { box-shadow: 0 0 0 11px hsl(28 95% 60% / 0); }
  100% { box-shadow: 0 0 0 0 hsl(28 95% 60% / 0); }
}
@media (prefers-reduced-motion: reduce) { .reach-pin { animation: none; } }
.reach-cap { margin-top: var(--sp-2); color: #C5CEE3; font-size: var(--fs-sm); text-align: center; font-weight: var(--fw-semibold); }
.prova__shots .imgph { background: repeating-linear-gradient(45deg,#1A2A4F,#1A2A4F 14px,#22335c 14px,#22335c 28px); border-color: var(--orange-400); color: #fff; }
.prova__shots .imgph__label { color: #fff; }
@media (max-width: 680px) { .stats { grid-template-columns: 1fr; gap: var(--sp-2); } }

/* ============================================================
   "Reconhece essa situação?" — split interativo (seção 2)
   MOBILE-FIRST: imagem em cima (fica grudada ao rolar) + lista
   embaixo; tocar num item troca a imagem. Tons CLAROS, HUD laranja.
   Desktop: duas colunas, imagem à esquerda troca no hover/foco.
   ============================================================ */
.dores { display: flex; flex-direction: column; gap: var(--sp-3); }

/* painel de mídia (claro) */
.dores__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.dores__layer {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.05);
  transition: opacity .5s var(--ease), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.dores__layer.is-active { opacity: 1; transform: none; }
.dores__layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dores__layer .imgph { width: 100%; height: 100%; border-radius: 0; border: none; }

/* HUD digital em tom claro: grade laranja sutil + moldura + scanline */
.dores__hud {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(transparent calc(100% - 1px), hsl(28 95% 55% / .10) calc(100% - 1px)) 0 0 / 100% 26px,
    linear-gradient(90deg, transparent calc(100% - 1px), hsl(28 95% 55% / .10) calc(100% - 1px)) 0 0 / 26px 100%;
}
/* sem frame/scanline/grade agora que há mockups reais dentro */
.dores__hud { display: none; }

/* lista */
.dores__list { display: flex; flex-direction: column; gap: .4rem; list-style: none; }
.dores__item {
  position: relative; width: 100%;
  display: flex; gap: var(--sp-2); align-items: flex-start; text-align: left;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-md);
  border: 1px solid transparent; background: transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.dores__item::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%; width: 3px;
  border-radius: 3px; background: var(--grad-orange);
  transform: scaleY(0); transform-origin: top; transition: transform var(--dur) var(--ease-out);
}
.dores__item.is-active {
  background: var(--glass-bg-strong);
  border-color: hsl(28 95% 55% / .3);
  box-shadow: var(--glow-orange-soft);
}
.dores__item.is-active::before { transform: scaleY(1); }
.dores__item:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 2px; }

.dores__idx {
  font-family: var(--font-mono); font-weight: var(--fw-bold); font-size: var(--fs-sm);
  color: var(--color-text-dim); padding-top: 2px; transition: color var(--dur);
}
.dores__item.is-active .dores__idx { color: var(--orange-600); }
.dores__txt { display: flex; flex-direction: column; }
.dores__t { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-md); color: var(--navy-900); }
.dores__d {
  font-size: var(--fs-sm); color: var(--color-text-muted);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s var(--ease), opacity .35s var(--ease), margin-top .4s var(--ease);
}
.dores__item.is-active .dores__d { max-height: 7em; opacity: 1; margin-top: .3rem; }

/* ---- Mockups das "dores" em HTML/CSS ---- */
.dm { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-2); padding: var(--sp-3); }
.dm-card { width: 80%; max-width: 320px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: var(--sp-3); position: relative; }
.dm-cap { font-size: var(--fs-sm); color: var(--orange-700); font-weight: var(--fw-semibold); }
/* boleto */
.dm-boleto__top { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); margin-bottom: .6rem; }
.dm-boleto__bars { display: flex; gap: 3px; height: 34px; margin-bottom: .8rem; }
.dm-boleto__bars i { flex: 1; background: var(--navy-900); border-radius: 1px; }
.dm-boleto__bars i:nth-child(even) { flex: .4; opacity: .45; }
.dm-boleto__val { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-xl); color: var(--navy-900); }
.dm-boleto__val small { font-size: var(--fs-sm); color: var(--color-text-muted); font-weight: var(--fw-medium); }
.dm-boleto__q { position: absolute; top: -16px; right: -12px; width: 48px; height: 48px; border-radius: 50%; background: var(--grad-orange); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-lg); box-shadow: var(--shadow-orange); }
/* post */
.dm-post__card { padding: 0; overflow: hidden; width: 72%; max-width: 250px; }
.dm-post__head { display: flex; align-items: center; gap: .5rem; padding: .55rem .7rem; }
.dm-post__av { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-orange); flex: none; }
.dm-post__user { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--navy-900); }
.dm-post__img { aspect-ratio: 1 / 1; background: linear-gradient(135deg, #FFE3C2, #FFC78A); display: flex; align-items: center; justify-content: center; }
.dm-post__img svg { width: 38px; height: 38px; color: #fff; opacity: .85; }
.dm-post__foot { display: flex; align-items: center; justify-content: space-between; gap: .4rem; padding: .55rem .7rem; font-size: var(--fs-xs); color: var(--color-text-muted); }
.dm-post__stamp { background: hsl(0 75% 95%); color: hsl(0 70% 48%); font-weight: var(--fw-bold); padding: .2rem .5rem; border-radius: var(--radius-pill); transform: rotate(-4deg); white-space: nowrap; }
/* bom dia */
.dm-bomdia { background: linear-gradient(160deg, #FFD89B 0%, #FF9E7A 100%); }
.dm-bomdia__sun { width: 58px; height: 58px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #FFF6D6, #FFD23F); box-shadow: 0 0 36px hsl(45 100% 70% / .9); margin-bottom: var(--sp-1); }
.dm-bomdia__txt { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 2rem; color: #fff; text-shadow: 0 2px 10px hsl(20 60% 35% / .45); letter-spacing: .02em; }
.dm-bomdia__sub { font-family: var(--font-mono); font-size: var(--fs-xs); color: hsl(20 55% 32%); margin-top: .25rem; }
/* gráfico */
.dm-grafico .dm-card { width: 82%; }
.dm-grafico__title { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--navy-900); margin-bottom: .7rem; text-align: left; }
.dm-grafico__bars { display: flex; align-items: flex-end; gap: 8px; height: 86px; margin-bottom: .7rem; }
.dm-grafico__bars i { flex: 1; height: var(--h); background: var(--grad-orange); border-radius: 3px 3px 0 0; }
.dm-grafico__legend { display: flex; gap: .5rem; flex-wrap: wrap; font-size: var(--fs-xs); color: var(--color-success); font-weight: var(--fw-semibold); }
.dm-grafico__sales { color: var(--color-text-dim) !important; }

/* desktop: duas colunas */
@media (min-width: 821px) {
  .dores { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-5); align-items: center; }
  .dores__item { padding: var(--sp-3); }
  .dores__t { font-size: var(--fs-lg); }
}

@media (prefers-reduced-motion: reduce) {
  .dores__media::after { display: none; }
  .dores__layer { transition: opacity .2s linear; transform: none; }
}

/* ============================================================
   Diagnóstico = equação visual (seção 3) — MOBILE-FIRST, claro.
   Base = empilhado vertical com seta pra baixo; desktop = em linha.
   ============================================================ */
.eq {
  display: flex; flex-direction: column; align-items: center;
  gap: .7rem;
  max-width: 780px; margin-inline: auto;
  padding: var(--sp-3);
  border-radius: var(--radius-lg);
}
.eq + .eq { margin-top: var(--sp-3); }

/* rótulo que descreve cada conta */
.eq__tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: .1em;
}
.eq__tag svg { width: 1.1em; height: 1.1em; }

/* a linha da equação em si */
.eq__row { display: flex; flex-direction: column; align-items: center; gap: .55rem; }

.eq__chip, .eq__result {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.1rem; border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold); font-size: var(--fs-sm); line-height: 1.1;
  background: var(--glass-bg-strong); border: 1px solid var(--color-border-strong);
  color: var(--navy-900); white-space: nowrap;
}
.eq__chip svg, .eq__result svg { width: 1.15em; height: 1.15em; flex: none; }
.eq__op { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--color-text-dim); }
.eq__arrow { display: inline-flex; }
.eq__arrow svg { width: 26px; height: 26px; color: var(--orange-500); transform: rotate(90deg); }
.eq__result { font-weight: var(--fw-bold); }

/* ===== a conta ERRADA: morta (dessaturada + apagada) ===== */
.eq--wrong .eq__tag { color: var(--color-text-dim); }
.eq--wrong .eq__row { filter: grayscale(1); opacity: .5; }
.eq--wrong .eq__chip { background: var(--color-bg-alt); color: var(--color-text-muted); border-color: var(--color-border); }
.eq--wrong .eq__chip svg, .eq--wrong .eq__result svg, .eq--wrong .eq__arrow svg { color: var(--color-text-dim); }
.eq--wrong .eq__result { background: var(--color-bg-alt); color: var(--color-text-muted); border-style: dashed; }
.eq--wrong .eq__result span { text-decoration: line-through; text-decoration-color: hsl(0 0% 60%); }

/* ===== a conta CERTA: viva, maior, com glow (destaque) ===== */
.eq--right {
  background: var(--color-primary-soft);
  border: 1px solid hsl(28 95% 55% / .35);
  box-shadow: var(--shadow-md), var(--glow-orange-soft);
}
.eq--right .eq__tag { color: var(--orange-600); }
.eq--right .eq__chip { background: #fff; border-color: hsl(28 95% 55% / .35); }
.eq--right .eq__chip svg { color: var(--orange-600); }
.eq--right .eq__result--win {
  background: var(--grad-orange); color: #fff; border: none;
  font-size: var(--fs-md); padding: .8rem 1.35rem;
  box-shadow: var(--shadow-orange);
}

.eq__close { text-align: center; max-width: 48ch; margin: var(--sp-4) auto 0; color: var(--color-text-muted); font-size: var(--fs-md); }

/* ===== ícones com vida (só no lado bom; off em reduced-motion) ===== */
@media (prefers-reduced-motion: no-preference) {
  .eq__chip--shine svg { animation: eq-twinkle 2.6s var(--ease) infinite; transform-origin: center; }
  .eq__chip--loop  svg { animation: eq-spin 7s linear infinite; transform-origin: center; }
  .eq__chip--pulse svg { animation: eq-pulse 2.2s var(--ease) infinite; transform-origin: center; }
  .eq__result--win     { animation: eq-glow 2.8s var(--ease) infinite; }
  .eq__result--win svg { animation: eq-bob 2.2s var(--ease) infinite; }
}
@keyframes eq-twinkle { 0%,100% { opacity: 1; transform: scale(1) rotate(0); } 50% { opacity: .5; transform: scale(.82) rotate(18deg); } }
@keyframes eq-spin    { to { transform: rotate(360deg); } }
@keyframes eq-pulse   { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
@keyframes eq-bob     { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes eq-glow {
  0%,100% { box-shadow: var(--shadow-orange); }
  50%     { box-shadow: var(--glow-orange), 0 10px 30px hsl(20 90% 50% / .45); }
}

/* ingredientes clicáveis + painel de definição */
button.eq__chip { font: inherit; cursor: pointer; }
.eq--right .eq__chip.is-active { outline: 2px solid var(--orange-500); outline-offset: 2px; }
.eq__def {
  max-width: 460px; margin: var(--sp-2) auto 0;
  text-align: center; font-size: var(--fs-sm); color: var(--navy-800);
  background: #fff; border: 1px solid hsl(28 95% 55% / .28);
  border-radius: var(--radius-md); padding: .8rem 1.1rem;
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.eq__def.is-shown { opacity: 1; transform: none; }
.eq__hint { display: block; text-align: center; margin-top: .55rem; font-size: var(--fs-xs); color: var(--color-text-dim); font-family: var(--font-mono); }

/* "o jeito somado" MAIOR */
.eq--right .eq__chip { font-size: var(--fs-base); padding: .82rem 1.3rem; }
.eq--right .eq__result--win { font-size: var(--fs-lg); padding: .95rem 1.6rem; }

/* layout com encarte real de apoio */
.diag2 { display: flex; flex-direction: column; gap: var(--sp-5); }
.diag2__media { margin: 0; }
.encmedia {
  position: relative; max-width: 320px; margin-inline: auto;
  aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid hsl(28 95% 55% / .28);
  box-shadow: var(--shadow-lg), var(--glow-orange-soft);
}
.encmedia__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.encmedia__tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--grad-orange); color: #fff;
  font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: var(--fw-bold);
  padding: .3rem .7rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-orange);
}
.encmedia__tag svg { width: 1em; height: 1em; }
.diag2__media figcaption { text-align: center; margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--color-text-muted); }

/* desktop: equação em linha (seta pra direita); errado menor, certo bem maior; encarte ao lado */
@media (min-width: 681px) {
  .eq__row { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: .6rem var(--sp-2); }
  .eq__arrow svg { transform: none; }
  .eq--wrong { transform: scale(.94); }
  .eq--right { transform: scale(1.06); }
}
@media (min-width: 921px) {
  .diag2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-6); align-items: center; }
  .diag2__main { min-width: 0; }
}

/* lista de ingredientes (versão limpa do diagnóstico) */
.diag2__lead { font-size: var(--fs-md); color: var(--color-text-muted); max-width: 48ch; }
.diag2__lead strong { color: var(--navy-900); }
.ingr { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-3); }
.ingr__item { display: flex; gap: var(--sp-2); align-items: flex-start; font-size: var(--fs-base); color: var(--color-text); }
.ingr__item strong { color: var(--navy-900); }
.ingr__ico {
  flex: none; width: 46px; height: 46px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-primary-soft); color: var(--orange-600);
  border: 1px solid hsl(28 95% 55% / .22);
  box-shadow: 0 4px 14px hsl(28 95% 55% / .15);
}
.ingr__ico svg { width: 22px; height: 22px; }
.diag2__close { display: flex; align-items: center; gap: .55rem; margin-top: var(--sp-3); font-weight: var(--fw-semibold); color: var(--navy-900); }
.diag2__close svg { width: 22px; height: 22px; color: var(--orange-500); flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .ingr__ico--shine svg { animation: eq-twinkle 2.6s var(--ease) infinite; transform-origin: center; }
  .ingr__ico--loop svg  { animation: eq-spin 7s linear infinite; transform-origin: center; }
  .ingr__ico--pulse svg { animation: eq-pulse 2.2s var(--ease) infinite; transform-origin: center; }
}

/* mascote Soma flutuante (apoio do diagnóstico) */
.somamedia { position: relative; display: flex; align-items: center; justify-content: center; padding: var(--sp-2); }
.somamedia__img {
  position: relative; z-index: 1; width: 100%; max-width: 360px; height: auto; display: block;
  filter: drop-shadow(0 24px 40px hsl(222 40% 30% / .22));
}
.somamedia__glow {
  position: absolute; z-index: 0; width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, hsl(28 95% 60% / .30), transparent 65%); filter: blur(4px);
}
@media (prefers-reduced-motion: no-preference) { .somamedia__img { animation: soma-float 5s ease-in-out infinite; } }
@keyframes soma-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* callout de resultado com movimento + CTA */
.diag2__cta {
  margin-top: var(--sp-4);
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-2);
  background: var(--color-primary-soft);
  border: 1px solid hsl(28 95% 55% / .28);
  border-radius: var(--radius-lg);
  padding: var(--sp-3);
  box-shadow: var(--glow-orange-soft);
}
.diag2__result { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin: 0; font-size: var(--fs-md); font-weight: var(--fw-semibold); color: var(--navy-900); }
.diag2__result svg { width: 24px; height: 24px; color: var(--orange-500); flex: none; }
.diag2__result .grad-move {
  background: linear-gradient(90deg, var(--orange-600), var(--orange-400), var(--orange-600));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
}
.diag2__sub { flex-basis: 100%; font-weight: var(--fw-medium); color: var(--color-text-muted); font-size: var(--fs-sm); }
.diag2__cta .btn { flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .diag2__result .grad-move { animation: grad-shine 3s linear infinite; }
  .diag2__result svg { animation: eq-bob 2.2s var(--ease) infinite; }
}
@keyframes grad-shine { to { background-position: 200% center; } }
@media (min-width: 561px) {
  .diag2__cta { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--sp-3); }
}

/* ---- Portfólio: carrossel infinito fluido (seção 6) ---- */
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track { display: flex; gap: var(--sp-2); width: max-content; animation: marquee-scroll 50s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  flex: 0 0 auto; width: 232px;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
}
.marquee__img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 520px) { .marquee__item { width: 168px; } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ---- Prova: 2 colunas (métricas | mapa) + pinos no hover ---- */
.prova2 { display: flex; flex-direction: column; gap: var(--sp-5); }
.prova2 .stats--stack { display: flex; flex-direction: column; gap: var(--sp-2); }
.prova2 .prova__text { text-align: left; max-width: none; margin: var(--sp-3) 0 0; }
.prova2 .reach-map { max-width: 420px; }
.reach-map { cursor: pointer; transition: filter var(--dur) var(--ease); }
.reach-map:hover .reach-map__img { filter: drop-shadow(0 14px 44px hsl(24 90% 50% / 0.5)); }
.reach-map:hover .reach-pin { animation: reach-jump .6s var(--ease-out); }
@keyframes reach-jump {
  0%   { transform: translateY(0) scale(1); }
  35%  { transform: translateY(-9px) scale(1.7); }
  100% { transform: translateY(0) scale(1); }
}
@media (min-width: 861px) {
  .prova2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: center; }
}
@media (prefers-reduced-motion: reduce) { .reach-map:hover .reach-pin { animation: none; } }

/* ---- Banda do somado Pro (seção 4.5) ---- */
.prosys { display: flex; flex-direction: column; gap: var(--sp-4); }
.prosys__text h2 { margin: .3rem 0 var(--sp-2); }
.prosys__text p { color: var(--color-text-muted); margin-bottom: var(--sp-3); max-width: 46ch; }
.prosys__feats { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.prosys__feats li { display: flex; gap: var(--sp-2); align-items: flex-start; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-md); padding: var(--sp-2) var(--sp-3); font-size: var(--fs-sm); color: var(--color-text); }
.prosys__feats strong { color: var(--navy-900); }
.prosys__ico { flex: none; width: 42px; height: 42px; border-radius: var(--radius-md); display: inline-flex; align-items: center; justify-content: center; background: var(--color-primary-soft); color: var(--orange-600); border: 1px solid hsl(28 95% 55% / .2); box-shadow: 0 4px 12px hsl(28 95% 55% / .12); }
.prosys__ico svg { width: 20px; height: 20px; }
.prosys__media { margin: 0; }
.screenframe {
  border-radius: var(--radius-lg); overflow: hidden; background: #fff;
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-lg), var(--glow-orange-soft);
}
.screenframe__bar { display: flex; gap: 6px; align-items: center; padding: 10px 14px; background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); }
.screenframe__bar span { width: 10px; height: 10px; border-radius: 50%; }
.screenframe__bar span:nth-child(1) { background: #FF5F57; }
.screenframe__bar span:nth-child(2) { background: #FEBC2E; }
.screenframe__bar span:nth-child(3) { background: #28C840; }
.screenframe__view { aspect-ratio: 16 / 10; }
.screenframe__view img { width: 100%; height: 100%; object-fit: cover; display: block; }
.screenframe__view .imgph { width: 100%; height: 100%; border: none; border-radius: 0; }
.prosys__feats--row { margin-top: var(--sp-4); }
@media (min-width: 681px) { .prosys__feats--row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); } }
@media (min-width: 861px) { .prosys { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items: center; } }

/* ---- Painel mockup navegável do somado Pro (seção 4.5) ---- */
.promock { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); max-width: 980px; margin: var(--sp-2) auto 0; }
@media (min-width: 781px) { .promock { grid-template-columns: 300px 1fr; gap: var(--sp-4); align-items: stretch; } }
.promock__app {
  background: #fff; border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--glow-orange-soft); overflow: hidden; align-self: start;
}
.promock__head { display: flex; align-items: center; gap: .6rem; padding: 12px 14px; border-bottom: 1px solid var(--color-border); background: var(--color-bg-alt); }
.promock__dots { display: inline-flex; gap: 5px; }
.promock__dots i { width: 9px; height: 9px; border-radius: 50%; }
.promock__dots i:nth-child(1) { background: #FF5F57; }
.promock__dots i:nth-child(2) { background: #FEBC2E; }
.promock__dots i:nth-child(3) { background: #28C840; }
.promock__brand { font-family: var(--font-display); font-weight: var(--fw-bold); color: var(--navy-900); font-size: var(--fs-sm); }
.promock__nav { display: flex; flex-direction: column; padding: var(--sp-1); gap: 2px; }
.promock__navitem {
  display: flex; align-items: center; gap: .65rem; width: 100%; text-align: left; cursor: pointer;
  padding: .7rem .9rem; border-radius: var(--radius-md);
  color: var(--color-text-muted); font-weight: var(--fw-semibold); font-size: var(--fs-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.promock__navitem svg { width: 18px; height: 18px; flex: none; }
.promock__navitem:hover { background: var(--color-bg-alt); color: var(--navy-900); }
.promock__navitem.is-active { background: var(--color-primary-soft); color: var(--orange-700); box-shadow: inset 3px 0 0 var(--orange-500); }
.promock__detail {
  display: flex; flex-direction: column; justify-content: flex-start;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: var(--sp-4);
}
.promock__media {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--color-border);
  background: var(--color-bg-alt); margin-bottom: var(--sp-3);
}
.promock__layer { position: absolute; inset: 0; opacity: 0; transition: opacity .35s var(--ease); }
.promock__layer.is-active { opacity: 1; }
.promock__layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promock__layer .imgph { width: 100%; height: 100%; border: none; border-radius: 0; }
.promock__detail h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-1); }
.promock__detail p { color: var(--color-text-muted); font-size: var(--fs-base); }
.promock__detail.is-changing h3, .promock__detail.is-changing p { animation: promock-fade .35s var(--ease); }
@keyframes promock-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---- Antes/Depois: comparação lado a lado animada (seção 7) ---- */
.vs { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); max-width: 920px; margin-inline: auto; }
@media (min-width: 761px) { .vs { grid-template-columns: 1fr 1fr; gap: var(--sp-4); align-items: start; } }
.vs__col { border-radius: var(--radius-lg); padding: var(--sp-4); border: 1px solid var(--color-border); }
.vs__col--bad { background: hsl(222 30% 96%); border-color: hsl(222 24% 88%); }
.vs__col--good { background: var(--color-primary-soft); border: 1px solid hsl(28 95% 55% / .35); box-shadow: var(--shadow-md), var(--glow-orange-soft); }
@media (min-width: 761px) { .vs__col--good { transform: scale(1.03); } }
.vs__head { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-md); margin-bottom: var(--sp-3); }
.vs__head svg { width: 20px; height: 20px; }
.vs__col--bad .vs__head { color: var(--navy-700); }
.vs__col--bad .vs__head svg { color: hsl(0 70% 55%); }
.vs__col--good .vs__head { color: var(--orange-700); }
.vs__col--good .vs__head svg { color: var(--color-success); }
.vs__list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.vs__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); }
.vs__mark { flex: none; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.vs__mark svg { width: 15px; height: 15px; }
.vs__col--bad .vs__mark { background: hsl(0 75% 94%); color: hsl(0 70% 50%); }
.vs__col--bad li span:last-child { color: var(--color-text-muted); text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: transparent; transition: text-decoration-color .45s var(--ease); }
.vs.is-in .vs__col--bad li span:last-child { text-decoration-color: hsl(0 70% 55%); }
.vs__col--bad .vs__list li:nth-child(1) span:last-child { transition-delay: .2s; }
.vs__col--bad .vs__list li:nth-child(2) span:last-child { transition-delay: .45s; }
.vs__col--bad .vs__list li:nth-child(3) span:last-child { transition-delay: .7s; }
.vs__col--bad .vs__list li:nth-child(4) span:last-child { transition-delay: .95s; }
.vs__col--bad .vs__list li:nth-child(5) span:last-child { transition-delay: 1.2s; }
.vs__col--good .vs__mark { background: hsl(145 60% 90%); color: var(--color-success); }
.vs__col--good li span:last-child { color: var(--color-text); }
.vs.is-in .vs__col--good .vs__item { animation: vs-in .5s var(--ease-out) backwards; }
.vs.is-in .vs__col--good .vs__item:nth-child(1) { animation-delay: .05s; }
.vs.is-in .vs__col--good .vs__item:nth-child(2) { animation-delay: .15s; }
.vs.is-in .vs__col--good .vs__item:nth-child(3) { animation-delay: .25s; }
.vs.is-in .vs__col--good .vs__item:nth-child(4) { animation-delay: .35s; }
.vs.is-in .vs__col--good .vs__item:nth-child(5) { animation-delay: .45s; }
@keyframes vs-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.vs.is-in .vs__col--good .vs__mark { animation: vs-pop .5s var(--ease-spring) backwards; }
.vs.is-in .vs__col--good .vs__item:nth-child(1) .vs__mark { animation-delay: .2s; }
.vs.is-in .vs__col--good .vs__item:nth-child(2) .vs__mark { animation-delay: .3s; }
.vs.is-in .vs__col--good .vs__item:nth-child(3) .vs__mark { animation-delay: .4s; }
.vs.is-in .vs__col--good .vs__item:nth-child(4) .vs__mark { animation-delay: .5s; }
.vs.is-in .vs__col--good .vs__item:nth-child(5) .vs__mark { animation-delay: .6s; }
@keyframes vs-pop { from { transform: scale(0); } 60% { transform: scale(1.3); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .vs.is-in .vs__col--good .vs__item, .vs.is-in .vs__col--good .vs__mark { animation: none; }
}

/* ---- Pra quem é: lista consultiva (seção 8) ---- */
.forwho { list-style: none; display: grid; gap: var(--sp-2); max-width: 860px; margin: 0 auto; }
@media (min-width: 681px) { .forwho { grid-template-columns: 1fr 1fr; gap: var(--sp-2) var(--sp-3); } }
.forwho__item {
  display: flex; gap: var(--sp-2); align-items: flex-start;
  padding: var(--sp-2) var(--sp-3); border-radius: var(--radius-md);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  font-size: var(--fs-sm); color: var(--color-text);
}
.forwho__item strong { color: var(--navy-900); }
.forwho__ico {
  flex: none; width: 42px; height: 42px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--color-primary-soft); color: var(--orange-600);
  border: 1px solid hsl(28 95% 55% / .2); box-shadow: 0 4px 12px hsl(28 95% 55% / .12);
}
.forwho__ico svg { width: 20px; height: 20px; }
.forwho__note { text-align: center; max-width: 64ch; margin: var(--sp-4) auto 0; color: var(--color-text-muted); font-size: var(--fs-sm); }
.forwho__cta { text-align: center; margin-top: var(--sp-4); }
.forwho.is-in .forwho__item { animation: vs-in .5s var(--ease-out) backwards; }
.forwho.is-in .forwho__item:nth-child(1) { animation-delay: .05s; }
.forwho.is-in .forwho__item:nth-child(2) { animation-delay: .13s; }
.forwho.is-in .forwho__item:nth-child(3) { animation-delay: .21s; }
.forwho.is-in .forwho__item:nth-child(4) { animation-delay: .29s; }
.forwho.is-in .forwho__item:nth-child(5) { animation-delay: .37s; }
.forwho.is-in .forwho__ico { animation: vs-pop .5s var(--ease-spring) backwards; }
.forwho.is-in .forwho__item:nth-child(1) .forwho__ico { animation-delay: .15s; }
.forwho.is-in .forwho__item:nth-child(2) .forwho__ico { animation-delay: .23s; }
.forwho.is-in .forwho__item:nth-child(3) .forwho__ico { animation-delay: .31s; }
.forwho.is-in .forwho__item:nth-child(4) .forwho__ico { animation-delay: .39s; }
.forwho.is-in .forwho__item:nth-child(5) .forwho__ico { animation-delay: .47s; }
@media (prefers-reduced-motion: reduce) { .forwho.is-in .forwho__item, .forwho.is-in .forwho__ico { animation: none; } }

/* ---- Timeline do processo (seção 9) ---- */
.timeline { position: relative; max-width: 1000px; margin-inline: auto; }
.timeline__line {
  position: absolute; z-index: 0; top: 23px; left: 12.5%; right: 12.5%; height: 3px;
  background: var(--color-border); border-radius: 3px; overflow: hidden;
}
.timeline__progress { position: absolute; left: 0; top: 0; bottom: 0; width: calc(var(--tl, 0) * 1%); background: var(--grad-orange); box-shadow: var(--glow-orange); transition: width .5s var(--ease-out); }
.timeline__steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); position: relative; z-index: 1; }
.timeline__step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-1); cursor: pointer; }
.timeline__node {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: #fff; border: 2px solid var(--color-border); color: var(--color-text-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-md);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), transform .3s var(--ease-spring);
}
.timeline__step.is-active .timeline__node { background: var(--grad-orange); border-color: transparent; color: #fff; box-shadow: var(--shadow-orange); }
.timeline__step.is-current .timeline__node { transform: scale(1.12); }
.timeline__body { transition: opacity .4s var(--ease), transform .4s var(--ease); }
.timeline__body h3 { font-size: var(--fs-md); margin-bottom: 0.25rem; }
.timeline__body p { font-size: var(--fs-sm); color: var(--color-text-muted); }
.timeline__step:not(.is-active) .timeline__body { opacity: .5; }
.timeline__step.is-current .timeline__body { transform: translateY(-2px); }
@media (max-width: 760px) {
  .timeline__line { top: 0; bottom: 0; left: 22px; right: auto; width: 3px; height: auto; }
  .timeline__progress { left: 0; top: 0; width: 100%; height: calc(var(--tl, 100) * 1%); }
  .timeline__steps { grid-template-columns: 1fr; gap: var(--sp-4); }
  .timeline__step { flex-direction: row; align-items: flex-start; text-align: left; gap: var(--sp-2); }
  .timeline__step:not(.is-active) .timeline__body { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .timeline__progress, .timeline__node, .timeline__body { transition: none; }
}

/* ---- Pacotes (seção 10) ---- */
.plans { align-items: stretch; }
.plans .plan { height: 100%; }
.plans__note { text-align: center; max-width: 60ch; margin: var(--sp-4) auto 0; font-size: var(--fs-sm); color: var(--color-text-muted); }

/* ---- CTA final (seção 11) ---- */
.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FBA81A 35%, #F15A22 65%, transparent);
  box-shadow: 0 0 22px hsl(28 95% 55% / 0.6);
}
.cta-final::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -340px;
  width: 880px; height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, hsl(28 95% 52% / 0.2), hsl(16 88% 50% / 0.06) 55%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-final__inner { position: relative; text-align: center; color: #fff; z-index: 1; }
.cta-final__inner h2 { color: #fff; margin-bottom: var(--sp-2); }
.cta-final__inner p { color: #C5CEE3; margin-bottom: var(--sp-2); }
.cta-final__inner .btn { margin-top: var(--sp-2); }
.cta-final__reinforce { font-size: var(--fs-sm); margin-top: var(--sp-3) !important; color: #9AA6C2 !important; }
.cta-final__inner { display: flex; flex-direction: column; gap: var(--sp-3); }
.cta-final__soma { width: 100%; max-width: 240px; height: auto; display: block; margin-inline: auto; filter: drop-shadow(0 22px 44px hsl(222 60% 6% / .55)); }
@media (prefers-reduced-motion: no-preference) { .cta-final__soma { animation: soma-float 5s ease-in-out infinite; } }
@media (min-width: 861px) {
  .cta-final__inner { display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: var(--sp-6); text-align: left; }
  .cta-final__soma { max-width: 280px; margin-inline: 0; }
}
