/* ============================================================
   Lero · apresentação comercial
   Página linear, dark mode fixo e sem navegação.
   Carrega depois de site.css para reaproveitar fontes e a
   constelação, mantendo todo o restante escopado nesta página.
   ============================================================ */

html {
  background: #090c14;
}

body.commercial-page {
  --c-bg: #090c14;
  --c-bg-raised: #0f1421;
  --c-panel: #141b2b;
  --c-panel-soft: #111725;
  --c-text: #f7f5f2;
  --c-muted: #aab1bf;
  --c-muted-strong: #c9ced7;
  --c-line: rgba(255, 255, 255, 0.12);
  --c-line-strong: rgba(255, 255, 255, 0.22);
  --c-coral: #fd5b3b;
  --c-coral-light: #ff8b74;
  --c-green: #54d69b;
  --c-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --c-radius: 24px;
  --c-radius-small: 16px;
  --c-container: 1200px;
  /* Escala tipográfica única da página.
     Um passo largo (~1.4×) no topo, onde o contraste é dramático, e passos
     curtos (~1.1×) na faixa de leitura, onde só se quer diferenciar papéis.
     Os valores são compensados pelo `zoom: 0.8` abaixo: o tamanho efetivo em
     tela é 80% do declarado, então o piso da escala fica em ~11px reais. */
  --c-type-display: clamp(2.9rem, 4.7vw, 4.5rem);
  --c-type-section: clamp(2.1rem, 3.35vw, 3.3rem);
  --c-type-title: clamp(1.65rem, 2.35vw, 2.3rem);
  --c-type-card: clamp(1.3rem, 1.65vw, 1.6rem);
  --c-type-lead: clamp(1.18rem, 1.3vw, 1.25rem);
  --c-type-body: 1.1rem;
  --c-type-small: 1.1rem;
  --c-type-micro: 0.92rem;
  --c-type-label: 0.98rem;
  /* Espelha o zoom abaixo. Dentro da página, 100vw vale a largura da janela em
     unidades já reduzidas — ou seja, 100vw cobre só 80% da tela. Quem precisar
     de largura real divide por este valor. */
  --c-zoom: 0.8;

  zoom: 0.8 !important;
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 8%, rgba(253, 91, 59, 0.08), transparent 30rem),
    var(--c-bg);
  color: var(--c-muted);
  font-family: var(--font-body);
  font-size: var(--c-type-body);
  line-height: 1.65;
}

.commercial-page main {
  overflow: clip;
}

.commercial-page h1,
.commercial-page h2,
.commercial-page h3 {
  margin: 0;
  color: var(--c-text);
  font-family: var(--font-display);
  font-weight: 700;
  text-wrap: balance;
}

/* A entrelinha acompanha o tamanho: quanto menor o texto, mais respiro
   proporcional ele precisa. O mesmo 0.94 do display sufoca um h3. */
.commercial-page h1 {
  font-size: var(--c-type-display);
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.commercial-page h2 {
  font-size: var(--c-type-section);
  letter-spacing: -0.028em;
  line-height: 1.02;
}

.commercial-page h3 {
  font-size: var(--c-type-card);
  letter-spacing: -0.018em;
  line-height: 1.18;
}

.commercial-page p,
.commercial-page ol,
.commercial-page ul,
.commercial-page figure {
  margin: 0;
}

.commercial-page a {
  color: inherit;
  text-decoration: none;
}

.commercial-page :focus-visible {
  outline: 3px solid var(--c-coral-light);
  outline-offset: 4px;
}

.commercial-container {
  width: min(100% - 48px, var(--c-container));
  margin-inline: auto;
}

.commercial-section {
  position: relative;
  padding-block: clamp(5.5rem, 11vw, 10rem);
  border-top: 1px solid var(--c-line);
}

.diagnostic-card,
.pain-card,
.authority-proof,
.process-card,
.plan-card,
.ultra-band,
.onboarding-card,
.onboarding-wide-detail,
.objections-console,
.risk-card,
.pricing-notes {
  backdrop-filter: blur(24px) saturate(142%);
  -webkit-backdrop-filter: blur(24px) saturate(142%);
}

.liquid-glass {
  --glass-x: 50%;
  --glass-y: 18%;
  --glass-tilt-x: 0deg;
  --glass-tilt-y: 0deg;
  --glass-lift: 0px;
  position: relative;
  isolation: isolate;
  transform-origin: center;
  transform-style: preserve-3d;
  transition:
    border-color 220ms ease,
    box-shadow 300ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-glass.liquid-tilt.is-pointer-active {
  will-change: transform;
}

.liquid-glass::after {
  position: absolute;
  inset: -1px;
  z-index: 8;
  border-radius: inherit;
  background:
    radial-gradient(
      420px circle at var(--glass-x) var(--glass-y),
      rgba(255, 255, 255, 0.16),
      rgba(253, 91, 59, 0.055) 24%,
      transparent 54%
    ),
    linear-gradient(118deg, rgba(255, 255, 255, 0.07), transparent 34% 70%, rgba(255, 255, 255, 0.035));
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
  content: "";
}

.liquid-glass:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.045),
    0 26px 70px rgba(0, 0, 0, 0.26);
}

.commercial-section-head {
  display: grid;
  max-width: 930px;
  gap: 1.35rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.commercial-section-head > p:last-child {
  max-width: 720px;
  color: var(--c-muted);
  font-size: var(--c-type-lead);
}

.commercial-eyebrow {
  display: flex;
  color: var(--c-coral-light);
  font-family: var(--font-body);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
}

.commercial-eyebrow > span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(253, 91, 59, 0.42);
  border-radius: 50%;
  color: var(--c-coral);
  font-size: var(--c-type-label);
  letter-spacing: 0.04em;
  place-items: center;
}

.commercial-eyebrow > span.eyebrow-tag {
  display: inline-flex;
  width: auto;
  height: auto;
  padding: 0.3rem 0.62rem;
  border: 1px solid rgba(253, 91, 59, 0.38);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, rgba(253, 91, 59, 0.22), rgba(253, 91, 59, 0.08));
  font-size: calc(var(--c-type-label) * 0.92);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ---------- 01 · diagnóstico ---------- */

.commercial-hero {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: relative;
  display: flex;
  min-height: 100svh;
  padding-block: clamp(1.75rem, 4vw, 3.5rem) clamp(3.5rem, 6vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
  align-items: center;
}

.commercial-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(9, 12, 20, 0.08), var(--c-bg)),
    radial-gradient(circle at 83% 14%, rgba(253, 91, 59, 0.22), transparent 24rem),
    radial-gradient(circle at 12% 82%, rgba(66, 101, 178, 0.14), transparent 28rem);
  content: "";
}

.commercial-hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.26) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(253, 91, 59, 0.26) 0 1px, transparent 1.5px);
  background-position: 15px 17px, 48px 64px;
  background-size: 97px 97px, 139px 139px;
  opacity: 0.36;
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 94%);
  content: "";
}

.commercial-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.commercial-orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-coral);
  box-shadow: 0 0 26px rgba(253, 91, 59, 0.8);
  content: "";
}

.commercial-orbit-one {
  top: -19rem;
  right: -13rem;
  width: 48rem;
  height: 48rem;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) rotate(18deg);
}

.commercial-orbit-two {
  bottom: -28rem;
  left: -18rem;
  width: 58rem;
  height: 58rem;
  transform: translate3d(var(--hero-shift-y), var(--hero-shift-x), 0) rotate(148deg);
}

.hero-content {
  display: grid;
  gap: clamp(2.25rem, 5vh, 4rem);
}

.commercial-brand {
  display: flex;
  color: rgba(255, 255, 255, 0.54);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
}

.commercial-brand img {
  width: 94px;
  height: auto;
}

.commercial-brand::after {
  width: 44px;
  height: 1px;
  order: 1;
  background: var(--c-line-strong);
  content: "";
}

.commercial-brand span {
  order: 2;
}

.hero-heading {
  display: grid;
  max-width: 1000px;
  gap: 1.25rem;
}

.hero-heading h1 {
  max-width: 950px;
}

.diagnostic-grid {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--c-radius);
  background: var(--c-line-strong);
  list-style: none;
  box-shadow: var(--c-shadow);
}

.diagnostic-card {
  position: relative;
  display: flex;
  min-height: 150px;
  padding: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.09), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015) 48%, transparent 76%),
    rgba(12, 17, 29, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
}

.diagnostic-card-button {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 150px;
  padding: clamp(1.35rem, 2.5vw, 2.25rem);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 1.4rem;
}

.diagnostic-card-button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--c-coral);
  transition: width 260ms ease;
  content: "";
}

.diagnostic-card-button:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--c-coral-light);
  outline-offset: -5px;
}

.diagnostic-card-button:hover::after,
.diagnostic-card-button[aria-pressed="true"]::after {
  width: 100%;
}

.diagnostic-number {
  color: var(--c-coral);
  font-family: var(--font-display);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.diagnostic-question {
  display: block;
  max-width: 470px;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-card);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.diagnostic-state {
  display: flex;
  color: rgba(255, 255, 255, 0.46);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.diagnostic-state::before {
  display: inline-grid;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
  place-items: center;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.diagnostic-card.is-discussed {
  background:
    radial-gradient(circle at 20% 0%, rgba(253, 91, 59, 0.2), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 70%),
    rgba(15, 21, 34, 0.9);
}

.diagnostic-card.is-discussed .diagnostic-state {
  color: var(--c-coral-light);
}

.diagnostic-card.is-discussed .diagnostic-state::before {
  border-color: var(--c-coral);
  color: #fff;
  background: var(--c-coral);
  content: "✓";
}

.hero-note {
  max-width: 620px;
  color: var(--c-muted);
  font-size: var(--c-type-small);
}

.hero-note span {
  color: var(--c-text);
}
/* ---------- 02 · dor ---------- */

.pain-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 35%),
    var(--c-bg);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pain-card {
  position: relative;
  min-height: 260px;
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius-small);
  background: rgba(255, 255, 255, 0.024);
}

.pain-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  border-radius: 0 0 0 100%;
  background: rgba(253, 91, 59, 0.08);
  content: "";
}

.pain-index {
  display: block;
  margin-bottom: clamp(3rem, 7vw, 5.8rem);
  color: var(--c-coral);
  font-family: var(--font-display);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pain-card h3 {
  margin-bottom: 0.7rem;
  font-size: var(--c-type-card);
}

.pain-card p {
  color: var(--c-muted);
  font-size: var(--c-type-body);
  line-height: 1.55;
}

/* ---------- 03 · solução ---------- */

.solution-section {
  background:
    radial-gradient(circle at 50% 35%, rgba(253, 91, 59, 0.15), transparent 34rem),
    #0d111c;
}

.solution-copy {
  display: grid;
  max-width: 1050px;
  gap: 1.5rem;
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.solution-copy h2 {
  font-size: var(--c-type-section);
  line-height: 1.02;
}

.solution-copy > p:last-child {
  max-width: 710px;
  color: var(--c-muted-strong);
  font-size: var(--c-type-lead);
}

.product-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(18px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 45px 120px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(253, 91, 59, 0.05);
}

.product-window-bar {
  display: flex;
  height: 48px;
  padding-inline: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  gap: 0.45rem;
}

.product-window-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.product-window-bar > span:first-child {
  background: var(--c-coral);
}

.product-window-bar b {
  margin-left: auto;
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-stage picture,
.product-stage img {
  display: block;
  width: 100%;
}

.product-stage img {
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  object-position: top center;
}

.product-stage figcaption {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  max-width: 380px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: var(--c-muted);
  background: rgba(9, 12, 20, 0.82);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.34);
  gap: 0.1rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.product-stage figcaption strong {
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-body);
}

.product-stage figcaption span {
  font-size: var(--c-type-small);
}

/* ---------- 04 · autoridade ---------- */

.authority-section {
  background:
    radial-gradient(circle at 82% 50%, rgba(253, 91, 59, 0.09), transparent 25rem),
    var(--c-bg-raised);
}

.authority-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.75fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.authority-copy {
  display: grid;
  gap: 1.4rem;
}

.authority-copy > p:not(.commercial-eyebrow) {
  max-width: 710px;
  color: var(--c-muted-strong);
  font-size: var(--c-type-lead);
}

.authority-copy strong {
  color: var(--c-text);
}

.authority-proof {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--c-radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--c-shadow);
}

.meta-badge-surface {
  display: grid;
  min-height: 140px;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  background:
    radial-gradient(circle at 70% 20%, rgba(253, 91, 59, 0.12), transparent 11rem),
    #f7f8fa;
  place-items: center;
}

.meta-badge-surface img {
  width: 152px;
  height: auto;
}

.authority-proof ul {
  display: grid;
  padding: 0;
  gap: 0;
  list-style: none;
}

.authority-proof li {
  display: grid;
  padding-block: 0.9rem;
  border-top: 1px solid var(--c-line);
  color: var(--c-muted-strong);
  font-size: var(--c-type-small);
  grid-template-columns: 1.5rem 1fr;
  gap: 0.4rem;
}

.authority-proof li span {
  color: var(--c-green);
  font-weight: 800;
}

/* ---------- 05 · processo ---------- */

.process-section {
  background: var(--c-bg);
}

.process-grid {
  position: relative;
  display: grid;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 37px;
  left: 9%;
  right: 9%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-coral), transparent);
  opacity: 0.5;
  content: "";
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: 1.75rem;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 60%),
    var(--c-panel-soft);
}

.process-card > span {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  border: 1px solid rgba(253, 91, 59, 0.45);
  border-radius: 50%;
  color: var(--c-coral);
  background: var(--c-bg);
  font-family: var(--font-display);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  place-items: center;
}

.process-card h3 {
  margin-bottom: 0.8rem;
  font-size: var(--c-type-card);
}

.process-card p {
  max-width: 300px;
  color: var(--c-muted);
}

.commercial-page .process-close {
  margin-top: 2rem;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-lead);
  font-weight: 600;
  text-align: center;
}

/* ---------- 06 · módulos ---------- */

.modules-section {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(253, 91, 59, 0.09), transparent 27rem),
    #0b0f1a;
}

/* 06 · gargalos
   Coluna de texto rolando ao lado de uma coluna sticky com a tela real do
   produto. Nada de cartão, aba ou painel: o scroll é nativo (sem sequestro) e
   o print troca sozinho conforme a leitura desce. Padrão que Attio, Clay e
   Intercom usam nessa mesma seção — a diferença é que aqui a prova é o
   produto de verdade. */

/* Título, texto e produto seguem a mesma calha de 1200px usada pelas demais
   seções da apresentação. */
.modules-section {
  --gargalo-width: 100%;
  --gargalo-bleed: 0px;
}

/* O título e a cena compartilham o mesmo ponto de partida do container. */
.modules-section .commercial-section-head {
  margin-left: var(--gargalo-bleed);
}

.gargalo-scene {
  display: grid;
  width: var(--gargalo-width);
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
  margin-inline: var(--gargalo-bleed);
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4.5vw, 5.5rem);
  align-items: start;
}

.gargalo-steps {
  display: grid;
  padding: 0;
  gap: clamp(3rem, 7vw, 6rem);
  list-style: none;
}

/* Cada passo carrega o próprio trilho: o fio acende quando ele assume a cena. */
.gargalo-step {
  position: relative;
  padding-left: 1.9rem;
}

.gargalo-step::before {
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  left: 0;
  width: 2px;
  border-radius: 2px;
  background: var(--c-line-strong);
  transition: background 420ms ease, box-shadow 420ms ease;
  content: "";
}

.gargalo-step.is-live::before {
  background: linear-gradient(180deg, var(--c-coral), rgba(253, 91, 59, 0.15));
  box-shadow: 0 0 14px rgba(253, 91, 59, 0.45);
}

.gargalo-index {
  color: var(--c-muted);
  font-family: var(--font-display);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  transition: color 420ms ease;
}

.gargalo-step.is-live .gargalo-index {
  color: var(--c-coral);
}

.commercial-page .gargalo-step h3 {
  margin-top: 0.7rem;
  color: var(--c-muted-strong);
  font-size: var(--c-type-title);
  letter-spacing: -0.026em;
  line-height: 1.22;
  transition: color 420ms ease;
}

.gargalo-step.is-live h3 {
  color: #fff;
}

.gargalo-pain {
  display: block;
  max-width: 36ch;
  margin-top: 1.3rem;
  color: var(--c-muted);
  font-family: var(--font-display);
  font-size: var(--c-type-card);
  font-style: italic;
  letter-spacing: -0.018em;
  line-height: 1.36;
  transition: color 420ms ease;
}

.gargalo-pain span {
  display: block;
}

.gargalo-pain span + span {
  margin-top: 0.25rem;
}

.gargalo-step.is-live .gargalo-pain {
  color: var(--c-muted-strong);
}

.gargalo-points {
  display: grid;
  margin-top: 1.35rem;
  padding: 0;
  gap: 0.58rem;
  list-style: none;
}

.gargalo-points li {
  display: flex;
  color: var(--c-muted-strong);
  font-family: var(--font-display);
  font-size: var(--c-type-lead);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
  align-items: baseline;
  gap: 0.65rem;
  transition: color 420ms ease;
}

.gargalo-step.is-live .gargalo-points li {
  color: var(--c-text);
}

.gargalo-points li::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--c-coral);
  color: var(--c-coral);
  content: "";
  flex: none;
  opacity: 0.5;
  transition: opacity 420ms ease;
}

.gargalo-step.is-live .gargalo-points li::before {
  opacity: 1;
}

/* ---- palco: a tela do produto acompanha a leitura ---- */

.gargalo-stage {
  position: sticky;
  top: clamp(4.5rem, 14vh, 9rem);
  align-self: start;
}

/* O brilho por trás tira o efeito de retângulo colado no fundo. */
.gargalo-stage::before {
  position: absolute;
  top: -12%;
  right: -6%;
  bottom: -12%;
  left: -6%;
  z-index: 0;
  background: radial-gradient(
    60% 60% at 40% 30%,
    rgba(253, 91, 59, 0.16),
    rgba(253, 91, 59, 0.04) 55%,
    transparent 78%
  );
  content: "";
  pointer-events: none;
}

.gargalo-shots {
  position: relative;
  z-index: 1;
}

/* O primeiro fica no fluxo e define a altura do palco; os outros se sobrepõem.
   Os recortes têm todos a mesma proporção e a legenda ocupa uma linha, então a
   altura só varia se as pastilhas quebrarem — e o primeiro passo é o que tem
   mais pastilhas, então ele já reserva o pior caso. */
.gargalo-shot {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  gap: 0.75rem;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.gargalo-shot:first-child {
  position: relative;
}

.gargalo-shot.is-active {
  opacity: 1;
  transform: none;
}

/* Uma amostra da tela, não a tela inteira encolhida: o recorte de
   assets/prints/lp já vem sem a barra de janela e enquadrado no que a legenda
   promete (scripts/crop-lp-prints.py), e nesta largura aparece perto do tamanho
   nativo — a interface é lida, que é o ponto da seção.

   Sem máscara: o degradê comia justamente a borda onde a interface continua e
   deixava a imagem com cara de erro de carregamento. Um fio de 1px e uma sombra
   difusa bastam para separar do fundo sem virar cartão. Nada de aspect-ratio
   aqui — os seis recortes saem do script com a mesma proporção, então a altura
   do palco já é constante na troca. */
.gargalo-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--c-radius-small);
  box-shadow: 0 34px 70px -34px rgba(0, 0, 0, 0.9);
}

/* Legenda embaixo, sobre o fundo escuro: o print é claro, texto branco por
   cima dele não leria. */
.gargalo-shot figcaption {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.gargalo-shot figcaption strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--c-type-lead);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.gargalo-shot figcaption span {
  color: var(--c-coral-light);
  font-size: var(--c-type-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Os módulos daquele gargalo ficam sob a amostra, não na coluna de texto: eles
   dizem de qual tela se está falando, e aqui ocupam a faixa que sobrava embaixo
   do print em vez de espremer a leitura do lado esquerdo. */
.gargalo-chips {
  display: flex;
  margin: 0.2rem 0 0;
  padding: 0;
  gap: 0.45rem;
  list-style: none;
  flex-wrap: wrap;
}

.gargalo-chips li {
  display: inline-flex;
  padding: 0.34rem 0.75rem 0.34rem 0.62rem;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--c-muted-strong);
  font-size: var(--c-type-micro);
  font-weight: 600;
  line-height: 1;
  align-items: center;
  gap: 0.42rem;
}

.gargalo-chips i {
  display: inline-flex;
  color: var(--c-coral);
}

.gargalo-chips svg {
  width: 1.1em;
  height: 1.1em;
}

/* A constelação vive em seção própria. Classe própria de propósito: a
   .constellation-section da home (site.css) carrega os degradês claro→escuro
   que só fazem sentido lá. Aqui o palco é preto chapado, sem degradê. */
.commercial-page .commercial-constellation {
  padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(4rem, 8vw, 7rem);
  background: var(--c-bg);
}

.constellation-intro {
  display: grid;
  max-width: 820px;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  gap: 1.25rem;
  text-align: center;
  justify-items: center;
}

.constellation-intro h2,
.constellation-intro h3 {
  font-size: var(--c-type-section);
  line-height: 0.98;
}

.constellation-intro > p:last-child {
  max-width: 650px;
  color: var(--c-muted);
  font-size: var(--c-type-lead);
}

/* Constelação existente, adaptada ao palco escuro desta LP. */
.commercial-page .constellation-wrap {
  padding-inline: clamp(8px, 2vw, 24px);
}

.commercial-page .lc-shell {
  height: clamp(720px, 84vh, 980px);
}

/* Palco preto chapado: mesmo fundo da página, sem degradê, para a
   constelação não desenhar uma caixa dentro da seção. */
.commercial-page .lc-stage {
  background: var(--c-bg);
}

.commercial-page .lc-stage::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(253, 91, 59, 0.3) 0 1px, transparent 1.5px);
  opacity: 0.34;
}

.commercial-page .lc-connection {
  color: rgba(255, 255, 255, 0.36);
  opacity: 0.52;
}

/* pontos menores nesta LP: mais divisões na mesma linha pedem grão mais fino */
.commercial-page .lc-dot {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
}

/* 10 pontos por linha nesta LP (ver constellation.js): estende os atrasos do
   fluxo em hover para os pontos extras. */
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(1) { animation-delay: 0.9s; }
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(2) { animation-delay: 0.8s; }
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(3) { animation-delay: 0.7s; }
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(4) { animation-delay: 0.6s; }
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(5) { animation-delay: 0.5s; }
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(6) { animation-delay: 0.4s; }
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(7) { animation-delay: 0.3s; }
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(8) { animation-delay: 0.2s; }
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(9) { animation-delay: 0.1s; }
.commercial-page .lc-connection.is-highlighted .lc-dot:nth-child(10) { animation-delay: 0s; }

.commercial-page .lc-center-breathe img {
  filter: drop-shadow(0 10px 28px rgba(253, 91, 59, 0.28));
}

.commercial-page .lc-center figcaption {
  color: rgba(255, 255, 255, 0.48);
  font-size: var(--c-type-small);
}

/* pastilhas um pouco maiores nesta LP: o palco é mais largo que o da home */
.commercial-page .lc-feature-btn {
  width: clamp(52px, 6.8vmin, 66px);
  height: clamp(52px, 6.8vmin, 66px);
  border-color: rgba(253, 91, 59, 0.34);
  color: var(--c-coral-light);
  background: rgba(15, 20, 33, 0.94);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.commercial-page .lc-feature-btn:hover:not(:disabled),
.commercial-page .lc-feature-btn:focus-visible {
  color: #fff;
  background: var(--c-coral);
}

.commercial-page .lc-feature-icon {
  width: clamp(26px, 3.4vmin, 32px);
  height: clamp(26px, 3.4vmin, 32px);
}

.commercial-page .lc-feature-name {
  color: rgba(255, 255, 255, 0.78);
  max-width: 110px;
  font-size: var(--c-type-small);
  text-shadow:
    0 1px 8px rgba(9, 12, 20, 0.98),
    0 0 14px rgba(9, 12, 20, 0.95);
}

.commercial-page .lc-node.is-hovered .lc-feature-name,
.commercial-page .lc-node.is-spot .lc-feature-name,
.commercial-page .lc-feature-btn:hover:not(:disabled) + .lc-feature-name,
.commercial-page .lc-feature-btn:focus-visible + .lc-feature-name {
  color: var(--c-coral-light);
}

.commercial-page .lc-veil {
  background: rgba(4, 6, 11, 0.62);
}

.commercial-page .lc-fallback-lead {
  color: var(--c-text);
}

.commercial-page .lc-fallback-list li {
  border-color: var(--c-line);
  color: var(--c-muted);
  background: rgba(255, 255, 255, 0.04);
}

/* O painel de detalhes é filho de <html>, fora de body.commercial-page: os
   tokens --c-* não chegam aqui, então os valores vão literais.
   Só a moldura escurece — os prints continuam sobre fundo claro. */
.lc-panel {
  --c-line-lit: rgba(255, 255, 255, 0.12);

  border-color: var(--c-line-lit);
  color: #f7f5f2;
  background:
    radial-gradient(circle at 12% 0%, rgba(253, 91, 59, 0.08), transparent 30rem),
    #0f1421;
  box-shadow: -24px 0 72px rgba(0, 0, 0, 0.45);
}

.lc-panel .lc-scroll {
  scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.lc-panel .lc-close {
  border-color: var(--c-line-lit);
  color: #f7f5f2;
  background: rgba(255, 255, 255, 0.06);
}

.lc-panel .lc-close:hover {
  color: #fff;
  background: #fd5b3b;
}

.lc-panel .lc-kicker,
.lc-panel .lc-desc,
.lc-panel .lc-caption,
.lc-panel .lc-related > span {
  color: #aab1bf;
}

.lc-panel .lc-panel-name,
.lc-panel .lc-panel-lead {
  color: #f7f5f2;
}

.lc-panel .lc-icon {
  border-color: rgba(253, 91, 59, 0.34);
  color: #ff8b74;
  background: rgba(253, 91, 59, 0.12);
}

.lc-panel .lc-rule {
  background: linear-gradient(to right, #fd5b3b 0 48px, rgba(255, 255, 255, 0.14) 48px);
}

.lc-panel .lc-related > div span {
  border-color: var(--c-line-lit);
  color: #f7f5f2;
  background: rgba(255, 255, 255, 0.05);
}

/* A moldura do print continua clara: os screenshots são de UI clara e um
   fundo escuro ao redor deixaria a borda com halo. */
.lc-panel .lc-carousel {
  border-color: var(--c-line-lit);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lc-panel .lc-arrow {
  border-color: rgba(9, 12, 20, 0.18);
}

.lc-panel .lc-back {
  color: #fff;
}

/* ---------- 07 · diferencial ---------- */

.difference-section {
  /* As três colunas são compartilhadas pelos rótulos, pelas linhas e pelo
     detalhe: é isso que mantém o trilho vertical exatamente no centro. */
  --difference-columns: minmax(0, 1fr) clamp(112px, 13vw, 200px) minmax(0, 1fr);
  background:
    radial-gradient(circle at 100% 0%, rgba(253, 91, 59, 0.1), transparent 32rem),
    var(--c-bg-raised);
}

/* ---- chave de estado: o mesmo quadro lido de dois jeitos ---- */

.difference-switch {
  display: flex;
  margin-bottom: clamp(1.4rem, 2.6vw, 2.1rem);
  align-items: center;
  gap: 1rem 1.6rem;
  flex-wrap: wrap;
}

.difference-toggle {
  position: relative;
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(9, 12, 20, 0.6);
  gap: 4px;
  flex: none;
}

.difference-toggle span {
  position: relative;
  display: inline-flex;
}

.difference-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.difference-toggle label {
  display: inline-flex;
  min-height: 42px;
  padding-inline: 1.15rem;
  border-radius: 999px;
  color: var(--c-muted);
  font-size: var(--c-type-small);
  font-weight: 600;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.difference-toggle label:hover {
  color: var(--c-text);
}

.difference-toggle input:checked + label {
  color: #fff;
  background: linear-gradient(135deg, var(--c-coral), #e8431f);
  box-shadow: 0 10px 26px rgba(253, 91, 59, 0.26);
}

.difference-toggle input:focus-visible + label {
  outline: 3px solid var(--c-coral-light);
  outline-offset: 3px;
}

.difference-switch-note {
  max-width: 640px;
  color: var(--c-muted);
  font-size: var(--c-type-lead);
  flex: 1 1 320px;
}

.difference-note-today {
  display: none;
}

.difference-labels {
  display: grid;
  padding: 0 1.4rem 0.75rem;
  color: var(--c-muted);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  grid-template-columns: var(--difference-columns);
  text-transform: uppercase;
  transition: color 320ms ease;
}

/* Acompanha o recuo do marcador em .difference-before. */
.difference-labels span:first-child {
  padding-left: 1.1rem;
}

.difference-labels span:last-child {
  color: var(--c-coral-light);
  grid-column: 3;
  transition: color 320ms ease, opacity 320ms ease;
}

.difference-list {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--c-radius);
}

/* Trilho vertical: costura as seis migrações em um único caminho. */
.difference-list::before,
.difference-list::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 1px;
  content: "";
  pointer-events: none;
}

.difference-list::before {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(253, 91, 59, 0.26) 8%,
    rgba(253, 91, 59, 0.26) 92%,
    transparent
  );
  transform: translateX(-50%);
}

/* Preenchimento do trilho conforme a seção passa pela viewport. */
.difference-list::after {
  background: linear-gradient(180deg, #ff7a4d, rgba(253, 91, 59, 0.35));
  box-shadow: 0 0 10px rgba(253, 91, 59, 0.55);
  transform: translateX(-50%) scaleY(var(--flow-progress, 0));
  transform-origin: 50% 0;
  transition: opacity 320ms ease;
}

/* Cada linha é um <details>: o cabeçalho mantém a migração e o corpo abre o
   que muda na prática. */
.difference-row {
  position: relative;
  border-bottom: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.025);
  transition: background 320ms ease;
}

.difference-row:last-child {
  border-bottom: 0;
}

.difference-row.is-live {
  background: rgba(253, 91, 59, 0.05);
}

.difference-row[open] {
  background: rgba(253, 91, 59, 0.07);
}

.difference-head {
  position: relative;
  display: grid;
  min-height: 94px;
  padding: 1.25rem 1.4rem;
  grid-template-columns: var(--difference-columns);
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.difference-head::-webkit-details-marker {
  display: none;
}

/* Marcador da esquerda no bloco de padding, para não empurrar o texto. */
.difference-head::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 0;
  border-radius: 0 3px 3px 0;
  background: var(--c-coral);
  box-shadow: 0 0 14px rgba(253, 91, 59, 0.6);
  transform: translateY(-50%);
  transition: height 340ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
  pointer-events: none;
}

.difference-row.is-live .difference-head::before,
.difference-row:hover .difference-head::before {
  height: 62%;
}

/* Colunas explícitas: o "O" da marca divide a célula do conector com o
   trilho, então nada pode depender do posicionamento automático. */
.difference-before,
.difference-after {
  display: grid;
  gap: 0.28rem;
  grid-row: 1;
  transition: opacity 320ms ease, filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.difference-before {
  position: relative;
  padding-left: 1.1rem;
  grid-column: 1;
}

.difference-before b {
  color: var(--c-muted-strong);
  font-size: var(--c-type-lead);
  font-weight: 600;
}

.difference-before em {
  color: var(--c-muted);
  font-size: var(--c-type-small);
  font-style: normal;
  line-height: 1.45;
  opacity: 0.76;
}

/* O improviso recua quando a linha acende: ponto apagado e texto mais baixo. */
.difference-before::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.26);
  transition: background 320ms ease, transform 320ms ease;
  content: "";
}

.difference-row.is-live .difference-before,
.difference-row:hover .difference-before {
  opacity: 0.6;
}

.difference-row.is-live .difference-before::before,
.difference-row:hover .difference-before::before {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(0.72);
}

.difference-after {
  padding-right: 2.5rem;
  grid-column: 3;
}

.difference-after b {
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-lead);
  font-weight: 600;
  transition: color 320ms ease, text-shadow 320ms ease;
}

.difference-modules {
  color: var(--c-coral-light);
  font-size: var(--c-type-micro);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 320ms ease;
}

.difference-row.is-live .difference-after b,
.difference-row:hover .difference-after b {
  color: #fff;
  text-shadow: 0 0 18px rgba(253, 91, 59, 0.45);
}

/* ---- conector: trilho horizontal + spark viajando ---- */

.difference-link {
  display: flex;
  padding-inline: 0.55rem;
  grid-row: 1;
  grid-column: 2;
  align-items: center;
  gap: 0.35rem;
}

.difference-rail {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(253, 91, 59, 0.14), rgba(253, 91, 59, 0.72));
  opacity: 0.7;
  flex: 1;
  transition: opacity 320ms ease, box-shadow 320ms ease, background 320ms ease;
}

.difference-row.is-live .difference-rail,
.difference-row:hover .difference-rail {
  opacity: 1;
  box-shadow: 0 0 12px rgba(253, 91, 59, 0.55);
}

/* O spark tem a largura do trilho e é recortado por ele: a cabeça luminosa
   fica na borda direita, então translateX(-100% → 0) atravessa o caminho
   inteiro sem depender de medidas em pixel. */
.difference-spark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 196, 0) 52%,
    rgba(255, 214, 196, 0.5) 82%,
    #ffe8db 100%
  );
  opacity: 0;
  animation: difference-spark-travel 4.4s cubic-bezier(0.45, 0, 0.3, 1) infinite;
  animation-delay: var(--flow-delay, 0ms);
}

.difference-row.is-live .difference-spark,
.difference-row:hover .difference-spark {
  animation-duration: 1.9s;
  animation-delay: 0ms;
}

@keyframes difference-spark-travel {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }

  8%,
  58% {
    opacity: 1;
  }

  70%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}

/* Mesma viagem, no eixo vertical do layout empilhado. */
@keyframes difference-spark-travel-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  8%,
  58% {
    opacity: 1;
  }

  70%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.difference-arrow {
  color: var(--c-coral);
  font-size: var(--c-type-card);
  line-height: 1;
  flex: none;
  transition: color 320ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.difference-row.is-live .difference-arrow,
.difference-row:hover .difference-arrow {
  color: #ffb59c;
  transform: translateX(3px);
}

/* ---- sinal de abrir e detalhe da linha ---- */

.difference-more {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid var(--c-line-strong);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: border-color 240ms ease, background 240ms ease;
}

.difference-more::before,
.difference-more::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-muted-strong);
  transform: translate(-50%, -50%);
  content: "";
}

.difference-more::before {
  width: 9px;
  height: 1px;
}

.difference-more::after {
  width: 1px;
  height: 9px;
  transition: opacity 240ms ease, transform 320ms ease;
}

.difference-head:hover .difference-more {
  border-color: rgba(253, 91, 59, 0.5);
  background: rgba(253, 91, 59, 0.1);
}

.difference-row[open] .difference-more {
  border-color: rgba(253, 91, 59, 0.62);
  background: rgba(253, 91, 59, 0.16);
}

.difference-row[open] .difference-more::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* O detalhe nasce alinhado à coluna "Com a Lero": é a consequência dela. */
.difference-detail {
  display: grid;
  padding: 0 1.4rem 1.4rem;
  grid-template-columns: var(--difference-columns);
  animation: difference-detail-in 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes difference-detail-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.difference-detail p {
  padding-right: 2.5rem;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(253, 91, 59, 0.42);
  color: var(--c-muted);
  font-size: var(--c-type-lead);
  line-height: 1.6;
  grid-column: 3;
  transition: opacity 320ms ease, filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- o "O" da marca revela o depois, uma linha por vez ---- */

/* O sprite só existe para o <use>: não ocupa espaço nem entra na leitura. */
.difference-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* O botão divide a célula do conector com o trilho: fica sobre a linha, como
   uma estação no caminho. Some no cenário "Com a Lero", onde não há o que
   revelar — e com ele saem o foco e a leitura de teclado. */
.difference-reveal {
  position: relative;
  z-index: 2;
  display: none;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border: 1px solid rgba(253, 91, 59, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 26%, rgba(253, 91, 59, 0.24), transparent 68%),
    rgba(11, 15, 25, 0.94);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
  grid-row: 1;
  grid-column: 2;
  place-self: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.difference-reveal-glyph {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--c-coral);
  transition: color 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.difference-reveal-glyph svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* A palavra nasce embaixo do "O" e não desloca a linha: é sempre absoluta. */
.difference-reveal-hint {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  color: var(--c-coral-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, -4px);
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.difference-reveal-hint em,
.difference-reveal-hint i {
  font-style: normal;
}

.difference-reveal-hint i,
.difference-row.is-revealed .difference-reveal-hint em {
  display: none;
}

.difference-row.is-revealed .difference-reveal-hint i {
  display: inline;
}

.difference-reveal:hover,
.difference-reveal:focus-visible {
  border-color: rgba(253, 91, 59, 0.9);
  background:
    radial-gradient(circle at 50% 26%, rgba(253, 91, 59, 0.42), transparent 70%),
    rgba(11, 15, 25, 0.96);
  box-shadow: 0 0 24px rgba(253, 91, 59, 0.45), 0 8px 22px rgba(0, 0, 0, 0.42);
  transform: scale(1.09);
}

.difference-reveal:hover .difference-reveal-glyph,
.difference-reveal:focus-visible .difference-reveal-glyph {
  color: #ffb59c;
}

.difference-reveal:hover .difference-reveal-hint,
.difference-reveal:focus-visible .difference-reveal-hint {
  opacity: 1;
  transform: translate(-50%, 0);
}

.difference-reveal:focus-visible {
  outline: 3px solid var(--c-coral-light);
  outline-offset: 3px;
}

.difference-row.is-revealed .difference-reveal {
  border-color: rgba(253, 91, 59, 0.92);
  background:
    radial-gradient(circle at 50% 26%, rgba(253, 91, 59, 0.5), transparent 72%),
    rgba(11, 15, 25, 0.96);
  box-shadow: 0 0 26px rgba(253, 91, 59, 0.48), 0 8px 22px rgba(0, 0, 0, 0.42);
}

.difference-row.is-revealed .difference-reveal-glyph {
  color: #ffd0c0;
}

/* ---- estado "Como é hoje": o depois recua e o improviso fica no palco ---- */

.difference-section:has(#difference-view-today:checked) .difference-note-today {
  display: inline;
}

.difference-section:has(#difference-view-today:checked) .difference-note-lero {
  display: none;
}

.difference-section:has(#difference-view-today:checked) .difference-labels span:first-child {
  color: var(--c-text);
}

.difference-section:has(#difference-view-today:checked) .difference-labels span:last-child {
  color: var(--c-muted);
  opacity: 0.45;
}

.difference-section:has(#difference-view-today:checked) .difference-before,
.difference-section:has(#difference-view-today:checked) .difference-row:hover .difference-before {
  opacity: 1;
}

.difference-section:has(#difference-view-today:checked) .difference-before b {
  color: var(--c-text);
}

.difference-section:has(#difference-view-today:checked) .difference-before em {
  color: #ff9d84;
  opacity: 1;
}

.difference-section:has(#difference-view-today:checked) .difference-before::before,
.difference-section:has(#difference-view-today:checked)
  .difference-row:hover
  .difference-before::before {
  background: rgba(253, 91, 59, 0.78);
  box-shadow: 0 0 12px rgba(253, 91, 59, 0.5);
  transform: none;
}

.difference-section:has(#difference-view-today:checked) .difference-after {
  opacity: 0.4;
}

.difference-section:has(#difference-view-today:checked) .difference-reveal {
  display: inline-flex;
}

/* Sem JS o botão não revela nada, então o borrão também não existe: a
   comparação continua legível dos dois lados. */
.js .difference-section:has(#difference-view-today:checked) .difference-row:not(.is-revealed) .difference-after,
.js
  .difference-section:has(#difference-view-today:checked)
  .difference-row:not(.is-revealed)
  .difference-detail p {
  opacity: 0.32;
  filter: blur(6px);
  user-select: none;
}

/* Revelada, a linha volta ao contraste cheio — mesmo no cenário do improviso. */
.difference-section:has(#difference-view-today:checked) .difference-row.is-revealed .difference-after {
  opacity: 1;
}

.difference-section:has(#difference-view-today:checked)
  .difference-row.is-revealed
  .difference-after b {
  color: var(--c-text);
}

.difference-section:has(#difference-view-today:checked)
  .difference-row.is-revealed
  .difference-modules {
  opacity: 0.9;
}

.difference-section:has(#difference-view-today:checked) .difference-row.is-revealed .difference-rail {
  background: linear-gradient(90deg, rgba(253, 91, 59, 0.14), rgba(253, 91, 59, 0.72));
  opacity: 0.9;
}

.difference-section:has(#difference-view-today:checked) .difference-row.is-revealed .difference-arrow {
  color: var(--c-coral);
}

.difference-section:has(#difference-view-today:checked) .difference-after b,
.difference-section:has(#difference-view-today:checked) .difference-row:hover .difference-after b {
  color: var(--c-muted-strong);
  text-shadow: none;
}

.difference-section:has(#difference-view-today:checked) .difference-modules {
  opacity: 0.5;
}

.difference-section:has(#difference-view-today:checked) .difference-rail,
.difference-section:has(#difference-view-today:checked) .difference-row:hover .difference-rail {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.18));
  box-shadow: none;
  opacity: 0.55;
}

.difference-section:has(#difference-view-today:checked) .difference-spark {
  opacity: 0;
  animation: none;
}

.difference-section:has(#difference-view-today:checked) .difference-arrow,
.difference-section:has(#difference-view-today:checked) .difference-row:hover .difference-arrow {
  color: rgba(255, 255, 255, 0.28);
  transform: none;
}

.difference-section:has(#difference-view-today:checked) .difference-head::before,
.difference-section:has(#difference-view-today:checked)
  .difference-row.is-live
  .difference-head::before {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.difference-section:has(#difference-view-today:checked) .difference-row.is-live {
  background: rgba(255, 255, 255, 0.035);
}

.difference-section:has(#difference-view-today:checked) .difference-list::after {
  opacity: 0.2;
}

.difference-close {
  display: block;
  width: min(100%, 1120px);
  margin: clamp(4.5rem, 8vw, 7rem) auto 0;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-title);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.16;
  text-align: center;
  text-wrap: pretty;
}

.difference-close span {
  color: var(--c-coral-light);
}

/* ---------- 08 · planos ---------- */

.pricing-section {
  background:
    radial-gradient(circle at 84% 14%, rgba(253, 91, 59, 0.08), transparent 28rem),
    var(--c-bg);
}

.pricing-toolbar {
  align-items: center;
  margin-bottom: 1rem;
}

.pricing-toolbar-label {
  color: var(--c-muted-strong);
  font-size: var(--c-type-small);
  font-weight: 600;
}

.commercial-page .pricing-section .term-selector {
  border-color: var(--c-line-strong);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(12, 17, 29, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 16px 45px rgba(0, 0, 0, 0.18);
}

.commercial-page .pricing-section .term-option label {
  min-height: 46px;
  color: var(--c-muted-strong);
  font-size: var(--c-type-small);
}

.commercial-page .pricing-section .term-option label small {
  color: var(--c-coral-light);
  font-size: var(--c-type-label);
}

.commercial-page .pricing-section .term-option input:checked + label {
  color: var(--c-text);
  background: rgba(253, 91, 59, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(253, 91, 59, 0.48),
    0 7px 24px rgba(253, 91, 59, 0.08);
}

.commercial-page .pricing-section .term-option input:checked + label small {
  color: var(--c-coral-light);
}

.commercial-page .pricing-section .term-option input:focus-visible + label {
  outline-color: var(--c-coral-light);
}

.commercial-page .pricing-section .pricing-context {
  margin-bottom: 2rem;
  color: var(--c-muted);
  font-size: var(--c-type-small);
}

.commercial-v2-plan-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.commercial-page .pricing-section .plan-card {
  min-height: 315px;
  border-color: var(--c-line);
  color: var(--c-muted);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.075), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 62%),
    rgba(12, 17, 29, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 70px rgba(0, 0, 0, 0.24);
}

.commercial-page .pricing-section .plan-card-featured {
  border-color: rgba(253, 91, 59, 0.76);
  background:
    radial-gradient(circle at 100% 0%, rgba(253, 91, 59, 0.16), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 62%),
    rgba(15, 21, 34, 0.92);
  box-shadow:
    0 0 0 6px rgba(253, 91, 59, 0.07),
    0 26px 76px rgba(0, 0, 0, 0.28);
}

.commercial-page .pricing-section .plan-card-top h3 {
  color: var(--c-text);
  font-size: var(--c-type-card);
}

.commercial-page .pricing-section .badge {
  color: var(--c-coral-light);
  background: rgba(253, 91, 59, 0.13);
  font-size: var(--c-type-label);
}

.commercial-page .pricing-section .plan-note,
.commercial-page .pricing-section .plan-installments,
.commercial-page .pricing-section .plan-contract {
  color: var(--c-muted);
  font-size: var(--c-type-small);
}

.commercial-page .pricing-section .plan-price strong {
  color: var(--c-text);
  font-size: var(--c-type-title);
}

/* O "R$" herdava 1.15rem do site.css e ficava fora da escala desta página. */
.commercial-page .pricing-section .plan-price .plan-cur {
  color: var(--c-coral-light);
  font-size: var(--c-type-card);
}

.commercial-page .button {
  font-size: var(--c-type-small);
}

.commercial-page .pricing-section .plan-capacity {
  border-top-color: var(--c-line);
}

.commercial-page .pricing-section .plan-capacity dt {
  color: var(--c-muted);
  font-size: var(--c-type-label);
}

.commercial-page .pricing-section .plan-capacity dd {
  color: var(--c-text);
  font-size: var(--c-type-body);
}

.commercial-page .commercial-ultra-band {
  margin-top: clamp(1.4rem, 3vw, 2rem);
  border-color: rgba(253, 91, 59, 0.72);
  color: var(--c-muted);
  background:
    radial-gradient(circle at 88% 10%, rgba(253, 91, 59, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 62%),
    rgba(12, 17, 29, 0.88);
  box-shadow:
    0 0 0 6px rgba(253, 91, 59, 0.06),
    0 26px 76px rgba(0, 0, 0, 0.24);
}

.commercial-page .commercial-ultra-band > div:first-child {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  column-gap: 0.9rem;
  row-gap: 0.35rem;
}

.commercial-page .commercial-ultra-band .commercial-eyebrow {
  margin: 0;
  font-size: var(--c-type-lead);
}

.commercial-page .commercial-ultra-band h3 {
  margin-block: 0;
  color: var(--c-text);
  font-size: var(--c-type-title);
}

.commercial-page .commercial-ultra-band > div:first-child > p:last-child {
  flex-basis: 100%;
  font-size: var(--c-type-lead);
}

.commercial-page .commercial-ultra-band .ultra-action strong {
  color: var(--c-text);
  font-size: var(--c-type-card);
}

.commercial-page .commercial-ultra-band {
  justify-content: center;
  text-align: center;
}

.commercial-page .commercial-ultra-band > div:first-child {
  max-width: 62ch;
  margin-inline: auto;
}

.pricing-notes {
  display: grid;
  margin-top: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius-small);
  background: rgba(255, 255, 255, 0.02);
  gap: 0.55rem;
}

.pricing-notes p {
  color: var(--c-muted);
  font-size: var(--c-type-small);
}

.pricing-notes strong {
  color: var(--c-text);
}

/* ---------- 09 · onboarding ---------- */

.onboarding-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(80, 111, 183, 0.09), transparent 26rem),
    var(--c-bg-raised);
}

.commercial-onboarding-grid {
  align-items: stretch;
}

.commercial-page .commercial-onboarding-grid .onboarding-card {
  display: flex;
  min-width: 0;
  border-color: var(--c-line);
  color: var(--c-muted);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.075), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 62%),
    rgba(12, 17, 29, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 70px rgba(0, 0, 0, 0.23);
  flex-direction: column;
}

.commercial-page .commercial-onboarding-grid .onboarding-card > span {
  color: var(--c-coral-light);
  font-size: var(--c-type-label);
}

.commercial-page .commercial-onboarding-grid .onboarding-card h3 {
  color: var(--c-text);
  font-size: var(--c-type-card);
}

.commercial-page .commercial-onboarding-grid .onboarding-card > strong {
  color: var(--c-text);
  font-size: var(--c-type-title);
}

.commercial-page .commercial-onboarding-grid .onboarding-card .single {
  min-height: 3.2em;
  color: var(--c-muted);
  font-size: var(--c-type-small);
}

.commercial-page .commercial-onboarding-grid .onboarding-rule {
  min-height: 6.2em;
  color: var(--c-muted-strong);
  background: rgba(253, 91, 59, 0.08);
  font-size: var(--c-type-small);
}

/* Sem margin-top:auto: com um card aberto, o auto empurrava o summary dos
   cards fechados para o rodapé da linha e desalinhava os toggles. */
.onboarding-detail {
  margin-top: 1.2rem;
  padding-top: 0;
}

.onboarding-detail summary,
.onboarding-wide-detail summary {
  display: flex;
  min-height: 50px;
  padding: 0.78rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--c-type-small);
  font-weight: 600;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.onboarding-detail summary::-webkit-details-marker,
.onboarding-wide-detail summary::-webkit-details-marker {
  display: none;
}

.onboarding-detail summary::after,
.onboarding-wide-detail summary::after {
  color: var(--c-coral-light);
  content: "+";
  font-size: var(--c-type-lead);
  transition: transform 180ms ease;
}

.onboarding-detail[open] summary::after,
.onboarding-wide-detail[open] summary::after {
  transform: rotate(45deg);
}

.onboarding-detail > div,
.onboarding-wide-detail > div {
  display: grid;
  padding: 1.15rem 0.25rem 0.2rem;
  color: var(--c-muted);
  font-size: var(--c-type-small);
  gap: 0.85rem;
}

.onboarding-detail h4 {
  margin: 0.4rem 0 0;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-body);
  letter-spacing: -0.015em;
}

.onboarding-detail ul {
  display: grid;
  padding-left: 1.2rem;
  gap: 0.45rem;
}

/* .onboarding-card strong (site.css) é display:block/1.9rem — dentro do
   detalhe o "Não inclui:" precisa voltar a ser texto corrido. */
.onboarding-detail strong,
.onboarding-wide-detail strong {
  display: inline;
  margin-top: 0;
  color: var(--c-text);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
}

.onboarding-facts {
  display: grid;
  margin-top: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  background: rgba(255, 255, 255, 0.02);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.onboarding-facts article {
  display: grid;
  min-width: 0;
  min-height: 145px;
  padding: 1.25rem;
  border-right: 1px solid var(--c-line);
  align-content: space-between;
  gap: 1rem;
}

.onboarding-facts article:last-child {
  border-right: 0;
}

.onboarding-facts strong {
  color: var(--c-coral-light);
  font-family: var(--font-display);
  font-size: var(--c-type-body);
}

.onboarding-facts span {
  color: var(--c-muted);
  font-size: var(--c-type-small);
  line-height: 1.55;
}

.onboarding-plan-note {
  margin-top: 0.9rem !important;
  color: var(--c-muted);
  font-size: var(--c-type-small);
}

.onboarding-secondary {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.onboarding-wide-detail {
  min-width: 0;
  padding: 0.5rem;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius-small);
  background: rgba(255, 255, 255, 0.025);
}

.onboarding-wide-detail > div {
  padding: 1rem;
}

.additional-services {
  display: grid;
  border-top: 1px solid var(--c-line);
}

.additional-services > div {
  display: grid;
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--c-line);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
}

.additional-services dt {
  color: var(--c-muted);
}

.additional-services dd {
  color: var(--c-text);
  font-family: var(--font-display);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ---------- 10 · objeções ---------- */

.objections-section {
  background: var(--c-bg-raised);
}

/* Console de objeções: a resposta curta fica sempre à vista e o detalhe abre
   sob demanda — o closer conduz sem uma parede de texto na tela. */

.objections-console {
  overflow: hidden;
  border: 1px solid var(--c-line-strong);
  border-radius: var(--c-radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), transparent 58%),
    rgba(12, 17, 29, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 84px rgba(0, 0, 0, 0.26);
}

.objections-console-head {
  display: flex;
  padding: 0.95rem clamp(1.1rem, 2.2vw, 1.8rem);
  border-bottom: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  flex-wrap: wrap;
}

.objections-console-title {
  color: var(--c-muted-strong);
  font-size: var(--c-type-small);
  font-weight: 600;
}

.objections-console-title strong {
  margin-right: 0.35rem;
  color: var(--c-coral-light);
  font-family: var(--font-display);
  font-size: var(--c-type-lead);
  font-weight: 700;
}

.objections-console-note {
  color: var(--c-muted);
  font-size: var(--c-type-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.objections-console-note i {
  padding-inline: 0.3rem;
  color: var(--c-coral);
  font-style: normal;
}

.objections-list {
  display: grid;
}

.objection-item {
  border-bottom: 1px solid var(--c-line);
  transition: background 260ms ease;
}

.objection-item:last-child {
  border-bottom: 0;
}

.objection-item:hover:not([open]) {
  background: rgba(255, 255, 255, 0.022);
}

.objection-item[open] {
  background: rgba(253, 91, 59, 0.05);
}

.objection-item > summary {
  position: relative;
  display: grid;
  padding: 1.2rem clamp(1.1rem, 2.2vw, 1.8rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0.4rem 1.4rem;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.objection-item > summary::-webkit-details-marker {
  display: none;
}

.objection-question {
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-card);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.objection-short {
  padding-right: 2.6rem;
  color: var(--c-muted);
  font-size: var(--c-type-lead);
  line-height: 1.5;
}

.objection-short b {
  color: var(--c-coral-light);
  font-weight: 700;
}

/* Mesmo sinal das linhas do diferencial, para a página falar uma língua só. */
.objection-sign {
  position: absolute;
  top: 50%;
  right: clamp(1.1rem, 2.2vw, 1.8rem);
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--c-line-strong);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: border-color 240ms ease, background 240ms ease;
}

.objection-sign::before,
.objection-sign::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-muted-strong);
  transform: translate(-50%, -50%);
  content: "";
}

.objection-sign::before {
  width: 9px;
  height: 1px;
}

.objection-sign::after {
  width: 1px;
  height: 9px;
  transition: opacity 240ms ease, transform 320ms ease;
}

.objection-item > summary:hover .objection-sign {
  border-color: rgba(253, 91, 59, 0.5);
  background: rgba(253, 91, 59, 0.1);
}

.objection-item[open] .objection-sign {
  border-color: rgba(253, 91, 59, 0.62);
  background: rgba(253, 91, 59, 0.16);
}

.objection-item[open] .objection-sign::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.objection-detail {
  display: grid;
  padding: 0 clamp(1.1rem, 2.2vw, 1.8rem) 1.6rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.4rem;
  animation: objection-detail-in 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes objection-detail-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.objection-detail p {
  padding-left: 0.95rem;
  border-left: 2px solid rgba(253, 91, 59, 0.4);
  color: var(--c-muted);
  font-size: var(--c-type-lead);
  line-height: 1.65;
  grid-column: 1;
}

.objection-proof {
  display: grid;
  padding: 0;
  padding-right: 2.6rem;
  gap: 0.6rem;
  align-content: start;
  list-style: none;
  grid-column: 2;
}

.objection-proof li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--c-muted-strong);
  font-size: var(--c-type-lead);
  line-height: 1.45;
}

.objection-proof li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid rgba(84, 214, 155, 0.42);
  border-radius: 50%;
  color: var(--c-green);
  font-size: 0.62rem;
  place-items: center;
  content: "✓";
}

/* ---------- 11 · risco ---------- */

.risk-section {
  padding-block: clamp(4rem, 7vw, 6.5rem);
  background:
    radial-gradient(circle at 50% 100%, rgba(253, 91, 59, 0.12), transparent 36rem),
    var(--c-bg);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.risk-card {
  min-height: 220px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  background: rgba(255, 255, 255, 0.025);
}

.risk-card > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(253, 91, 59, 0.36);
  border-radius: 50%;
  color: var(--c-coral);
  font-size: var(--c-type-label);
  font-weight: 700;
  place-items: center;
}

.risk-card h3 {
  margin-bottom: 0.75rem;
}

.risk-card p {
  color: var(--c-muted);
  font-size: var(--c-type-body);
}

/* ---------- 12 · CTA ---------- */

.commercial-cta {
  position: relative;
  display: flex;
  min-height: min(92svh, 900px);
  padding-block: clamp(6rem, 12vw, 11rem);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(253, 91, 59, 0.98), #e74929 58%, #c9371b);
  isolation: isolate;
  align-items: center;
}

.commercial-cta::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000, transparent 74%);
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 74%);
  content: "";
}

.commercial-cta-glow {
  position: absolute;
  right: -16rem;
  bottom: -18rem;
  z-index: -1;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.commercial-cta-glow::before,
.commercial-cta-glow::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.commercial-cta-glow::before {
  inset: 6rem;
}

.commercial-cta-glow::after {
  inset: 13rem;
}

.cta-content {
  display: grid;
  max-width: 980px;
  gap: 1.5rem;
  justify-items: start;
}

.cta-content > img {
  width: 116px;
  height: auto;
  margin-bottom: clamp(1.4rem, 3vw, 2.6rem);
  filter: brightness(0) invert(1);
}

.cta-content .commercial-eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.cta-content .commercial-eyebrow > span {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.cta-content h2 {
  max-width: 900px;
  color: #fff;
  font-size: var(--c-type-display);
  line-height: 0.94;
}

.cta-content > p:not(.commercial-eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--c-type-lead);
}

.commercial-cta-button {
  display: inline-flex;
  min-height: 58px;
  margin-top: 0.8rem;
  padding: 0.9rem 1rem 0.9rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff !important;
  background: #111625;
  box-shadow: 0 18px 55px rgba(75, 10, 0, 0.3);
  font-family: var(--font-display);
  font-size: var(--c-type-body);
  font-weight: 700;
  align-items: center;
  gap: 1rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.commercial-cta-button:hover {
  background: #070a11;
  transform: translateY(-2px);
}

.commercial-cta-button span {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #111625;
  background: #fff;
  font-size: var(--c-type-body);
  place-items: center;
}

.cta-content small {
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--c-type-small);
  letter-spacing: 0.05em;
}

/* Rodapé dentro do bloco laranja (mesma moldura do CTA). */
.cta-footer {
  max-width: var(--c-container, 1240px);
  gap: clamp(2.5rem, 5vw, 4rem);
  justify-items: stretch;
}

.cta-footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.cta-footer-brand > a {
  display: inline-block;
}

.cta-footer-brand img {
  width: 116px;
  height: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.cta-footer h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--c-type-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cta-footer p,
.cta-footer address {
  max-width: 34ch;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--c-type-body);
  font-style: normal;
  line-height: 1.5;
}

.cta-footer a:not(.cta-footer-brand > a) {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--c-type-body);
  text-decoration: none;
  transition: color 160ms ease;
}

.cta-footer a:not(.cta-footer-brand > a):hover {
  color: #fff;
  text-decoration: underline;
}

.cta-footer-social {
  display: flex;
  margin-top: 1.1rem;
  flex-wrap: wrap;
  gap: 0 1rem;
}

.cta-footer-social a {
  margin-bottom: 0.35rem;
}

.cta-footer > small {
  padding-top: clamp(1.5rem, 3vw, 2.2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.commercial-footer {
  padding-block: 1.25rem;
  border-top: 1px solid var(--c-line);
  color: rgba(255, 255, 255, 0.4);
  background: #06080d;
  font-size: var(--c-type-small);
}

.commercial-footer .commercial-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* ---------- motion ---------- */

.js .commercial-page .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .commercial-page .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.js .commercial-page .reveal.in.liquid-glass.liquid-tilt {
  transition:
    opacity 620ms ease,
    border-color 220ms ease,
    box-shadow 300ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  transform:
    perspective(1200px)
    translate3d(0, calc(var(--glass-base-y, 0px) + var(--glass-lift)), 0)
    rotateX(var(--glass-tilt-x))
    rotateY(var(--glass-tilt-y));
}

/* ---------- responsivo ---------- */

/* O palco sticky precisa de duas colunas largas; abaixo disso a cena vira
   uma coluna e o print sobe para o topo, como prova de abertura. */
@media (max-width: 1040px) {
  .modules-section .commercial-section-head {
    margin-left: 0;
  }

  .gargalo-scene {
    width: auto;
    margin-inline: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.8rem, 4vw, 2.6rem);
  }

  .gargalo-stage {
    position: static;
    order: -1;
  }

  /* Empilhado, a amostra abre a seção: ocupa a coluna inteira e aparece
     praticamente no tamanho nativo, sem a faixa vazia à direita. */
  .gargalo-shots {
    max-width: none;
  }

  .objection-item > summary,
  .objection-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .objection-item > summary {
    padding-right: 3.4rem;
    gap: 0.55rem;
  }

  .objection-short {
    padding-right: 0;
  }

  .objection-detail {
    gap: 1.1rem;
  }

  .objection-detail p,
  .objection-proof {
    padding-right: 0;
    grid-column: 1;
  }

  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authority-grid {
    grid-template-columns: 1fr;
  }

  .authority-proof {
    max-width: 680px;
  }

  .onboarding-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .onboarding-facts article:nth-child(2) {
    border-right: 0;
  }

  .onboarding-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--c-line);
  }
}

@media (max-width: 820px) {
  .diagnostic-grid {
    grid-template-columns: 1fr;
  }

  .gargalo-steps {
    gap: 2.6rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid::before {
    top: 38px;
    bottom: 38px;
    left: 54px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, var(--c-coral), transparent);
  }

  .process-card {
    min-height: 250px;
  }

  .risk-grid {
    grid-template-columns: 1fr;
  }

  .onboarding-secondary {
    grid-template-columns: 1fr;
  }

  .risk-card {
    min-height: 230px;
  }

  .risk-card > span {
    margin-bottom: 1.75rem;
  }

  .commercial-page .lc-shell {
    height: clamp(650px, 86vh, 850px);
  }

  .cta-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  /* Aqui o `zoom` volta a 1, então estes valores já são o tamanho final em
     tela — não levam a compensação de 0.8 da escala do desktop. A escala
     inteira é redeclarada junta para os degraus não se cruzarem. */
  body.commercial-page {
    --c-type-display: clamp(2.4rem, 10vw, 3rem);
    --c-type-section: clamp(1.9rem, 7.7vw, 2.5rem);
    --c-type-title: clamp(1.45rem, 6.2vw, 1.9rem);
    --c-type-card: clamp(1.2rem, 5vw, 1.45rem);
    --c-type-lead: 1.06rem;
    --c-type-body: 1rem;
    --c-type-small: 1.05rem;
    --c-type-micro: 0.88rem;
    --c-type-label: 0.92rem;
    zoom: 1 !important;
  }

  .commercial-container {
    width: min(100% - 32px, var(--c-container));
  }

  .commercial-section {
    padding-block: 5rem;
  }

  .commercial-section-head {
    margin-bottom: 2.6rem;
  }

  .commercial-eyebrow {
    font-size: var(--c-type-label);
    letter-spacing: 0.12em;
  }

  .commercial-hero {
    min-height: auto;
    padding-block: 1.35rem 3rem;
  }

  .hero-content {
    gap: 2rem;
  }

  .commercial-brand img {
    width: 80px;
  }

  .commercial-brand::after {
    width: 24px;
  }

  .diagnostic-card {
    min-height: 132px;
  }

  .diagnostic-card-button {
    min-height: 132px;
    padding: 1.25rem;
  }

  .diagnostic-question {
    font-size: var(--c-type-card);
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: 220px;
  }

  .pain-index {
    margin-bottom: 3.5rem;
  }

  .product-window-bar {
    height: 38px;
  }

  .product-stage figcaption {
    position: static;
    max-width: none;
    border: 0;
    border-top: 1px solid var(--c-line);
    border-radius: 0;
    background: var(--c-panel-soft);
    box-shadow: none;
  }

  .authority-proof {
    padding: 1rem;
  }

  .process-card {
    min-height: 230px;
    padding: 1.3rem;
  }

  .process-card > span {
    width: 64px;
    height: 64px;
    margin-bottom: 3rem;
  }

  .process-grid::before {
    left: 45px;
  }

  .commercial-page .gargalo-step h3 {
    font-size: var(--c-type-card);
  }

  .gargalo-pain {
    max-width: none;
    font-size: var(--c-type-lead);
  }

  .gargalo-step {
    padding-left: 1.15rem;
  }

  .constellation-intro {
    padding-top: 3.25rem;
    padding-bottom: 1.75rem;
  }

  .commercial-page .lc-shell {
    height: 660px;
  }

  .difference-switch {
    margin-bottom: 1.4rem;
  }

  .difference-toggle,
  .difference-toggle span,
  .difference-toggle label {
    width: 100%;
  }

  .difference-toggle label {
    justify-content: center;
  }

  .difference-labels {
    display: none;
  }

  .difference-list {
    border: 0;
    border-radius: 0;
  }

  /* Sem colunas não há trilho central: cada card carrega o seu conector. */
  .difference-list::before,
  .difference-list::after {
    display: none;
  }

  .difference-row {
    margin-bottom: 0.85rem;
    border: 1px solid var(--c-line);
    border-radius: var(--c-radius-small);
  }

  .difference-row:last-child {
    border-bottom: 1px solid var(--c-line);
  }

  .difference-head {
    min-height: 0;
    padding: 1.2rem 3.1rem 1.2rem 1.2rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  /* Coluna única: a ordem volta a ser a do documento e o "O" da marca entra
     como um botão inteiro entre o improviso e a resposta. */
  .difference-before,
  .difference-link,
  .difference-reveal,
  .difference-after {
    grid-row: auto;
    grid-column: 1;
  }

  .difference-head::before {
    border-radius: var(--c-radius-small) 0 0 var(--c-radius-small);
  }

  .difference-after {
    padding-right: 0;
  }

  .difference-more {
    top: 1.35rem;
    right: 1rem;
    transform: none;
  }

  .difference-detail {
    padding: 0 1.2rem 1.2rem;
    grid-template-columns: 1fr;
  }

  .difference-detail p {
    padding-right: 0;
    grid-column: 1;
  }

  .difference-link {
    height: 56px;
    padding-inline: 0;
    padding-left: 2px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .difference-rail {
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(253, 91, 59, 0.14), rgba(253, 91, 59, 0.72));
  }

  /* Sem hover no toque, a palavra fica sempre à vista dentro da pílula. */
  .difference-reveal {
    width: auto;
    height: auto;
    padding: 0.5rem 1rem 0.5rem 0.6rem;
    border-radius: 999px;
    place-self: center start;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .difference-reveal:hover,
  .difference-reveal:focus-visible {
    transform: none;
  }

  .difference-reveal-hint {
    position: static;
    opacity: 1;
    transform: none;
  }

  .difference-section:has(#difference-view-today:checked) .difference-rail,
  .difference-section:has(#difference-view-today:checked) .difference-row:hover .difference-rail {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.18));
  }

  .difference-spark {
    background: linear-gradient(
      180deg,
      rgba(255, 214, 196, 0) 52%,
      rgba(255, 214, 196, 0.5) 82%,
      #ffe8db 100%
    );
    animation-name: difference-spark-travel-down;
  }

  .difference-arrow {
    font-size: var(--c-type-lead);
    transform: rotate(90deg);
  }

  .difference-row.is-live .difference-arrow,
  .difference-row:hover .difference-arrow {
    transform: rotate(90deg) translateX(3px);
  }

  .difference-close {
    font-size: var(--c-type-lead);
  }

  .commercial-page .pricing-section .term-option label {
    min-height: 52px;
  }

  .commercial-page .pricing-section .plan-card {
    min-height: 0;
  }

  .onboarding-facts {
    grid-template-columns: 1fr;
  }

  .onboarding-facts article,
  .onboarding-facts article:nth-child(2) {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--c-line);
  }

  .onboarding-facts article:last-child {
    border-bottom: 0;
  }

  .additional-services > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .additional-services dd {
    white-space: normal;
  }

  .objections-console-head {
    padding: 0.85rem 1.1rem;
  }

  .objection-item > summary {
    padding: 1.1rem 3.2rem 1.2rem 1.1rem;
  }

  .objection-detail {
    padding: 0 1.1rem 1.3rem;
  }

  .commercial-cta {
    min-height: auto;
  }

  .cta-content h2 {
    font-size: var(--c-type-display);
  }

  .commercial-cta-button {
    width: 100%;
    justify-content: space-between;
  }

  .commercial-footer .commercial-container {
    flex-direction: column;
  }
}

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

  .js .commercial-page .reveal,
  .js .commercial-page .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .diagnostic-card-button::after,
  .commercial-cta-button {
    transition: none;
  }

  /* Sem viagem e sem preenchimento: o trilho fica aceso e estático. */
  .difference-spark {
    animation: none;
    opacity: 0.85;
    transform: none;
  }

  .difference-list::after {
    transform: translateX(-50%) scaleY(1);
  }

  .difference-detail,
  .objection-detail {
    animation: none;
  }

  /* Sem crossfade: o print troca direto. */
  .gargalo-shot {
    transition: none;
    transform: none;
  }

  .difference-row,
  .difference-detail p,
  .difference-head::before,
  .difference-before::before,
  .difference-rail,
  .difference-arrow,
  .difference-before,
  .difference-after,
  .difference-reveal,
  .difference-reveal-glyph,
  .difference-reveal-hint,
  .gargalo-step::before,
  .gargalo-step h3,
  .gargalo-index,
  .gargalo-points li,
  .objection-item {
    transition: none;
  }

  /* O borrão continua (é o conteúdo), mas sem o salto do "O" ao passar. */
  .difference-reveal:hover,
  .difference-reveal:focus-visible {
    transform: none;
  }
}

/* ============================================================
   Direção aprovada · operação viva, oportunidade em movimento
   Abertura product-led + tensão editorial + narrativa causal
   ============================================================ */

.commercial-hero {
  display: block;
  min-height: 0;
  padding-block: clamp(1.75rem, 3vw, 3rem) clamp(6rem, 10vw, 10rem);
  background: var(--c-bg);
  align-items: initial;
}

.commercial-hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(253, 91, 59, 0.16), transparent 27rem),
    radial-gradient(circle at 18% 36%, rgba(67, 84, 130, 0.1), transparent 31rem),
    linear-gradient(180deg, #080b13 0%, var(--c-bg) 58%, #0b0f19 100%);
}

.commercial-hero::after {
  background-image: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.025) 50%,
    transparent
  );
  background-position: center;
  background-size: 1px 100%;
  opacity: 0.7;
  mask-image: none;
  -webkit-mask-image: none;
}

.commercial-orbit {
  display: none;
}

.hero-content {
  display: grid;
  gap: 0;
}

.commercial-brand {
  position: relative;
  z-index: 4;
}

.hero-live-grid {
  display: grid;
  min-height: 780px;
  padding-block: clamp(4rem, 8vw, 8rem) clamp(3rem, 5vw, 5rem);
  grid-template-columns: minmax(390px, 0.78fr) minmax(650px, 1.22fr);
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 620px;
  align-content: center;
  justify-items: start;
}

.hero-kicker {
  margin-bottom: 1.35rem !important;
  color: var(--c-coral);
  font-family: var(--font-display);
  font-size: var(--c-type-small);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  max-width: 660px;
  font-size: var(--c-type-display);
  line-height: 0.91;
  letter-spacing: -0.058em;
}

.hero-copy h1 span {
  display: inline;
}

.hero-lead {
  max-width: 590px;
  margin-top: 2rem !important;
  color: var(--c-muted-strong);
  font-size: var(--c-type-lead);
  line-height: 1.62;
}

.hero-trust {
  margin-top: 1rem !important;
  color: rgba(255, 255, 255, 0.48);
  font-size: var(--c-type-small);
}

.hero-product {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-top: 4.75rem;
}

.hero-product::before {
  position: absolute;
  inset: 8% -6% -8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 91, 59, 0.18), transparent 67%);
  filter: blur(24px);
  content: "";
  pointer-events: none;
}

.hero-message {
  position: absolute;
  top: 0;
  right: clamp(1rem, 7vw, 8rem);
  z-index: 4;
  display: grid;
  width: min(380px, 74%);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  color: var(--c-muted-strong);
  background: rgba(15, 20, 33, 0.93);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(253, 91, 59, 0.1);
  gap: 0.75rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: hero-message-float 5.5s ease-in-out infinite;
}

.hero-message > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.hero-message strong {
  color: var(--c-coral-light);
  font-size: var(--c-type-small);
  letter-spacing: 0.02em;
}

.hero-message small {
  color: rgba(255, 255, 255, 0.42);
  font-size: var(--c-type-label);
}

.hero-message p {
  color: var(--c-text);
  font-size: var(--c-type-micro);
  line-height: 1.45;
}

@keyframes hero-message-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

.hero-product-stage {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(18px, 2vw, 26px);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 48px 130px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(253, 91, 59, 0.05);
}

.hero-product-stage picture,
.hero-product-stage img {
  display: block;
  width: 100%;
}

.hero-product-stage img {
  aspect-ratio: 1700 / 925;
  object-fit: contain;
  object-position: top center;
}

.hero-product-stage figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  max-width: 350px;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  color: var(--c-muted);
  background: rgba(9, 12, 20, 0.9);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
  gap: 0.1rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-product-stage figcaption strong {
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-body);
}

.hero-product-stage figcaption span {
  font-size: var(--c-type-small);
}

.hero-flow {
  position: relative;
  display: grid;
  margin: 0;
  padding: 2.5rem 0 0;
  border-top: 1px solid rgba(253, 91, 59, 0.5);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  list-style: none;
}

.hero-flow::before {
  position: absolute;
  top: -4px;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-coral-light);
  box-shadow: 0 0 24px rgba(253, 91, 59, 0.9);
  content: "";
}

.hero-flow li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.js .commercial-page .hero-flow li:nth-child(2) {
  transition-delay: 90ms;
}

.js .commercial-page .hero-flow li:nth-child(3) {
  transition-delay: 180ms;
}

.js .commercial-page .hero-flow li:nth-child(4) {
  transition-delay: 270ms;
}

.hero-flow li > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(253, 91, 59, 0.42);
  border-radius: 50%;
  color: var(--c-coral);
  font-family: var(--font-display);
  font-size: var(--c-type-label);
  font-weight: 700;
  place-items: center;
}

.hero-flow li > div {
  display: grid;
  gap: 0.35rem;
}

.hero-flow strong {
  color: var(--c-coral-light);
  font-family: var(--font-display);
  font-size: var(--c-type-small);
  line-height: 1.15;
}

.hero-flow small {
  max-width: 250px;
  color: var(--c-muted);
  font-size: var(--c-type-micro);
  line-height: 1.45;
}

.hero-diagnostic {
  display: grid;
  margin-top: clamp(6rem, 10vw, 10rem);
  padding-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--c-line);
  grid-template-columns: minmax(290px, 0.62fr) minmax(620px, 1.38fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.hero-diagnostic-copy {
  display: grid;
  gap: 1.25rem;
}

.hero-diagnostic-copy h2 {
  font-size: var(--c-type-section);
  line-height: 0.98;
}

.hero-diagnostic-copy > p:last-child {
  max-width: 520px;
  color: var(--c-muted);
  font-size: var(--c-type-lead);
}

.hero-diagnostic .diagnostic-card,
.hero-diagnostic .diagnostic-card-button {
  min-height: 138px;
}

.hero-diagnostic .diagnostic-card-button {
  padding: 1.4rem 1.55rem;
  gap: 0.9rem;
}

.hero-diagnostic .hero-note {
  grid-column: 2;
  margin-top: -0.5rem;
}

.pain-statement {
  max-width: 1120px;
}

.pain-statement h2 {
  font-size: var(--c-type-display);
  line-height: 0.94;
}

.pain-statement h2 span {
  color: var(--c-coral);
}

.pain-grid {
  gap: clamp(1.5rem, 3vw, 3rem);
}

.pain-card {
  min-height: 0;
  padding: 1.6rem 0 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--c-line-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pain-card::before {
  display: none;
}

.pain-index {
  margin-bottom: clamp(1.1rem, 2vw, 1.6rem);
}

.solution-section {
  background:
    radial-gradient(circle at 20% 58%, rgba(253, 91, 59, 0.13), transparent 30rem),
    #0d111c;
}

/* As duas colunas se equilibram pelo centro óptico. Ancorar pelo rodapé
   deixava o print preso embaixo e abria um vazio acima dele sempre que a
   coluna de texto ficava mais alta. */
.solution-section .commercial-container {
  display: grid;
  grid-template-areas: "product copy";
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

.solution-copy {
  grid-area: copy;
  max-width: 34rem;
  margin-bottom: 0;
  gap: 1.15rem;
}

.solution-copy h2 {
  font-size: var(--c-type-section);
}

.solution-copy > p:last-child {
  max-width: none;
}

.solution-section .product-stage {
  grid-area: product;
}

.process-section .commercial-section-head {
  max-width: 1040px;
}

.process-grid {
  --process-gap: clamp(2rem, 5vw, 5rem);
  gap: var(--process-gap);
}

/* linha conecta o centro do círculo 01 ao centro do círculo 03 */
.process-grid::before {
  top: 37px;
  left: 37px;
  right: calc(33.3333% - (var(--process-gap) * 0.6667) - 37px);
  background: linear-gradient(to right, transparent, var(--c-coral) 10% 90%, transparent);
  opacity: 0.72;
}

.process-card {
  min-height: 250px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-card > span {
  margin-bottom: clamp(3rem, 5vw, 4.8rem);
}

.process-card p {
  max-width: 340px;
}

.commercial-page .process-close {
  margin-top: clamp(4rem, 7vw, 7.5rem);
}

@media (max-width: 1180px) {
  .hero-live-grid {
    grid-template-columns: minmax(350px, 0.82fr) minmax(560px, 1.18fr);
    gap: 3rem;
  }

  .hero-diagnostic {
    grid-template-columns: minmax(270px, 0.7fr) minmax(540px, 1.3fr);
    gap: 3rem;
  }
}

@media (max-width: 920px) {
  .hero-live-grid {
    min-height: 0;
    padding-block: 4rem;
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-copy h1 {
    max-width: 720px;
  }

  .hero-product {
    padding-top: 4rem;
  }

  .hero-flow {
    padding: 2rem 0 0 1.25rem;
    border-top: 0;
    border-left: 1px solid rgba(253, 91, 59, 0.5);
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .hero-flow::before {
    top: auto;
    right: auto;
    bottom: 0;
    left: -5px;
  }

  .hero-diagnostic {
    grid-template-columns: 1fr;
  }

  .hero-diagnostic-copy {
    max-width: 700px;
  }

  .hero-diagnostic .hero-note {
    grid-column: 1;
  }

  .solution-section .commercial-container {
    grid-template-areas:
      "copy"
      "product";
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .solution-copy {
    padding-bottom: 0;
  }
}

@media (max-width: 820px) {
  .process-grid::before {
    top: 38px;
    bottom: 38px;
    left: 54px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, var(--c-coral), transparent);
  }
}

@media (max-width: 640px) {
  .commercial-hero {
    padding-block: 1.35rem 5.5rem;
  }

  .commercial-brand span {
    font-size: var(--c-type-label);
  }

  .hero-live-grid {
    padding-block: 3.5rem 3rem;
    gap: 3.25rem;
  }

  .hero-kicker {
    margin-bottom: 1rem !important;
    font-size: var(--c-type-small);
  }

  .hero-copy h1 {
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 1.4rem !important;
    font-size: var(--c-type-lead);
  }

  .hero-trust {
    font-size: var(--c-type-micro);
  }

  .hero-product {
    padding-top: 0;
  }

  .hero-product::before {
    inset: -10% -14%;
  }

  .hero-message {
    position: relative;
    top: auto;
    right: auto;
    width: min(100% - 24px, 360px);
    margin: 0 0 -0.5rem auto;
    animation: none;
  }

  .hero-product-stage {
    border-radius: 18px;
  }

  .hero-product-stage .product-window-bar {
    height: 38px;
    padding-inline: 0.9rem;
  }

  .hero-product-stage figcaption {
    position: static;
    max-width: none;
    border: 0;
    border-top: 1px solid var(--c-line);
    border-radius: 0;
    background: var(--c-panel-soft);
    box-shadow: none;
  }

  .hero-flow {
    padding: 2rem 0 0 1.25rem;
    border-top: 0;
    border-left: 1px solid rgba(253, 91, 59, 0.5);
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .hero-flow::before {
    top: auto;
    right: auto;
    bottom: 0;
    left: -5px;
  }

  .hero-flow li {
    grid-template-columns: 1.8rem 1fr;
  }

  .hero-flow li > span {
    width: 1.8rem;
    height: 1.8rem;
  }

  .hero-diagnostic {
    margin-top: 5.5rem;
    padding-top: 4.5rem;
    gap: 2.5rem;
  }

  .hero-diagnostic .diagnostic-card,
  .hero-diagnostic .diagnostic-card-button {
    min-height: 132px;
  }

  .pain-statement h2 {
    font-size: var(--c-type-display);
  }

  .pain-grid {
    gap: 1.5rem;
  }

  .pain-card {
    min-height: 0;
  }

  .process-grid::before {
    top: 38px;
    bottom: 38px;
    left: 34px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, var(--c-coral), transparent);
  }

  .process-card {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-message {
    animation: none;
  }

  .js .commercial-page .hero-flow li {
    transition-delay: 0s;
  }

}

/* ============================================================
   Primeiro quadro + árvore causal
   Print real, sinais luminosos e pulso percorrendo o fluxo
   ============================================================ */

.commercial-brand img {
  width: 108px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.08));
}

.hero-live-grid {
  padding-block: clamp(3.5rem, 6vw, 6.5rem) clamp(4rem, 7vw, 7rem);
  grid-template-columns: minmax(370px, 0.72fr) minmax(690px, 1.28fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy {
  align-self: center;
}

.hero-signal-scene {
  position: relative;
  aspect-ratio: 1000 / 660;
  min-height: 0;
  padding: 0;
  isolation: isolate;
}

.hero-signal-scene::before {
  position: absolute;
  inset: 12% 6% 8%;
  z-index: -2;
  border-radius: 50%;
  background: rgba(253, 91, 59, 0.13);
  filter: blur(72px);
  content: "";
  pointer-events: none;
}

/* Caminhos luminosos: SVG com fundo transparente, ancorado nas mesmas
   porcentagens dos cards e do print, para que cada linha comece e termine
   atrás de um elemento real da cena. */
.hero-signal-paths {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter:
    drop-shadow(0 0 3px rgba(253, 91, 59, 0.9))
    drop-shadow(0 0 9px rgba(253, 91, 59, 0.6))
    drop-shadow(0 0 26px rgba(253, 91, 59, 0.35));
  pointer-events: none;
}

.hero-signal-paths .signal-halo {
  fill: none;
  stroke: rgba(253, 91, 59, 0.3);
  stroke-width: 6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.hero-signal-paths .signal-line {
  fill: none;
  stroke: #ff7a4d;
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.hero-signal-paths .signal-spark {
  fill: none;
  stroke: #ffd7c4;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 13 100;
  stroke-dashoffset: 113;
  vector-effect: non-scaling-stroke;
  animation: hero-signal-travel 4.6s cubic-bezier(0.45, 0, 0.3, 1) infinite;
}

.hero-signal-paths [data-signal="qualified"] .signal-spark {
  animation-delay: 0.9s;
}

.hero-signal-paths [data-signal="task"] .signal-spark {
  animation-delay: 1.7s;
}

.hero-signal-paths [data-signal="opportunity"] .signal-spark {
  animation-delay: 2.5s;
}

@keyframes hero-signal-travel {
  0% {
    opacity: 0;
    stroke-dashoffset: 113;
  }

  8%,
  62% {
    opacity: 1;
  }

  70%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

.hero-product-frame {
  position: absolute;
  top: 22%;
  left: 13%;
  z-index: 2;
  width: 74%;
}

.hero-product-frame .hero-product-stage {
  transform: perspective(1500px) rotateY(-5deg) rotateX(1.5deg);
  transform-origin: 50% 52%;
}

.hero-product-frame .hero-product-stage > picture img {
  filter: brightness(0.82) contrast(1.04) saturate(0.92);
}

.hero-product-frame .hero-product-stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 0 80px rgba(4, 7, 13, 0.16),
    inset 0 -38px 70px rgba(4, 7, 13, 0.16);
  content: "";
  pointer-events: none;
}

.hero-signal-list {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

/* A largura é sempre 26% da cena: é isso que mantém os pontos de ancoragem
   do SVG (centro do card, 45 unidades abaixo da borda posicionada) exatos.
   Ao mexer nela, atualize o x de cada `signal-path` no HTML. A altura é
   livre: o anchor sai da borda posicionada, não do tamanho do card. */
.hero-signal-card {
  position: absolute;
  display: grid;
  width: 26%;
  min-height: 88px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: var(--c-text);
  background:
    linear-gradient(135deg, rgba(18, 23, 36, 0.97), rgba(10, 14, 24, 0.95));
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(253, 91, 59, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  grid-template-columns: 1.75rem minmax(0, 1fr) auto;
  gap: 0.18rem 0.68rem;
  align-items: start;
}

.hero-signal-icon {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(253, 91, 59, 0.4);
  border-radius: 8px;
  color: var(--c-coral-light);
  background: rgba(253, 91, 59, 0.12);
  place-items: center;
  box-shadow: 0 0 18px rgba(253, 91, 59, 0.14);
}

.hero-signal-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.hero-signal-card > div {
  display: grid;
  min-width: 0;
  gap: 0.2rem;
}

.hero-signal-card strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--c-type-micro);
  line-height: 1.15;
}

.hero-signal-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--c-type-micro);
  line-height: 1.38;
}

.hero-signal-card > small {
  color: rgba(255, 255, 255, 0.34);
  font-size: var(--c-type-label);
  line-height: 1.15;
  white-space: nowrap;
}

.hero-signal-card--message {
  top: 0;
  left: 6%;
}

.hero-signal-card--qualified {
  top: 7%;
  right: 0;
}

.hero-signal-card--task {
  bottom: 2%;
  left: 2%;
}

.hero-signal-card--opportunity {
  bottom: 0;
  left: 55%;
}

.js .commercial-page .hero-signal-card--qualified {
  transition-delay: 90ms;
}

.js .commercial-page .hero-signal-card--task {
  transition-delay: 180ms;
}

.js .commercial-page .hero-signal-card--opportunity {
  transition-delay: 270ms;
}

.hero-causal-tree {
  position: relative;
  display: grid;
  margin-top: clamp(2rem, 4vw, 4rem);
  padding-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: clamp(2.75rem, 5vw, 5rem);
  isolation: isolate;
}

.hero-causal-tree::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: min(72vw, 950px);
  height: min(48vw, 620px);
  background: radial-gradient(circle, rgba(253, 91, 59, 0.1), transparent 68%);
  filter: blur(44px);
  content: "";
  translate: -50% 0;
  pointer-events: none;
}

.hero-causal-tree-copy {
  display: grid;
  width: min(100%, 920px);
  margin-inline: auto;
  text-align: center;
  gap: 1.35rem;
  justify-items: center;
}

.hero-causal-tree-copy .commercial-eyebrow {
  justify-content: center;
}

.hero-causal-tree-copy .commercial-eyebrow > span {
  display: inline;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--c-coral-light);
  line-height: inherit;
  place-items: initial;
}

.hero-causal-tree-copy .tree-eyebrow-tag {
  flex: none;
  padding: 0.26rem 0.48rem;
  border: 1px solid rgba(253, 91, 59, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(253, 91, 59, 0.12);
}

.hero-causal-tree-copy .tree-eyebrow-text {
  color: var(--c-coral-light);
}

.hero-causal-tree-copy h2 {
  max-width: 900px;
  color: #fff;
  font-size: var(--c-type-display);
  line-height: 0.94;
  letter-spacing: -0.048em;
}

.hero-causal-tree-copy h2 span {
  color: var(--c-coral);
}

.hero-causal-tree-copy > p:last-child {
  max-width: 720px;
  color: var(--c-muted-strong);
  font-size: var(--c-type-lead);
  line-height: 1.65;
}

.causal-tree-stage {
  position: relative;
  width: min(100%, 1080px);
  aspect-ratio: 1000 / 620;
  margin-inline: auto;
  overflow: hidden;
  isolation: isolate;
}

/* Os oito ramos saem da mesma raiz e terminam dentro do card correspondente,
   sempre a 45 unidades da borda posicionada — por isso os nós usam largura
   percentual fixa. */
.causal-tree-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* O brilho fica só nos ramos: aplicado ao SVG inteiro, ele borrava também o
   gradiente da raiz e o resultado virava uma mancha. */
.causal-branches {
  filter:
    drop-shadow(0 0 3px rgba(253, 91, 59, 0.85))
    drop-shadow(0 0 10px rgba(253, 91, 59, 0.5))
    drop-shadow(0 0 28px rgba(253, 91, 59, 0.3));
}

.causal-tree-canvas .causal-line {
  fill: none;
  stroke: #ff7043;
  stroke-width: 1.7;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.causal-tree-canvas .causal-spark {
  fill: none;
  stroke: #ffdccb;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-dasharray: 16 100;
  stroke-dashoffset: 116;
  vector-effect: non-scaling-stroke;
  animation: causal-branch-travel 5.2s cubic-bezier(0.4, 0, 0.25, 1) infinite;
  animation-delay: var(--branch-delay, 0ms);
}

@keyframes causal-branch-travel {
  0% {
    opacity: 0;
    stroke-dashoffset: 116;
  }

  6%,
  56% {
    opacity: 1;
  }

  66%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

.causal-root-core {
  fill: #fffaf6;
  filter:
    drop-shadow(0 0 6px rgba(255, 190, 150, 0.95))
    drop-shadow(0 0 20px rgba(253, 91, 59, 0.8))
    drop-shadow(0 0 48px rgba(253, 91, 59, 0.45));
  animation: causal-root-breathe 5.2s ease-in-out infinite;
}

@keyframes causal-root-breathe {
  0%,
  100% {
    opacity: 0.82;
  }

  6% {
    opacity: 1;
  }

  55% {
    opacity: 0.7;
  }
}

.causal-tree-nodes {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.causal-tree-node {
  position: absolute;
  display: grid;
  width: 25%;
  min-height: 92px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: linear-gradient(140deg, rgba(17, 22, 35, 0.96), rgba(10, 14, 24, 0.94));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(253, 91, 59, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  gap: 0.26rem;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.causal-tree-node strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.15;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.causal-tree-node small {
  color: rgba(255, 255, 255, 0.48);
  font-size: var(--c-type-label);
  line-height: 1.3;
}

.causal-tree-node--lead {
  top: 2%;
  left: 23%;
}

.causal-tree-node--owner {
  top: 2%;
  right: 23%;
}

.causal-tree-node--message {
  top: 23%;
  left: 9%;
}

.causal-tree-node--manager {
  top: 23%;
  right: 9%;
}

.causal-tree-node--task {
  top: 44%;
  left: 12%;
}

.causal-tree-node--crm {
  top: 44%;
  right: 12%;
}

.causal-tree-node--dashboard {
  top: 64%;
  left: 6%;
}

.causal-tree-node--opportunity {
  top: 64%;
  right: 6%;
}

.causal-tree-root {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 4;
  display: grid;
  min-width: 172px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(253, 91, 59, 0.32);
  border-radius: 12px;
  text-align: center;
  background: rgba(12, 17, 28, 0.92);
  box-shadow:
    0 0 44px rgba(253, 91, 59, 0.2),
    0 14px 42px rgba(0, 0, 0, 0.4);
  translate: -50% 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.causal-tree-root span {
  color: var(--c-coral-light);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.causal-tree-root strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--c-type-micro);
}

.hero-diagnostic {
  margin-top: clamp(5rem, 9vw, 9rem);
}

@media (max-width: 1280px) {
  .hero-live-grid {
    grid-template-columns: minmax(320px, 0.7fr) minmax(620px, 1.3fr);
  }

  .hero-signal-scene {
    min-height: 540px;
  }
}

@media (max-width: 1040px) {
  .hero-live-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .hero-copy {
    width: min(100%, 740px);
  }

  .hero-signal-scene {
    width: min(100%, 900px);
    min-height: 0;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .commercial-brand img {
    width: 100px;
  }

  .hero-live-grid {
    padding-block: 3.5rem 4.5rem;
    gap: 3.75rem;
  }

  .hero-signal-scene {
    display: grid;
    width: 100%;
    min-height: 0;
    padding-top: 0;
    aspect-ratio: auto;
    gap: 1.75rem;
  }

  /* Sem posicionamento absoluto no mobile os pontos de ancoragem deixam de
     existir: a cena vira pilha e o traçado sai de cena. */
  .hero-signal-paths {
    display: none;
  }

  .hero-product-frame {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    width: 96%;
    margin: clamp(2.5rem, 11vw, 4.5rem) auto 0;
  }

  .hero-product-frame .hero-product-stage {
    transform: none;
  }

  .hero-signal-list {
    position: relative;
    inset: auto;
    display: grid;
    z-index: 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    pointer-events: auto;
  }

  .hero-signal-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 92px;
  }

  .hero-causal-tree {
    padding-top: 5.5rem;
  }

  .hero-causal-tree-copy {
    text-align: left;
    justify-items: start;
  }

  .hero-causal-tree-copy .commercial-eyebrow {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 0.45rem;
  }

  .causal-tree-stage {
    display: grid;
    aspect-ratio: auto;
    overflow: visible;
    gap: 1.5rem;
  }

  /* No mobile a árvore vira um emblema acima dos resultados empilhados:
     mesma raiz e mesmos ramos, só que sem ancorar nos cards. */
  .causal-tree-canvas {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 620;
  }

  .causal-tree-canvas .causal-line,
  .causal-tree-canvas .causal-spark {
    stroke-width: 1.3;
  }

  .causal-tree-nodes {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    pointer-events: auto;
  }

  .causal-tree-node {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 78px;
  }

  .causal-tree-root {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-product-frame {
    width: 100%;
  }

  .hero-signal-list,
  .causal-tree-nodes {
    grid-template-columns: 1fr;
  }

  .hero-signal-card {
    min-height: 72px;
  }

  .causal-tree-node {
    min-height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .causal-tree-canvas .causal-spark,
  .hero-signal-paths .signal-spark {
    display: none;
    animation: none;
  }

  .causal-root-core {
    animation: none;
  }

  .causal-tree-canvas .causal-line,
  .hero-signal-paths .signal-line {
    stroke: rgba(253, 91, 59, 0.78);
  }

  .js .commercial-page .hero-signal-card {
    transition-delay: 0s;
  }
}

/* ============================================================
   Planos 2026 — prazo, PIX e implementação na LP
   ============================================================ */

.commercial-page .pricing-section .term-selector {
  gap: 0.7rem;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.commercial-page .pricing-section .term-option label {
  min-height: 52px;
  border: 1px solid var(--c-line-strong);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(12, 17, 29, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 34px rgba(0, 0, 0, 0.2);
}

.commercial-page .pricing-section .term-option-annual label {
  min-width: 160px;
  justify-content: center;
}

.commercial-page .pricing-section .term-option-number {
  flex: 0 0 auto;
}

.commercial-page .pricing-section .term-option-number label {
  width: 52px;
  min-width: 52px;
  padding: 0;
  justify-content: center;
}

.commercial-page .pricing-section .term-option input:checked + label {
  border-color: rgba(253, 91, 59, 0.82);
  color: #fff;
  background: rgba(253, 91, 59, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(253, 91, 59, 0.44),
    0 10px 30px rgba(253, 91, 59, 0.12);
}

.commercial-page .pricing-section .plan-card {
  min-height: 400px;
}

/* Formas de pagamento concentrado dentro do card do plano.
   A linha de entrada some no trimestral, que não tem essa opção. */
.commercial-page .pricing-section .plan-payments {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.15rem;
  border: 1px solid rgba(253, 91, 59, 0.24);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  color: var(--c-muted);
  background: rgba(253, 91, 59, 0.07);
}

.commercial-page .pricing-section .plan-payments-head {
  color: var(--c-muted);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commercial-page .pricing-section .plan-payments ul {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commercial-page .pricing-section .plan-payment {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  font-size: var(--c-type-small);
}

.commercial-page .pricing-section .plan-payment[hidden] {
  display: none;
}

.commercial-page .pricing-section .plan-payment > span:first-child {
  color: var(--c-muted-strong);
}

.commercial-page .pricing-section .plan-payment > span:first-child b {
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}

.commercial-page .pricing-section .plan-payment-values {
  display: grid;
  gap: 0.1rem;
  text-align: right;
  justify-items: end;
}

.payment-price-before {
  color: var(--c-muted);
  font-size: calc(var(--c-type-micro) * 0.8);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.payment-price-before del {
  text-decoration-color: rgba(255, 255, 255, 0.58);
  text-decoration-thickness: 1px;
}

.payment-price-after {
  color: var(--c-coral);
  font-family: var(--font-display);
  font-size: var(--c-type-small);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.payment-monthly-equivalent {
  display: block;
  color: var(--c-muted);
  font-size: calc(var(--c-type-micro) * 0.88);
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.commercial-page .pricing-section .plan-payment-pix .payment-monthly-equivalent,
.payment-method-highlight .payment-monthly-equivalent {
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-label);
  font-weight: 700;
}

.entry-monthly-highlight {
  color: var(--c-coral);
  font-family: var(--font-display);
  font-size: var(--c-type-body);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.entry-payment-breakdown {
  display: grid;
  color: var(--c-muted);
  font-size: calc(var(--c-type-micro) * 0.9);
  font-weight: 500;
  line-height: 1.35;
  gap: 0.08rem;
}

.commercial-page .pricing-section .plan-entry-values {
  max-width: 16rem;
}

.commercial-page .pricing-section .plan-entry-values .entry-payment-breakdown {
  justify-items: end;
}

.commercial-page .pricing-section .plan-payments-note {
  border-top: 1px solid rgba(253, 91, 59, 0.14);
  padding-top: 0.5rem;
  color: var(--c-muted);
  font-size: var(--c-type-label);
  line-height: 1.35;
}

.pricing-implementation-strip {
  display: grid;
  margin-top: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(253, 91, 59, 0.32);
  border-radius: var(--c-radius);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--c-muted);
  background:
    radial-gradient(circle at 92% 0%, rgba(253, 91, 59, 0.12), transparent 18rem),
    rgba(12, 17, 29, 0.84);
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.22);
}

.pricing-implementation-strip h3 {
  margin-block: 0.3rem 0.4rem;
  color: var(--c-text);
  font-size: var(--c-type-card);
}

.pricing-implementation-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.pricing-implementation-options article {
  display: grid;
  gap: 0.25rem;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-implementation-options span {
  color: var(--c-muted);
  font-size: var(--c-type-small);
}

.pricing-implementation-options strong {
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-lead);
}

@media (max-width: 820px) {
  .commercial-page .pricing-section .term-option-number {
    flex: 0 0 auto;
  }

  .commercial-page .pricing-section .term-option-number label {
    width: 52px;
    min-width: 52px;
  }

  .pricing-implementation-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .commercial-page .pricing-section .term-selector {
    width: 100%;
  }

  .commercial-page .pricing-section .term-option-annual {
    flex: 1 1 auto;
  }

  .commercial-page .pricing-section .term-option-annual label {
    width: 100%;
    min-width: 0;
  }

  .commercial-page .pricing-section .term-option-number label {
    width: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .pricing-implementation-options {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Console completo de planos do V2 dentro da LP
   ============================================================ */

.commercial-page .commercial-plans-console {
  color: var(--c-muted);
}

.commercial-page .commercial-plans-console .console-tabs {
  display: flex;
  flex-wrap: nowrap;
  /* Sobra de espaço dividida igualmente nas duas pontas; "safe" evita cortar a
     primeira aba quando a fileira passa a rolar em telas estreitas. */
  justify-content: center;
  justify-content: safe center;
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--c-line);
  gap: 0.1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(253, 91, 59, 0.5) transparent;
}

/* São oito abas: o passo reduzido mantém todas visíveis no desktop numa
   única fileira, sem quebra nem rolagem. */
.commercial-page .commercial-plans-console .console-tab {
  flex: 0 0 auto;
  min-height: 62px;
  border: 1px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 0 0 12px 12px;
  padding: 0.55rem 0.58rem;
  color: var(--c-muted);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  white-space: nowrap;
}

.commercial-page .commercial-plans-console .console-tab i {
  color: var(--c-coral);
}

.commercial-page .commercial-plans-console .console-tab:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.025);
}

.commercial-page .commercial-plans-console .console-tab.is-active {
  border-color: rgba(253, 91, 59, 0.74);
  border-top-color: transparent;
  color: var(--c-text);
  background: rgba(253, 91, 59, 0.08);
  box-shadow:
    inset 0 -3px 0 var(--c-coral),
    0 12px 28px rgba(253, 91, 59, 0.08);
}

.commercial-page .commercial-plans-console .console-tab:focus-visible {
  border-radius: 0 0 12px 12px;
  outline-color: var(--c-coral-light);
}

.commercial-page .commercial-plans-console .console-body {
  color: var(--c-muted);
}

.commercial-page .commercial-plans-console .panel-head {
  max-width: 940px;
  margin: 0;
}

.commercial-page .commercial-plans-console .panel-head h2 {
  margin-top: 1.05rem;
  font-size: var(--c-type-section);
}

.commercial-page .commercial-plans-console .panel-head > p:last-child {
  max-width: 900px;
  margin-top: 1rem;
  color: var(--c-muted);
  font-size: var(--c-type-lead);
}

.commercial-page .commercial-plans-console .pricing-toolbar {
  display: flex;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
}

.pricing-term-control {
  display: grid;
  flex: 0 0 auto;
  gap: 0.7rem;
  justify-items: end;
}

.commercial-page .commercial-plans-console .pricing-toolbar-label {
  color: var(--c-muted-strong);
}

.commercial-page .commercial-plans-console .plan-card {
  min-height: 360px;
}

.commercial-page .commercial-plans-console .plan-card > .button {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--c-type-small);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commercial-page .commercial-plans-console .plan-card > .button-outline {
  border-color: var(--c-line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.commercial-page .commercial-plans-console .plan-card > .button-outline:hover {
  border-color: rgba(253, 91, 59, 0.72);
  background: rgba(253, 91, 59, 0.1);
}

.commercial-page .commercial-plans-console .plan-card > .button-primary,
.commercial-page .commercial-plans-console .commercial-ultra-band .button-primary {
  border-color: var(--c-coral);
  color: #090c14;
  background: var(--c-coral);
  box-shadow: 0 14px 36px rgba(253, 91, 59, 0.2);
}

.commercial-page .commercial-plans-console .commercial-ultra-band .button {
  display: inline-flex;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.commercial-page .commercial-plans-console .included-list {
  display: grid;
  margin-top: clamp(1.8rem, 4vw, 3rem);
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--c-muted-strong);
  background: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  box-shadow: none;
}

.commercial-page .commercial-plans-console .included-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-content: start;
  padding: clamp(1.15rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.6rem);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(253, 91, 59, 0.08), transparent 14rem),
    rgba(12, 17, 29, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 50px rgba(0, 0, 0, 0.18);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.commercial-page .commercial-plans-console .included-list li:hover {
  border-color: rgba(253, 91, 59, 0.45);
  transform: translateY(-2px);
}

.commercial-page .commercial-plans-console .included-list li::before {
  display: inline-grid;
  width: 1.85rem;
  height: 1.85rem;
  grid-row: 1 / span 2;
  align-self: start;
  border-radius: 50%;
  color: var(--c-coral-light);
  background: rgba(253, 91, 59, 0.14);
  content: "✓";
  font-size: 1rem;
  font-weight: 700;
  place-items: center;
}

.commercial-page .commercial-plans-console .included-list .incl-name {
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-card);
  font-weight: 700;
  line-height: 1.25;
}

.commercial-page .commercial-plans-console .included-list .incl-desc {
  grid-column: 2;
  color: var(--c-muted);
  font-size: var(--c-type-small);
  line-height: 1.45;
}

/* 02 · O que inclui — split editorial + mosaico de telas reais do produto */
#panel-inclui .included-split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

#panel-inclui .included-aside {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 3vw, 2.6rem);
}

#panel-inclui .included-aside .panel-head {
  margin: 0;
  max-width: none;
}

#panel-inclui .included-mosaic {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 5 / 4;
}

#panel-inclui .included-mosaic-glow {
  position: absolute;
  inset: -10% -6% -6% -10%;
  z-index: 0;
  background: radial-gradient(56% 54% at 54% 42%, rgba(253, 91, 59, 0.34), transparent 72%);
  filter: blur(6px);
  pointer-events: none;
}

#panel-inclui .incl-shot {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--c-radius-small);
  background: #0b1322;
  box-shadow: 0 34px 70px -34px rgba(0, 0, 0, 0.9);
}

#panel-inclui .incl-shot > img {
  display: block;
  width: 100%;
  height: auto;
}

#panel-inclui img.incl-shot {
  display: block;
  height: auto;
}

#panel-inclui .incl-shot-back {
  z-index: 1;
  top: 1%;
  left: 0;
  width: 66%;
  transform: rotate(-2.5deg);
}

#panel-inclui .incl-shot-mid {
  z-index: 2;
  top: 27%;
  right: 0;
  width: 63%;
  transform: rotate(2deg);
}

#panel-inclui .incl-shot-front {
  z-index: 3;
  bottom: 1%;
  left: 13%;
  width: 52%;
  transform: rotate(-1deg);
}

#panel-inclui .included-list {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  align-content: start;
}

#panel-inclui .included-list li {
  padding: clamp(0.78rem, 1.1vw, 0.95rem) clamp(0.95rem, 1.3vw, 1.15rem);
}

#panel-inclui .included-list .incl-name {
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
}

#panel-inclui .included-list .incl-desc {
  font-size: var(--c-type-micro);
}

@media (max-width: 980px) {
  #panel-inclui .included-split {
    grid-template-columns: 1fr;
    gap: clamp(2.2rem, 5vw, 3.2rem);
  }

  #panel-inclui .included-aside {
    position: static;
  }

  #panel-inclui .included-mosaic {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  #panel-inclui .included-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
  }
}

@media (max-width: 620px) {
  #panel-inclui .included-mosaic {
    aspect-ratio: 4 / 3;
  }

  #panel-inclui .included-list {
    grid-template-columns: 1fr;
  }
}

#panel-implementacao .commercial-onboarding-grid {
  margin-top: clamp(2.6rem, 5vw, 4rem);
}

#panel-implementacao .onboarding-facts {
  margin-top: clamp(2.4rem, 4vw, 3.2rem);
}

#panel-prazo .timeline-grid {
  margin-top: clamp(2.8rem, 5vw, 4rem);
}

/* ---------- 03 · módulos: lista simples em 2 colunas ---------- */
.commercial-page .commercial-plans-console .modules-showcase {
  margin-top: clamp(1.6rem, 3.4vw, 2.4rem);
}

.commercial-page .commercial-plans-console .mod-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.commercial-page .commercial-plans-console .mod-group:not(:first-child) {
  margin-top: clamp(1.4rem, 2.6vw, 2rem);
}

/* rótulo fino de categoria */
.commercial-page .commercial-plans-console .mod-group-label {
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-coral-light);
}

.commercial-page .commercial-plans-console .mod-group-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--c-line);
}

/* item de uma linha só: ícone + nome + preço */
.commercial-page .commercial-plans-console .mod-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-line);
}

.commercial-page .commercial-plans-console .mod-group .mod-item:last-child {
  border-bottom: none;
}

.commercial-page .commercial-plans-console .mod-item-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 9px;
  color: var(--c-coral-light);
  background: rgba(253, 91, 59, 0.12);
}

.commercial-page .commercial-plans-console .mod-item-ico svg {
  width: 1.05rem;
  height: 1.05rem;
}

.commercial-page .commercial-plans-console .mod-item-name {
  color: var(--c-text);
  font-weight: 600;
  font-size: 0.95rem;
}

.commercial-page .commercial-plans-console .mod-item-price {
  margin-left: auto;
  flex: none;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--c-coral-light);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-size: 0.92rem;
}

.commercial-page .commercial-plans-console .mod-item-price small {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--c-muted);
  font-size: 0.72rem;
}

/* "Em breve" adaptado ao dark console */
.commercial-page .commercial-plans-console .mod-item .soon-tag {
  flex: none;
  color: var(--c-coral-light);
  background: rgba(253, 91, 59, 0.14);
  font-size: 0.56rem;
  padding: 0.12rem 0.5rem;
}

/* rodapé fino único com as condições */
.commercial-page .commercial-plans-console .mod-fineprint {
  margin: clamp(1.4rem, 2.6vw, 2rem) 0 0;
  color: var(--c-muted);
  font-size: var(--c-type-micro);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .commercial-page .commercial-plans-console .mod-groups {
    grid-template-columns: 1fr;
  }
}

/* botão que abre a calculadora */
.commercial-page .commercial-plans-console .calc-cta {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(253, 91, 59, 0.5);
  border-radius: var(--radius-pill, 999px);
  background: rgba(253, 91, 59, 0.08);
  color: var(--c-coral-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.commercial-page .commercial-plans-console .calc-cta:hover {
  background: rgba(253, 91, 59, 0.16);
  border-color: var(--c-coral);
}

.commercial-page .commercial-plans-console .calc-cta-ico {
  display: inline-flex;
}

.commercial-page .commercial-plans-console .calc-cta-ico svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* ---------- 08 · pré-requisitos ---------- */
.commercial-page .commercial-plans-console .prereq-groups {
  margin-top: clamp(1.6rem, 3.4vw, 2.4rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto repeat(3, auto);
  column-gap: clamp(1.4rem, 3vw, 2.6rem);
  row-gap: 0;
}

.commercial-page .commercial-plans-console .prereq-group {
  display: grid;
  grid-row: 1 / -1;
  grid-template-rows: subgrid;
  align-content: start;
}

.commercial-page .commercial-plans-console .prereq-label {
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-coral-light);
}

.commercial-page .commercial-plans-console .prereq-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--c-line);
}

.commercial-page .commercial-plans-console .prereq-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--c-line);
}

.commercial-page .commercial-plans-console .prereq-group .prereq-item:last-child {
  border-bottom: none;
}

.commercial-page .commercial-plans-console .prereq-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 11px;
  color: var(--c-coral-light);
  background: rgba(253, 91, 59, 0.12);
}

.commercial-page .commercial-plans-console .prereq-ico svg {
  width: 1.25rem;
  height: 1.25rem;
}

.commercial-page .commercial-plans-console .prereq-name {
  margin: 0;
  color: var(--c-text);
  font-weight: 600;
  font-size: 1rem;
}

.commercial-page .commercial-plans-console .prereq-desc {
  margin: 0.2rem 0 0;
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .commercial-page .commercial-plans-console .prereq-groups {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: clamp(1.4rem, 2.6vw, 2rem);
  }

  .commercial-page .commercial-plans-console .prereq-group {
    grid-row: auto;
    grid-template-rows: none;
  }
}

.commercial-page .commercial-plans-console .panel-subhead {
  margin: clamp(2rem, 4vw, 3rem) 0 1rem;
  color: var(--c-text);
  font-size: var(--c-type-card);
}

/* ============================================================
   Calculadora de custos variáveis (modal) — vive na raiz <html>,
   fora do zoom do body, então usa tokens próprios e tamanhos reais.
   ============================================================ */
.calc-modal {
  --cc-card: #121a2b;
  --cc-text: #f7f5f2;
  --cc-muted: #aab1bf;
  --cc-line: rgba(255, 255, 255, 0.14);
  --cc-coral: #fd5b3b;
  --cc-coral-light: #ff8b74;
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: "Open Sans", system-ui, Arial, sans-serif;
}

.calc-modal[hidden] {
  display: none;
}

.calc-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.calc-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px;
  border: 1px solid var(--cc-line);
  border-radius: 20px;
  background: var(--cc-card);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  color: var(--cc-text);
}

.calc-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--cc-line);
  border-radius: 50%;
  background: transparent;
  color: var(--cc-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.calc-close:hover {
  color: var(--cc-text);
  border-color: var(--cc-coral);
}

.calc-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cc-coral-light);
}

.calc-title {
  margin: 4px 0 0;
  font-family: "Neue Plak", "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--cc-text);
}

.calc-sub {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--cc-muted);
  line-height: 1.5;
}

.calc-dollar {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-dollar > label {
  font-size: 13px;
  color: var(--cc-muted);
}

.calc-dollar .calc-prefix {
  max-width: 200px;
}

.calc-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--cc-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.calc-prefix > span {
  flex: none;
  color: var(--cc-muted);
  font-size: 14px;
}

.calc-in {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--cc-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--cc-text);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 15px;
  outline: none;
  -moz-appearance: textfield;
}

.calc-in:focus {
  border-color: var(--cc-coral);
}

.calc-in::-webkit-outer-spin-button,
.calc-in::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-prefix .calc-in {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
}

.calc-seg {
  margin-top: 20px;
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--cc-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.calc-seg-btn {
  flex: 1;
  padding: 9px 12px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: var(--cc-muted);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.calc-seg-btn.is-active {
  background: rgba(253, 91, 59, 0.16);
  color: var(--cc-coral-light);
}

.calc-panel {
  margin-top: 18px;
}

.calc-panel[hidden] {
  display: none;
}

.calc-fields {
  display: grid;
  gap: 12px;
}

.calc-fld {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-fld > span {
  font-size: 13px;
  color: var(--cc-muted);
}

.calc-note {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--cc-muted);
  line-height: 1.5;
}

.calc-note em {
  font-style: italic;
}

/* sliders (range) */
.calc-slider {
  margin-bottom: 16px;
}

.calc-slider-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.calc-slider-top > span {
  font-size: 13px;
  color: var(--cc-muted);
}

.calc-slider-top strong {
  font-family: "Neue Plak", "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--cc-text);
  font-variant-numeric: tabular-nums;
}

.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-slider-row .calc-range {
  flex: 1 1 auto;
}

.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(
    to right,
    var(--cc-coral) 0 var(--pct, 50%),
    rgba(255, 255, 255, 0.14) var(--pct, 50%) 100%
  );
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cc-coral);
  border: 3px solid var(--cc-card);
  box-shadow: 0 0 0 1px var(--cc-coral);
  cursor: pointer;
}

.calc-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cc-coral);
  border: 3px solid var(--cc-card);
  cursor: pointer;
}

.calc-range:focus-visible {
  box-shadow: 0 0 0 3px rgba(253, 91, 59, 0.3);
}

/* meta — categorias com slider */
.calc-meta-list {
  display: grid;
  gap: 18px;
}

.calc-meta-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.calc-meta-cat {
  font-size: 14px;
  font-weight: 600;
  color: var(--cc-text);
}

.calc-meta-cat small {
  margin-left: 6px;
  font-weight: 400;
  font-size: 12px;
  color: var(--cc-muted);
}

.calc-meta-qtyval {
  flex: none;
  min-width: 96px;
  text-align: right;
  font-size: 12.5px;
  color: var(--cc-muted);
  font-variant-numeric: tabular-nums;
}

.calc-meta-sub {
  font-family: "Neue Plak", "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--cc-coral-light);
  font-variant-numeric: tabular-nums;
}

/* acordeão — mudança da Meta em 01/10 */
.calc-acc {
  margin-top: 16px;
  border: 1px solid var(--cc-line);
  border-radius: 12px;
  overflow: hidden;
}

.calc-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: none;
  background: rgba(253, 91, 59, 0.08);
  color: var(--cc-coral-light);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.calc-acc-flag {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-acc-flag::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cc-coral);
}

.calc-acc-chevron {
  transition: transform 0.18s ease;
}

.calc-acc-trigger[aria-expanded="true"] .calc-acc-chevron {
  transform: rotate(180deg);
}

.calc-acc-body {
  padding: 4px 14px 14px;
  font-size: 13px;
  color: var(--cc-muted);
  line-height: 1.55;
}

.calc-acc-body p {
  margin: 10px 0 0;
}

.calc-acc-body strong {
  color: var(--cc-text);
}

.calc-acc-note {
  font-size: 12px;
  opacity: 0.85;
}

.calc-acc-calc {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--cc-line);
}

.calc-acc-calc .calc-slider-top > span {
  color: var(--cc-text);
}

.calc-out {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--cc-line);
  display: grid;
  gap: 8px;
}

.calc-out-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--cc-muted);
}

.calc-out-row strong {
  font-family: "Neue Plak", "Open Sans", sans-serif;
  font-weight: 600;
  color: var(--cc-text);
  font-variant-numeric: tabular-nums;
}

.calc-out-total {
  font-size: 15px;
}

.calc-out-total strong {
  font-size: 17px;
  color: var(--cc-coral-light);
}

@media (max-width: 520px) {
  .calc-card {
    padding: 22px 18px;
  }
}

/* ---------- 04 · pagamento: boleto, PIX e entrada ---------- */

.payment-methods {
  display: grid;
  margin-top: clamp(1.8rem, 4vw, 3rem);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.payment-method {
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  color: var(--c-muted);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 62%),
    rgba(12, 17, 29, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 64px rgba(0, 0, 0, 0.2);
}

.payment-method-highlight {
  border-color: rgba(253, 91, 59, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(253, 91, 59, 0.13), transparent 22rem),
    rgba(12, 17, 29, 0.86);
}

.payment-method > p {
  padding: 0 1.4rem 1.15rem;
  color: var(--c-muted);
  font-size: var(--c-type-small);
}

.payment-method-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.4rem 0.65rem;
  gap: 1rem;
}

.payment-method-head h3 {
  color: var(--c-text);
  font-size: var(--c-type-card);
}

.payment-tag {
  flex: none;
  border: 1px solid rgba(253, 91, 59, 0.42);
  border-radius: 999px;
  padding: 0.26rem 0.7rem;
  color: var(--c-coral-light);
  background: rgba(253, 91, 59, 0.13);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-tag-neutral {
  border-color: var(--c-line-strong);
  color: var(--c-muted-strong);
  background: rgba(255, 255, 255, 0.05);
}

.payment-tag-soft {
  border-color: rgba(253, 91, 59, 0.26);
  color: var(--c-coral-light);
  background: rgba(253, 91, 59, 0.08);
}

.payment-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--c-line);
}

.payment-method table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.payment-method th,
.payment-method td {
  border-bottom: 1px solid var(--c-line);
  padding: 0.9rem 1.4rem;
  color: var(--c-muted-strong);
  text-align: left;
}

.payment-method tbody tr:last-child th,
.payment-method tbody tr:last-child td {
  border-bottom: 0;
}

.payment-method thead th {
  color: var(--c-text);
  font-size: var(--c-type-label);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-method thead small {
  display: block;
  color: var(--c-coral-light);
  letter-spacing: 0;
  text-transform: none;
}

.payment-term-with-off {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.payment-term-with-off b {
  border: 1px solid rgba(253, 91, 59, 0.38);
  border-radius: 999px;
  padding: 0.12rem 0.42rem;
  color: var(--c-coral-light);
  background: rgba(253, 91, 59, 0.1);
  font-size: calc(var(--c-type-micro) * 0.82);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.payment-method tbody th {
  color: var(--c-text);
}

.payment-price-comparison {
  display: grid;
  gap: 0.22rem;
  justify-items: start;
}

.payment-price-comparison .payment-price-after {
  font-size: var(--c-type-body);
}

.entry-payment-comparison {
  display: grid;
  max-width: 19rem;
  gap: 0.3rem;
  justify-items: start;
}

.entry-payment-comparison .entry-payment-breakdown {
  justify-items: start;
}

.payment-rules {
  display: grid;
  margin-top: clamp(2.4rem, 5vw, 3.5rem);
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
  list-style: none;
}

.payment-rules li {
  border-left: 2px solid rgba(253, 91, 59, 0.42);
  padding-left: 0.9rem;
  color: var(--c-muted);
  font-size: var(--c-type-small);
  line-height: 1.55;
}

.payment-rules strong {
  color: var(--c-text);
}

/* ---------- 06 · prazo ---------- */

.timeline-grid {
  display: grid;
  margin-top: clamp(1.8rem, 4vw, 3rem);
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
}

.timeline-step {
  display: grid;
  align-content: start;
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  gap: 0.55rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 62%),
    rgba(12, 17, 29, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 64px rgba(0, 0, 0, 0.2);
}

.timeline-index {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(253, 91, 59, 0.42);
  border-radius: 50%;
  color: var(--c-coral-light);
  font-family: var(--font-display);
  font-size: var(--c-type-label);
  font-weight: 700;
  place-items: center;
  box-shadow: 0 0 22px rgba(253, 91, 59, 0.1);
}

.timeline-step > strong {
  margin-top: 0.35rem;
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: var(--c-type-card);
}

.timeline-step > p {
  color: var(--c-muted);
  font-size: var(--c-type-small);
  line-height: 1.6;
}

/* ---------- 07 · serviços adicionais ---------- */

.commercial-page .commercial-plans-console .additional-services {
  margin-top: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  padding: 0.4rem clamp(1.1rem, 2.4vw, 1.6rem);
  background: rgba(12, 17, 29, 0.82);
}

.commercial-page .commercial-plans-console .additional-services > div {
  padding-block: 0.85rem;
}

.commercial-page .commercial-plans-console .additional-services > div:last-child {
  border-bottom: 0;
}

.commercial-page .commercial-plans-console .additional-services dt {
  color: var(--c-muted-strong);
}

.commercial-page .commercial-plan-onboarding-grid .onboarding-card {
  border: 1px solid var(--c-line);
  border-radius: var(--c-radius);
  color: var(--c-muted);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 62%),
    rgba(12, 17, 29, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 64px rgba(0, 0, 0, 0.2);
}

.commercial-page .commercial-plan-onboarding-grid .onboarding-card > span {
  color: var(--c-coral-light);
}

.commercial-page .commercial-plan-onboarding-grid .onboarding-card h3,
.commercial-page .commercial-plan-onboarding-grid .onboarding-card > strong {
  color: var(--c-text);
}

.commercial-page .commercial-plan-onboarding-grid .onboarding-card .single {
  color: var(--c-muted);
}

.commercial-page .commercial-plan-onboarding-grid .onboarding-rule {
  color: var(--c-muted-strong);
  background: rgba(253, 91, 59, 0.07);
}

@media (max-width: 1100px) {
  .payment-rules,
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .commercial-page .commercial-plans-console .included-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-page .commercial-plans-console .pricing-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .pricing-term-control {
    width: 100%;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .commercial-page .commercial-plans-console .console-tabs {
    margin-right: -24px;
    margin-left: -24px;
    padding-inline: 24px;
  }

  .commercial-page .commercial-plans-console .console-tab {
    min-height: 54px;
    padding-inline: 0.85rem;
    font-size: var(--c-type-micro);
  }

  .commercial-page .commercial-plans-console .included-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .commercial-page .commercial-plans-console .plan-card {
    min-height: auto;
  }
}

/* ============================================================
   00 · Tela de boas-vindas
   Abertura da call: uma frase, o roteiro do que vem depois e uma
   seta que leva para a apresentação. Tudo o que se move aqui é
   ambiente — nada disputa a leitura da primeira frase.
   ============================================================ */

/* O `zoom: 0.8` da página não é compensado nas unidades de viewport: 100svh
   renderiza a 80% da tela. Como a abertura precisa fechar exatamente na dobra
   — é a seta que promete a próxima seção —, o fator volta aqui. */
.welcome-screen {
  --welcome-vh: calc(1svh / 0.8);
  position: relative;
  display: flex;
  min-height: calc(var(--welcome-vh) * 100);
  padding-block: clamp(1.75rem, 3.5vw, 3rem) clamp(1.75rem, 3.5vw, 2.75rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--c-bg);
  align-items: stretch;
}

.welcome-screen::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 78% 6%, rgba(253, 91, 59, 0.2), transparent 30rem),
    radial-gradient(circle at 6% 90%, rgba(66, 101, 178, 0.16), transparent 34rem),
    linear-gradient(180deg, #080b13 0%, var(--c-bg) 55%, #0b0f19 100%);
  content: "";
}

/* A malha de pontos deriva devagar: dá vida ao fundo sem virar padrão
   piscante atrás do texto. A máscara concentra o brilho no centro. */
.welcome-screen::after {
  position: absolute;
  inset: -25%;
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(253, 91, 59, 0.28) 0 1px, transparent 1.5px);
  background-position: 15px 17px, 48px 64px;
  background-size: 97px 97px, 139px 139px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at 50% 42%, #000 26%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 42%, #000 26%, transparent 74%);
  animation: welcomeDrift 38s linear infinite;
  content: "";
}

.welcome-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  transform: translate3d(var(--welcome-px, 0px), var(--welcome-py, 0px), 0);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.welcome-aurora {
  position: absolute;
  inset: -40% -25%;
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(253, 91, 59, 0.15) 62deg,
    transparent 142deg,
    rgba(84, 214, 155, 0.07) 224deg,
    transparent 302deg
  );
  filter: blur(70px);
  animation: welcomeSpin 52s linear infinite;
}

.welcome-orb {
  position: absolute;
  border-radius: 50%;
}

.welcome-orb--one {
  top: -16%;
  right: 2%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(253, 91, 59, 0.28), transparent 68%);
  animation: welcomeFloat 19s ease-in-out infinite;
}

.welcome-orb--two {
  bottom: -20%;
  left: -8%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(66, 101, 178, 0.26), transparent 70%);
  animation: welcomeFloat 26s ease-in-out infinite reverse;
}

.welcome-orb--three {
  top: 32%;
  left: 44%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(255, 139, 116, 0.16), transparent 68%);
  animation: welcomeFloat 33s ease-in-out infinite;
}

/* Um facho vertical atravessa a tela de tempos em tempos — o mesmo
   sinal de operação viva que aparece nas seções seguintes. */
.welcome-beam {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(253, 91, 59, 0.55), transparent);
  animation: welcomeSweep 14s ease-in-out infinite;
}

.welcome-screen .commercial-container {
  width: min(100% - 64px, 1240px);
}

.welcome-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(1.5rem, 3.5vh, 3rem);
  align-items: start;
}

.welcome-brand {
  animation: welcomeFadeIn 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 120ms;
}

/* Abertura de apresentação: a frase fica centrada como um slide de
   título, não encostada à esquerda como uma seção de leitura. */
.welcome-copy {
  display: grid;
  text-align: center;
  align-content: center;
  align-self: center;
  justify-items: center;
}

/* ---------- selo de boas-vindas ---------- */

.welcome-screen .welcome-eyebrow {
  display: inline-flex;
  padding: 0.5rem 1.15rem 0.5rem 0.9rem;
  border: 1px solid rgba(253, 91, 59, 0.32);
  border-radius: 999px;
  background: rgba(253, 91, 59, 0.08);
  color: var(--c-coral-light);
  font-family: var(--font-display);
  font-size: var(--c-type-label);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.7rem;
  animation: welcomeFadeIn 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 220ms;
}

.welcome-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-coral);
  box-shadow: 0 0 14px rgba(253, 91, 59, 0.9);
}

.welcome-pulse::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--c-coral);
  border-radius: 50%;
  animation: welcomePing 2.2s ease-out infinite;
  content: "";
}

/* ---------- frase de abertura ---------- */

/* As quebras da frase são autorais, uma por <span>: o balanceamento
   automático e qualquer max-width só atrapalhariam o desenho.
   O grid existe para as margens negativas das linhas em gradiente não
   colapsarem com as vizinhas (ver .welcome-line--accent). */
.welcome-screen .welcome-title {
  display: grid;
  margin-top: clamp(1.4rem, 3vh, 2.4rem);
  font-size: clamp(2.6rem, 5.4vw, 5.6rem);
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-wrap: nowrap;
}

/* Cada linha entra por baixo e sai do desfoque: a frase se monta em
   cascata, na mesma ordem em que é lida. */
.welcome-screen .welcome-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0.5em, 0);
  filter: blur(14px);
  animation: welcomeLineIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(360ms + var(--line) * 120ms);
}

/* `background-clip: text` só pinta dentro da caixa do elemento, e com
   line-height 0.94 os descendentes (g, ç, p) ficam de fora — apareciam
   cortados. O padding estica a área de pintura e a margem negativa devolve
   a altura, mantendo o mesmo ritmo entre as linhas. */
.welcome-screen .welcome-line--accent {
  padding-block: 0.08em 0.22em;
  margin-block: -0.08em -0.22em;
  background-image: linear-gradient(
    96deg,
    #ff7d61 0%,
    #fd5b3b 22%,
    #ffd9cb 42%,
    #fd5b3b 62%,
    #ff8b74 100%
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation:
    welcomeLineIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    welcomeSheen 7s linear infinite;
  animation-delay: calc(360ms + var(--line) * 120ms), calc(1.8s + var(--line) * 120ms);
}

.welcome-screen .welcome-lead {
  max-width: 62ch;
  margin-top: clamp(1.4rem, 3vh, 2.1rem);
  color: var(--c-muted-strong);
  font-size: clamp(1.2rem, 1.45vw, 1.45rem);
  line-height: 1.6;
  animation: welcomeFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 900ms;
}

/* ---------- roteiro da apresentação ---------- */

.welcome-screen .welcome-agenda {
  display: flex;
  width: 100%;
  max-width: 1040px;
  margin-top: clamp(1.75rem, 3.5vh, 2.6rem);
  margin-inline: auto;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  list-style: none;
}

.welcome-agenda li {
  display: inline-flex;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: var(--c-type-micro);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: welcomeChipIn 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(1.05s + var(--chip) * 90ms);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.welcome-agenda a {
  display: inline-flex;
  padding: 0.6rem 1.15rem;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
}

.welcome-agenda a:focus-visible {
  border-radius: inherit;
  outline: 2px solid var(--c-coral);
  outline-offset: 4px;
}

.welcome-agenda li:hover {
  border-color: rgba(253, 91, 59, 0.45);
  background: rgba(253, 91, 59, 0.1);
  color: var(--c-text);
  transform: translateY(-2px);
}

.welcome-agenda i {
  color: var(--c-coral);
  font-style: normal;
}

/* ---------- seta para a próxima seção ---------- */

/* A entrada é animada nos filhos, não no <a>: assim o link fica livre para
   o fade de saída quando a apresentação começa a rolar — uma animação com
   fill-mode venceria qualquer `opacity` declarada aqui. */
.welcome-screen .welcome-scroll {
  position: relative;
  display: grid;
  padding-top: clamp(0.5rem, 2vh, 1.5rem);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-size: var(--c-type-micro);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  justify-self: center;
  justify-items: center;
  gap: 0.8rem;
  transition: color 260ms ease, opacity 400ms ease;
}

.welcome-scroll-text {
  animation: welcomeFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 1.4s;
}

.welcome-scroll:hover,
.welcome-scroll:focus-visible {
  color: var(--c-text);
}

.welcome-scroll-trace {
  width: 1px;
  height: clamp(26px, 5vh, 52px);
  background: linear-gradient(to bottom, transparent, rgba(253, 91, 59, 0.75));
  transform-origin: top center;
  animation: welcomeTrace 2.6s ease-in-out infinite backwards;
  animation-delay: 1.4s;
}

.welcome-scroll-ring {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(253, 91, 59, 0.42);
  border-radius: 50%;
  background: rgba(253, 91, 59, 0.08);
  color: var(--c-coral);
  place-items: center;
  animation:
    welcomeFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) backwards,
    welcomeBob 2.6s ease-in-out infinite backwards;
  animation-delay: 1.4s, 1.65s;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease;
}

.welcome-scroll-ring::after {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--c-coral);
  border-radius: 50%;
  animation: welcomePing 2.6s ease-out infinite backwards;
  animation-delay: 1.8s;
  content: "";
}

.welcome-scroll-ring svg {
  width: 22px;
  height: 22px;
}

.welcome-scroll:hover .welcome-scroll-ring,
.welcome-scroll:focus-visible .welcome-scroll-ring {
  border-color: var(--c-coral);
  background: var(--c-coral);
  color: #12070a;
}

/* Depois que a apresentação começa, a seta sai do caminho. */
.welcome-screen.is-scrolled .welcome-scroll {
  opacity: 0;
  pointer-events: none;
}

/* ---------- keyframes ---------- */

@keyframes welcomeFadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes welcomeLineIn {
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes welcomeChipIn {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes welcomeSheen {
  from {
    background-position: 160% 50%;
  }
  to {
    background-position: -60% 50%;
  }
}

@keyframes welcomeDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-97px, -97px, 0);
  }
}

@keyframes welcomeSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes welcomeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2.5rem, -2rem, 0) scale(1.08);
  }
}

@keyframes welcomeSweep {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  12% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.35;
    transform: translate3d(72vw, 0, 0);
  }
  88% {
    opacity: 0.55;
  }
}

@keyframes welcomePing {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes welcomeBob {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 7px, 0);
  }
}

@keyframes welcomeTrace {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
  }
}

/* ---------- responsivo ---------- */

@media (max-height: 780px) {
  .welcome-screen .welcome-title {
    font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  }

  .welcome-screen .welcome-agenda {
    margin-top: 1.5rem;
  }

  .welcome-scroll-ring {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 920px) {
  .welcome-screen .commercial-container {
    width: min(100% - 48px, 820px);
  }

  .welcome-screen .welcome-title {
    font-size: clamp(2.5rem, 6.4vw, 4.2rem);
  }
}

/* No celular tudo é medido para a abertura ainda caber em uma tela: a
   frase volta a quebrar sozinha, os respiros encolhem e o roteiro passa a
   ocupar duas linhas em vez de uma trilha rolável. */
@media (max-width: 640px) {
  /* Neste breakpoint a página volta a `zoom: 1`, então svh já vale a tela
     inteira e a compensação sai de cena. */
  .welcome-screen {
    --welcome-vh: 1svh;
    padding-block: 1.15rem 1.5rem;
  }

  .welcome-screen .commercial-container {
    width: min(100% - 32px, 600px);
  }

  .welcome-stage {
    gap: 1.1rem;
  }

  .welcome-screen .welcome-title {
    margin-top: 1.05rem;
    font-size: clamp(1.95rem, 7.8vw, 2.7rem);
    line-height: 1;
    text-wrap: pretty;
  }

  .welcome-screen .welcome-eyebrow {
    font-size: var(--c-type-micro);
  }

  .welcome-screen .welcome-lead {
    margin-top: 0.95rem;
    font-size: var(--c-type-body);
  }

  .welcome-screen .welcome-agenda {
    margin-top: 1.35rem;
    gap: 0.4rem;
  }

  /* Aperta o suficiente para caberem dois por linha — cinco itens em
     quatro fileiras ficam com cara de sobra, não de roteiro. */
  .welcome-agenda a {
    padding: 0.42rem 0.7rem;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    gap: 0.4rem;
  }

  .welcome-screen .welcome-scroll {
    padding-top: 0.15rem;
    gap: 0.55rem;
  }

  .welcome-scroll-trace {
    height: 22px;
  }

  .welcome-scroll-ring {
    width: 44px;
    height: 44px;
  }

  .welcome-scroll-ring svg {
    width: 18px;
    height: 18px;
  }
}

/* Sem movimento: a tela abre pronta e só o conteúdo permanece. */
@media (prefers-reduced-motion: reduce) {
  .welcome-screen::after,
  .welcome-aurora,
  .welcome-orb,
  .welcome-beam,
  .welcome-brand,
  .welcome-screen .welcome-eyebrow,
  .welcome-pulse::after,
  .welcome-screen .welcome-line,
  .welcome-screen .welcome-line--accent,
  .welcome-screen .welcome-lead,
  .welcome-agenda li,
  .welcome-scroll-text,
  .welcome-scroll-trace,
  .welcome-scroll-ring,
  .welcome-scroll-ring::after {
    animation: none !important;
  }

  .welcome-backdrop {
    transition: none;
  }

  .welcome-screen .welcome-line,
  .welcome-screen .welcome-lead,
  .welcome-agenda li,
  .welcome-brand,
  .welcome-screen .welcome-eyebrow,
  .welcome-scroll-text,
  .welcome-scroll-trace,
  .welcome-scroll-ring {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
