/*
 * A landing do Mesa Fácil (docs/planos/landing/plano.md) — fiel ao mockup v2 da Paulada (05/09).
 *
 * Folha PRÓPRIA, e não o `app.css` do produto: a página é uma só, não tem navegação nem
 * painel, e carregar 300 KB de design system para uma página de marketing pagaria peso sem
 * comprar nada. Os TOKENS de marca são os do `frontend/src/index.css` — lima é marca, verde é
 * ação. Os pretos aqui são mais fechados que o carvão do app porque o mockup pede assim.
 */
:root {
  --lima: #b7e61a;
  --lima-hover: #a9d80f;
  --lima-bg: #e8f4c7;
  --sobre-lima: #122016;
  --verde: #5ec34c;
  --verde-hover: #4fb33e;
  --verde-escuro: #15803d;
  --verde-icone: #2f7a2a;
  --preto: #0f110f;
  --preto-alto: #171917;
  --cinza-pagina: #f4f4f2;
  --cinza-faixa: #ececea;
  --branco: #ffffff;
  --text: #3f4340;
  --text-h: #141614;
  --text-muted: #7a776f;
  --border: #e6e5e1;
  --border-campo: #d9d7d1;
  --erro-forte: #b91c1c;
  --danger-bg: rgba(229, 72, 77, 0.1);
  --shadow-cartao: 0 6px 24px rgba(20, 22, 20, 0.06);
  --sans: 'Manrope', system-ui, 'Segoe UI', Roboto, sans-serif;
  --guia: 1264px;
  --lado: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  background: var(--cinza-pagina);
  color: var(--text);
  font: 16px/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* `hidden` precisa vencer o `display` das classes (o cartão de sucesso é `display:flex`). */
[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-h);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
  /* Sem isto o notebook impõe a largura mínima do painel desenhado dentro dele à grade — e no
     celular a página inteira passa a rolar de lado. */
  min-width: 0;
}

.guia {
  width: 100%;
  max-width: var(--guia);
  margin: 0 auto;
  padding-left: var(--lado);
  padding-right: var(--lado);
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.pular {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--lima);
  color: var(--sobre-lima);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.pular:focus {
  top: 12px;
}

/* ── Etiquetas, títulos, botões ─────────────────────────────────────────────── */
.etiqueta {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.etiqueta-clara {
  color: rgba(255, 255, 255, 0.9);
}

.lima {
  color: var(--lima);
}

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.botao:focus-visible {
  outline: 3px solid var(--lima);
  outline-offset: 3px;
}

.botao-lima {
  background: var(--lima);
  color: var(--sobre-lima);
}

.botao-lima:hover {
  background: var(--lima-hover);
}

.botao-verde {
  background: var(--verde);
  color: var(--sobre-lima);
  border-radius: 8px;
}

.botao-verde:hover {
  background: var(--verde-hover);
}

.botao-verde:disabled {
  background: #a9d8a0;
  cursor: progress;
}

.botao-grande {
  min-height: 48px;
  padding: 0 30px;
}

.botao-largo {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
}

/* ── A marca ────────────────────────────────────────────────────────────────── */
.marca {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  color: #fff;
}

.marca-lockup {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
}

.marca-wordmark {
  display: inline-flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 24px;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.marca-facil {
  color: var(--lima);
}

.marca-tagline {
  font-size: 10.5px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.8);
}

.marca-tagline em {
  font-style: normal;
  color: var(--lima);
}

/* ── Hero, com o cabeçalho por cima da foto ─────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--preto);
  color: #fff;
  overflow: hidden;
}

.hero-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
  z-index: -2;
}

/* O véu: fechado à esquerda, onde está o texto; a foto respira à direita e no alto. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 17, 15, 0.92) 0%, rgba(15, 17, 15, 0.7) 38%, rgba(15, 17, 15, 0.12) 72%, rgba(15, 17, 15, 0.05) 100%),
    linear-gradient(180deg, rgba(15, 17, 15, 0.55) 0%, rgba(15, 17, 15, 0.05) 30%, rgba(15, 17, 15, 0.35) 100%);
}

.topo {
  position: relative;
}

.topo-linha {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 18px;
  padding-bottom: 14px;
}

.topo-nav {
  display: flex;
  gap: 34px;
  margin-left: 16px;
  font-size: 15px;
  font-weight: 500;
}

.topo-nav a {
  color: #fff;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.topo-nav a:hover {
  border-bottom-color: var(--lima);
}

.topo-cta {
  margin-left: auto;
}

.hero-conteudo {
  padding-top: 44px;
  padding-bottom: 28px;
}

.hero-conteudo > * {
  max-width: 560px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-nota {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

/* ── Os três aparelhos ──────────────────────────────────────────────────────── */
.aparelhos {
  background: var(--cinza-pagina);
  padding-top: 12px;
  /* A legenda da jornada fica abaixo do celular, fora do fluxo: este respiro é o lugar dela. */
  padding-bottom: 44px;
}

.aparelhos-linha {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 220px;
  gap: 16px;
  align-items: stretch;
}

/* O notebook */
.laptop {
  display: flex;
  flex-direction: column;
}

.laptop-tela {
  flex: 1;
  background: #0b0b0b;
  border: 8px solid #141414;
  border-radius: 14px 14px 4px 4px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.laptop-base {
  height: 12px;
  margin: 0 -18px;
  background: linear-gradient(180deg, #d9d9d9 0%, #b5b5b5 55%, #9a9a9a 100%);
  border-radius: 0 0 12px 12px;
}

/* O painel — a "Visão geral" do produto, redesenhada em CSS na escala do notebook. */
.painel {
  display: grid;
  grid-template-columns: 24% 1fr;
  height: 100%;
  background: #f6f6f4;
  color: var(--text);
  font-size: 6.6px;
  line-height: 1.3;
}

.painel-lateral {
  display: flex;
  flex-direction: column;
  background: #121412;
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 7px;
  gap: 3px;
  overflow: hidden;
}

.painel-marca {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-weight: 800;
  font-size: 10px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
}

.painel-marca em {
  font-style: normal;
  color: var(--lima);
}

.painel-casa {
  display: flex;
  flex-direction: column;
  padding: 4px 6px;
  margin-bottom: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.painel-casa strong {
  color: #fff;
  font-size: 6.8px;
}

.painel-casa small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 5.6px;
}

.painel-grupo {
  margin: 5px 6px 2px;
  font-size: 5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.painel-lateral li {
  padding: 3.5px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.painel-lateral li.ativo {
  background: #244a2a;
  color: #fff;
  font-weight: 700;
}

.painel-usuario {
  margin-top: auto;
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.painel-usuario strong {
  display: block;
  font-size: 6.4px;
}

.painel-usuario small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 5px;
}

.avatar {
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a27a, #6b4a2f);
}

.painel-corpo {
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.painel-cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.painel-cabecalho strong {
  display: block;
  font-size: 10px;
  color: var(--text-h);
}

.painel-cabecalho small {
  color: var(--text-muted);
}

.painel-acoes {
  display: flex;
  gap: 5px;
  align-items: center;
}

.painel-hoje {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 4px;
  padding: 2.5px 6px;
  font-weight: 600;
}

.painel-botao {
  background: #16a34a;
  color: #fff;
  border-radius: 4px;
  padding: 2.5px 6px;
  font-weight: 700;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}

.kpi {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 7px 5px 20px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.kpi-icone {
  position: absolute;
  left: 6px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 0.85;
}

.kpi small {
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kpi strong {
  font-size: 10px;
  color: var(--text-h);
}

.kpi strong em {
  font-style: normal;
  font-size: 5.6px;
  color: #16a34a;
  font-weight: 700;
}

.kpi span {
  font-size: 5.4px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kpi svg {
  width: 100%;
  height: 9px;
  margin-top: 2px;
}

.c-verde { background: #16a34a; }
.c-azul { background: #2563eb; }
.c-ciano { background: #38bdf8; }
.c-roxo { background: #7c3aed; }
.c-laranja { background: #f97316; }
.c-vermelho { background: #ef4444; }
.c-violeta { background: #a855f7; }

.painel-linha {
  display: grid;
  gap: 5px;
  min-height: 0;
}

.painel-linha-3 {
  grid-template-columns: 1.5fr 1fr 1fr;
  flex: 1.15;
}

.painel-linha-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  flex: 1;
}

.painel-bloco {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.painel-bloco-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 4px;
  white-space: nowrap;
}

.painel-select {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1px 4px;
  font-weight: 500;
  color: var(--text-muted);
}

.painel-link {
  color: #16a34a;
  font-weight: 600;
  font-size: 5.4px;
}

.painel-legenda {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 5.4px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.painel-legenda i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 1px;
}

.painel-grafico {
  width: 100%;
  flex: 1;
  min-height: 34px;
}

.painel-eixo {
  display: flex;
  justify-content: space-between;
  font-size: 4.6px;
  color: var(--text-muted);
}

.painel-donut-linha {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.donut {
  position: relative;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  /* As fatias vêm do HTML (`--fatias`), como um gráfico de rosca de verdade. */
  background: conic-gradient(var(--fatias, #e7e7e4 0 100%));
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-h);
  font-weight: 800;
  font-size: 9px;
  line-height: 1;
}

.donut::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: #fff;
}

.donut > span {
  position: relative;
}

.donut small {
  display: block;
  font-size: 4.4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.donut-p {
  width: 34px;
  height: 34px;
}

.painel-lista-pct {
  flex: 1;
  min-width: 0;
}

.painel-lista-pct li {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr) auto auto;
  gap: 3px;
  align-items: center;
  padding: 1.5px 0;
  white-space: nowrap;
  min-width: 0;
}

/* O rótulo cede antes do número: "Lançado pela casa" encurta, o 29% e o 12 ficam inteiros. */
.painel-lista-pct li > span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.painel-lista-pct i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
}

.painel-lista-pct b {
  font-weight: 700;
  color: var(--text-h);
}

.painel-lista-pct u {
  text-decoration: none;
  color: var(--text-muted);
}

.painel-visao {
  margin: 0;
  display: grid;
  gap: 2px;
}

.painel-visao dt {
  font-weight: 700;
  color: var(--text-h);
  margin-top: 2px;
}

.painel-visao dd {
  margin: 0;
  color: var(--text-muted);
}

.painel-vazio {
  color: var(--text-muted);
  margin-top: 2px;
}

.painel-mapa {
  width: 100%;
  flex: 1;
  min-height: 24px;
}

.m-livre { fill: #dcfce7; stroke: #16a34a; }
.m-ocupada { fill: #ffedd5; stroke: #f97316; }
.m-reservada { fill: #dbeafe; stroke: #2563eb; }
.m-limpeza { fill: #ede9fe; stroke: #7c3aed; }

.painel-top li,
.painel-atividades li {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2.5px 0;
  border-top: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
}

.painel-top li:first-child,
.painel-atividades li:first-child {
  border-top: 0;
}

.painel-top i {
  flex: none;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--lima-bg);
  color: var(--verde-icone);
  font-style: normal;
  font-weight: 800;
  font-size: 4.6px;
}

.painel-top span {
  flex: 1;
  color: var(--text-h);
  overflow: hidden;
  text-overflow: ellipsis;
}

.painel-top b {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 5.6px;
}

.painel-atividades time {
  flex: none;
  color: var(--text-muted);
  font-size: 5.6px;
}

.painel-atividades span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.painel-atividades b {
  color: var(--text-h);
}

.painel-legenda-mesas {
  font-size: 4.6px;
  margin-top: 2px;
}

/* Os celulares: a proporção do mockup (mais altos que 9:18) é o que dá ao notebook a dele. */
.celular {
  aspect-ratio: 9 / 19.4;
}

.celular-tela {
  height: 100%;
  background: #fff;
  border: 7px solid #111;
  border-radius: 30px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* A ilha dinâmica */
.celular-tela::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 12px;
  background: #111;
  border-radius: 999px;
  z-index: 3;
}

.status-bar {
  flex: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px 2px;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-claro {
  background: #fff;
  color: #111;
}

.status-escuro {
  background: #1b1d1b;
  color: #fff;
}



.wpp {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #f0ede6;
  font-size: 7.4px;
  line-height: 1.35;
  color: var(--text-h);
  min-height: 0;
}

.wpp-topo {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px 7px;
  background: #fff;
  border-bottom: 1px solid #e4e2dc;
}

.wpp-voltar {
  font-size: 12px;
  color: #027eb5;
  line-height: 1;
}

.wpp-avatar {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #1b1d1b;
  color: #fff;
  font-weight: 800;
  font-size: 8px;
}

.wpp-nome {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.wpp-nome strong {
  font-size: 8px;
}

.wpp-nome small {
  color: #16a34a;
  font-size: 6px;
}

.wpp-acoes {
  color: #027eb5;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.wpp-conversa {
  flex: 1;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 0;
  /* A conversa é mais longa que a tela: rola por dentro, como um chat de verdade. O script rola
     para o fim a cada bolha; sem script, fica no fim (ver `.wpp-conversa:not(...)`). */
  overflow-y: auto;
  scrollbar-width: none;
}

.wpp-conversa::-webkit-scrollbar {
  display: none;
}

.wpp-msg b {
  font-weight: 700;
}

.wpp-cartao small {
  margin-top: 3px;
  font-size: 5.6px;
  color: var(--text-muted);
}

/* As bolhas de "digitando" só existem durante a animação. */
.wpp-digitando {
  display: none;
}

.wpp-botoes span.tocado {
  background: #d9fdd3;
  color: #166534;
}

.wpp-msg {
  position: relative;
  max-width: 84%;
  padding: 5px 7px 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.wpp-msg time {
  position: absolute;
  right: 6px;
  bottom: 2px;
  font-size: 4.8px;
  color: var(--text-muted);
}

.wpp-cliente {
  align-self: flex-end;
  background: #d9fdd3;
  border-bottom-right-radius: 2px;
}

.wpp-casa {
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.wpp-cartao {
  display: flex;
  flex-direction: column;
  gap: 2.5px;
  padding-bottom: 6px;
  border-left: 2px solid #16a34a;
}

.wpp-cartao strong {
  margin-bottom: 1px;
}

.wpp-rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 6px 10px;
  padding: 5px 8px;
  background: #fff;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 6.6px;
}

/* ── Os quatro recursos ─────────────────────────────────────────────────────── */
.recursos {
  background: var(--cinza-pagina);
  padding: 16px 0 30px;
}

.recursos-grade {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.recurso-icone {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--lima-bg);
  color: var(--verde-icone);
  margin-bottom: 14px;
}

.recursos h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.recursos p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 240px;
  text-wrap: pretty;
}

/* ── Reserva é só o começo ──────────────────────────────────────────────────── */
.comeco {
  background: var(--cinza-faixa);
  padding: 24px 0 26px;
}

.comeco-linha {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 64px;
  align-items: center;
}

.comeco h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.comeco-texto {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  padding-left: 64px;
  border-left: 1px solid #cfcdc7;
  max-width: 620px;
  text-wrap: pretty;
}

/* ── Criado dentro de restaurante ───────────────────────────────────────────── */
.pratica {
  background: var(--preto);
  color: #fff;
}

.pratica-linha {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.05fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.pratica-texto,
.pratica-citacao {
  padding: 28px var(--lado);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pratica h2 {
  color: #fff;
  font-size: clamp(28px, 2.7vw, 38px);
  margin-bottom: 16px;
}

.pratica-texto p:last-child {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  max-width: 340px;
  text-wrap: pretty;
}

.pratica-foto-caixa {
  position: relative;
  min-height: 240px;
}

/* Absoluta para a FOTO não ditar a altura do bloco: quem manda é o texto ao lado, como no mockup. */
.pratica-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.pratica-citacao {
  margin: 0;
  padding-left: 40px;
}

.pratica-citacao p {
  font-size: 17px;
  line-height: 1.45;
  font-style: italic;
  font-weight: 500;
  max-width: 360px;
  text-wrap: pretty;
}

.pratica-citacao footer {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.pratica-citacao footer strong {
  color: #fff;
  font-weight: 700;
}

/* ── Quer conhecer? ─────────────────────────────────────────────────────────── */
.contato {
  padding: 30px 0 32px;
  background: var(--cinza-pagina);
}

.contato-linha {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 56px;
  align-items: center;
}

.contato h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin-bottom: 18px;
}

.contato-texto p:last-child {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
  max-width: 360px;
  text-wrap: pretty;
}

.cartao-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-cartao);
  padding: 20px;
}

.campos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 14px;
  margin-bottom: 16px;
}

.campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.campo label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-h);
}

.opcional {
  font-weight: 500;
  color: var(--text-muted);
}

.campo input {
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border-campo);
  border-radius: 6px;
  font: inherit;
  font-size: 13.5px;
  color: var(--text-h);
  background: #fff;
}

.campo input::placeholder {
  color: #b3b0a8;
}

.campo input:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 1px;
  border-color: var(--verde);
}

.campo input[aria-invalid='true'] {
  border-color: var(--erro-forte);
  box-shadow: 0 0 0 3px var(--danger-bg);
}

/* O campo-armadilha: fora da tela, nunca escondido por `display:none` (robô simples ignora o
   que está oculto assim e pularia a armadilha). */
.campo-armadilha {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-erro {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--danger-bg);
  color: var(--erro-forte);
  font-size: 14px;
  font-weight: 600;
}

.form-status {
  min-height: 1.2em;
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.form-status:empty {
  margin: 0;
  min-height: 0;
}

.cartao-sucesso {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cartao-sucesso h3 {
  font-size: 22px;
}

.cartao-sucesso p {
  color: var(--text-muted);
}

.cartao-sucesso:focus {
  outline: 3px solid var(--verde);
  outline-offset: 3px;
}

/* ── Rodapé ─────────────────────────────────────────────────────────────────── */
.rodape {
  background: var(--preto);
  color: rgba(255, 255, 255, 0.85);
  padding: 30px 0 32px;
}

.rodape-linha {
  display: flex;
  align-items: center;
  gap: 32px;
}

.rodape-lema {
  margin: 0 auto;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.rodape-nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.rodape-nav a {
  text-decoration: none;
  color: #fff;
}

.rodape-nav a:hover {
  color: var(--lima);
}

/* ── Páginas de texto (termos) ──────────────────────────────────────────────── */
.legal {
  max-width: 46rem;
  padding-top: 48px;
  padding-bottom: 72px;
  line-height: 1.65;
}

.legal h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 8px;
}

.legal-vigencia {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.legal-resumo {
  background: #fff;
  border-left: 3px solid var(--lima);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.legal section {
  margin-bottom: 28px;
}

.legal h2 {
  font-size: 18px;
  font-weight: 700;
  padding-top: 12px;
  margin-bottom: 8px;
  border-top: 1px solid var(--border);
}

.legal ul {
  list-style: disc;
  padding-left: 22px;
}

.legal li + li {
  margin-top: 6px;
}

.legal a {
  color: var(--verde-escuro);
}

/* A página de termos tem o cabeçalho sobre fundo preto, sem foto. */
.topo-solto {
  background: var(--preto);
}

/* ── Telas menores ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .aparelhos-linha {
    grid-template-columns: minmax(0, 1fr) 170px 170px;
    gap: 12px;
  }

  .recursos-grade {
    grid-template-columns: repeat(2, 1fr);
  }

  .pratica-linha {
    grid-template-columns: 1fr 1fr;
  }

  /* Texto e citação empilhados à esquerda; a foto toma a coluna direita inteira. */
  .pratica-foto-caixa {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .pratica-citacao {
    grid-column: 1;
    grid-row: 2;
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --lado: 16px;
  }

  .topo-nav {
    display: none;
  }

  .topo-linha {
    gap: 16px;
  }

  .hero-conteudo {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 17, 15, 0.86) 0%, rgba(15, 17, 15, 0.7) 60%, rgba(15, 17, 15, 0.9) 100%);
  }

  .aparelhos-linha {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .laptop {
    grid-column: 1 / -1;
  }

  .laptop-base {
    margin: 0;
  }

  .celular {
    max-width: 240px;
    width: 100%;
    justify-self: center;
    aspect-ratio: 9 / 18;
  }

  .comeco-linha,
  .contato-linha {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .comeco-texto {
    padding-left: 0;
    border-left: 0;
    padding-top: 20px;
    border-top: 1px solid #cfcdc7;
  }

  .comeco h2 br,
  .pratica h2 br,
  .contato h2 br {
    display: none;
  }

  .pratica-linha {
    grid-template-columns: 1fr;
  }

  .pratica-texto,
  .pratica-citacao {
    padding: 40px var(--lado);
  }

  .pratica-foto-caixa {
    min-height: 220px;
  }

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

  .cartao-form {
    padding: 20px;
  }

  .rodape-linha {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .rodape-lema {
    margin: 0;
  }
}

@media (max-width: 520px) {
  .aparelhos-linha {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Em uma coluna, os quatro recursos ficam CENTRADOS (Gustavo, no iPhone, 05/09): ícone,
     título e texto alinhados à esquerda numa coluna só pareciam uma lista, não uma vitrine. */
  .recursos li {
    text-align: center;
  }

  .recurso-icone,
  .recursos p {
    margin-left: auto;
    margin-right: auto;
  }

  .celular {
    max-width: 240px;
  }

  .recursos-grade {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .painel {
    font-size: 5px;
  }
}

/* R9: quem pediu menos movimento não recebe transição nem rolagem suave. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .botao {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MOVIMENTO (05/09) — três camadas, todas atrás de `prefers-reduced-motion` e da
   classe `js-anima`, que o `site.js` só põe no <html> quando o navegador aceita
   movimento. Sem JS, sem a classe: a página é a estática de antes, nada fica escondido.
   Só opacidade e transformação — nada que force relayout.
   ═══════════════════════════════════════════════════════════════════════════════ */

/* O cabeçalho sai do fluxo para poder virar barra fixa sem empurrar o hero. */
.topo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* Acima de tudo que rola por baixo: o hero é `isolation: isolate`, por isso o cabeçalho não
     pode morar dentro dele (ver o comentário no HTML). */
  z-index: 50;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease;
}

.hero-conteudo {
  padding-top: 138px;
}

.topo.compacto {
  position: fixed;
  background: rgba(15, 17, 15, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.topo.compacto .topo-linha {
  padding-top: 10px;
  padding-bottom: 10px;
}

.topo.compacto .marca-tagline {
  display: none;
}

.topo.compacto .marca-wordmark {
  font-size: 20px;
}

@media (max-width: 860px) {
  .hero-conteudo {
    padding-top: 120px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  /* ── Camada 1: entrada e cabeçalho ─────────────────────────────────────────── */
  @keyframes sobe-e-aparece {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }

  @keyframes zoom-lento {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
  }

  @keyframes desce {
    from { transform: translateY(-100%); }
    to { transform: none; }
  }

  .js-anima .hero-foto {
    animation: zoom-lento 6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .js-anima .topo:not(.compacto) {
    animation: sobe-e-aparece 0.6s ease-out both;
  }

  .js-anima .topo.compacto {
    animation: desce 0.3s ease-out both;
  }

  .js-anima .hero-conteudo > * {
    animation: sobe-e-aparece 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .js-anima .hero-conteudo > :nth-child(1) { animation-delay: 0.1s; }
  .js-anima .hero-conteudo > :nth-child(2) { animation-delay: 0.2s; }
  .js-anima .hero-conteudo > :nth-child(3) { animation-delay: 0.32s; }
  .js-anima .hero-conteudo > :nth-child(4) { animation-delay: 0.44s; }
  .js-anima .hero-conteudo > :nth-child(5) { animation-delay: 0.54s; }

  .botao {
    transition: background-color 0.15s ease, transform 0.18s ease, box-shadow 0.18s ease;
  }

  .botao-lima:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(183, 230, 26, 0.28);
  }

  .botao-verde:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(94, 195, 76, 0.3);
  }

  /* O botão de enviar ganha um spinner enquanto espera o servidor. */
  @keyframes gira { to { transform: rotate(360deg); } }

  .botao.enviando {
    color: transparent;
    position: relative;
  }

  .botao.enviando::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(18, 32, 22, 0.25);
    border-top-color: var(--sobre-lima);
    animation: gira 0.7s linear infinite;
  }

  /* O check do sucesso se desenha. */
  @keyframes traca { to { stroke-dashoffset: 0; } }

  .cartao-sucesso path {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: traca 0.5s 0.15s ease-out forwards;
  }

  .cartao-sucesso {
    animation: sobe-e-aparece 0.4s ease-out both;
  }

  /* ── Camada 2: revelação ao rolar ──────────────────────────────────────────── */
  .js-anima [data-revela] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: calc(var(--i, 0) * 90ms);
  }

  .js-anima [data-revela].visivel {
    opacity: 1;
    transform: none;
  }

  .js-anima .recursos li .recurso-icone {
    transform: scale(0.7);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: calc(var(--i, 0) * 90ms + 120ms);
  }

  .js-anima .recursos li.visivel .recurso-icone {
    transform: scale(1);
  }

  /* ── Camada 3: os aparelhos ────────────────────────────────────────────────── */
  /* O painel acorda: indicadores em escada, linhas que se desenham, anéis que crescem. */
  .js-anima .kpi {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  }

  .js-anima .laptop.visivel .kpi {
    opacity: 1;
    transform: none;
  }

  .js-anima .laptop.visivel .kpi:nth-child(1) { transition-delay: 0.35s; }
  .js-anima .laptop.visivel .kpi:nth-child(2) { transition-delay: 0.43s; }
  .js-anima .laptop.visivel .kpi:nth-child(3) { transition-delay: 0.51s; }
  .js-anima .laptop.visivel .kpi:nth-child(4) { transition-delay: 0.59s; }
  .js-anima .laptop.visivel .kpi:nth-child(5) { transition-delay: 0.67s; }
  .js-anima .laptop.visivel .kpi:nth-child(6) { transition-delay: 0.75s; }

  @keyframes desenha { to { stroke-dashoffset: 0; } }

  .js-anima .painel polyline {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
  }

  .js-anima .laptop.visivel .kpi polyline {
    animation: desenha 0.9s 0.9s ease-out forwards;
  }

  .js-anima .laptop.visivel .painel-grafico polyline {
    animation: desenha 1.4s 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .js-anima .laptop.visivel .painel-grafico polyline:nth-of-type(2) {
    animation-delay: 1s;
  }

  .js-anima .painel-grafico circle {
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }

  .js-anima .laptop.visivel .painel-grafico circle {
    opacity: 1;
    transition-delay: 2s;
  }

  .js-anima .donut {
    transform: scale(0.6);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-out;
  }

  .js-anima .laptop.visivel .donut {
    transform: scale(1);
    opacity: 1;
    transition-delay: 1.2s;
  }

  .js-anima .painel-mapa g > * {
    opacity: 0;
    transition: opacity 0.3s ease-out;
  }

  .js-anima .laptop.visivel .painel-mapa g > * {
    opacity: 1;
    transition-delay: calc(1.3s + var(--m, 0) * 40ms);
  }

  /* O WhatsApp conversa: o script mostra uma bolha por vez (`.mostra`), com "digitando…" antes
     de cada resposta da casa, e rola a conversa para o fim. Aqui só a entrada de cada bolha. */
  .js-anima .wpp-conversa > * {
    display: none;
  }

  @keyframes bolha {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to { opacity: 1; transform: none; }
  }

  .js-anima .wpp-conversa > .mostra {
    display: block;
    animation: bolha 0.35s ease-out both;
  }

  .js-anima .wpp-conversa > .wpp-botoes.mostra,
  .js-anima .wpp-conversa > .wpp-cartao.mostra,
  .js-anima .wpp-conversa > .wpp-digitando.mostra {
    display: flex;
  }

  @keyframes pontinho {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
    30% { transform: translateY(-3px); opacity: 1; }
  }

  .wpp-digitando {
    gap: 3px;
    align-items: center;
    padding: 7px 9px;
  }

  .wpp-digitando i {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #7a776f;
    animation: pontinho 1s infinite;
  }

  .wpp-digitando i:nth-child(2) { animation-delay: 0.15s; }
  .wpp-digitando i:nth-child(3) { animation-delay: 0.3s; }

  /* O cardápio deriva devagar dentro do celular, para mostrar um pouco mais do prato. */
  @keyframes deriva {
    from { transform: scale(1.06) translateY(0); }
    to { transform: scale(1.06) translateY(-3.5%); }
  }



  /* Paralaxe leve: os celulares descem mais devagar que o notebook. Guiado pela rolagem,
     sem JavaScript; onde não há suporte, simplesmente não acontece. */
  @supports (animation-timeline: view()) {
    @keyframes paralaxe {
      from { transform: translateY(26px); }
      to { transform: translateY(-26px); }
    }

    .js-anima .celular-tela {
      animation: paralaxe linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    .js-anima .celular-cardapio .celular-tela {
      animation-name: paralaxe;
      animation-delay: 0s;
    }
  }
}

/* Quem não quer movimento vê tudo, de uma vez, como sempre. */
@media (prefers-reduced-motion: reduce) {
  .topo.compacto {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   A JORNADA DO CARDÁPIO (v1.3) — oito cenas dentro do celular, sobre capturas reais.
   As sobreposições são posicionadas em `cqw` (fração da LARGURA da tela do celular): a
   captura escala com a largura, então o que está em cima dela escala junto.
   ═══════════════════════════════════════════════════════════════════════════════ */
.celular-cardapio .celular-tela {
  container-type: inline-size;
}

.jornada {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #f3f3f0;
}

.cena {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* A captura de fundo. `.cena img.fundo` e não `.cena img`: as taças da cena 5 também são <img>,
   e a regra genérica engolia o tamanho delas — saíam do tamanho da tela. */
.cena img.fundo {
  width: 100%;
  height: auto;
  display: block;
}

/* SEM `object-fit: cover` de propósito: a tela do celular pode ficar mais alta que a proporção da
   captura (a altura da fileira é do notebook, e muda com a largura da tela). Com cover a imagem
   cresceria e deslocaria, e tudo que está posicionado por cima dela em `cqw` — as taças, os
   chips, o selo — sairia do lugar (visto no ar em 05/09). Pela largura, 1cqw é sempre 7,8px da
   captura; sobra, no máximo, uma faixa do fundo cinza do cardápio embaixo. */

/* Sem script: só a primeira cena existe. */
.cena:not(.ativa) {
  display: none;
}

.sob {
  position: absolute;
  font-size: 3.4cqw;
  line-height: 1.3;
  color: var(--text-h);
}

/* 1 · a pílula da mesa, no cabeçalho escuro da captura */
.sob-mesa {
  top: 4cqw;
  right: 4cqw;
  padding: 1.4cqw 3cqw;
  border-radius: 999px;
  background: var(--lima);
  color: var(--sobre-lima);
  font-weight: 800;
  font-size: 3.2cqw;
}

/* 3 · a busca, um painel branco que desce por cima da lista */
.sob-busca {
  inset: 0;
  background: #fff;
  padding: 4cqw 4cqw 0;
}

.busca-campo {
  display: flex;
  align-items: center;
  gap: 2cqw;
  height: 11cqw;
  padding: 0 3.5cqw;
  border-radius: 999px;
  background: #f1f0ec;
  font-size: 4cqw;
  font-weight: 600;
}

.busca-campo i {
  font-style: normal;
  font-size: 3.6cqw;
}

.busca-cursor {
  width: 0.5cqw;
  height: 5cqw;
  background: var(--text-h);
}

.busca-chips,
.sob-chips {
  display: flex;
  gap: 1.6cqw;
  flex-wrap: wrap;
  margin: 3cqw 0 2cqw;
}

.busca-chips span,
.sob-chips span {
  padding: 1.4cqw 2.8cqw;
  border-radius: 999px;
  border: 1px solid #d9d7d1;
  background: #fff;
  font-size: 3cqw;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.busca-conta {
  font-size: 3cqw;
  color: var(--text-muted);
  margin: 1cqw 0 2cqw;
}

.busca-lista li {
  padding: 2.6cqw 0;
  border-top: 1px solid #ecebe7;
}

.busca-lista b {
  display: block;
  font-size: 3.5cqw;
  font-weight: 700;
}

.busca-lista mark {
  background: var(--lima-bg);
  color: inherit;
}

.busca-lista small {
  color: var(--text-muted);
  font-size: 2.9cqw;
}

/* 5 · as taças por cima dos quadrados cinza da captura (posição medida na imagem) */
.cena img.sob-taca {
  object-fit: cover;
  border-radius: 2.2cqw;
}

.cena img.sob-taca-1 { top: 63.6cqw; left: 6.9cqw; width: 11.2cqw; height: 14.2cqw; }
.cena img.sob-taca-2 { top: 90.9cqw; left: 6.9cqw; width: 11.2cqw; height: 14.2cqw; }
.cena img.sob-taca-3 { top: 118.2cqw; left: 6.9cqw; width: 11.2cqw; height: 14.2cqw; }

.cena img.sob-taca-f1 { top: 102.1cqw; left: 6.9cqw; width: 11.2cqw; height: 14.2cqw; }
.cena img.sob-taca-f2 { top: 129.4cqw; left: 6.9cqw; width: 11.2cqw; height: 14.2cqw; }
.cena img.sob-taca-f3 { top: 156.7cqw; left: 6.9cqw; width: 11.2cqw; height: 14.2cqw; }

/* 6 · os chips de alérgeno ligados, e as linhas que somem */
.sob-chips {
  left: 4cqw;
  right: 4cqw;
  top: 42cqw;
  margin: 0;
  padding: 2cqw;
  border-radius: 3cqw;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2cqw 6cqw rgba(0, 0, 0, 0.12);
}

.sob-chips span.ligado {
  background: var(--sobre-lima);
  color: #fff;
  border-color: var(--sobre-lima);
}

.sob-corte {
  left: 3cqw;
  right: 3cqw;
  height: 22cqw;
  border-radius: 2cqw;
  background: rgba(243, 243, 240, 0.92);
  display: grid;
  place-items: center;
}

.sob-corte small {
  padding: 1cqw 2.6cqw;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d9d7d1;
  color: var(--text-muted);
  font-size: 2.9cqw;
}

.sob-corte-1 {
  top: 71cqw;
}

.sob-corte-2 {
  top: 96cqw;
}

/* 7 · a folha de idioma */
.sob-veu {
  inset: 0;
  background: rgba(15, 17, 15, 0.45);
}

.sob-folha {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5cqw 5cqw 7cqw;
  background: #fff;
  border-radius: 5cqw 5cqw 0 0;
  box-shadow: 0 -2cqw 8cqw rgba(0, 0, 0, 0.18);
}

.sob-folha strong {
  display: block;
  font-size: 4.2cqw;
  margin-bottom: 3cqw;
}

.sob-folha ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2cqw;
}

.sob-folha li {
  padding: 2.6cqw 3cqw;
  border-radius: 2.5cqw;
  border: 1px solid #e6e5e1;
  font-size: 3.4cqw;
  font-weight: 600;
}

.sob-folha li.marcado {
  border-color: var(--sobre-lima);
  background: var(--lima-bg);
}

/* 8 · esgotado ao vivo e o botão de chamar garçom (os textos são os do produto) */
.sob-esgotado {
  top: 150cqw;
  right: 6cqw;
  padding: 1cqw 2.4cqw;
  border-radius: 999px;
  background: var(--text-h);
  color: #fff;
  font-size: 2.8cqw;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sob-fab {
  right: 4cqw;
  bottom: 5cqw;
  display: grid;
}

.sob-fab span {
  grid-area: 1 / 1;
  padding: 3cqw 4.5cqw;
  border-radius: 999px;
  background: var(--text-h);
  color: #fff;
  font-size: 3.4cqw;
  font-weight: 700;
  box-shadow: 0 3cqw 8cqw rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.fab-avisado {
  background: var(--verde-escuro) !important;
  opacity: 0;
}

/* A legenda, logo abaixo do celular, sem mexer na altura da fileira. */
.jornada-legenda {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.celular-cardapio {
  position: relative;
}

.jornada-pontos {
  display: flex;
  gap: 4px;
}

.jornada-pontos i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #cfcdc7;
}

.jornada-pontos i.ativo {
  width: 14px;
  background: var(--sobre-lima);
}

@media (prefers-reduced-motion: no-preference) {
  .js-anima .cena {
    display: block;
    opacity: 0;
    transform: translateX(14%);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
    pointer-events: none;
  }

  .js-anima .cena.ativa {
    opacity: 1;
    transform: none;
    z-index: 2;
  }

  .js-anima .cena.saindo {
    opacity: 0;
    transform: translateX(-10%);
  }

  /* Sub-animações de cada cena, reiniciadas a cada entrada (a classe é removida e reposta). */
  @keyframes digita { from { width: 0; } to { width: 4.1em; } }
  @keyframes pisca { 50% { opacity: 0; } }
  @keyframes surge { from { opacity: 0; transform: translateY(6cqw); } to { opacity: 1; transform: none; } }
  @keyframes sobe-folha { from { transform: translateY(100%); } to { transform: none; } }
  @keyframes troca-fab { 0%, 100% { opacity: 0; } 100% { opacity: 1; } }

  .js-anima .cena.ativa .busca-digitado {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: digita 0.7s 0.5s steps(4) both;
  }

  .js-anima .cena.ativa .busca-cursor {
    animation: pisca 0.9s infinite;
  }

  .js-anima .cena.ativa .busca-conta,
  .js-anima .cena.ativa .busca-lista {
    animation: surge 0.4s 1.3s ease-out both;
  }

  .js-anima .cena.ativa .sob-corte {
    animation: surge 0.4s 1s ease-out both;
  }

  .js-anima .cena.ativa .sob-folha {
    animation: sobe-folha 0.45s 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .js-anima .cena.ativa .sob-esgotado {
    animation: surge 0.35s 2.2s ease-out both;
  }

  .js-anima .cena.ativa .fab-avisado {
    animation: troca-fab 0.3s 1.4s ease-out forwards;
  }

  .js-anima .cena.ativa .sob-mesa {
    animation: surge 0.4s 0.6s ease-out both;
  }

  .jornada-pontos i {
    transition: width 0.3s ease, background-color 0.3s ease;
  }
}
