/* ============================================================
   SAI Pedido — landing page
   Tipografia: SF Pro (variável) + SF Mono, com fallbacks p/ Windows
   Cor da marca: #EB0533
   ============================================================ */

/* ---------- Fontes ---------- */
@font-face {
  font-family: "SF Pro Web";
  src: url("../fonts/SF-Pro-VF.woff2") format("woff2") tech("variations"),
       url("../fonts/SF-Pro-VF.woff2") format("woff2-variations");
  font-weight: 1 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Mono Web";
  src: url("../fonts/SF-Mono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF Mono Web";
  src: url("../fonts/SF-Mono-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --brand: #eb0533;
  --brand-dark: #eb0533;   /* um vermelho só no site inteiro (decisão do Yuri, 08/09/2026) */
  --brand-text: #eb0533;   /* AA em fundo claro: 5,5:1 */
  --brand-bright: #eb0533; /* em fundo escuro fica ~3,6:1; se precisar de AA em texto pequeno, volte a #ff5c77 aqui */
  --brand-soft: rgba(235, 5, 51, 0.08);
  --ok: #1e7434;           /* verde de sucesso com contraste AA em branco */

  --paper: #ffffff;
  --cloud: #f5f5f7;
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --night: #0a0a0c;
  --night-card: #161618;
  --snow: #f5f5f7;
  --snow-soft: #a1a1a6;

  --hairline: rgba(0, 0, 0, 0.08);
  --hairline-dark: rgba(255, 255, 255, 0.12);

  --font-sans: "SF Pro Web", "SF Pro Display", "SF Pro Text", -apple-system,
    BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono Web", "SF Mono", ui-monospace, "SFMono-Regular",
    Menlo, Consolas, "Cascadia Mono", monospace;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --nav-h: 56px;

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-pop: 0 2px 8px rgba(0, 0, 0, 0.08), 0 18px 50px rgba(0, 0, 0, 0.14);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}
.container-narrow { width: min(760px, 100% - 48px); }

/* ---------- Tipografia ---------- */
.display {
  font-size: clamp(46px, 8vw, 92px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.022em;
  text-wrap: balance;
}
.display-2 {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.display-3 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.red {
  color: var(--brand);
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand-text);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 7px 15px;
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* link de pular navegação (acessibilidade) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus-visible { top: 12px; }

.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 42em;
  text-wrap: pretty;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 14px 28px;
  font-size: 17px;
}
.btn-primary:hover { background: var(--brand); filter: brightness(0.92); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 17px 36px; font-size: 19px; }
.btn-block { width: 100%; }

.link-arrow {
  font-weight: 600;
  color: var(--brand);
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow::after {
  content: "→";
  transition: transform 0.18s ease;
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.nav.scrolled { border-bottom-color: var(--hairline); }

.nav-inner {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 26px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: rgba(29, 29, 31, 0.82);
}
.nav-links a { transition: color 0.15s ease; padding: 6px 0; }
.nav-links a:hover { color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-signin { font-size: 14px; font-weight: 500; color: rgba(29, 29, 31, 0.82); }
.nav-signin:hover { color: var(--brand); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  align-items: center;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 1.7px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.open .nav-burger span:first-child { transform: translateY(3.8px) rotate(45deg); }
.nav.open .nav-burger span:last-child { transform: translateY(-3.8px) rotate(-45deg); }

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
  border-bottom: 1px solid var(--hairline);
  max-height: calc(100vh - var(--nav-h));
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto;
}
.nav-menu a:not(.btn) {
  padding: 12px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--hairline);
}
.nav-menu .btn { justify-content: center; margin-top: 14px; }
.nav.open .nav-menu { display: flex; }

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--nav-h) + clamp(56px, 9vw, 110px));
  overflow: clip;
}
.hero-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero-copy .lead { max-width: 34em; }
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

/* palco do iPhone */
.hero-stage {
  position: relative;
  margin-top: clamp(48px, 7vw, 84px);
  display: flex;
  justify-content: center;
}
.hero-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(720px, 90vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(235, 5, 51, 0.09), transparent 62%);
  pointer-events: none;
}

/* iPhone */
.phone {
  position: relative;
  width: 312px;
  border-radius: 52px;
  background: #0c0c0e;
  padding: 10px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.08) inset,
    0 40px 90px rgba(0, 0, 0, 0.22),
    0 12px 28px rgba(0, 0, 0, 0.12);
  will-change: transform;
  transition: transform 0.25s ease-out;
}
.phone-island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #0c0c0e;
  z-index: 3;
}
.phone-screen {
  position: relative;
  border-radius: 43px;
  background: #fafafa;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 610px;
}

/* telas da demonstração animada dentro do iPhone */
.tela {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #fafafa;
  padding: 60px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.tela.on { opacity: 1; transform: none; }

.ts-head { display: flex; flex-direction: column; gap: 1px; margin-bottom: 4px; }
.ts-head strong { font-size: 17px; letter-spacing: -0.01em; }
.ts-head small { font-size: 12px; color: var(--ink-soft); }
.ts-item {
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  font-size: 12.5px;
}
/* cardápio da Pizzaria do João */
.m-fichas { display: flex; gap: 6px; margin-top: 4px; }
.ficha {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  background: var(--cloud);
  color: var(--ink-soft);
  padding: 3px 9px;
  border-radius: 999px;
}
.ficha.verde { background: #e6f6ea; color: var(--ok); }
.m-destaques {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 12px 18px 0;
  background: #fff;
}
.m-foto {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
  margin-left: auto;
}
.selo {
  font-style: normal;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  width: max-content;
  margin-bottom: 2px;
}
.selo-laranja { background: #fff3e0; color: #b25e00; }
.selo-azul { background: #eef1fc; color: #4a5fc1; }
.preco { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.preco b { font-size: 13px; }
.preco s { font-size: 11px; color: var(--ink-soft); }
.preco i {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: var(--ok);
  background: #e6f6ea;
  padding: 1px 6px;
  border-radius: 999px;
}
.m-cart.zerado .m-count { display: none; }

/* tela do carrinho */
.tc-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2px; }
.tc-head strong { font-size: 17px; letter-spacing: -0.01em; }
.tc-head small { font-size: 12px; font-weight: 600; color: var(--brand-text); }
.tc-item {
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  font-size: 12.5px;
}
.tc-item img { border-radius: 9px; object-fit: cover; flex: none; }
.tc-item > span { display: flex; flex-direction: column; min-width: 0; }
.tc-item strong { font-size: 12.5px; }
.tc-item > em {
  font-style: normal;
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--cloud);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  flex: none;
}
.tc-item .preco { margin-top: 1px; }
.tc-extra {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: -10px;
}
.tc-extra > div { overflow: hidden; }
.tc-extra > div > .tc-item { margin-top: 10px; }
.tc-extra.aberta { grid-template-rows: 1fr; }
.tc-label { font-size: 12.5px; font-weight: 700; margin-top: 2px; }
.tc-sug { transition: opacity 0.35s ease; }
.tc-sug.usada { opacity: 0.35; }
.tc-sug .up-add { width: 26px; height: 26px; }
.ts-item b { margin-left: auto; font-weight: 600; font-variant-numeric: tabular-nums; }
.ts-linha { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-soft); padding: 2px 4px; }
.ts-linha b { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.ts-linha .gratis { color: var(--ok); font-weight: 600; }
.ts-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid var(--hairline);
  padding: 10px 4px 0;
}
.ts-btn {
  margin-top: auto;
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 14px;
  padding: 13px;
}

.ta-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2px; }
.ta-head strong { font-size: 16px; }
.ta-head small { font-size: 11.5px; color: var(--ink-soft); }
.ta-status { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.ta-canal { background: #fff; font-size: 12px; padding: 5px 11px; border-radius: 999px; box-shadow: var(--shadow-card); }
.ta-previsao {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ta-previsao small { font-size: 11.5px; color: var(--ink-soft); }
.ta-previsao strong { font-size: 17px; letter-spacing: -0.01em; }
.ta-itens {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ta-itens > small { font-size: 11.5px; font-weight: 600; margin-bottom: 2px; }

/* barra de status do iPhone */
.phone-status {
  position: absolute;
  top: 24px;
  left: 32px;
  right: 32px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  pointer-events: none;
}
.phone-status svg { width: 46px; height: 12px; }

/* processando pagamento */
.tela-processando { justify-content: center; align-items: center; gap: 12px; }
.spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #ececee;
  border-top-color: var(--brand);
  animation: gira 0.8s linear infinite;
}
@keyframes gira { to { transform: rotate(360deg); } }
.tela-processando strong { font-size: 15px; }
.tela-processando small { font-size: 12px; color: var(--ink-soft); }

/* notificação de retorno */
.notif-volta {
  position: absolute;
  top: 52px;
  left: 12px;
  right: 12px;
  z-index: 6;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: var(--shadow-pop);
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateY(-92px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}
.notif-volta.on { transform: none; opacity: 1; }
.notif-volta img { border-radius: 8px; background: var(--brand-soft); padding: 3px; flex: none; }
.notif-volta div { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.notif-volta strong { font-size: 12px; display: flex; align-items: baseline; gap: 8px; }
.notif-volta em { font-style: normal; font-weight: 400; font-size: 11px; color: var(--ink-soft); margin-left: auto; }
.notif-volta span { font-size: 12px; color: var(--ink-soft); line-height: 1.35; }

/* dedo da demonstração */
.dedo {
  position: absolute;
  z-index: 5;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.26);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  top: 30%;
  left: 88%;
  opacity: 0;
  transition: top 0.55s cubic-bezier(0.22, 1, 0.36, 1), left 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease, transform 0.18s ease;
  pointer-events: none;
}
.dedo.toca { transform: scale(0.7); }
.m-item { transition: background 0.3s ease; }
.m-item.tocado { background: var(--brand-soft); border-radius: 14px; }

/* cardápio dentro do iPhone */
.m-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 56px 18px 14px;
  background: #fff;
}
.m-ava {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  flex: none;
}
.m-id { display: flex; flex-direction: column; gap: 2px; }
.m-id strong { font-size: 15px; letter-spacing: -0.01em; }
.m-status {
  font-size: 11px;
  color: var(--ok);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.m-status i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34c759;
}

.m-cats {
  display: flex;
  gap: 8px;
  padding: 10px 18px 12px;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent 98%);
  mask-image: linear-gradient(90deg, #000 82%, transparent 98%);
}
.m-cats span {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cloud);
  color: var(--ink-soft);
  white-space: nowrap;
}
.m-cats span.on { background: var(--ink); color: #fff; }

.m-list {
  display: flex;
  flex-direction: column;
  padding: 6px 14px;
  gap: 4px;
  flex: 1;
}
.m-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.m-item:last-child { border-bottom: 0; }
.m-thumb {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  flex: none;
}
.t1 { background: #fdeee6; }
.t2 { background: #fdf6e3; }
.t3 { background: #eef3fb; }
.m-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.m-info strong { font-size: 13.5px; letter-spacing: -0.01em; }
.m-info small {
  font-size: 11px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-info b { font-size: 13px; color: var(--brand); margin-top: 3px; }
.m-add {
  margin-left: auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 17px;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex: none;
  line-height: 1;
}

.m-cart {
  margin: 10px 14px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 16px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(235, 5, 51, 0.32);
  animation: cart-pulse 5s ease-in-out infinite;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.demo-ativa .m-cart { animation: none; }
.m-cart.escondida { transform: translateY(92px); opacity: 0; }
.m-cart strong { margin-left: auto; font-weight: 700; }
.m-count {
  width: 22px; height: 22px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}
@keyframes cart-pulse {
  0%, 86%, 100% { transform: scale(1); }
  90% { transform: scale(1.03); }
  94% { transform: scale(1); }
}

/* toasts flutuantes */
.toast {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 10px 16px 10px 12px;
  box-shadow: var(--shadow-pop);
  font-size: 13px;
  line-height: 1.25;
  animation: toast-bob 6s ease-in-out infinite;
}
.toast small { color: var(--ink-soft); font-size: 11.5px; }
.toast strong { white-space: nowrap; }
.toast-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--cloud);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex: none;
}
.toast-ico.ok { background: #e6f6ea; color: var(--ok); font-weight: 700; }

.toast-1 { top: 8%; left: calc(50% - 380px); animation-delay: 0.2s; }
.toast-2 { top: 42%; right: calc(50% - 390px); animation-delay: 1.4s; }
.toast-3 { bottom: 14%; left: calc(50% - 390px); animation-delay: 2.6s; }

@keyframes toast-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* faixa de segmentos */
.marquee {
  margin-top: clamp(56px, 7vw, 88px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-row { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-track.reverse {
  animation-direction: reverse;
  animation-duration: 60s;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-half {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--cloud);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Seções ---------- */
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section-gray { background: var(--cloud); }

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 76px);
}
.section-head .lead { max-width: 36em; }

/* ---------- Comparativo de conversão ---------- */
.conv-compare {
  max-width: 860px;
  margin: 0 auto clamp(48px, 6vw, 76px);
  background: var(--cloud);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.conv-row { display: flex; flex-direction: column; gap: 10px; }
.conv-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.conv-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.conv-row.us .conv-name { color: var(--ink); font-size: 16px; }
.conv-badge {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
  background: var(--brand-soft);
  color: var(--brand-text);
  padding: 4px 11px;
  border-radius: 999px;
}
.conv-result { font-size: 15px; color: var(--ink-soft); white-space: nowrap; }
.conv-result b {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.conv-row.us .conv-result b {
  font-size: clamp(34px, 4vw, 46px);
  color: var(--brand);
}
.conv-bar {
  height: 16px;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}
.conv-row.us .conv-bar { height: 24px; }
.conv-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: #c9c9ce;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.conv-fill.us {
  background: linear-gradient(90deg, #ff2c52, var(--brand));
  box-shadow: 0 2px 12px rgba(235, 5, 51, 0.35);
}
.reveal.in .conv-fill,
.revealed .conv-fill,
html:not(.js) .conv-fill { width: var(--w); }
.conv-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* calculadora dentro do comparativo */
.conv-calc {
  border-top: 1px solid var(--hairline);
  margin-top: 6px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calc-copy strong { font-size: 20px; letter-spacing: -0.014em; display: block; }
.calc-copy p { font-size: 14.5px; color: var(--ink-soft); margin-top: 3px; }
.calc-slider label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.calc-range { display: flex; align-items: center; gap: 18px; }
.calc-range input[type="range"] {
  flex: 1;
  accent-color: var(--brand);
  height: 24px;
  cursor: pointer;
}
.calc-range output {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 108px;
  text-align: right;
}
.calc-results {
  display: flex;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
}
.calc-res {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
}
.calc-res small { font-size: 12.5px; color: var(--ink-soft); }
.calc-res b {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}
.calc-res.us b { color: var(--brand); }
.calc-res span { font-size: 12.5px; color: var(--ink-soft); }
.calc-final {
  flex: 1.2;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.calc-delta {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}

/* ---------- Pontos de conversão ---------- */
.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin-inline: auto;
}
.points li {
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.points strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  letter-spacing: -0.01em;
}

/* ---------- Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.bento .card { min-width: 0; }
.span-3 { grid-column: span 3; }
.span-2 { grid-column: span 2; }

.card {
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 20px 44px rgba(0, 0, 0, 0.09);
}
.card h3 {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.014em;
  margin-top: 14px;
}
.card p { font-size: 15px; color: var(--ink-soft); }

.card-visual {
  border-radius: var(--radius-md);
  background: var(--cloud);
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
}

/* visual: navegador */
.browser {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--hairline);
  min-width: 0;
}
.browser-bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #e4e4e6;
}
.browser-url {
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  background: var(--cloud);
  border-radius: 999px;
  padding: 4px 10px;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-url b { color: var(--brand); font-weight: 600; }
.browser-body { padding: 10px 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.b-row { display: flex; align-items: center; gap: 10px; }
.b-emoji {
  width: 34px; height: 34px;
  background: var(--cloud);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 17px;
  flex: none;
}
.b-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.b-lines b { height: 8px; width: 62%; background: #e8e8ea; border-radius: 4px; }
.b-lines em { height: 6px; width: 40%; background: #f0f0f2; border-radius: 4px; }
.b-price { font-size: 12px; font-weight: 600; color: var(--brand); }

/* visual: QR */
.qr-plate {
  background: #fff;
  border-radius: 18px;
  padding: 20px 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}
.qr { width: 120px; height: 120px; }
.q-find, .q-dots { fill: var(--ink); }
.q-eye { fill: #fff; }
.qr-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-text);
  background: var(--brand-soft);
  padding: 5px 14px;
  border-radius: 999px;
}

/* visual: tickets */
.v-tickets { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.tk {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  font-size: 12.5px;
  width: 100%;
}
.tk span { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.tk strong { font-size: 12.5px; }
.tk small { color: var(--ink-soft); font-size: 11px; }
.tk em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.tk em.new { background: var(--brand-soft); color: var(--brand-text); }
.tk em.prep { background: #fff3e0; color: #b25e00; }
.tk em.done { background: #e6f6ea; color: var(--ok); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot.new { background: var(--brand); box-shadow: 0 0 0 4px rgba(235, 5, 51, 0.14); }
.dot.prep { background: #ff9500; }
.dot.done { background: #34c759; }

/* visual: toggles */
.v-toggles { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.tg {
  background: #fff;
  border-radius: 12px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 500;
  width: 100%;
}
.tg.off span { color: var(--ink-soft); text-decoration: line-through; }
.switch {
  width: 36px; height: 22px;
  border-radius: 999px;
  background: #d9d9de;
  position: relative;
  flex: none;
  transition: background 0.2s ease;
}
.switch::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.switch.on { background: #34c759; }
.switch.on::after { transform: translateX(14px); }
.tg-note {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-align: center;
}

/* visual: gráfico */
.v-chart { display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; }
.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  width: 100%;
  justify-content: center;
}
.bars i {
  width: 22px;
  height: var(--h);
  background: #d9d9de;
  border-radius: 7px 7px 3px 3px;
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bars i.hi { background: var(--brand); }
.card:hover .bars i { transform: scaleY(1.04); }
.card:hover .bars i.hi { transform: scaleY(1.07); }
.chart-note {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-align: center;
}

/* visual: cupom */
.coupon {
  border: 2px dashed rgba(235, 5, 51, 0.5);
  background: #fff;
  color: var(--brand);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  flex-wrap: wrap;
  max-width: 100%;
}
.coupon-code {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.coupon-off {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

/* visual: taxas */
.v-fees { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.fee {
  background: #fff;
  border-radius: 12px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 500;
  width: 100%;
}
.fee em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
}
.fee.free em { color: var(--ok); font-weight: 600; }

/* visual: impressão */
.ticket {
  background: #fff;
  width: 168px;
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  box-shadow: var(--shadow-card);
  clip-path: polygon(
    0 0, 100% 0, 100% calc(100% - 6px),
    92% 100%, 84% calc(100% - 6px), 76% 100%, 68% calc(100% - 6px),
    60% 100%, 52% calc(100% - 6px), 44% 100%, 36% calc(100% - 6px),
    28% 100%, 20% calc(100% - 6px), 12% 100%, 4% calc(100% - 6px), 0 100%
  );
}
.ticket strong { font-size: 13px; letter-spacing: 0.04em; }
.ticket small { font-size: 10px; color: var(--ink-soft); }
.ticket span {
  font-size: 10.5px;
  line-height: 1.7;
  border-top: 1px dashed var(--hairline);
  padding-top: 8px;
  margin-top: 4px;
}

/* ---------- CTA no meio da página ---------- */
.mid-cta {
  margin-top: clamp(48px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.mid-cta p {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 650;
  letter-spacing: -0.014em;
}

/* ---------- Botão flutuante de WhatsApp ---------- */
.whats-fab {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.whats-fab svg { width: 30px; height: 30px; }
.whats-fab:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}
.whats-fab:active { transform: scale(0.97); }

/* ---------- Seção escura (mesa) ---------- */
.section-dark {
  position: relative;
  background: var(--night);
  color: var(--snow);
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -220px;
  width: min(900px, 100vw);
  aspect-ratio: 1.6;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(235, 5, 51, 0.16), transparent 65%);
  pointer-events: none;
}
.section-dark .container { position: relative; }
.section-dark .lead { color: var(--snow-soft); }
.section-dark .eyebrow {
  background: rgba(255, 92, 119, 0.13);
  color: var(--brand-bright);
}
.section-dark .eyebrow::before { background: var(--brand-bright); }

.flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.flow-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
}
.flow-step {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-bright);
  background: rgba(255, 92, 119, 0.13);
  padding: 6px 14px;
  border-radius: 999px;
}
.flow-visual {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 180px;
}
.flow-card p { font-size: 14px; color: var(--snow-soft); }
.flow-arrow {
  align-self: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
  color: var(--brand-bright);
  font-weight: 700;
}

/* mini pedido (celular do cliente) */
.mini-order {
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-pop);
}
.mo-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
}
.mo-row em { font-style: normal; color: var(--ink-soft); font-size: 11.5px; flex: none; }
.mo-btn {
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px;
  margin-top: 4px;
}

/* mini painel */
.mini-panel {
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: var(--shadow-pop);
  text-align: left;
}
.mp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
}
.mp-badge {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  background: #fff3e0;
  color: #b25e00;
  border-radius: 999px;
  padding: 3px 9px;
}
.mp-row { font-size: 12px; color: var(--ink-soft); }
.mp-foot {
  font-size: 11.5px;
  font-weight: 600;
  border-top: 1px solid var(--hairline);
  padding-top: 8px;
  margin-top: 4px;
}

.dark-points {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dark-points li {
  border-top: 1px solid var(--hairline-dark);
  padding-top: 18px;
  font-size: 15px;
  color: var(--snow-soft);
  line-height: 1.5;
}
.dark-points strong { color: var(--snow); display: block; margin-bottom: 4px; }

/* ---------- Passos ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}
.step { display: flex; flex-direction: column; gap: 10px; }
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 14px;
  margin-bottom: 8px;
}
.step h3 { font-size: 22px; font-weight: 650; letter-spacing: -0.015em; }
.step p { font-size: 15px; color: var(--ink-soft); }

/* ---------- Indique e ganhe ---------- */
.refer-card {
  background: #fdf1f4;
  border: 1px solid rgba(235, 5, 51, 0.09);
  border-radius: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(32px, 5vw, 64px);
  align-items: center;
}
.refer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.refer-card .eyebrow { background: #fff; }
.refer-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.refer-perk {
  background: var(--paper);
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.refer-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  font-size: 21px;
  flex: none;
}
.refer-perk strong {
  display: block;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.refer-perk p { font-size: 14.5px; color: var(--ink-soft); }

.refer-club {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}
.club-avatars { display: flex; flex: none; }
.club-avatars i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fdf1f4;
  margin-left: -9px;
}
.club-avatars i:first-child { margin-left: 0; }
.club-avatars i:nth-child(1) { background: var(--brand); }
.club-avatars i:nth-child(2) { background: #1d1d1f; }
.club-avatars i:nth-child(3) { background: var(--brand-bright); }
.club-avatars i:nth-child(4) { background: var(--brand-dark); }
.refer-club p { font-size: 14px; color: var(--ink-soft); max-width: 40ch; }

/* ---------- Lead / contato ---------- */
.lead-card {
  position: relative;
  background: var(--cloud);
  border-radius: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* painel de sucesso animado do formulário */
.lead-sucesso {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 36px;
  background: var(--cloud);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}
.lead-card.enviado .lead-sucesso {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-card.enviado .lead-copy,
.lead-card.enviado .lead-form { opacity: 0; transition: opacity 0.25s ease; }

.sucesso-check { width: 96px; height: 96px; position: relative; }
.sucesso-check::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(52, 199, 89, 0.18);
}
.lead-card.enviado .sucesso-check::before { animation: sc-pulso 0.9s ease-out 0.1s; }
.sucesso-check svg { width: 96px; height: 96px; position: relative; display: block; }
.sc-anel {
  fill: none;
  stroke: var(--ok);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}
.sc-tique {
  fill: none;
  stroke: var(--ok);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}
.lead-card.enviado .sc-anel { animation: sc-traco 0.5s ease-out forwards; }
.lead-card.enviado .sc-tique { animation: sc-traco 0.35s ease-out 0.42s forwards; }
@keyframes sc-traco { to { stroke-dashoffset: 0; } }
@keyframes sc-pulso {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

.sucesso-titulo { font-size: clamp(22px, 3vw, 28px); font-weight: 700; letter-spacing: -0.015em; }
.sucesso-texto { font-size: 16px; color: var(--ink-soft); max-width: 30ch; }

/* confete */
.confete { position: absolute; inset: 0; overflow: hidden; pointer-events: none; border-radius: 36px; }
.confete i {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  opacity: 0;
}
.confete i:nth-child(1) { background: var(--brand); }
.confete i:nth-child(2) { background: #34c759; }
.confete i:nth-child(3) { background: #ff9500; }
.confete i:nth-child(4) { background: #4a5fc1; }
.confete i:nth-child(5) { background: var(--brand-bright); }
.confete i:nth-child(6) { background: #34c759; }
.confete i:nth-child(7) { background: #ff9500; }
.confete i:nth-child(8) { background: var(--brand); }
.confete i:nth-child(9) { background: #4a5fc1; }
.confete i:nth-child(10) { background: var(--brand-bright); }
.confete i:nth-child(11) { background: #34c759; }
.confete i:nth-child(12) { background: #ff9500; }
.lead-card.enviado .confete i { animation: confete-voa 0.9s ease-out 0.15s forwards; }
.confete i:nth-child(odd) { animation-duration: 1.05s; }
.confete i:nth-child(1) { --dx: -160px; --dy: -70px; --rot: -220deg; }
.confete i:nth-child(2) { --dx: -120px; --dy: -120px; --rot: 180deg; }
.confete i:nth-child(3) { --dx: -70px; --dy: -150px; --rot: -140deg; }
.confete i:nth-child(4) { --dx: -30px; --dy: -165px; --rot: 260deg; }
.confete i:nth-child(5) { --dx: 30px; --dy: -165px; --rot: -260deg; }
.confete i:nth-child(6) { --dx: 70px; --dy: -150px; --rot: 140deg; }
.confete i:nth-child(7) { --dx: 120px; --dy: -120px; --rot: -180deg; }
.confete i:nth-child(8) { --dx: 160px; --dy: -70px; --rot: 220deg; }
.confete i:nth-child(9) { --dx: -150px; --dy: 20px; --rot: 200deg; }
.confete i:nth-child(10) { --dx: 150px; --dy: 20px; --rot: -200deg; }
.confete i:nth-child(11) { --dx: -90px; --dy: 60px; --rot: 120deg; }
.confete i:nth-child(12) { --dx: 90px; --dy: 60px; --rot: -120deg; }
@keyframes confete-voa {
  0% { opacity: 1; transform: translate(-50%, -50%) rotate(0); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)); }
}
/* eyebrow do bloco de captação: pill cinza, mas com a bolinha vermelha "viva" */
.lead-card .eyebrow { background: #ececed; color: var(--ink-soft); }
.lead-card .eyebrow::before {
  background: var(--brand);
  animation: dot-vivo 1.8s ease-out infinite;
}
@keyframes dot-vivo {
  0% { box-shadow: 0 0 0 0 rgba(235, 5, 51, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(235, 5, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(235, 5, 51, 0); }
}
.lead-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.lead-perks { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.lead-perks li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-soft);
}
.lead-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.lead-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.field .opt { color: var(--ink-soft); font-weight: 400; }
/* honeypot: fora da tela, só robô preenche */
.hp-campo {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.field input {
  font: inherit;
  font-size: 16px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--hairline);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.field input::placeholder { color: #b8b8bd; }
.field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(235, 5, 51, 0.12);
}
.field input.invalid { border-color: var(--brand); }
.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
}
.form-note.ok { color: var(--ok); font-weight: 600; }
.form-note a { color: var(--brand-text); font-weight: 600; text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.012em;
  transition: color 0.15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary i {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq summary i::before,
.faq summary i::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink-soft);
  border-radius: 2px;
  transition: transform 0.25s ease, background 0.15s ease;
}
.faq summary i::before { width: 14px; height: 1.8px; }
.faq summary i::after { width: 1.8px; height: 14px; }
.faq details[open] summary i::after { transform: rotate(90deg); }
.faq details[open] summary { color: var(--brand); }
.faq details[open] summary i::before,
.faq details[open] summary i::after { background: var(--brand); }
.faq details p {
  padding: 0 4px 24px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 60ch;
}

/* ---------- CTA final ---------- */
.final-cta {
  text-align: center;
  background:
    radial-gradient(58% 90% at 50% 115%, rgba(235, 5, 51, 0.08), transparent 70%),
    var(--paper);
}
.final-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--night);
  color: var(--snow-soft);
  padding: clamp(56px, 7vw, 88px) 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline-dark);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-brand img { height: 30px; width: auto; }
.footer-brand p { font-size: 14px; max-width: 26ch; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col strong {
  color: var(--snow);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a { transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 13px;
}
/* espaço para o botão flutuante de WhatsApp não cobrir o texto */
@media (max-width: 1360px) {
  .footer-base { padding-right: 72px; }
}
.footer-base b { font-weight: 400; }

/* ---------- Hero: prova social, título rotativo, carrossel de clientes ---------- */
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 7px 18px 7px 9px;
  font-size: 14px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-card);
}
.social-chip strong { color: var(--ink); font-weight: 700; }
.chip-avatars { display: flex; }
.chip-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
  background: #fff;
}
.chip-avatars img:first-child { margin-left: 0; }

.display-hero {
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1.12;
}
.h1-fixa { color: var(--ink); }
.h1-giro {
  display: inline-block;
  transition: opacity 0.26s ease, transform 0.26s ease;
}
.h1-giro.troca { opacity: 0; transform: translateY(14px); }

/* faixa de nichos, agora seção própria entre a captação e a conversão */
.section-nichos { padding: clamp(48px, 6vw, 80px) 0; }
.section-nichos .marquee { margin-top: 0; }

/* ---------- Faixa de números ---------- */
.numeros { padding: 0 0 clamp(24px, 3vw, 40px); }
.num-panel {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  color: #fff;
}
.num-item { display: flex; flex-direction: column; gap: 6px; }
.num-ico { font-size: 22px; }
.num-item small { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.num-item strong {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.num-item strong b { font-variant-numeric: tabular-nums; }
.num-item p { font-size: 13.5px; color: rgba(255, 255, 255, 0.82); line-height: 1.5; }

/* ---------- No automático (abas) ---------- */
.auto-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.auto-visuais {
  position: relative;
  background: var(--cloud);
  border-radius: var(--radius-lg);
  min-height: 470px;
}
.auto-visual {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 36px);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.auto-visual.on { opacity: 1; transform: none; }

.auto-tabs { display: flex; flex-direction: column; }
.auto-tab {
  position: relative;
  text-align: left;
  padding: 18px 8px 18px 20px;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
}
.auto-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 3px;
  background: transparent;
}
.auto-tab.on::before { background: var(--brand); }
.auto-tab strong {
  display: block;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.auto-tab.on strong { color: var(--ink); }
.auto-tab p { display: none; font-size: 15px; color: var(--ink-soft); margin-top: 8px; }
.auto-tab.on p { display: block; animation: desc-abre 0.3s ease; }
@keyframes desc-abre {
  from { opacity: 0; transform: translateY(-4px); }
}

/* visual: busca */
.busca-mock { width: min(340px, 100%); display: flex; flex-direction: column; gap: 12px; }
.busca-barra {
  background: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-card);
}
.busca-skel {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.55;
}
.busca-skel i { width: 60%; height: 8px; background: #e8e8ea; border-radius: 4px; }
.busca-skel em { width: 38%; height: 6px; background: #f0f0f2; border-radius: 4px; }
.busca-hit {
  background: #fff;
  border: 1.5px solid var(--brand);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(235, 5, 51, 0.12);
}
.busca-ava {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex: none;
}
.busca-info { display: flex; flex-direction: column; min-width: 0; }
.busca-info strong { font-size: 14.5px; }
.busca-info small { font-size: 12px; color: var(--ok); }
.busca-selo {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}

/* bolhas de WhatsApp (recuperação e IA) */
.wa-bolha {
  max-width: 88%;
  border-radius: 14px;
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.wa-bolha.ia { background: #fff; align-self: flex-start; border-bottom-left-radius: 5px; }
.wa-bolha.cliente { background: #d9fdd3; align-self: flex-end; border-bottom-right-radius: 5px; }
.rec-mock { width: min(320px, 100%); display: flex; flex-direction: column; gap: 8px; }
.rec-selo {
  align-self: center;
  margin-top: 10px;
  background: #e6f6ea;
  color: var(--ok);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

/* visual: peça também */
.upsell-mock { width: min(340px, 100%); display: flex; flex-direction: column; gap: 10px; }
.up-destaque { background: #fff; border: 1.5px solid var(--brand); border-radius: 16px; padding: 12px 14px; }
.up-selo {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #b25e00;
  background: #fff3e0;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.up-linha { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.up-info strong { font-size: 15px; display: block; }
.up-preco { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.up-preco b { font-size: 15px; }
.up-preco s { font-size: 12px; color: var(--ink-soft); }
.up-preco em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  color: var(--ok);
  background: #e6f6ea;
  padding: 2px 7px;
  border-radius: 999px;
}
.up-linha img { border-radius: 12px; object-fit: cover; flex: none; }
.up-label { font-size: 13px; font-weight: 600; margin-top: 2px; }
.up-item {
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.up-item img { border-radius: 10px; object-fit: cover; flex: none; }
.up-item span { display: flex; flex-direction: column; }
.up-item strong { font-size: 13.5px; }
.up-item small { font-size: 12.5px; font-weight: 600; }
.up-add {
  margin-left: auto;
  font-style: normal;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  flex: none;
}
.up-carrinho {
  background: var(--brand);
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.up-carrinho strong { margin-left: auto; }

/* visual: cashback */
.cash-mock { width: min(320px, 100%); display: flex; flex-direction: column; gap: 10px; }
.cash-topo { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.cash-ok {
  background: #e6f6ea;
  color: var(--ok);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.cash-canal { background: #fff; font-size: 12.5px; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-card); }
.cash-total {
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  box-shadow: var(--shadow-card);
}
.cash-banner { background: #e6f6ea; border-radius: 14px; padding: 12px 14px; display: flex; gap: 10px; }
.cash-cifra {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ok);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: none;
}
.cash-banner strong { font-size: 13.5px; color: #14532d; display: block; }
.cash-banner small { font-size: 12px; color: var(--ok); }
.cash-volta {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-pop);
}

/* ---------- Base de clientes ---------- */
.cli-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.cli-card {
  background: var(--cloud);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cli-card h3 { font-size: 20px; font-weight: 650; letter-spacing: -0.014em; margin-top: 6px; }
.cli-card > p { font-size: 14.5px; color: var(--ink-soft); }
.cli-visual { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.base-linha {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}
.base-linha.o72 { opacity: 0.72; }
.base-linha.o38 { opacity: 0.38; }
.base-ava {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  flex: none;
}
.base-ava.a1 { background: var(--brand); }
.base-ava.a2 { background: #1d1d1f; }
.base-ava.a3 { background: var(--brand-bright); }
.base-ava.a4 { background: #b25e00; }
.base-linha span { display: flex; flex-direction: column; min-width: 0; }
.base-linha strong { font-size: 13px; }
.base-linha small { font-size: 11.5px; color: var(--ink-soft); }
.base-linha b { margin-left: auto; font-size: 13px; }
.disp-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-card);
}
.disp-card > small { font-size: 12px; color: var(--ink-soft); }
.disp-card > strong { font-size: 30px; color: var(--ok); letter-spacing: -0.02em; }
.disp-card > span { font-size: 12.5px; color: var(--ink-soft); }
.disp-rodape {
  border-top: 1px dashed var(--hairline);
  margin-top: 8px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.disp-rodape em { font-style: normal; font-size: 12.5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.disp-cupom {
  font-style: normal;
  background: #fff3e0;
  color: #b25e00;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
}
.disp-rodape small { font-size: 11.5px; color: var(--ink-soft); }
.cli-card .wa-bolha.ia { box-shadow: var(--shadow-card); }

/* ---------- Sistema completo ---------- */
.sys-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.sys-card {
  background: var(--cloud);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sys-card h3 { font-size: 20px; font-weight: 650; letter-spacing: -0.014em; margin-top: 12px; }
.sys-card > p { font-size: 14.5px; color: var(--ink-soft); }
.sys-visual { display: flex; flex-direction: column; gap: 10px; }

.mesa-resumo { display: flex; gap: 8px; flex-wrap: wrap; }
.mr-chip {
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  flex: 1;
  min-width: 104px;
}
.mr-chip b { font-size: 13.5px; }
.mr-chip small { font-size: 11px; color: var(--ink-soft); }
.mr-chip.destaque { background: var(--brand-soft); }
.mr-chip.destaque b { color: var(--brand-text); }

.mesa-grade { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.mesa-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.mesa-card i { font-style: normal; background: var(--brand); color: #fff; font-size: 11px; font-weight: 600; padding: 5px 9px; }
.mesa-card b { font-size: 13px; padding: 7px 9px 0; }
.mesa-card small { font-size: 10px; color: var(--ink-soft); padding: 2px 9px; }
.mesa-card em { font-style: normal; font-size: 10.5px; color: var(--ink-soft); padding: 0 9px 8px; }
.mesa-livres { display: flex; gap: 6px; flex-wrap: wrap; }
.mesa-livres span { background: #fff; border-radius: 8px; padding: 5px 9px; font-size: 10.5px; color: #b4b0aa; }

.comanda {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cmd-head { display: flex; justify-content: space-between; font-size: 13.5px; }
.cmd-head em { font-style: normal; color: var(--ink-soft); font-size: 12px; }
.cmd-item { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-soft); }
.cmd-item b { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.cmd-item.extra, .cmd-item.extra b { color: #b4b0aa; }
.cmd-total {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  border-top: 1px solid var(--hairline);
  padding-top: 8px;
  margin-top: 4px;
}
.cmd-dividir {
  display: flex;
  justify-content: space-between;
  background: var(--brand-soft);
  color: var(--brand-text);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}
.cmd-acoes { display: flex; gap: 8px; margin-top: 4px; }
.cmd-acoes i {
  font-style: normal;
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 8px;
}
.cmd-acoes em {
  font-style: normal;
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  padding: 8px;
}

.kds-grade { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.kds-ticket {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid transparent;
}
.kds-ticket.atrasado { border-color: var(--brand); }
.kds-topo { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; gap: 8px; }
.kds-topo strong { font-size: 13.5px; }
.kds-topo em { font-style: normal; font-size: 11px; background: var(--cloud); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.kds-ticket.atrasado .kds-topo em { background: var(--brand); color: #fff; }
.kds-ticket > span { font-size: 12px; color: var(--ink-soft); }
.kds-obs {
  font-style: normal;
  font-size: 11px;
  background: var(--brand-soft);
  color: var(--brand-text);
  border-radius: 8px;
  padding: 5px 8px;
  margin-top: 3px;
}
.kds-obs.vazia { background: var(--cloud); color: #b4b0aa; }
.kds-pe { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.kds-pe small { font-size: 12px; font-variant-numeric: tabular-nums; }
.kds-pe small.tarde { color: var(--brand-text); font-weight: 700; }
.kds-pe b { font-size: 11.5px; font-weight: 600; border: 1px solid var(--hairline); border-radius: 999px; padding: 4px 12px; }

.cx-head { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.cx-selo { background: #e6f6ea; color: var(--ok); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.cx-head small { color: var(--ink-soft); font-size: 12px; margin-left: auto; }
.cx-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.cx-col {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-card);
}
.cx-col > small { font-size: 11px; color: var(--ink-soft); font-weight: 600; }
.cx-linha { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; }
.cx-linha i { font-style: normal; color: #b4b0aa; font-size: 11px; }
.cx-linha b { font-weight: 500; font-variant-numeric: tabular-nums; white-space: nowrap; }

.rota-status { display: flex; gap: 8px; flex-wrap: wrap; }
.rota-status span {
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-card);
}
.rota-status .pronto { color: #b25e00; }
.rota-status .emrota { color: #6d28d9; }
.rota-status .entregue { color: var(--ok); }
.rota-painel {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-card);
}
.rota-head strong { font-size: 13.5px; display: block; }
.rota-head small { font-size: 11.5px; color: var(--ink-soft); }
.rota-parada { display: flex; align-items: center; gap: 10px; }
.rota-parada i {
  font-style: normal;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cloud);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  flex: none;
}
.rota-parada.feita i { background: #e6f6ea; color: var(--ok); }
.rota-parada span { display: flex; flex-direction: column; min-width: 0; }
.rota-parada strong { font-size: 12.5px; }
.rota-parada small { font-size: 11px; color: var(--ink-soft); }
.rota-parada em { font-style: normal; margin-left: auto; font-size: 11px; color: var(--ink-soft); white-space: nowrap; }
.rota-parada.feita em { color: var(--ok); font-weight: 600; }
.rota-pe {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ok);
  border-top: 1px solid var(--hairline);
  padding-top: 10px;
}
.rota-pe i { width: 8px; height: 8px; border-radius: 50%; background: #34c759; }

.promo-head {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-card);
}
.promo-head img { border-radius: 10px; object-fit: cover; flex: none; }
.promo-head strong { font-size: 14px; display: block; }
.promo-head small { font-size: 11.5px; color: var(--ink-soft); }
.promo-dia {
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}
.promo-dia span { color: var(--ink-soft); }
.promo-dia b { margin-left: auto; font-weight: 500; font-variant-numeric: tabular-nums; }
.promo-dia em { font-style: normal; margin-left: auto; font-size: 11px; font-weight: 600; color: var(--ok); }
.promo-dia.promo { background: #e6f6ea; }
.promo-dia.promo b { margin-left: 0; color: var(--ok); font-weight: 700; }

.card-cardapios { display: flex; flex-direction: column; gap: 8px; }
.cardapio-mini {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.cardapio-mini strong { font-size: 13px; }
.cd-ativo {
  font-style: normal;
  background: #e6f6ea;
  color: var(--ok);
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 999px;
}
.cardapio-mini small { grid-column: 1 / -1; font-size: 11px; color: var(--ink-soft); }
.disp-flutua {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: clamp(16px, 10%, 48px);
  margin-top: -4px;
}
.disp-flutua > small { font-size: 11px; font-weight: 600; color: var(--ink-soft); }
.disp-flutua .tg { padding: 5px 0; box-shadow: none; border-radius: 0; background: transparent; }
.disp-flutua .tg span { font-size: 12px; font-weight: 500; }
.disp-flutua .tg em { font-style: normal; margin-left: auto; margin-right: 10px; font-size: 11px; color: var(--ink-soft); }

/* ---------- Integrações ---------- */
.int-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.int-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.int-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  height: 470px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.int-col { display: flex; flex-direction: column; height: max-content; animation: int-rola 30s linear infinite; }
.int-col.reversa { animation-direction: reverse; animation-duration: 36s; }
.int-cols:hover .int-col { animation-play-state: paused; }
.int-meia { display: flex; flex-direction: column; gap: 14px; padding-bottom: 14px; }
.int-tile {
  background: var(--paper);
  border-radius: 18px;
  height: 88px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  padding: 16px;
}
.int-tile img { max-height: 46px; max-width: 100%; width: auto; object-fit: contain; border-radius: 8px; }
@keyframes int-rola {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

/* ---------- Páginas legais (privacidade) ---------- */
.nav-simples { position: static; background: var(--paper); border-bottom: 1px solid var(--hairline); }
.nav-simples .nav-inner { justify-content: space-between; }
.link-voltar { font-size: 15px; }
.link-voltar::after { content: none; }
.link-voltar::before { content: "←"; transition: transform 0.18s ease; }
.link-voltar:hover::before { transform: translateX(-4px); }

.legal { padding-top: clamp(40px, 6vw, 72px); }
.legal .eyebrow { margin-bottom: 18px; }
.legal h1 { margin-bottom: 18px; }
.legal .lead { margin-bottom: 10px; }
.legal-data { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.legal h2 {
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 650;
  letter-spacing: -0.014em;
  margin: 40px 0 12px;
}
.legal p { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 14px; }
.legal p strong { color: var(--ink); font-weight: 600; }
.legal a:not(.btn) { color: var(--brand-text); font-weight: 600; text-decoration: underline; }
.legal-lista { display: flex; flex-direction: column; gap: 10px; margin: 0 0 16px; }
.legal-lista li {
  position: relative;
  padding-left: 26px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.legal-lista li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.legal-lista strong { color: var(--ink); font-weight: 600; }
.legal-voltar { margin-top: 40px; }
.footer-simples { padding: 32px 0; }
.footer-simples .footer-base { padding-top: 0; }
.footer-simples a { transition: color 0.15s ease; }
.footer-simples a:hover { color: #fff; }

/* ---------- Animações de entrada ----------
   Só escondemos conteúdo quando o JS está ativo (html.js):
   sem JavaScript, a página inteira fica visível. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .toast-1 { left: 8px; }
  .toast-2 { right: 8px; }
  .toast-3 { left: 24px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-signin { display: none; }
  .nav-actions .btn-sm { display: none; }
  .nav-burger { display: flex; }

  .bento { grid-template-columns: repeat(2, 1fr); }
  .span-3, .span-2 { grid-column: span 2; }
  .bento .span-2 { grid-column: span 1; }

  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; padding: 4px 0; }

  .steps { grid-template-columns: 1fr; }
  .dark-points { grid-template-columns: 1fr; }
  .points { grid-template-columns: 1fr; }
  .num-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .auto-wrap { grid-template-columns: 1fr; }
  .auto-visuais { min-height: 440px; }
  .cli-grid { grid-template-columns: 1fr; }
  .sys-grid { grid-template-columns: 1fr; }
  .int-wrap { grid-template-columns: 1fr; }
  .int-cols { height: 380px; }

  .lead-card { grid-template-columns: 1fr; }
  .refer-card { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 800px) {
  .toast { display: none; }
  .toast-1 { display: flex; top: -38px; left: 50%; transform: translateX(-50%); animation: none; }
}

@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento .span-2, .bento .span-3 { grid-column: span 1; }

  .phone { width: 280px; }
  .phone-screen { height: 560px; }

  .hero-ctas { flex-direction: column; gap: 18px; }

  .mesa-grade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kds-grade { grid-template-columns: 1fr; }
  .cx-cols { grid-template-columns: 1fr; }
}

/* ---------- Acessibilidade: menos movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .toast, .m-cart, .marquee-track, .int-col { animation: none; }
  .btn, .card { transition: none; }
  .conv-fill { transition: none; width: var(--w); }
  .h1-giro, .auto-visual { transition: none; }
  .lead-card .eyebrow::before { animation: none; }
  .lead-sucesso { transition: opacity 0.2s ease; transform: none; }
  .lead-card.enviado .sc-anel,
  .lead-card.enviado .sc-tique { animation: none; stroke-dashoffset: 0; }
  .lead-card.enviado .sucesso-check::before,
  .lead-card.enviado .confete i { animation: none; }
  .confete i { display: none; }
}
