/* =========================================================
   Smash Kings — BIO PRIME
   Direção: a página é a embalagem. Blocos chapados de preto
   e amarelo, a foto na chapa de inox e um único controle
   (quantas carnes?) que empilha o burger e os preços.
   ========================================================= */

:root {
  /* Cor — tirada do selo e da foto na chapa */
  --queijo: #F1DB07;           /* superfície amarela, foco no escuro */
  --chapa: #12100E;            /* tinta, ação principal, cenas escuras */
  --chapa-press: #2B2723;      /* estado pressionado da ação */
  --aco: #D8D8D2;              /* dock e fundo de miniaturas */
  --pao: #FFF9E8;              /* texto no escuro, superfície de informação */
  --chapa-soft: rgba(18, 16, 14, 0.74);
  --pao-soft: rgba(255, 249, 232, 0.74);
  --line-dark: rgba(18, 16, 14, 0.2);
  --line-light: rgba(255, 249, 232, 0.16);

  /* Tipografia — uma família, contraste por peso e tamanho */
  --font: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Espaço e forma (raio por papel, não igual em tudo) */
  --gutter: 20px;
  --scene: 52px;
  --r-action: 16px;
  --r-photo: 14px;
  --r-thumb: 12px;
  --r-pill: 999px;

  /* Motion */
  --motion-instant: 90ms;
  --motion-fast: 160ms;
  --motion-standard: 240ms;
  --motion-emphasis: 320ms;
  --motion-scene: 420ms;
  --ease-enter: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-exit: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-land: cubic-bezier(0.34, 1.36, 0.64, 1);   /* carne aterrissando na chapa */
  --shift-sm: 6px;
  --drop: 28px;
  --press-scale: 0.97;
  --press-y: 1px;

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --shift-sm: 0px;
    --drop: 0px;
    --press-scale: 1;
    --press-y: 0px;
    --motion-emphasis: 160ms;
  }
}

/* ---------- Base ---------- */

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

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

body {
  margin: 0;
  background: var(--chapa);
  color: var(--chapa);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, p, ul, dl, dd, figure { margin: 0; }
ul { padding: 0; list-style: none; }

a { color: inherit; }

.page {
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
}

.status[hidden],
.unit__status[hidden] { display: none; }

.on-light { --ring: var(--chapa); }
.on-dark { --ring: var(--queijo); }

:focus-visible {
  outline: 3px solid var(--ring, var(--chapa));
  outline-offset: 3px;
}

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

.skip {
  position: absolute;
  left: 12px;
  top: calc(12px + var(--safe-top));
  z-index: 30;
  padding: 12px 16px;
  border-radius: var(--r-thumb);
  background: var(--queijo);
  color: var(--chapa);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-200%);
}
.skip:focus { transform: none; }

.title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.title--gold { color: var(--queijo); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

/* ---------- Botões ---------- */

.btn,
.city,
.dock__btn,
.tag-link,
.map-toggle {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform var(--motion-instant) var(--ease-standard),
    background-color var(--motion-instant) var(--ease-standard);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--r-action);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn--main {
  background: var(--chapa);
  color: var(--pao);
}
.btn--main i { color: var(--queijo); }
.btn--main:active { background: var(--chapa-press); }

.btn--line {
  border-color: var(--chapa);
  color: var(--chapa);
  background: transparent;
}
.btn--line:active { background: rgba(18, 16, 14, 0.08); }

.btn--ghost {
  border-color: var(--pao-soft);
  color: var(--pao);
  background: transparent;
}
.btn--ghost:active { background: rgba(255, 249, 232, 0.1); }

.btn:active,
.city:active,
.dock__btn:active,
.tag-link:active,
.map-toggle:active {
  transform: translateY(var(--press-y)) scale(var(--press-scale));
}

/* ---------- Cena 1: Hero ---------- */

.hero {
  position: relative;
  background: var(--queijo);
}

.hero__photo {
  position: relative;
  height: 42vh;
  height: clamp(280px, 42svh, 440px);
  background: var(--aco);
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.hero__caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
}

.tag-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  background: var(--chapa);
  color: var(--pao);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  --ring: var(--queijo);
}
.tag-link i { color: var(--queijo); }

.hero__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: calc(14px + var(--safe-top)) 16px 0;
  pointer-events: none;
}

.hero__seal {
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 3px 8px rgba(18, 16, 14, 0.35));
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--chapa);
  color: var(--pao);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  animation: fade-in var(--motion-standard) var(--ease-enter);
}

.status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--pao-soft);
}
.status.is-open .status__dot {
  border-color: var(--queijo);
  background: var(--queijo);
}

.hero__slab {
  padding: 22px var(--gutter) 28px;
}

.hero__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero__lead {
  max-width: 30ch;
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.4;
  color: var(--chapa-soft);
}

.order { margin-top: 22px; }

.order__title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.city {
  display: grid;
  grid-template-columns: 28px 1fr 16px;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 16px;
  border-radius: var(--r-action);
  background: var(--chapa);
  color: var(--pao);
  text-decoration: none;
  --ring: var(--chapa);
}
.city + .city { margin-top: 10px; }
.city:active { background: var(--chapa-press); }

.city__icon { font-size: 20px; color: var(--queijo); }
.city__go { font-size: 14px; color: var(--queijo); }

.city__text strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
.city__text small {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: var(--pao-soft);
}

.order__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  margin-top: 8px;
  font-size: 15px;
  color: var(--chapa-soft);
}
.order__meta p { padding: 10px 0 0; }
.order__meta .text-link { color: var(--chapa); }

/* ---------- Cena 2: o rei do mês ---------- */

.king {
  padding: var(--scene) var(--gutter);
  background: var(--chapa);
  color: var(--pao);
}

.king__lead {
  max-width: 34ch;
  margin-top: 10px;
  color: var(--pao-soft);
}

.king__body {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.king__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-photo);
  background: var(--chapa-press);
}

.king__build li {
  padding: 10px 0;
  border-top: 1px solid var(--line-light);
  font-size: 15px;
  line-height: 1.35;
}
.king__build li:first-child { border-top: 0; padding-top: 0; }

.king__price {
  margin-top: 22px;
  color: var(--pao-soft);
}
.king__price strong {
  margin-right: 6px;
  font-size: 28px;
  font-weight: 900;
  color: var(--queijo);
  font-variant-numeric: tabular-nums;
}

/* ---------- Cena 3: quantas carnes? ---------- */

.smash {
  padding: var(--scene) var(--gutter);
  background: var(--queijo);
}

.smash__head {
  display: grid;
  grid-template-columns: 1fr 128px;
  gap: 12px;
  align-items: end;
}

.smash__lead {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--chapa-soft);
}

/* Burger desenhado no traço do selo */
.stack svg {
  display: block;
  width: 128px;
  height: auto;
  overflow: visible;
}

.stack__ink,
.stack__crown { fill: var(--chapa); }
.stack__cheese { fill: var(--pao); }
.stack__seeds { fill: var(--queijo); }

.stack__all {
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

.stack { --n: 2; }
.stack[data-count="0"] { --n: 0; }
.stack[data-count="1"] { --n: 1; }
.stack[data-count="3"] { --n: 3; }

.stack__layer,
.stack__top {
  transition:
    transform var(--motion-emphasis) var(--ease-land),
    opacity var(--motion-fast) linear;
}

.stack__layer[data-l="0"] { --y: 130px; }
.stack__layer[data-l="1"] { --y: 108px; }
.stack__layer[data-l="2"] { --y: 86px; }
.stack__layer { transform: translateY(var(--y)); }

.stack[data-count="0"] .stack__layer,
.stack[data-count="1"] .stack__layer:not([data-l="0"]),
.stack[data-count="2"] .stack__layer[data-l="2"] {
  opacity: 0;
  transform: translateY(calc(var(--y) - var(--drop)));
}

.stack__top { transform: translateY(calc(152px - 22px * var(--n))); }

.stack.is-empty .stack__top {
  opacity: 0;
  transform: translateY(calc(152px - 22px * var(--n) - var(--drop)));
}

/* Seletor: só existe com JavaScript; sem ele, a tabela mostra os três preços */
.picker {
  display: none;
  margin: 22px 0 6px;
  padding: 4px;
  border: 2px solid var(--chapa);
  border-radius: var(--r-action);
  min-inline-size: 0;
}

.js .picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.picker label {
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.picker input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.picker span {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 56px;
  padding: 6px 4px;
  border-radius: 12px;
  text-align: center;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    transform var(--motion-instant) var(--ease-standard);
}

.picker strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.picker small {
  font-size: 13px;
  line-height: 1.2;
  color: var(--chapa-soft);
}

.picker input:checked + span {
  background: var(--chapa);
  color: var(--queijo);
}
.picker input:checked + span small { color: var(--pao-soft); }
.picker label:active span { transform: scale(var(--press-scale)); }

.picker input:focus-visible + span {
  outline: 3px solid var(--chapa);
  outline-offset: 2px;
}

.menu { margin-top: 10px; }

.dish {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
}
.dish:first-child { border-top: 0; }

.dish__img {
  width: 64px;
  height: 64px;
  border-radius: var(--r-thumb);
  object-fit: cover;
  background: var(--aco);
}

.dish__name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.dish__text p {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--chapa-soft);
}

.dish__text .dish__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 800;
  color: var(--chapa);
}

/* Sem JS: os três preços empilhados com o nome do tamanho */
.dish__price {
  display: grid;
  gap: 2px;
  justify-items: end;
  font-variant-numeric: tabular-nums;
}
.dish__price div {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-size: 14px;
}
.dish__price dt { color: var(--chapa-soft); }
.dish__price dd { font-weight: 800; }
.dish__price .is-na { font-size: 13px; font-weight: 500; color: var(--chapa-soft); }

/* Com JS: só o tamanho escolhido, grande */
.js .dish__price dt {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.js .dish__price div { display: none; }
.js .dish__price dd { font-size: 20px; }
.js .dish__price .is-na { max-width: 9ch; font-size: 13px; line-height: 1.25; text-align: right; }

.js [data-size="1"] .dish__price [data-s="1"],
.js [data-size="2"] .dish__price [data-s="2"],
.js [data-size="3"] .dish__price [data-s="3"] {
  display: flex;
  animation: price-in var(--motion-fast) var(--ease-enter);
}

.smash__veggie {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px solid var(--chapa);
  font-size: 15px;
  font-weight: 500;
}

/* ---------- Cena 4: burger alto ---------- */

.tall {
  padding: var(--scene) 0;
  background: var(--chapa);
  color: var(--pao);
}

.tall__head { padding: 0 var(--gutter); }

.tall__head p {
  max-width: 34ch;
  margin-top: 10px;
  color: var(--pao-soft);
}

.rail {
  margin-top: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { display: none; }
.rail:focus-visible { outline-offset: -3px; }

.rail__list {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 var(--gutter) 4px;
}

.tall-card {
  width: min(64vw, 236px);
  scroll-snap-align: start;
}

.tall-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-photo);
  background: var(--chapa-press);
}

.tall-card h3 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.tall-card p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--pao-soft);
}

.tall-card .tall-card__price {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--queijo);
  font-variant-numeric: tabular-nums;
}

/* ---------- Cena 5: acompanhar ---------- */

.sides {
  padding: var(--scene) var(--gutter);
  background: var(--queijo);
}

.combo {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 12px;
  border-radius: 20px;
  background: var(--chapa);
  color: var(--pao);
}

.combo img {
  width: 104px;
  height: 104px;
  border-radius: var(--r-thumb);
  object-fit: cover;
}

.combo h3 { font-size: 18px; font-weight: 800; line-height: 1.2; }
.combo p { margin-top: 2px; font-size: 14px; color: var(--pao-soft); }
.combo .combo__price {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 900;
  color: var(--queijo);
  font-variant-numeric: tabular-nums;
}

.sides__note {
  margin-top: 12px;
  font-size: 15px;
  color: var(--chapa-soft);
}

.sides__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 14px;
  margin-top: 28px;
}

.sides__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-photo);
  background: var(--chapa);
}

.sides__grid h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.sides__grid p {
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--chapa-soft);
}

.shakes__title {
  margin-top: 36px;
  font-size: 20px;
  font-weight: 800;
}

.shakes { margin-top: 8px; }

.shakes li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 16px;
}
.shakes li span:last-child { font-weight: 800; font-variant-numeric: tabular-nums; }

/* ---------- Cena 6: aniversário ---------- */

.bday {
  background: var(--chapa);
  color: var(--pao);
}

.bday__img {
  width: 100%;
  height: clamp(260px, 72vw, 380px);
  object-fit: cover;
  object-position: 50% 58%;
  background: var(--chapa-press);
}

.bday__text { padding: 28px var(--gutter) var(--scene); }

.bday__text p {
  max-width: 36ch;
  margin-top: 12px;
  color: var(--pao-soft);
}

.bday__text .btn { margin-top: 22px; }

/* ---------- Cena 7: unidades ---------- */

.units {
  padding: var(--scene) var(--gutter);
  background: var(--pao);
}

.unit {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 3px solid var(--chapa);
}
.unit + .unit { margin-top: 36px; }

.unit__name {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.unit__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
}
.unit__status::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--chapa);
}
.unit__status.is-open::before { background: var(--chapa); }

.unit__modes {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  font-size: 15px;
}
.unit__modes li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: baseline;
}
.unit__modes i { text-align: center; }

.unit address {
  margin-top: 14px;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.unit__hours {
  margin-top: 6px;
  font-size: 15px;
  color: var(--chapa-soft);
}

.unit__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.unit__actions .btn--main { grid-column: 1 / -1; }
.unit__actions .btn--line {
  gap: 8px;
  padding-inline: 10px;
  font-size: 15px;
  white-space: nowrap;
}

.map-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--chapa);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.map-toggle[hidden] { display: none; }

.unit__map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--r-photo);
  background: var(--aco);
  animation: fade-in var(--motion-standard) var(--ease-enter);
}

.units__note {
  margin-top: 32px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--chapa-soft);
}

/* ---------- Rodapé ---------- */

.foot {
  padding: 44px var(--gutter) calc(104px + var(--safe-bottom));
  background: var(--chapa);
  color: var(--pao);
}

.foot__seal { width: 88px; height: 88px; }

.foot__tag {
  margin: 14px 0 18px;
  font-size: 24px;
  font-weight: 900;
  color: var(--queijo);
}

.foot__copy,
.foot__credit {
  font-size: 13px;
  color: var(--pao-soft);
}
.foot__copy { margin-top: 28px; }
.foot__credit { margin-top: 4px; }
.foot__credit a {
  display: inline-block;
  padding: 14px 0;
  color: var(--pao);
  font-weight: 500;
}

/* ---------- Dock ---------- */

.dock {
  position: fixed;
  left: 50%;
  bottom: calc(10px + var(--safe-bottom));
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: min(540px, calc(100% - 20px));
  padding: 6px;
  border: 2px solid var(--chapa);
  border-radius: 20px;
  background: var(--aco);
  box-shadow: 0 10px 28px rgba(18, 16, 14, 0.4);
  transform: translate(-50%, calc(100% + 24px));
  visibility: hidden;
  transition:
    transform var(--motion-standard) var(--ease-exit),
    visibility 0s linear var(--motion-standard);
  --ring: var(--chapa);
}
.dock[hidden] { display: none; }

.dock.is-visible {
  transform: translate(-50%, 0);
  visibility: visible;
  transition:
    transform var(--motion-standard) var(--ease-enter),
    visibility 0s;
}

.dock__btn {
  display: grid;
  align-content: center;
  min-height: 52px;
  padding: 6px 12px;
  border-radius: 14px;
  background: var(--chapa);
  color: var(--pao);
  text-decoration: none;
  line-height: 1.15;
}
.dock__btn:active { background: var(--chapa-press); }
.dock__btn small { font-size: 12px; color: var(--pao-soft); }
.dock__btn strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--queijo);
  white-space: nowrap;
}

/* ---------- Keyframes ---------- */

@keyframes fade-in { from { opacity: 0; } }

@keyframes price-in {
  from { opacity: 0; transform: translateY(var(--shift-sm)); }
}

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

@media (prefers-reduced-motion: reduce) {
  .stack__layer,
  .stack__top { transition: opacity var(--motion-fast) linear; }

  .dock,
  .dock.is-visible {
    transform: translate(-50%, 0);
    opacity: 0;
    transition: opacity var(--motion-fast) linear, visibility 0s linear var(--motion-fast);
  }
  .dock.is-visible {
    opacity: 1;
    transition: opacity var(--motion-fast) linear, visibility 0s;
  }
}

/* ---------- Telas estreitas e desktop ---------- */

@media (max-width: 359px) {
  :root { --gutter: 16px; }
  .hero__title { font-size: 36px; }
  .smash__head { grid-template-columns: 1fr 104px; }
  .stack svg { width: 104px; }
  .dish { grid-template-columns: 56px 1fr auto; gap: 12px; }
  .dish__img { width: 56px; height: 56px; }
  .dock__btn { padding: 6px 10px; }
  .dock__btn strong { font-size: 14px; }
  .combo { grid-template-columns: 84px 1fr; gap: 12px; }
  .combo img { width: 84px; height: 84px; }
  .unit__actions .btn--line { font-size: 14px; gap: 6px; padding-inline: 8px; }
}

@media (min-width: 561px) {
  body { padding: 24px 0; }
  .page { border-radius: 24px; }
  .foot { padding-bottom: calc(96px + var(--safe-bottom)); }
}

@media (hover: hover) and (pointer: fine) {
  .city:hover,
  .btn--main:hover,
  .dock__btn:hover { background: var(--chapa-press); }
  .btn--line:hover { background: rgba(18, 16, 14, 0.06); }
  .btn--ghost:hover { background: rgba(255, 249, 232, 0.08); }
  .picker label:hover input:not(:checked) + span { background: rgba(18, 16, 14, 0.08); }
}
