/* ==========================================================================
   Dectus — folha de estilo (redesenho 2026)
   Cores e tipografia seguem o Manual de Identidade Visual:
   #FF0066, #36084A, branco; gradiente #FA0066 -> #5A074F.
   Fontes institucionais: RNS Miles Black (títulos, caixa-alta) e
   Bw Glenn Sans (textos). São fontes pagas: quando houver a licença web,
   coloque os .woff2 em assets/fonts/ e descomente os @font-face abaixo.
   Até lá, League Spartan (títulos) e Catamaran (textos), gratuitas no Google Fonts,
   são as substitutas mais próximas (comparadas com as amostras do manual).

   Organização da página: duas trilhas com cor própria.
   - "Para você" (cliente final): fundo rosado claro.
   - "Para empresas" (varejista): roxo da marca, depois lilás claro.
   Movimento: uma entrada no topo, o "Como funciona" guiado pela rolagem,
   a cortina roxa da trilha de empresas e transições nas trocas de aba.
   Tudo some com prefers-reduced-motion.
   ========================================================================== */

/*
@font-face { font-family: "RNS Miles"; src: url("../fonts/rns-miles-black.woff2") format("woff2"); font-weight: 900; font-display: swap; }
@font-face { font-family: "Bw Glenn Sans"; src: url("../fonts/bw-glenn-sans-regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Bw Glenn Sans"; src: url("../fonts/bw-glenn-sans-medium.woff2") format("woff2"); font-weight: 500 600; font-display: swap; }
@font-face { font-family: "Bw Glenn Sans"; src: url("../fonts/bw-glenn-sans-bold.woff2") format("woff2"); font-weight: 700 800; font-display: swap; }
*/

:root {
  /* cor — marca */
  --magenta: #FF0066;
  --plum: #36084A;
  --wine: #5A074F;
  --grad: linear-gradient(135deg, #FA0066 0%, #5A074F 100%);
  --grad-pass: linear-gradient(135deg, #FF0066 0%, #FF0066 50%, #5A074F 100%);

  /* cor — derivadas (tons da própria marca, para contraste e superfícies) */
  --ink: #36084A;
  --ink-soft: #5B4868;
  --ink-mute: #6B5878;
  --ink-faint: #8A7896;
  --magenta-text: #D6005E;   /* magenta para texto pequeno em fundo claro (5,2:1) */
  --magenta-deep: #A3004A;
  --magenta-on-dark: #FF5C98; /* magenta para texto pequeno em fundo roxo */
  --plum-deep: #24042F;
  --pink-soft: #FFE3EE;
  --blush: #FFF4F8;
  --lilac: #F3E7F8;
  --lilac-soft: #F8F2FB;
  --line: #EBDDF1;
  --line-strong: #D8C3E2;
  --white: #FFFFFF;
  --deep: #1A0621;
  --on-dark: #EADCF1;
  --on-dark-mute: #CDB5DA;
  --ok: #1F9D55;
  --ok-soft: #DDF3E6;
  --ok-text: #17693B;
  --grad-night: radial-gradient(60% 70% at 88% 8%, rgba(255,0,102,.32) 0%, rgba(255,0,102,0) 70%), linear-gradient(165deg, #36084A 0%, #2A0639 55%, #24042F 100%);

  /* tipo */
  --font-display: "RNS Miles", "League Spartan", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Bw Glenn Sans", "Catamaran", ui-sans-serif, system-ui, sans-serif;

  /* layout */
  --gutter: clamp(16px, 5vw, 40px);
  --max: 1200px;
  --sec-pad: clamp(72px, 10vw, 136px);
  --radius-xl: 40px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shadow-soft: 0 16px 40px rgba(54,8,74,.08);
  --shadow-lift: 0 30px 70px rgba(54,8,74,.14);
  --head-h: 68px;

  /* movimento */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.4, .64, 1);

  interpolate-size: allow-keywords;
}

/* transição suave entre a home e as páginas institucionais */
@view-transition { navigation: auto; }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-variant-numeric: lining-nums;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--magenta-text); }
a:hover { color: var(--magenta-deep); }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; }
section[id], [id="lista"] { scroll-margin-top: calc(var(--head-h) + 12px); }
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--magenta); color: var(--white); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 16px; border-radius: 999px; background: var(--ink); color: var(--white);
  font-weight: 700; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 12px; color: var(--white); }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); position: relative; }
.wrap--narrow { max-width: calc(860px + 2 * var(--gutter)); }
.stack-sm > * + * { margin-top: 16px; }
.stack-md > * + * { margin-top: 22px; }
.stack-lg > * + * { margin-top: clamp(28px, 4vw, 44px); }
.stack-xl > * + * { margin-top: clamp(48px, 7vw, 88px); }

/* ---------- tipografia ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
/* título do topo: uma frase por linha, tamanho calculado pela largura da coluna para as duas linhas ficarem iguais */
.display--hero { font-size: clamp(34px, 10.5vw, 44px); line-height: 1; letter-spacing: -0.015em; }
@media (min-width: 901px) {
  .display--hero { font-size: clamp(30px, 6.8cqi, 60px); }
  .display--hero .line > span { white-space: nowrap; }
}
.display--xl { font-size: clamp(36px, 5vw, 56px); }
.display--lg { font-size: clamp(32px, 4.6vw, 60px); line-height: .98; }
.display--md { font-size: clamp(24px, 2.8vw, 34px); line-height: 1.04; }
.display--sm { font-size: clamp(20px, 2vw, 26px); line-height: 1.08; }

.lead { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.55; color: var(--ink-soft); max-width: 36em; text-wrap: pretty; }
.lead--on-dark { color: var(--on-dark); }
.lead strong { color: var(--ink); }
.lead--on-dark strong { color: var(--white); }
.note { font-size: 14px; line-height: 1.5; color: var(--ink-mute); }
.note--on-dark { color: var(--on-dark-mute); }

/* marcador de trilha: diz em qual parte da página a pessoa está */
.track__label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  font-size: 15px; font-weight: 800;
}
.track__label svg { width: 18px; height: 18px; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  border: 2px solid transparent; background: none;
  font-size: 16px; font-weight: 800; line-height: 1.2; text-decoration: none; text-align: center;
  transition: background .2s, color .2s, border-color .2s, transform .35s var(--ease-spring), box-shadow .35s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); transition-duration: .08s; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary { background: var(--magenta-text); color: var(--white); box-shadow: 0 10px 24px rgba(214,0,94,.25); }
.btn--primary:hover { background: var(--magenta-deep); color: var(--white); box-shadow: 0 16px 32px rgba(214,0,94,.32); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--pink-soft); color: var(--ink); }
.btn--outline { background: var(--white); border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--lilac); color: var(--ink); }
.btn--outline-light { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }
.btn--ghost { background: var(--white); border: 1px solid var(--line-strong); color: var(--ink); font-weight: 600; }
.btn--ghost:hover { background: var(--lilac); color: var(--ink); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 14px; }
.btn--lg { min-height: 56px; padding: 0 28px; font-size: 17px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: default; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.chip-btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 46px; padding: 0 14px; border-radius: 999px;
  background: transparent; border: 1px solid var(--line-strong); color: var(--ink-mute);
  font-size: 14px; font-weight: 700;
}
.chip-btn svg { width: 16px; height: 16px; }
.chip-btn[aria-pressed="false"] { opacity: .7; }

/* segmentado (abas de filtro) */
.segmented {
  display: inline-flex; flex-wrap: wrap; gap: 2px; padding: 5px;
  border-radius: 26px; background: var(--white); border: 1px solid var(--line);
}
.segmented button {
  min-height: 44px; padding: 0 20px; border: 0; border-radius: 999px;
  background: transparent; color: var(--ink); font-size: 16px; font-weight: 700;
  transition: background .25s, color .25s;
}
.segmented button:hover { background: var(--lilac); }
.segmented [aria-pressed="true"], .segmented [aria-selected="true"] { background: var(--ink); color: var(--white); }
.segmented--block { display: flex; background: var(--lilac); border: 0; border-radius: 16px; padding: 4px; }
.segmented--block button { flex: 1 1 0; border-radius: 12px; font-size: 14px; padding: 0 8px; }
.segmented--block [aria-selected="true"] { background: var(--white); color: var(--ink); box-shadow: 0 4px 12px rgba(54,8,74,.12); }

/* etiquetas */
.tag { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 999px; font-size: 14px; font-weight: 800; }
.tag--muted { background: var(--lilac); color: var(--ink-mute); }
.tag--hot { background: var(--magenta-text); color: var(--white); }
.tag--ink { background: var(--ink); color: var(--white); }
.tag--glass { background: rgba(255,255,255,.16); color: var(--white); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.pill-soft { display: inline-block; padding: 4px 12px; border-radius: 999px; background: var(--lilac); color: var(--ink); font-size: 14px; font-weight: 700; }
.pill-light { display: inline-block; padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,.2); font-size: 11px; font-weight: 700; }
.chip { display: inline-block; padding: 6px 12px; border-radius: 999px; font-size: 14px; font-weight: 700; }
.chip--ink { background: var(--ink); color: var(--white); }
.chip--pink { background: var(--pink-soft); color: var(--magenta-deep); }
.hot { color: var(--magenta-text); }

/* listas de verificação */
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; line-height: 1.5; }
.checklist svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--ok); }
.checklist--dark li { color: var(--on-dark-mute); }
.checklist--dark strong { color: var(--white); }
.checklist--dark svg { color: var(--magenta-on-dark); }

/* ---------- cabeçalho ---------- */
.head {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: saturate(1.4) blur(16px); backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, background .3s, border-color .3s;
}
.head.is-scrolled { background: rgba(255,255,255,.9); border-bottom-color: var(--line); box-shadow: 0 10px 30px rgba(54,8,74,.08); }
.head__progress {
  position: absolute; left: 0; bottom: -1px; height: 3px; width: 100%;
  background: var(--grad);
  transform-origin: 0 50%; transform: scaleX(var(--progress, 0));
}
.head__row {
  position: relative; max-width: 1240px; margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.head__brand { display: flex; align-items: center; min-height: 44px; flex-shrink: 0; }
.head__brand img { height: 30px; width: auto; }
.head__nav { display: flex; align-items: center; gap: 4px; }
.navlink {
  position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: 999px;
  color: var(--ink); font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: background .25s, color .25s;
}
.navlink:hover { background: var(--lilac); color: var(--ink); }
.navlink[aria-current="true"], .navlink[aria-current="page"] { background: var(--ink); color: var(--white); }
.menu a[aria-current="page"] { background: var(--lilac); font-weight: 800; }
.navlink--lang { font-weight: 800; padding: 0 14px; }
.head__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.only-narrow { display: none; }
.menu-btn {
  display: none; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: var(--white); color: var(--ink);
}
.menu-btn[aria-expanded="true"] { background: var(--lilac); }
.menu-btn svg { width: 20px; height: 20px; }
.menu {
  position: absolute; right: clamp(16px, 4vw, 40px); top: calc(100% + 8px);
  width: min(calc(100vw - 32px), 320px); padding: 10px; border-radius: 20px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(54,8,74,.22);
  display: flex; flex-direction: column; gap: 4px;
  transform-origin: top right;
  animation: menuIn .28s var(--ease-out);
}
.menu[hidden] { display: none; }
.menu a {
  display: flex; align-items: center; min-height: 48px; padding: 0 16px; border-radius: 14px;
  color: var(--ink); font-weight: 600; text-decoration: none;
}
.menu a:hover { background: var(--pink-soft); color: var(--ink); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-6px) scale(.97); } }

@media (max-width: 900px) {
  .head__nav { display: none; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 560px) {
  .only-wide { display: none; }
  .only-narrow { display: inline; }
  .head__brand img { height: 26px; }
  .head__actions .btn--sm { padding: 0 14px; }
}

/* ---------- barra de trilhas (celular): "Para você | Para empresas" ---------- */
.trackbar {
  position: fixed; left: 50%; bottom: max(14px, env(safe-area-inset-bottom)); z-index: 35;
  display: none; grid-template-columns: 1fr 1fr; padding: 5px; border-radius: 999px;
  background: rgba(36,4,47,.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(36,4,47,.35);
  transform: translate(-50%, 140%); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .3s;
}
.trackbar.is-on { transform: translate(-50%, 0); opacity: 1; }
.trackbar a {
  position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 16px; border-radius: 999px;
  color: var(--on-dark); font-size: 15px; font-weight: 800; text-decoration: none; white-space: nowrap;
  transition: color .3s;
}
.trackbar a svg { width: 18px; height: 18px; }
.trackbar a[aria-current="true"] { color: var(--white); }
.trackbar__pill {
  position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); border-radius: 999px;
  background: var(--magenta-text); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .3s, background .4s;
}
.trackbar[data-active="voce"] .trackbar__pill { opacity: 1; transform: translateX(0); }
.trackbar[data-active="empresas"] .trackbar__pill { opacity: 1; transform: translateX(100%); background: var(--wine); }
@media (max-width: 900px) { .js .trackbar { display: grid; } }

/* ---------- seções ---------- */
.sec { position: relative; padding-block: var(--sec-pad); overflow-x: clip; }
.sec--white { background: var(--white); }
.sec--night { background: var(--grad-night); color: var(--white); overflow: hidden; }
.sec--night > .wrap { z-index: 1; }
.sec--contact { background: var(--white); padding-top: clamp(24px, 4vw, 48px); }
.sec__head { max-width: 800px; }
.sec__head > * + * { margin-top: 18px; }
.sec__head--wide { max-width: 1000px; }
.sec__head-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px 24px; }

.split .display--lg { font-size: clamp(30px, 3.8vw, 50px); }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap: clamp(36px, 5vw, 72px); }
.split--center { align-items: center; }

/* símbolo da marca como grafismo (manual: símbolo grande e recortado) */
.brand-mark { position: absolute; pointer-events: none; fill: currentColor; }
.brand-mark--hero { right: -180px; top: -160px; width: 720px; height: 720px; color: var(--pink-soft); }
.brand-mark--night { right: -200px; bottom: -240px; width: 680px; height: 680px; color: rgba(255,255,255,.05); }
.brand-mark--waitlist { right: -120px; bottom: -160px; width: 460px; height: 460px; color: rgba(255,255,255,.08); }
.brand-mark--biz { left: -260px; top: 80px; width: 760px; height: 760px; color: rgba(255,255,255,.04); }
.brand-mark--contact { right: -110px; bottom: -130px; width: 380px; height: 380px; color: rgba(255,255,255,.09); }
@media (max-width: 700px) { .brand-mark--hero { width: 440px; height: 440px; right: -190px; top: -100px; } }

/* ---------- palcos escaláveis (ilustrações em em) ---------- */
.stage-wrap { container-type: inline-size; width: 100%; }
.waves { position: absolute; pointer-events: none; }
.waves i { position: absolute; inset: 0; border-radius: 50%; border: .1875em solid var(--magenta); opacity: 0; }
.waves--inline i { animation: wave 1.5s ease-out infinite; }
.waves i:nth-child(2) { animation-delay: .5s; }
.waves i:nth-child(3) { animation-delay: 1s; }
@keyframes wave { 0% { transform: scale(.4); opacity: 0 } 30% { opacity: 1 } 100% { transform: scale(1.35); opacity: 0 } }
@keyframes rise { 0% { transform: translateY(-70px); opacity: 0 } 100% { transform: none; opacity: 1 } }
@keyframes pop { 0% { transform: scale(.6); opacity: 0 } 70% { transform: scale(1.06); opacity: 1 } 100% { transform: scale(1); opacity: 1 } }
@keyframes spin { to { transform: rotate(360deg) } }
@keyframes draw { to { stroke-dashoffset: 0 } }
@keyframes fade { 0% { opacity: 0; transform: translateY(10px) } 100% { opacity: 1; transform: none } }

.spinner { width: 1.75em; height: 1.75em; border-radius: 50%; border: .1875em solid rgba(224,0,90,.2); border-top-color: var(--magenta); animation: spin 1s linear infinite; }
.spinner--lg { width: 2.125em; height: 2.125em; }
.ok-badge { width: 6em; height: 6em; border-radius: 50%; background: var(--ok); display: flex; align-items: center; justify-content: center; }
.ok-badge svg { width: 3.375em; height: 3.375em; }
.ok-badge path { fill: none; stroke: var(--white); stroke-width: 9; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 80; stroke-dashoffset: 80; }
.pop { animation: pop .5s cubic-bezier(.2,.9,.2,1.2) both; }
.pop .check, .pop path { animation: draw .45s .25s ease-out forwards; }
.rise { animation: rise .9s cubic-bezier(.2,.9,.2,1) both; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 6vw, 88px) 0 clamp(56px, 8vw, 104px);
  background:
    radial-gradient(50% 60% at 85% 20%, rgba(255,0,102,.10) 0%, rgba(255,0,102,0) 70%),
    linear-gradient(180deg, var(--blush) 0%, var(--white) 100%);
}
.hero__grid {
  display: grid; gap: clamp(28px, 4vw, 48px) clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
  grid-template-areas: "copy demo" "doors doors";
  align-items: center;
}
.hero__copy { grid-area: copy; container-type: inline-size; }
.hero__demo { grid-area: demo; }
.doors { grid-area: doors; }
.hero__copy > * + * { margin-top: 24px; }
.hero__lead { font-size: clamp(18px, 1.7vw, 22px); line-height: 1.5; font-weight: 500; color: var(--ink-soft); max-width: 30em; text-wrap: pretty; }
.display--hero .line { display: block; overflow: hidden; padding: .14em 0 .04em; margin-top: -.14em; } /* folga para acentos (Ê, Ã) */
.display--hero .line > span { display: block; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; grid-template-areas: "copy" "doors" "demo"; }
}
/* topo da página do cliente: pontos, botão e link para empresas */
.hero__strong { font-size: clamp(18px, 1.6vw, 21px); font-weight: 800; color: var(--ink); }
.hero__points { display: grid; gap: 10px; }
.hero__points li { display: flex; align-items: flex-start; gap: 10px; font-size: 17px; font-weight: 600; line-height: 1.4; }
.hero__points svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; padding: 4px; border-radius: 50%; background: var(--pink-soft); color: var(--magenta-deep); }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; padding-top: 6px; }
.hero__biz { font-size: 16px; color: var(--ink-soft); }
.hero__biz a { font-weight: 800; color: var(--ink); text-underline-offset: 4px; text-decoration-thickness: 2px; }
.hero__biz a:hover { color: var(--magenta-text); }
.eyebrow { font-size: 15px; font-weight: 800; color: var(--magenta-text); }

/* três cartões: um passe, sem aplicativo, pontos e descontos */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.info-card { display: flex; flex-direction: column; gap: 12px; padding: clamp(24px, 3vw, 34px); border-radius: var(--radius-lg); background: var(--lilac-soft); border: 1px solid var(--line); }
.info-card__icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--grad); color: var(--white); margin-bottom: 4px; }
.info-card__icon svg { width: 26px; height: 26px; }
.info-card h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.05; text-transform: uppercase; text-wrap: balance; }
.info-card p { color: var(--ink-soft); }
.info-card__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.info-card__chips li { padding: 8px 14px; border-radius: 12px; background: var(--ink); color: var(--white); font-size: 15px; font-weight: 800; }

/* sua compra continua igual: sequência de passos curtos */
.purchase { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 12px; counter-reset: compra; }
.purchase li { counter-increment: compra; position: relative; padding: 20px 20px 20px 62px; border-radius: 20px; background: var(--white); border: 1px solid #F4D3E2; font-size: 17px; font-weight: 700; line-height: 1.35; }
.purchase li::before { content: counter(compra); position: absolute; left: 18px; top: 18px; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--grad); color: var(--white); font-size: 15px; font-weight: 800; }
.purchase__end { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); text-transform: uppercase; color: var(--magenta-text); }
.waitlist__note { font-size: 15px; color: rgba(255,255,255,.9); }

/* as duas portas: cada público vê os seus três benefícios e o seu próximo passo */
.doors { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 16px; }
.door {
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 14px;
  padding: clamp(24px, 3vw, 32px); border-radius: var(--radius-lg);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.door:hover { transform: translateY(-4px); }
.door > :not(.door__art) { position: relative; z-index: 1; }
.door__who, .door__title { max-width: 64%; }
.door--biz .door__list { max-width: 72%; }
.door__art { position: absolute; z-index: 0; pointer-events: none; transition: transform .7s var(--ease-out); }
.door__art--pass { right: 1%; top: 8%; width: 40%; font-size: clamp(14px, 1.45vw, 21px); transform: rotate(8deg); }
.door__art--pass .wpass { width: 11em; box-shadow: 0 1.4em 2.4em -.6em rgba(214,0,94,.45); }
.door__art--point { right: 2%; top: 8%; height: 62%; width: auto; transform: rotate(-6deg); filter: drop-shadow(0 24px 30px rgba(0,0,0,.5)); }
.door:hover .door__art--pass { transform: rotate(3deg) translateY(-6px); }
.door:hover .door__art--point { transform: rotate(-2deg) translateY(-6px); }
/* borda em gradiente que aparece ao passar o mouse ou focar */
.door::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: inherit; padding: 2px;
  background: var(--grad); opacity: 0; transition: opacity .4s var(--ease-out);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}
.door--biz::before { background: linear-gradient(135deg, #FF5C98 0%, #FFB3CF 100%); }
.door:hover::before, .door:focus-within::before { opacity: 1; }
/* o cartão inteiro leva ao botão principal; "Ver benefícios" continua clicável por cima */
.door .btn::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); }
.door .btn:hover, .door .btn:active { transform: none; }
.door__more { position: relative; z-index: 3; }
@media (max-width: 560px) {
  .door__who, .door__title { max-width: 70%; }
  .door__art--pass { font-size: 12px; right: -10%; top: 5%; }
  .door__art--point { height: 130px; right: -14px; top: 16px; }
  .door--biz .door__list { max-width: none; }
  .door--biz .door__title { max-width: 62%; }
}
.door--you { background: linear-gradient(160deg, var(--white) 55%, var(--blush) 100%); border: 1px solid #F4D3E2; box-shadow: 0 20px 50px rgba(255,0,102,.08); }
.door--you:hover { box-shadow: 0 28px 60px rgba(255,0,102,.14); }
.door--biz { background: var(--grad-night); color: var(--white); box-shadow: 0 20px 50px rgba(54,8,74,.22); }
.door--biz:hover { box-shadow: 0 28px 60px rgba(54,8,74,.3); }
.door__who { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; }
.door__who svg { width: 20px; height: 20px; }
.door--you .door__who { color: var(--magenta-text); }
.door--biz .door__who { color: var(--magenta-on-dark); }
.door__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.05; text-transform: uppercase; text-wrap: balance; }
.door__list { display: grid; gap: 8px; }
.door__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 17px; font-weight: 600; line-height: 1.4; }
.door__list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.door--you .door__list svg { color: var(--magenta-text); }
.door--biz .door__list li { color: var(--on-dark); }
.door--biz .door__list svg { color: var(--magenta-on-dark); }
.door__actions { margin-top: auto; padding-top: 8px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; }
.door__more { display: inline-flex; align-items: center; min-height: 44px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.door--you .door__more { color: var(--ink); }
.door--biz .door__more { color: var(--white); }

/* demonstração do toque */
.hero__demo { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero__controls { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; }
.hero__controls .btn { min-height: 48px; padding: 0 22px; font-weight: 700; }

.stage-wrap--hero { max-width: 520px; }
.hero-stage { --glow: rgba(90,7,79,.22); font-size: calc(100cqw / 35); position: relative; width: 100%; aspect-ratio: 560 / 540; }
.hs-glow { position: absolute; left: 2em; top: 4.5em; width: 18em; height: 25.5em; border-radius: 4.375em; background: var(--glow); filter: blur(3.125em); transition: background .6s; }
.hs-floor { position: absolute; left: 3.5em; top: 29.9em; width: 15em; height: 1.625em; border-radius: 50%; background: rgba(54,8,74,.22); filter: blur(.75em); }
.hs-point { position: absolute; left: 5.2em; top: 4.6em; height: 24em; width: auto; max-width: none; filter: drop-shadow(0 1.875em 2.5em rgba(54,8,74,.35)); user-select: none; }
.hs-waves { left: 7.4em; top: 13.4em; width: 6.875em; height: 6.875em; display: none; }
.hs-phone {
  position: absolute; left: 19.6em; top: 4.6em; width: 11.2em; height: 23em;
  transform: translate(1.4em, 2.6em) rotate(12deg);
  transition: transform 1.4s cubic-bezier(.22,.9,.18,1);
}
.hs-phone__body { position: absolute; inset: 0; border-radius: 2.125em; }
.hs-phone__screen { position: absolute; inset: .42em; border-radius: 1.75em; overflow: hidden; display: flex; flex-direction: column; }
.scr { flex-grow: 1; display: none; flex-direction: column; align-items: center; text-align: center; padding: .5em .7em 1em; }
.hs-toast {
  position: absolute; left: 12.5em; top: .625em; display: none; align-items: center; gap: .75em;
  padding: .75em 1.125em; border-radius: 1.125em; background: var(--white); border: .0625em solid var(--line);
  box-shadow: 0 1em 2.5em rgba(54,8,74,.14);
}
.hs-toast__icon { width: 2.25em; height: 2.25em; border-radius: .75em; background: var(--pink-soft); display: flex; align-items: center; justify-content: center; color: var(--magenta); }
.hs-toast__icon svg { width: 1.25em; height: 1.25em; }
.hs-toast strong { display: block; font-size: .9375em; }
.hs-toast small { display: block; font-size: .8125em; color: var(--ink-soft); }
.hero-stage[data-state="lock"] .phone-glass, .how-stage[data-step="1"] .phone-glass { background: var(--wallpaper); color: var(--white); }
.hero-stage[data-state="lock"] .phone-status b, .how-stage[data-step="1"] .phone-status b { visibility: hidden; }
.hero-stage[data-state="done"] .phone-glass, .how-stage[data-step="3"] .phone-glass { background: var(--white); }
.hero-stage[data-state="lock"] [data-screen="lock"],
.hero-stage[data-state="read"] [data-screen="read"],
.hero-stage[data-state="done"] [data-screen="done"] { display: flex; }
.hero-stage[data-state="read"] { --glow: rgba(255,0,102,.45); }
.hero-stage[data-state="read"] .hs-phone { transform: translate(-2.1em, .3em) rotate(-9deg); }
.hero-stage[data-state="read"] .hs-waves { display: block; }
.hero-stage[data-state="read"] .waves i { animation: wave 1.5s ease-out infinite; }
.hero-stage[data-state="done"] { --glow: rgba(31,157,85,.45); }
.hero-stage[data-state="done"] .hs-phone { transform: translate(-1em, .9em) rotate(-6deg); }
.hero-stage[data-state="done"] .hs-toast { display: flex; }

/* entrada da página: o único movimento automático além da demonstração */
@media (prefers-reduced-motion: no-preference) {
  .js .display--hero .line > span { animation: lineUp 1s var(--ease-out) both; }
  .js .display--hero .line + .line > span { animation-delay: .12s; }
  .js .hero__lead { animation: fade .9s .3s var(--ease-out) both; }
  .js .hero__demo { animation: fadeScale 1.1s .2s var(--ease-out) both; }
  .js .door { animation: fade .9s var(--ease-out) both; }
  .js .door--you { animation-delay: .45s; }
  .js .door--biz { animation-delay: .55s; }
}
@keyframes lineUp { from { transform: translateY(105%); } }
@keyframes fadeScale { from { opacity: 0; transform: scale(.94); } }

/* ==========================================================================
   COMO FUNCIONA — o celular fica parado ao lado e muda conforme a rolagem
   ========================================================================== */
.how { margin-top: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); align-items: start; }
.how__visual { position: sticky; top: calc(var(--head-h) + 3vh); }
.stage-wrap--how { max-width: 520px; margin-inline: auto; }
.how-steps { counter-reset: step; display: flex; flex-direction: column; }
.how-steps > li {
  counter-increment: step; position: relative;
  padding: 28px 0 28px 76px; border-top: 1px solid var(--line);
}
.how-steps > li:last-child { border-bottom: 1px solid var(--line); }
.how-steps > li::before {
  content: counter(step); position: absolute; left: 0; top: 26px;
  width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  background: var(--lilac); color: var(--wine);
  transition: background .5s var(--ease-out), color .5s, transform .5s var(--ease-spring);
}
.how-steps h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.05; text-transform: uppercase; }
.how-steps p { margin-top: 10px; color: var(--ink-soft); font-size: 18px; max-width: 30em; }
/* passo inativo: tom mais claro, ainda com contraste AA (título 3,9:1, texto 6:1) */
.js .how-steps > li:not(.is-active) h3 { color: var(--ink-faint); }
.js .how-steps > li:not(.is-active) p { color: var(--ink-mute); }
.how-steps > li.is-active::before { background: var(--grad); color: var(--white); transform: scale(1.08); }

/* com JS, cada passo ocupa uma "tela" e o ativo fica em destaque */
@media (min-width: 901px) {
  .js .how-steps > li { min-height: 62vh; display: flex; flex-direction: column; justify-content: center; border: 0; padding-block: 0; }
  .js .how-steps > li::before { top: 50%; margin-top: -26px; }
  .js .how-steps > li:first-child { min-height: 48vh; justify-content: flex-start; padding-top: 12vh; }
  .js .how-steps > li:first-child::before { top: 12vh; margin-top: 0; }
  .js .how-steps > li:last-child { min-height: 70vh; }
  .js .how-steps > li > * { transition: color .5s var(--ease-out), transform .6s var(--ease-out); }
  .js .how-steps > li:not(.is-active) > * { transform: translateX(-6px); }
}
/* celular: o palco fica fixo no alto e os passos passam por baixo dele */
@media (max-width: 900px) {
  .how { grid-template-columns: 1fr; gap: 0; }
  .how__visual { top: var(--head-h); z-index: 2; background: var(--white); padding: 8px 0 14px; box-shadow: 0 14px 18px -16px rgba(54,8,74,.25); }
  .stage-wrap--how { max-width: min(100%, 34vh); }
  .js .how-steps > li { min-height: 40vh; }
  .js .how-steps > li:last-child { min-height: 60vh; }
  .how-steps > li { padding-left: 68px; }
  .how-steps > li::before { width: 48px; height: 48px; font-size: 22px; }
}

.how-stage { --glow: rgba(255,0,102,.18); font-size: calc(100cqw / 35); position: relative; width: 100%; aspect-ratio: 560 / 580; }
.how-stage__blob { position: absolute; left: 3.75em; top: 2.5em; width: 28.75em; height: 31.25em; border-radius: 48% 52% 44% 56% / 55% 42% 58% 45%; background: var(--lilac); transition: border-radius 1.2s var(--ease-out), background .8s; }
.how-stage[data-step="1"] .how-stage__blob { border-radius: 55% 45% 52% 48% / 45% 55% 45% 55%; }
.how-stage[data-step="2"] .how-stage__blob { border-radius: 44% 56% 58% 42% / 52% 46% 54% 48%; background: var(--pink-soft); }
.how-stage[data-step="3"] .how-stage__blob { border-radius: 50% 50% 46% 54% / 58% 44% 56% 42%; background: var(--ok-soft); }
.how-stage__glow { position: absolute; left: .625em; top: 8.125em; width: 11.88em; height: 20.62em; border-radius: 2.5em; background: var(--glow); filter: blur(2.5em); transition: background .6s; }
.how-stage__point { position: absolute; left: 3em; top: 8.6em; height: 18em; width: auto; max-width: none; filter: drop-shadow(0 1.5em 1.875em rgba(54,8,74,.3)); }
.how-stage__waves { left: 4.6em; top: 14.9em; width: 5.625em; height: 5.625em; z-index: 3; display: none; }
.how-rig { position: absolute; left: 11.25em; top: 0; width: 26.25em; height: 36.25em; z-index: 2; transform-origin: 13.12em 18.12em; transform: translate(2.5em, .625em) scale(.92); transition: transform 1.1s var(--ease-out); }
.how-rig__body { position: absolute; left: 5em; top: 1.25em; width: 16.25em; height: 33.75em; border-radius: 2.75em; }
.how-rig__screen { position: absolute; left: 5.62em; top: 1.87em; width: 15em; height: 32.5em; border-radius: 2.2em; overflow: hidden; background: #F2F2F7; display: flex; flex-direction: column; }
.hscr { flex-grow: 1; display: none; flex-direction: column; align-items: center; text-align: center; padding: .6em 1em 1.4em; animation: fade .45s ease both; }
.hscr--add { gap: .9em; text-align: left; align-items: stretch; background: var(--white); }
.hscr__small { font-size: .8125em; line-height: 1.5; color: var(--ink-soft); }
.hscr__app { display: flex; align-items: center; justify-content: space-between; padding: .2em 0 .5em; border-bottom: .0625em solid var(--line); }
.hscr__app img { height: 1.1em; width: auto; }
.hscr__app span { font-size: .7em; font-weight: 700; color: var(--ink-mute); }
.wallet-add { margin-top: auto; height: 2.9em; border-radius: .7em; background: #000; color: var(--white); display: flex; align-items: center; justify-content: center; gap: .5em; font-size: .85em; font-weight: 600; }
.wallet-add svg { width: 1.3em; height: 1.3em; }
/* celular realista: corpo em metal escuro com brilho de borda, botões, ilha, vidro */
:root { --wallpaper: radial-gradient(120% 60% at 15% 0%, #FF3D8B 0%, rgba(255,0,102,0) 62%), radial-gradient(90% 55% at 100% 100%, #7A0C66 0%, rgba(122,12,102,0) 70%), linear-gradient(180deg, #36084A 0%, #1A0621 100%); }
.phone-body {
  background: linear-gradient(150deg, #6A5878 0%, #2A1B36 16%, #120818 48%, #2A1B36 84%, #5A4868 100%);
  box-shadow: inset 0 0 0 .07em rgba(255,255,255,.4), inset 0 0 0 .34em #07040A,
              0 2.4em 3.2em -.8em rgba(36,4,47,.5), 0 .7em 1.2em rgba(36,4,47,.18);
}
.phone-btn { position: absolute; width: .2em; border-radius: .1em; background: linear-gradient(90deg, #120818, #6A5878); }
.phone-btn--vol1 { left: -.16em; top: 20%; height: 6%; }
.phone-btn--vol2 { left: -.16em; top: 28%; height: 6%; }
.phone-btn--power { right: -.16em; left: auto; top: 24%; height: 10%; background: linear-gradient(270deg, #120818, #6A5878); }
.phone-glass { background: #F2F2F7; color: var(--ink); transition: background .6s; }
.phone-glass::after {
  content: ""; position: absolute; inset: 0; z-index: 6; pointer-events: none; border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,.07) 26%, rgba(255,255,255,0) 40%);
}
.phone-status { position: relative; z-index: 4; flex-shrink: 0; height: 2.2em; display: flex; align-items: center; justify-content: space-between; padding: 0 1.05em 0 1.25em; }
.phone-status b { width: 3.2em; font-size: .6em; font-weight: 700; letter-spacing: .01em; }
.phone-island { width: 3.5em; height: 1.05em; border-radius: 1em; background: #000; }
.phone-icons { width: 1.95em; height: auto; }
/* tela de bloqueio */
.scr--lock, .hscr--lock { position: relative; justify-content: flex-start; gap: .1em; padding-top: .9em; color: var(--white); }
.lock-mark { position: absolute; right: -35%; bottom: -12%; width: 110%; height: auto; aspect-ratio: 1; fill: rgba(255,255,255,.07); }
.lock-date { position: relative; font-size: .66em; font-weight: 600; opacity: .9; }
.lock-time { position: relative; font-family: var(--font-display); font-weight: 700; font-size: 3.5em; line-height: 1; letter-spacing: -.03em; }
.hscr--lock .lock-time { font-size: 4.6em; }
.lock-hint {
  position: relative; margin-top: auto; display: inline-flex; align-items: center; gap: .45em;
  padding: .6em 1em; border-radius: 999px; background: rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); font-size: .62em; font-weight: 700;
}
.lock-hint svg { width: 1.3em; height: 1.3em; }
/* "Segure perto do leitor" e concluído, como na Carteira */
.scr--read, .hscr--read { justify-content: flex-start; gap: 1.1em; padding-top: .7em; }
.scr--done, .hscr--done { justify-content: flex-start; gap: .55em; padding-top: .7em; }
.nfc-ring { position: relative; width: 4.4em; height: 4.4em; margin-top: .4em; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--magenta); border: .16em solid rgba(255,0,102,.15); }
.nfc-ring::before { content: ""; position: absolute; inset: -.16em; border-radius: 50%; border: .16em solid transparent; border-top-color: var(--magenta); border-right-color: var(--magenta); animation: spin 1.1s linear infinite; }
.nfc-ring svg { width: 1.8em; height: 1.8em; }
.hscr--read .nfc-ring { width: 5.6em; height: 5.6em; margin-top: 1em; }
.scr__label { font-size: .78em; font-weight: 800; }
.scr__small { font-size: .66em; color: var(--ink-soft); }
.scr--done .ok-badge, .hscr--done .ok-badge { width: 3.6em; height: 3.6em; margin-top: .6em; }
.scr--done .ok-badge svg, .hscr--done .ok-badge svg { width: 2em; height: 2em; }
.hscr--done .ok-badge { width: 4.6em; height: 4.6em; margin-top: 1.2em; }
.hscr .scr__label { font-size: .95em; }

/* passe da Carteira: mesmo desenho em todos os mockups */
.wpass {
  position: relative; overflow: hidden; width: 100%; aspect-ratio: 1.58; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: .7em .8em; border-radius: .75em; color: var(--white); text-align: left;
  background: radial-gradient(90% 80% at 0% 0%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 55%), linear-gradient(135deg, #FF0066 0%, #E0005F 45%, #5A074F 100%);
  box-shadow: 0 .7em 1.3em -.3em rgba(214,0,94,.45), inset 0 0 0 .05em rgba(255,255,255,.25);
}
.wpass__mark { position: absolute; right: -18%; bottom: -34%; width: 72%; height: auto; aspect-ratio: 1; fill: rgba(255,255,255,.13); }
.wpass > div { position: relative; }
.wpass__top { display: flex; justify-content: space-between; align-items: flex-start; }
.wpass__top img { height: .85em; width: auto; margin-top: .15em; }
.wpass small { display: block; font-size: .4em; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; opacity: .8; }
.wpass b { display: block; font-size: .6em; font-weight: 700; line-height: 1.2; }
.wpass__field { text-align: right; }
.wpass__main b { font-size: 1.05em; font-weight: 800; letter-spacing: .07em; }
.wpass__foot { display: flex; justify-content: space-between; align-items: flex-end; }
.wpass__foot svg { width: 1em; height: 1em; opacity: .9; }
.wpass--small { width: 82%; font-size: .82em; }

.pos-box { margin-top: auto; width: 100%; padding: .875em; border-radius: .875em; background: var(--white); border: .0625em solid var(--line); display: flex; flex-direction: column; gap: .5em; text-align: left; }
.pos-box__title { font-size: .75em; font-weight: 800; color: var(--magenta-text); }
.pos-box div:not(.pos-box__title) { display: flex; justify-content: space-between; gap: .5em; font-size: .75em; }
.pos-box span { color: var(--ink-soft); }
.pos-box b { text-align: right; }
.how-stage__progress { position: absolute; left: 50%; bottom: -.375em; transform: translateX(-50%); display: flex; gap: .5em; }
.how-stage__progress i { width: .5em; height: .5em; border-radius: .25em; background: var(--line-strong); transition: width .45s var(--ease-out), background .45s; }
.how-stage[data-step="0"] [data-hscr="0"],
.how-stage[data-step="1"] [data-hscr="1"],
.how-stage[data-step="2"] [data-hscr="2"],
.how-stage[data-step="3"] [data-hscr="3"] { display: flex; }
.how-stage[data-step="1"] .how-rig { transform: translate(-1.5em, .625em) rotate(-8deg) scale(.9); }
.how-stage[data-step="2"] { --glow: rgba(255,0,102,.45); }
.how-stage[data-step="2"] .how-rig { transform: translate(-3.6em, 0) rotate(-12deg) scale(.9); }
.how-stage[data-step="2"] .how-stage__waves { display: block; }
.how-stage[data-step="2"] .how-stage__waves i { animation: wave 1.5s ease-out infinite; }
.how-stage[data-step="3"] { --glow: rgba(31,157,85,.4); }
.how-stage[data-step="3"] .how-rig { transform: translate(1.25em, 0) scale(.92); }
.how-stage[data-step="0"] .how-stage__progress i:nth-child(1),
.how-stage[data-step="1"] .how-stage__progress i:nth-child(2),
.how-stage[data-step="2"] .how-stage__progress i:nth-child(3),
.how-stage[data-step="3"] .how-stage__progress i:nth-child(4) { width: 1.75em; background: var(--magenta); }

/* ==========================================================================
   TRILHAS
   ========================================================================== */
.track--you { background: var(--blush); }
.track--you .track__label { background: var(--white); color: var(--magenta-text); border: 1px solid #F4D3E2; }
.track--biz { background: var(--plum-deep); color: var(--white); overflow: clip; isolation: isolate; }
.track--biz > .wrap { z-index: 1; }
.track--biz .track__label { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.track--biz .lead { color: var(--on-dark); }
.track__curtain { position: absolute; inset: 0; z-index: -1; background: var(--grad-night); }
.track--biz-soft { background: var(--lilac-soft); }
.track--biz-soft + .track--biz-soft { padding-top: 0; }
.track--you + .track--you { padding-top: 0; }

/* página de empresas: a seção roxa abre a página (sem cortina) */
.track--first { padding-top: clamp(48px, 7vw, 96px); }
.track--first.track--biz { background: var(--plum-deep); }
.track--first .track__curtain { animation: none !important; clip-path: none !important; }
.faq-cols--single { grid-template-columns: minmax(0, 860px); }

/* a cortina roxa se abre quando a trilha de empresas entra na tela */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .track--biz { background: var(--blush); }
    .track__curtain {
      animation: curtain linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 90%;
    }
    .brand-mark--biz {
      animation: markTurn linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
    .brand-mark--hero {
      animation: markTurn linear both;
      animation-timeline: scroll(root);
      animation-range: 0 100vh;
    }
  }
}
@keyframes curtain {
  from { clip-path: inset(0 6% 0 6% round 64px 64px 0 0); }
  to   { clip-path: inset(0 0 0 0 round 0); }
}
@keyframes markTurn {
  from { transform: rotate(-12deg) scale(.92); }
  to   { transform: rotate(10deg) scale(1.04); }
}

/* ---------- PARA VOCÊ: comparação ---------- */
.versus { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(20px, 3vw, 40px); }
.versus__panel {
  position: relative; overflow: hidden; padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-xl);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.versus__panel > .tag { align-self: flex-start; position: relative; z-index: 1; }
.versus__panel figcaption { position: relative; margin-top: auto; font-size: 17px; line-height: 1.5; text-align: center; max-width: 28em; }
.versus__panel .versus__art { margin-block: auto; }
.versus__panel figcaption strong { display: block; font-size: 19px; }
.versus__panel--before { background: var(--white); border: 1px solid #F1DDE9; color: var(--ink-soft); }
.versus__panel--before::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: radial-gradient(#E4D2EC 1.4px, transparent 1.4px); background-size: 18px 18px; }
.versus__panel--before figcaption strong { color: var(--ink); }
.versus__panel--after { background: var(--grad-night); color: var(--on-dark); box-shadow: 0 30px 70px rgba(54,8,74,.25); }
.versus__panel--after::before { content: ""; position: absolute; left: 10%; top: 25%; width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,0,102,.45) 0%, rgba(255,0,102,0) 65%); filter: blur(20px); }
.versus__panel--after figcaption strong { color: var(--white); }

/* monitor de caixa (Hoje) e celular (Com a Dectus): ilustrações em em, escalam com o painel */
.versus__art { font-size: clamp(12.5px, 1.45vw, 20px); position: relative; }
.pos { width: 23em; max-width: calc(100% - 1em); margin-right: 1em; display: flex; flex-direction: column; align-items: center; margin-block: auto; }
.pos__screen {
  width: 100%; aspect-ratio: 16 / 11; padding: .5em; border-radius: 1em;
  background: linear-gradient(150deg, #4A3A58 0%, #1A0F22 30%, #120818 60%, #2A1B36 100%);
  box-shadow: inset 0 0 0 .06em rgba(255,255,255,.35), inset 0 0 0 .28em #07040A, 0 1.6em 2.4em -.8em rgba(36,4,47,.45);
}
.pos__inner { position: relative; height: 100%; border-radius: .5em; overflow: hidden; display: flex; flex-direction: column; background: linear-gradient(180deg, #FBF7FC 0%, #EFE4F3 100%); color: var(--ink); }
.pos__inner::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 35%); }
.pos__bar { display: flex; justify-content: space-between; align-items: center; padding: .55em .8em; background: var(--plum); color: var(--white); font-size: .55em; font-weight: 800; letter-spacing: .03em; }
.pos__queue { display: inline-flex; align-items: center; gap: .45em; padding: .2em .6em; border-radius: 999px; background: rgba(255,59,48,.22); color: #FFB4AE; }
.pos__queue i { width: .55em; height: .55em; border-radius: 50%; background: #FF3B30; animation: blink 1.2s steps(2) infinite; }
.pos__body { flex: 1; min-height: 0; display: grid; grid-template-columns: 1fr 1.25fr; gap: .6em; padding: .6em; }
.pos__left { display: flex; flex-direction: column; gap: .4em; min-width: 0; }
.pos__title { font-size: .5em; font-weight: 800; color: var(--ink-mute); }
.pos__field { padding: .35em .5em; border-radius: .4em; background: var(--white); border: .08em solid var(--magenta-text); box-shadow: 0 0 0 .18em rgba(255,0,102,.12); }
.pos__field small { display: block; font-size: .4em; font-weight: 800; color: var(--magenta-text); letter-spacing: .06em; }
.pos__typing { display: block; font-size: .72em; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pos__typing span { display: inline-block; overflow: hidden; vertical-align: bottom; width: 0; border-right: .09em solid var(--magenta); animation: typing 4.8s steps(13) infinite, caret .8s steps(2) infinite; }
.pos__wait { display: flex; align-items: center; gap: .25em; padding: .4em .5em; border-radius: .4em; background: rgba(54,8,74,.06); color: var(--ink-mute); font-size: .44em; font-weight: 700; }
.pos__wait i { width: .45em; height: .45em; border-radius: 50%; background: var(--magenta-text); animation: blink 1.2s infinite; }
.pos__wait i:nth-child(2) { animation-delay: .2s; }
.pos__wait i:nth-child(3) { animation-delay: .4s; margin-right: .35em; }
/* pinpad (maquininha) na frente do monitor: é nele que o cliente digita o CPF */
.pinpad {
  position: absolute; right: -.9em; bottom: -.9em; width: 6.6em; padding: .45em .45em .55em;
  border-radius: .8em .8em 1.1em 1.1em; transform: rotate(-7deg); transform-origin: bottom center;
  background: linear-gradient(160deg, #3A2A48 0%, #1A0F22 45%, #120818 100%);
  box-shadow: inset 0 0 0 .05em rgba(255,255,255,.3), 0 1.2em 1.6em -.4em rgba(36,4,47,.55);
}
.pinpad__screen { padding: .35em .4em; border-radius: .35em; background: linear-gradient(180deg, #E7F1E5, #C8DBC5); color: #1D2B1C; box-shadow: inset 0 .08em .2em rgba(0,0,0,.25); }
.pinpad__screen small { display: block; font-size: .36em; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.pinpad__screen .pos__typing { font-size: .5em; }
.pinpad__keys { margin-top: .4em; display: grid; grid-template-columns: repeat(3, 1fr); gap: .18em; }
.pinpad__keys span { height: .95em; border-radius: .22em; background: linear-gradient(180deg, #4A3A58, #2A1B36); box-shadow: 0 .07em 0 #07040A; color: #EADCF1; font-size: .36em; font-weight: 800; display: flex; align-items: center; justify-content: center; height: 2.6em; }
.pinpad__keys span:empty { background: none; box-shadow: none; }
.pinpad__actions { margin-top: .22em; display: grid; grid-template-columns: repeat(3, 1fr); gap: .18em; }
.pinpad__actions span { height: .5em; border-radius: .2em; box-shadow: 0 .07em 0 #07040A; }
.pinpad__actions .is-red { background: #E5484D; }
.pinpad__actions .is-yellow { background: #F5C518; }
.pinpad__actions .is-green { background: #2FA84F; }
.pos__chat { display: flex; flex-direction: column; gap: .3em; min-width: 0; }
.pos .bubble { display: flex; gap: .3em; align-items: flex-end; }
.pos .bubble span { padding: .35em .55em; border-radius: .7em .7em .7em .2em; background: var(--white); border: .05em solid #E4D2EC; font-size: .48em; line-height: 1.3; box-shadow: 0 .15em .4em rgba(54,8,74,.06); }
.pos .bubble--me { align-self: flex-end; padding: .35em .55em; border-radius: .7em .7em .2em .7em; background: var(--ink); color: var(--white); font-size: .45em; line-height: 1.3; }
.pos__timer { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: .4em; padding: .35em .5em; border-radius: .45em; background: var(--white); border: .05em solid #F1C9DA; color: var(--magenta-text); font-size: .48em; font-weight: 800; }
.pos__timer svg { width: 1.2em; height: 1.2em; }
.pos__neck { width: 3em; height: 1.5em; background: linear-gradient(90deg, #120818, #3A2A48 50%, #120818); }
.pos__base { width: 10em; height: .7em; border-radius: .35em .35em .6em .6em; background: linear-gradient(180deg, #3A2A48, #120818); box-shadow: 0 1em 1.2em -.4em rgba(36,4,47,.45); }
@keyframes typing { 0%, 8% { width: 0; } 62%, 100% { width: 13ch; } }
@keyframes caret { 50% { border-right-color: transparent; } }
@keyframes blink { 50% { opacity: .3; } }

.vphone { width: 13em; height: 24.5em; flex-shrink: 0; }
.vphone__body { position: absolute; inset: 0; border-radius: 2.3em; }
.vphone__screen { position: absolute; inset: .45em; border-radius: 1.9em; overflow: hidden; display: flex; flex-direction: column; background: #F2F2F7; }
.vphone__content { flex: 1; display: flex; flex-direction: column; gap: .7em; padding: .5em .75em 1em; }
.vphone .ticks { display: flex; flex-direction: column; gap: .35em; padding: .45em; border-radius: .9em; background: var(--white); box-shadow: 0 .3em .9em rgba(54,8,74,.06); }
.vphone .ticks li { display: flex; align-items: center; gap: .6em; padding: .35em .3em; font-size: .62em; font-weight: 700; }
.vphone .ticks li + li { border-top: .08em solid #F1E6F5; }
.vphone .tick { width: 1.6em; height: 1.6em; border-radius: 50%; background: var(--ok); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vphone .tick svg { width: 1em; height: 1em; }
.vphone__timer { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: .45em; padding: .55em; border-radius: .7em; background: var(--ok-soft); color: var(--ok-text); font-size: .6em; font-weight: 800; }
.vphone__timer svg { width: 1.3em; height: 1.3em; }
/* os ✓ entram em sequência quando o painel aparece */
@media (prefers-reduced-motion: no-preference) {
  .js .vphone .ticks li { animation: tickIn .6s var(--ease-out) both; animation-timeline: view(); animation-range: entry 30% entry 90%; }
}
@keyframes tickIn { from { opacity: 0; transform: translateX(-.6em); } }

/* benefícios para o cliente e para a loja (mesma grade, cores da trilha) */
.perks, .gains { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.gains { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); max-width: 900px; }
.perks, .gains { gap: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 48px); }
.perks li, .gains li { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto 1fr; column-gap: 16px; }
.perks__icon, .gains__icon { grid-row: 1 / 3; width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.perks__icon svg, .gains__icon svg { width: 26px; height: 26px; }
.perks h3, .gains h3, .gains h2 { font-size: 20px; font-weight: 800; line-height: 1.25; align-self: center; }
.perks p, .gains p { margin-top: 6px; }
.perks__icon { background: var(--white); color: var(--magenta-text); box-shadow: 0 10px 24px rgba(255,0,102,.12); }
.perks p { color: var(--ink-soft); }
.gains__icon { background: rgba(255,255,255,.1); color: var(--magenta-on-dark); border: 1px solid rgba(255,255,255,.16); }
.gains p { color: var(--on-dark-mute); }

.wallets {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 32px;
  padding: clamp(22px, 3vw, 32px) clamp(24px, 3vw, 40px); border-radius: var(--radius-lg); background: var(--white); border: 1px solid #F4D3E2;
}
.wallets__text { font-size: 18px; color: var(--ink-soft); max-width: 32em; }
.wallets__text strong { color: var(--ink); }
/* Carteiras compatíveis: duas etiquetas iguais. Os selos oficiais "Adicionar à Carteira" (assets/*-wallet-badge-*.svg)
   são botões de ação e só devem aparecer quando adicionarem o passe de verdade. */
.wallets__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; flex: 1 1 420px; max-width: 520px; }
.wallets__list li { display: flex; align-items: center; gap: 12px; min-height: 60px; padding: 10px 18px 10px 12px; border-radius: 16px; background: var(--ink); color: var(--white); }
.wallets__list svg { flex-shrink: 0; width: 38px; height: 38px; padding: 8px; border-radius: 11px; background: rgba(255,255,255,.12); color: var(--white); }
.wallets__list strong { display: block; font-size: 16px; font-weight: 800; line-height: 1.2; }
.wallets__list small { display: block; font-size: 13px; color: var(--on-dark); }
@media (max-width: 480px) { .wallets__list { grid-template-columns: 1fr; } }

/* ---------- SEUS DADOS ---------- */
.consent {
  position: relative; justify-self: center; width: min(100%, 460px); border-radius: 30px; background: var(--white); color: var(--ink);
  padding: 22px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 50px 90px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.6);
}
/* cartão de fundo: dá profundidade, como uma pilha de telas */
.consent::before {
  content: ""; position: absolute; inset: 26px -20px -20px 26px; z-index: -1; border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,0,102,.7), rgba(90,7,79,.6)); transform: rotate(4deg);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.consent__head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid #F1E6F5; }
.consent__me { flex-shrink: 0; width: 44px; height: 44px; border-radius: 14px; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(214,0,94,.3); }
.consent__me svg { width: 22px; height: 22px; fill: var(--white); }
.consent__who { flex: 1; min-width: 0; }
.consent__who small { display: block; font-size: 13px; font-weight: 700; color: var(--ink-mute); }
.consent__head h3 { font-family: var(--font-display); font-weight: 800; font-size: 17px; line-height: 1.15; text-transform: uppercase; }
.consent__badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 999px; background: var(--ok-soft); color: var(--ok-text); font-size: 13px; font-weight: 800; }
.consent__badge svg { width: 15px; height: 15px; }
.consent__row { display: flex; align-items: center; gap: 12px; min-height: 54px; padding: 6px 2px; }
.consent__row + .consent__row { border-top: 1px solid #F4EDF7; }
.consent__ico { flex-shrink: 0; width: 36px; height: 36px; border-radius: 11px; background: var(--lilac-soft); color: var(--wine); display: flex; align-items: center; justify-content: center; transition: background .3s, color .3s; }
.consent__ico svg { width: 18px; height: 18px; }
.consent__row:has([aria-checked="true"]) .consent__ico, .consent__row:first-child .consent__ico { background: var(--pink-soft); color: var(--magenta-text); }
.consent__row > span:nth-child(2) { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.consent__row strong { font-size: 16px; font-weight: 700; line-height: 1.3; }
.consent__row small { font-size: 14px; line-height: 1.35; color: var(--ink-mute); }
.consent__row .pill-soft { color: var(--ink-mute); }
.switch { position: relative; flex-shrink: 0; width: 56px; height: 32px; border-radius: 999px; border: 0; background: var(--line-strong); transition: background .25s; }
.switch::after { content: ""; position: absolute; inset: -6px -2px; } /* área de toque de 44px */
.switch span { position: absolute; top: 3px; left: 3px; width: 26px; height: 26px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 6px rgba(0,0,0,.2); transition: transform .35s var(--ease-spring); }
.switch[aria-checked="true"] { background: var(--magenta-text); }
.switch[aria-checked="true"] span { transform: translateX(24px); }
/* o que a loja recebe, mostrado como a tela do caixa */
.consent__result { position: relative; padding: 16px 16px 18px; border-radius: 20px; background: var(--grad-night); color: var(--white); display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.consent__result::before { content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(255,0,102,.45), rgba(255,0,102,0) 70%); }
.consent__result > strong { position: relative; display: block; font-size: 14px; font-weight: 800; color: var(--on-dark); }
.consent__result > strong::before { content: ""; display: inline-block; vertical-align: middle; margin: -2px 10px 0 2px; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(31,157,85,.25); }
.consent__chips { position: relative; display: flex; flex-wrap: wrap; gap: 6px; }
.consent__result .chip { padding: 7px 12px; font-size: 14px; }
.consent__result .chip--ink { background: var(--white); color: var(--ink); }
.consent__result .chip--pink { background: rgba(255,255,255,.14); color: var(--white); border: 1px solid rgba(255,255,255,.25); }

/* ---------- LISTA DE ESPERA / formulários ---------- */
.waitlist {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl); background: var(--grad); color: var(--white); padding: clamp(28px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center;
  box-shadow: 0 40px 80px rgba(250,0,102,.22);
}
.waitlist > :not(.brand-mark) { position: relative; z-index: 1; }
.waitlist .lead { color: rgba(255,255,255,.92); }
.form { display: flex; flex-direction: column; gap: 12px; }
.form--dark { padding: clamp(20px, 3vw, 28px); border-radius: 24px; background: rgba(36,4,47,.35); border: 1px solid rgba(255,255,255,.2); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 15px; font-weight: 700; }
.field__opt { font-weight: 500; opacity: .8; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field input {
  min-height: 52px; padding: 0 16px; border-radius: 14px; font: inherit; font-size: 16px; font-weight: 500;
  border: 1px solid var(--line-strong); background: var(--white); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus { border-color: var(--magenta-text); box-shadow: 0 0 0 3px rgba(255,0,102,.18); outline: none; }
.field input:focus-visible { outline: 3px solid var(--magenta); outline-offset: 2px; }
.field input::placeholder { color: #8E7C9B; }
.form--dark .field input { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.14); color: var(--white); }
.form--dark .field input::placeholder { color: rgba(255,255,255,.72); }
.form--dark .field input:focus-visible { outline-color: var(--white); }
.field input[aria-invalid="true"] { border-color: var(--magenta); box-shadow: 0 0 0 2px rgba(255,0,102,.25); }
.form--dark .field input[aria-invalid="true"] { border-color: var(--white); box-shadow: 0 0 0 2px rgba(255,255,255,.5); }
.form .btn { margin-top: 6px; }
.form__status { font-size: 15px; font-weight: 700; }
.form__status:empty { display: none; }
.form__status.is-ok { color: var(--ok-text); }
.form__status.is-error { color: var(--magenta-text); }
.form--dark .form__status { padding: 10px 14px; border-radius: 12px; background: rgba(255,255,255,.95); }
.form--dark .form__status.is-ok { color: var(--ok-text); }
.form--dark .form__status.is-error { color: var(--magenta-deep); }
.form__legal { font-size: 14px; color: var(--ink-mute); }
.form--dark .form__legal { color: rgba(255,255,255,.88); }
.form--dark .form__legal a { color: var(--white); }

/* ---------- PARA EMPRESAS ---------- */
.biz-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); align-items: center; gap: clamp(28px, 5vw, 72px); }
@media (max-width: 820px) { .biz-intro { grid-template-columns: 1fr; } .point-showcase { min-height: 0; padding: 24px; } .point-showcase__views { width: min(70%, 240px); } }
.point-showcase {
  position: relative; display: flex; justify-content: center; align-items: center; min-height: 380px;
  border-radius: var(--radius-xl); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); overflow: hidden; padding: 32px;
}
.point-showcase::before { content: ""; position: absolute; inset: 0; opacity: .3; background-image: radial-gradient(rgba(255,255,255,.5) 1.2px, transparent 1.2px); background-size: 18px 18px; }
.point-showcase::after { content: ""; position: absolute; left: 12%; top: 50%; width: 76%; aspect-ratio: 1; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255,0,102,.5) 0%, rgba(255,0,102,0) 65%); filter: blur(14px); }
.point-showcase__views { position: relative; z-index: 1; width: min(80%, 290px); aspect-ratio: 1052 / 1400; margin-top: 28px; }
.point-showcase__views img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity .9s ease; filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); }
.point-showcase__views img.is-on { opacity: 1; }
.point-showcase .tag { position: absolute; left: 20px; top: 20px; z-index: 2; }

.why { padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid rgba(255,255,255,.14); }
.why > .display { max-width: 22em; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: clamp(24px, 3vw, 48px); }
.stats > div { display: flex; flex-direction: column; }
.stats dt { order: 2; margin-top: 10px; font-size: 17px; line-height: 1.5; color: var(--on-dark); }
.stats__n { order: 1; font-family: var(--font-display); font-weight: 800; font-size: clamp(52px, 6.4vw, 88px); letter-spacing: -.03em; line-height: .9; background: linear-gradient(135deg, #FF5C98 0%, #FFB3CF 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats__src { order: 3; margin-top: 8px; font-size: 14px; color: var(--on-dark-mute); }
.case { padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-md); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); max-width: 860px; }
.case__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 2.8vw, 34px); line-height: 1.04; text-transform: uppercase; }
.case blockquote p + p { margin-top: 10px; font-size: 18px; color: var(--on-dark); }
.case figcaption { margin-top: 12px; font-size: 14px; color: var(--on-dark-mute); }

.compare .display { color: var(--white); }
/* tabela: ícone + poucas palavras; a coluna da Dectus é um cartão em destaque */
.compare__scroll { padding-top: 14px; overflow-x: auto; }
.compare__table { width: 100%; min-width: 820px; border-collapse: separate; border-spacing: 0; table-layout: fixed; }
.compare__table th, .compare__table td { padding: 16px 18px; text-align: left; vertical-align: middle; }
.compare__table thead td, .compare__table thead th { padding-top: 6px; padding-bottom: 14px; font-size: 15px; font-weight: 700; color: var(--on-dark-mute); }
.compare__table thead td { width: 21%; }
.compare__table tbody tr > * { border-top: 1px solid rgba(255,255,255,.1); }
.compare__table tbody th { font-weight: 700; color: var(--white); }
.cmp-crit { display: flex; align-items: center; gap: 12px; }
.cmp-crit svg { flex-shrink: 0; width: 36px; height: 36px; padding: 8px; border-radius: 11px; background: rgba(255,255,255,.08); color: var(--magenta-on-dark); }
.cmp { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; line-height: 1.3; color: var(--on-dark); }
.cmp svg { flex-shrink: 0; width: 26px; height: 26px; padding: 5px; border-radius: 50%; }
.cmp--ok svg { background: rgba(31,157,85,.22); color: #6FE0A0; }
.cmp--mid svg { background: rgba(245,197,24,.18); color: #F5C518; }
.cmp--no svg { background: rgba(229,72,77,.2); color: #FF8A8E; }
/* coluna Dectus: cartão branco que sobe acima do cabeçalho */
.compare__table .is-us { position: relative; background: var(--white); color: var(--ink); border-top-color: #F4E6EE !important; }
.compare__table thead .is-us { border-radius: 22px 22px 0 0; padding: 18px 18px 14px; background: var(--grad); color: var(--white); }
.compare__table tbody tr:last-child .is-us { border-radius: 0 0 22px 22px; box-shadow: 0 30px 40px -20px rgba(0,0,0,.5); }
.compare__table tbody .is-us .cmp { color: var(--ink); font-weight: 800; }
.compare__table tbody .is-us .cmp--ok svg { background: var(--ok); color: var(--white); }
.cmp-us { display: flex; flex-direction: column; gap: 2px; font-family: var(--font-display); font-size: 17px; font-weight: 800; line-height: 1.1; text-transform: uppercase; color: var(--white); }
.cmp-us small { font-family: var(--font-body); font-size: 13px; font-weight: 800; text-transform: none; letter-spacing: 0; opacity: .9; }
@media (max-width: 760px) {
  .compare__scroll { overflow: visible; padding-top: 0; }
  .compare__table { min-width: 0; table-layout: auto; }
  .compare__table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .compare__table, .compare__table tbody, .compare__table tr, .compare__table th, .compare__table td { display: block; }
  .compare__table tbody tr { display: flex; flex-direction: column; margin-bottom: 12px; border-radius: 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); overflow: hidden; }
  .compare__table tbody tr > * { border-top: 0; }
  .compare__table tbody th { padding: 14px 16px 6px; }
  .compare__table tbody td { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 16px; }
  .compare__table tbody td::before { content: attr(data-label); font-size: 14px; font-weight: 600; color: var(--on-dark-mute); }
  .compare__table tbody td.is-us { order: -1; margin: 6px 10px 6px; padding: 12px 14px; border-radius: 14px !important; box-shadow: none; }
  .compare__table tbody td.is-us::before { color: var(--magenta-text); font-weight: 800; }
  .compare__table tbody tr > th { order: -2; }
}

/* ---------- DE ONDE VEM O DESCONTO ---------- */
.paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 12px; }
.path { padding: 18px; border-radius: 20px; }
.path h3 { font-size: 15px; font-weight: 800; }
.path--club { background: var(--pink-soft); }
.path--club h3 { color: var(--magenta-deep); }
.path--points { background: var(--lilac); }
.path--points h3 { color: var(--wine); }
.flow { margin-top: 10px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 14px; font-weight: 700; }
.flow span { padding: 6px 10px; border-radius: 10px; background: var(--white); }
.flow span:not(:last-child) { display: inline-flex; align-items: center; }
.flow span:not(:last-child)::after { content: "›"; margin-left: 10px; margin-right: -2px; color: var(--magenta-text); }
.flow__end { background: var(--grad-pass) !important; color: var(--white); }
.club-notes { display: grid; gap: 12px; }
.club-notes li { padding-left: 16px; border-left: 3px solid var(--pink-soft); color: var(--ink-soft); transition: opacity .3s, border-color .3s; }
.club-notes li strong { color: var(--ink); }
.club-notes li.is-on { border-left-color: var(--magenta); }
.club-notes li.is-off { opacity: .45; }

.receipt { justify-self: center; width: min(100%, 420px); border-radius: 28px; background: var(--white); border: 1px solid var(--line); padding: 24px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-lift); }
.receipt__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.receipt__head h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.receipt__tag { padding: 5px 12px; border-radius: 999px; background: #F1E6F5; color: var(--ink-soft); font-size: 14px; font-weight: 600; transition: background .3s, color .3s; }
.receipt[data-club="true"] .receipt__tag { background: var(--ok-soft); color: var(--ok-text); }
.receipt__items { display: flex; flex-direction: column; gap: 10px; }
.receipt__items li { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.receipt__items li > span:last-child { display: flex; gap: 8px; align-items: baseline; white-space: nowrap; }
.receipt__items s { font-size: 14px; color: var(--ink-faint); }
.receipt__items b { font-weight: 600; transition: color .3s; }
.receipt__items li.is-off b { color: var(--magenta-text); }
.receipt__line { display: flex; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid #E4D2EC; }
.receipt__line span { color: var(--ink-soft); }
.receipt__line--sm { font-size: 14px; padding-top: 0; border: 0; }
.receipt__total { display: flex; justify-content: space-between; align-items: baseline; }
.receipt__total span { font-weight: 600; }
.receipt__total b { font-family: var(--font-display); font-size: 30px; font-weight: 800; }
.receipt__points { padding: 14px 16px; border-radius: 16px; background: var(--lilac-soft); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.receipt__points[hidden] { display: none; }
.receipt__points p { font-size: 14px; color: var(--ink-soft); }
.bar { height: 8px; border-radius: 4px; background: var(--line); overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; background: var(--grad); transition: width .7s var(--ease-out); }
.receipt__foot { font-size: 14px; color: var(--ink-mute); text-align: center; }

/* ---------- EXEMPLOS POR TIPO DE VAREJO ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips button { min-height: 44px; padding: 0 20px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--white); color: var(--ink); font-size: 16px; font-weight: 600; transition: background .25s, color .25s, border-color .25s; }
.chips button:hover { border-color: var(--magenta-text); }
.chips [aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.seg-view { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 24px; align-items: stretch; }
.seg-panels { display: grid; gap: 16px; }
.seg-panel { padding: clamp(24px, 3vw, 40px); border-radius: 28px; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 18px; view-transition-name: seg-panel; }
.seg-panel + .seg-panel { view-transition-name: none; }
.seg-panel h4 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.05; text-transform: uppercase; }
.seg-panel > p { font-size: 18px; line-height: 1.6; color: var(--ink-soft); }
.js .seg-panel:not(.is-active) { display: none; }
.js .seg-panel.is-active { view-transition-name: seg-panel; }
.campaign { padding: 18px 20px; border-radius: 18px; background: var(--lilac-soft); border: 1px solid var(--line); }
.campaign strong { display: block; margin-bottom: 4px; font-size: 14px; font-weight: 800; color: var(--magenta-text); }
.seg-visual { border-radius: 28px; background: var(--grad-night); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 40px 24px; }
.big-pass { width: min(100%, 360px); aspect-ratio: 1.58; border-radius: 22px; background: var(--grad-pass); color: var(--white); padding: 24px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 30px 50px rgba(0,0,0,.35); }
.big-pass__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.big-pass__row--end { align-items: flex-end; }
.big-pass__brand { display: flex; flex-direction: column; gap: 6px; }
.big-pass__brand img { height: 22px; width: auto; }
.big-pass small { display: block; font-size: 14px; opacity: .9; }
.big-pass b { display: block; font-size: 26px; font-weight: 600; }
.big-pass .pill-light { font-size: 14px; padding: 4px 10px; }
.big-pass__by { text-align: right; }
.seg-visual__note { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px; background: var(--white); font-size: 14px; font-weight: 700; }
.seg-visual__note i { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); }
::view-transition-old(seg-panel) { animation: vtOut .18s ease-in both; }
::view-transition-new(seg-panel) { animation: vtIn .42s var(--ease-out) both; }
@keyframes vtOut { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(12px); } }

/* ---------- INSTALAÇÃO ---------- */
.setup { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 820px) { .setup { grid-template-columns: 1fr; } }
.reader__art { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; border-radius: var(--radius-xl); background: var(--grad-night); overflow: hidden; }
.reader__art::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: radial-gradient(rgba(255,255,255,.6) 1.2px, transparent 1.2px); background-size: 18px 18px; }
.reader__art::after { content: ""; position: absolute; left: 10%; top: 50%; width: 80%; aspect-ratio: 1; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255,0,102,.5) 0%, rgba(255,0,102,0) 65%); filter: blur(16px); }
.reader__art img { position: relative; z-index: 1; height: clamp(280px, 32vw, 400px); width: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); }
.reader__art .tag { position: absolute; left: 18px; top: 18px; z-index: 2; font-size: 13px; }
.setup__list { display: grid; gap: 14px; }
.setup__list li { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--line); }
.setup__icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--grad); color: var(--white); }
.setup__icon svg { width: 26px; height: 26px; }
.setup__list h3 { font-size: 20px; font-weight: 800; line-height: 1.25; }
.setup__list p { margin-top: 6px; color: var(--ink-soft); }
.spec-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; }
.spec-row > p { color: var(--ink-soft); max-width: 34em; }
.spec-row strong { color: var(--ink); }
.specs { display: flex; flex-wrap: wrap; gap: 8px; }
.specs li { padding: 8px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: 14px; font-weight: 700; }

/* ---------- DÚVIDAS ---------- */
.faq-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: clamp(32px, 4vw, 56px); align-items: start; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__group { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; }
.faq__group svg { width: 22px; height: 22px; color: var(--magenta-text); }
.faq details { border-radius: 20px; background: var(--lilac-soft); border: 1px solid var(--line); transition: background .3s, box-shadow .3s; }
.faq details[open] { background: var(--white); box-shadow: var(--shadow-soft); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  min-height: 64px; padding: 16px 22px; list-style: none; cursor: pointer;
  font-size: 18px; font-weight: 700; line-height: 1.35; border-radius: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--magenta-text); }
.faq summary svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--magenta-text); transition: transform .4s var(--ease-spring); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; line-height: 1.6; color: var(--ink-soft); }
/* abertura suave onde o navegador permite */
.faq details::details-content { height: 0; overflow: clip; transition: height .4s var(--ease-out), content-visibility .4s allow-discrete; }
.faq details[open]::details-content { height: auto; }

/* ---------- CONTATO ---------- */
.contact { border-radius: var(--radius-xl); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: 0 40px 90px rgba(54,8,74,.14); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); }
@media (max-width: 820px) { .contact { grid-template-columns: 1fr; } }
.contact__pitch { position: relative; overflow: hidden; padding: clamp(32px, 5vw, 64px); color: var(--white); display: flex; flex-direction: column; gap: 20px; background: radial-gradient(60% 70% at 88% 92%, rgba(255,0,102,.42) 0%, rgba(255,0,102,0) 70%), linear-gradient(165deg, #36084A 0%, #2A0639 55%, #24042F 100%); }
.contact__pitch > :not(.brand-mark) { position: relative; z-index: 1; }
.contact__pitch img { height: 32px; width: auto; align-self: flex-start; }
.contact__links { display: flex; flex-direction: column; gap: 12px; padding-top: 6px; }
.pill-link { display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; min-height: 48px; padding: 0 18px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35); color: var(--white); text-decoration: none; font-size: 15px; font-weight: 700; transition: background .2s; }
.pill-link:hover { background: rgba(255,255,255,.2); color: var(--white); }
.pill-link svg { width: 18px; height: 18px; }
.contact__form { padding: clamp(28px, 4vw, 48px); }
.contact__form .display { color: var(--ink); }

/* ---------- RODAPÉ ---------- */
.foot { padding: 48px 0 56px; background: var(--plum-deep); color: var(--on-dark-mute); }
.foot__inner { display: flex; flex-direction: column; gap: 14px; font-size: 14px; line-height: 1.6; }
.foot__top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-bottom: 8px; }
.foot__top img { height: 32px; width: auto; }
.foot__domain { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--white); }
.foot__domain b { color: var(--magenta-on-dark); font-weight: 800; }
.foot__links, .foot__legal-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.foot a { color: var(--white); }
.foot__links a { font-weight: 700; text-decoration: none; }
.foot__links a:hover, .foot__legal-links a:hover { color: var(--magenta-on-dark); }
.foot__legal-links a { font-weight: 700; }

.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 30; width: 52px; height: 52px; border-radius: 50%;
  background: var(--ink); color: var(--white); box-shadow: 0 0 0 2px rgba(255,255,255,.55), 0 10px 24px rgba(54,8,74,.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s, transform .35s var(--ease-out), visibility .25s;
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--wine); color: var(--white); }
@media (max-width: 900px) { .js .trackbar ~ .to-top { display: none; } }

/* ---------- PÁGINAS INSTITUCIONAIS (sobre, contato, privacidade, termos) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px); background: var(--grad-night); color: var(--white); }
.page-hero .wrap { z-index: 1; }
.page-hero .display { max-width: 18em; }
.page-hero p { margin-top: 16px; max-width: 40em; font-size: clamp(17px, 1.5vw, 19px); line-height: 1.6; color: var(--on-dark); }
.page-hero .crumb { margin-top: 0; margin-bottom: 18px; font-size: 15px; font-weight: 700; }
.page-hero .crumb a { color: var(--on-dark-mute); text-decoration: none; }
.page-hero .crumb a:hover { color: var(--white); }
.page-body { padding: clamp(40px, 6vw, 72px) 0 var(--sec-pad); background: var(--white); }
.prose { max-width: 760px; font-size: 17px; line-height: 1.7; color: #4A3656; }
.prose > * + * { margin-top: 14px; }
.prose h2 { margin-top: 36px; font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.15; color: var(--ink); text-transform: uppercase; }
.prose h3 { margin-top: 28px; font-size: 19px; font-weight: 800; color: var(--ink); }
.prose ul { padding-left: 22px; list-style: disc; }
.prose ol { padding-left: 22px; list-style: decimal; }
.prose li + li { margin-top: 6px; }
.prose strong { color: var(--ink); }
.prose .updated { font-size: 15px; color: var(--ink-mute); }
.prose .contact-cards { padding-left: 0; list-style: none; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 12px; margin-top: 20px; list-style: none; padding: 0; }
.contact-cards li { margin: 0; padding: 18px 20px; border-radius: 20px; background: var(--lilac-soft); border: 1px solid var(--line); }
.contact-cards li + li { margin-top: 0; }
.contact-cards strong { display: block; font-size: 15px; color: var(--ink-mute); font-weight: 700; }
.contact-cards a { font-size: 18px; font-weight: 800; text-decoration: none; }
.page-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Dectus Point: renders oficiais (modelo de mesa e totem) ---------- */
.reader__art--models { display: grid; grid-template-columns: 1fr 1.25fr; align-items: end; gap: 6%; padding: 12% 8% 10%; }
.reader__art--models .model { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.reader__art--models img { width: 100%; height: auto; filter: drop-shadow(0 24px 30px rgba(0,0,0,.5)); }
.reader__art--models .tag { position: static; }

/* ==========================================================================
   PÁGINA DE EMPRESAS (texto por blocos)
   ========================================================================== */
.bgrid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .bgrid { grid-template-columns: 1fr; } }
.bgrid__label { font-size: 16px; font-weight: 800; color: var(--ink); }
.bgrid__label--dark { color: var(--white); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pills li { padding: 9px 14px; border-radius: 12px; background: var(--white); border: 1px solid var(--line-strong); font-size: 15px; font-weight: 700; color: var(--ink); }
.track--biz-soft .pills li { border-color: var(--line); }
.pills--dark li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: var(--white); }
.lines { display: grid; gap: 4px; font-size: clamp(18px, 1.6vw, 21px); font-weight: 700; color: var(--white); }
.lines span { display: block; }
.biz-strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2vw, 26px); line-height: 1.1; text-transform: uppercase; color: var(--magenta-on-dark); text-wrap: balance; }
.biz-strong--ink { color: var(--magenta-text); }
.eyebrow--dark { color: var(--magenta-on-dark); }
.duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 12px; }
.duo__item { padding: 18px 20px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); }
.duo__item small { display: block; font-size: 14px; font-weight: 700; color: var(--on-dark-mute); }
.duo__item strong { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 22px; font-weight: 800; line-height: 1.05; text-transform: uppercase; color: var(--white); }
.info-cards--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); align-items: start; }
.info-card h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2vw, 24px); line-height: 1.08; text-transform: uppercase; }
.info-card > * + .pills, .info-card > * + .checklist { margin-top: 2px; }
.track--biz-soft .info-card { background: var(--white); }
.flow-line { font-weight: 800; color: var(--magenta-text); }
.flow-line--dark { color: var(--white); font-size: 18px; }
.flow-v { display: grid; gap: 30px; counter-reset: jornada; }
.flow-v li { position: relative; padding: 16px 20px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: var(--white); font-size: 17px; font-weight: 700; }
.flow-v li:not(:last-child)::after { content: "↓"; position: absolute; left: 24px; bottom: -28px; color: var(--magenta-on-dark); font-size: 20px; font-weight: 800; }
.flow-v li:last-child { background: var(--grad); border-color: transparent; }
.callout { display: flex; gap: clamp(18px, 3vw, 32px); align-items: flex-start; padding: clamp(24px, 4vw, 44px); border-radius: var(--radius-xl); background: var(--lilac-soft); border: 2px solid var(--magenta-text); }
.callout__icon { flex-shrink: 0; width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: var(--grad); color: var(--white); }
.callout__icon svg { width: 30px; height: 30px; }
.callout p { color: var(--ink-soft); max-width: 46em; }
.how-steps .nope { margin-top: 10px; display: grid; gap: 4px; color: var(--ink-soft); font-size: 16px; }
.how-steps .nope li { padding-left: 18px; position: relative; }
.how-steps .nope li::before { content: "✕"; position: absolute; left: 0; color: var(--magenta-text); font-weight: 800; font-size: 13px; top: 2px; }
.how-steps > li p + p { margin-top: 8px; }

/* ==========================================================================
   PÁGINA DE EMPRESAS VISUAL: cards, fluxos, ícones (Lucide) e microinterações
   ========================================================================== */
.lu { width: 24px; height: 24px; flex-shrink: 0; }
.hero-bullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 10px; }
.hero-bullets li { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: var(--white); font-weight: 700; font-size: 16px; line-height: 1.3; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.hero-bullets .lu { width: 22px; height: 22px; color: var(--magenta-on-dark); }
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-visual .point-showcase { width: 100%; }
/* pulso de NFC sobre o Point */
.nfc-pulse { position: absolute; z-index: 2; left: 50%; top: 50%; width: 46%; aspect-ratio: 1; transform: translate(-50%, -38%); pointer-events: none; }
.nfc-pulse i { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255,92,152,.8); opacity: 0; }
@media (prefers-reduced-motion: no-preference) {
  .nfc-pulse i { animation: wave 2.4s ease-out infinite; }
  .nfc-pulse i:nth-child(2) { animation-delay: .8s; }
  .nfc-pulse i:nth-child(3) { animation-delay: 1.6s; }
}
.mini-flow { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; }
.mini-flow span:not(.mini-flow__arrow) { padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--white); font-size: 14px; font-weight: 800; }
.mini-flow__arrow { color: var(--magenta-on-dark); font-weight: 800; }

/* cards de benefícios e de segurança */
.vcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 16px; }
.vcards--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.vcard { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 26px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(54,8,74,.06); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s; }
.vcard:hover { transform: translateY(-6px); border-color: rgba(214,0,94,.35); box-shadow: 0 24px 50px rgba(214,0,94,.14), 0 0 0 4px rgba(255,0,102,.06); }
.vcard__icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--grad); color: var(--white); margin-bottom: 6px; transition: transform .5s var(--ease-spring); }
.vcard:hover .vcard__icon { transform: rotate(-8deg) scale(1.06); }
.vcard h3 { font-size: 19px; font-weight: 800; line-height: 1.25; }
.vcard p { color: var(--ink-soft); }
.vcard--dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.vcard--dark h3 { color: var(--white); }
.vcard--dark p { color: var(--on-dark); }
.vcard--dark:hover { border-color: rgba(255,92,152,.55); box-shadow: 0 0 0 4px rgba(255,92,152,.12), 0 24px 50px rgba(0,0,0,.3); }

/* como funciona: quatro passos ligados por uma linha que acende */
.steps4 { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.steps4::before, .steps4::after { content: ""; position: absolute; left: 12%; right: 12%; top: 44px; height: 3px; border-radius: 3px; }
.steps4::before { background: var(--line-strong); }
.steps4::after { background: var(--grad); transform-origin: left; }
.steps4__step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 22px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.steps4__step:hover, .steps4__step:focus-within { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(54,8,74,.12); }
.steps4__icon { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--grad); color: var(--white); }
.steps4__n { position: absolute; right: 18px; top: 16px; font-family: var(--font-display); font-weight: 800; font-size: 34px; line-height: 1; color: var(--lilac); }
.steps4__step h3 { font-size: 19px; font-weight: 800; }
.steps4__step p { color: var(--ink-soft); }
.steps4__more { font-size: 15px; padding-top: 10px; border-top: 1px dashed var(--line-strong); }
@media (max-width: 900px) {
  .steps4 { grid-template-columns: 1fr; }
  .steps4::before, .steps4::after { left: 44px; right: auto; top: 30px; bottom: 30px; width: 3px; height: auto; transform-origin: top; }
}

/* integração e segmentos: blocos com ícone */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 12px; }
.tiles--6 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); }
.tile { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; border-radius: 20px; background: var(--lilac-soft); border: 1px solid var(--line); font-weight: 800; font-size: 16px; line-height: 1.25; transition: transform .45s var(--ease-out), border-color .3s, background .3s; }
.tile .lu { width: 30px; height: 30px; color: var(--magenta-text); transition: transform .5s var(--ease-spring); }
.tile:hover { transform: translateY(-4px); border-color: rgba(214,0,94,.35); background: var(--white); }
.tile:hover .lu { transform: scale(1.12); }
.int-note { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: 16px; background: var(--pink-soft); color: var(--magenta-deep); font-weight: 700; }
.int-note .lu { width: 22px; height: 22px; }

/* piloto e escala: sequência horizontal de etapas */
.chain { display: flex; flex-wrap: wrap; align-items: stretch; gap: 10px; }
.chain__item { flex: 1 1 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: 120px; padding: 18px 14px; border-radius: 22px; text-align: center; font-weight: 800; background: var(--white); border: 1px solid var(--line); color: var(--ink); }
.chain__item .lu { width: 32px; height: 32px; color: var(--magenta-text); }
.sec--night .chain__item { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: var(--white); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.sec--night .chain__item .lu { color: var(--magenta-on-dark); }
.chain__arrow { display: flex; align-items: center; color: var(--magenta-text); }
.sec--night .chain__arrow { color: var(--magenta-on-dark); }
@media (max-width: 700px) { .chain { flex-direction: column; } .chain__item { flex: 0 0 auto; min-height: 0; flex-direction: row; } .chain__arrow { justify-content: center; transform: rotate(90deg); } }

/* métricas: cards com cara de painel */
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 14px; }
.metric { display: grid; grid-template-columns: auto 1fr; gap: 10px 14px; align-items: center; padding: 20px; border-radius: 20px; background: var(--plum-deep); color: var(--white); box-shadow: 0 20px 40px rgba(36,4,47,.18), inset 0 0 0 1px rgba(255,255,255,.08); }
.metric__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: rgba(255,92,152,.16); color: var(--magenta-on-dark); }
.metric__name { font-weight: 800; line-height: 1.25; }
.spark { grid-column: 1 / -1; width: 100%; height: 36px; }
.spark polyline { fill: none; stroke: var(--magenta-on-dark); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 6px rgba(255,92,152,.6)); stroke-dasharray: 160; }

/* entrada com a rolagem e linha do fluxo acendendo (só onde o navegador permite e sem movimento reduzido) */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal { animation: revealUp linear both; animation-timeline: view(); animation-range: entry 0% entry 60%; }
    .steps4::after { animation: flowLine linear both; animation-timeline: view(); animation-range: entry 40% cover 55%; }
    .steps4__step { animation: revealUp linear both; animation-timeline: view(); animation-range: entry calc(10% + var(--i) * 12%) entry calc(60% + var(--i) * 12%); }
    .spark polyline { animation: sparkDraw linear both; animation-timeline: view(); animation-range: entry 10% cover 45%; }
  }
}
@keyframes revealUp { from { opacity: 0; transform: translateY(24px); } }
@keyframes flowLine { from { transform: scale(1, 1) scaleX(0); } to { transform: scaleX(1); } }
@keyframes flowLineV { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@media (max-width: 900px) { .steps4::after { animation-name: flowLineV; } }
@keyframes sparkDraw { from { stroke-dashoffset: 160; } to { stroke-dashoffset: 0; } }

/* faixa de 3 etapas: passe na carteira -> aproxima -> reconhecimento automático */
.wstrip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; counter-reset: ws; }
.wstrip li { position: relative; display: flex; align-items: flex-start; gap: 10px; padding: 14px; border-radius: 16px; background: var(--white); border: 1px solid #F4D3E2; }
.wstrip li + li::before { content: "→"; position: absolute; left: -11px; top: 50%; transform: translateY(-50%); width: 12px; text-align: center; font-weight: 800; color: var(--magenta-text); }
.wstrip__icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--grad); color: var(--white); }
.wstrip__icon svg { width: 18px; height: 18px; }
.wstrip strong { display: block; font-size: 15px; font-weight: 800; line-height: 1.3; color: var(--ink); }
.wstrip small { display: block; margin-top: 2px; font-size: 13px; color: var(--ink-mute); }
.biz-intro .checklist--dark { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; }
.biz-intro .checklist--dark li { font-size: 16px; }
@media (max-width: 640px) { .biz-intro .checklist--dark { grid-template-columns: 1fr; } }
.wstrip--dark li { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.wstrip--dark li + li::before { color: var(--magenta-on-dark); }
.wstrip--dark strong { color: var(--white); }
.wstrip--dark small { color: var(--on-dark-mute); }
@media (max-width: 640px) {
  .wstrip { grid-template-columns: 1fr; gap: 14px; }
  .wstrip li + li::before { content: "↓"; left: 24px; top: -15px; transform: none; }
}

/* selos oficiais das carteiras, em quadros iguais (a arte dos selos não é alterada) */
.wbadges { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.wbadge { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.wbadge__frame { display: block; }
.wbadge__frame img { display: block; height: 48px; width: auto; } /* mínimo exigido pelo Google; a arte não pode ser alterada */
.wbadge__cap { font-size: 12px; font-weight: 700; color: var(--ink-mute); }

/* faixa final: convite para a página de empresas */
.biz-band { padding: clamp(40px, 6vw, 64px) 0; background: var(--grad-night); color: var(--white); }
.biz-band__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }
.biz-band__icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--magenta-on-dark); }
.biz-band__icon svg { width: 28px; height: 28px; }
.biz-band__text { flex: 1 1 320px; }
.biz-band__q { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.05; text-transform: uppercase; }
.biz-band__text p + p { margin-top: 6px; color: var(--on-dark); }

/* ---------- movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ok-badge path { stroke-dashoffset: 0; }
  .pos__typing span { width: auto; animation: none; }
  @view-transition { navigation: none; }
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}
