:root {
  --red:       #e53935;
  --red-dk:    #b71c1c;
  --red-dim:   rgba(229, 57, 53, 0.12);
  --red-dim2:  rgba(229, 57, 53, 0.22);
  --bg:        #0a0a0a;
  --surface:   #141414;
  --card:      #1c1c1c;
  --card2:     #222222;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --text:      #f2f2f2;
  --muted:     #888;
  --muted2:    #555;
  --shadow-sm: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-md: 0 18px 48px rgba(0,0,0,0.5);
  --shadow-red:0 14px 36px rgba(229,57,53,0.28);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 34px;
  --container: 1280px;
  --mobile-bar-height: 92px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--bg);
}

button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-banner {
  padding: 16px 14px 10px;
}

.hero-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(229,57,53,0.18);
  box-shadow: var(--shadow-md);
  max-width: var(--container);
  margin: 0 auto;
  background: #090909;
}

.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10,10,10,0.08) 24%, rgba(10,10,10,0.58) 74%, rgba(10,10,10,0.9) 100%);
  pointer-events: none;
}

.hero-full-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile: modulo integrado dentro do hero */
.hero-info-strip {
  position: relative;
  z-index: 2;
  margin: 0 16px 12px;
  padding: 12px 14px 12px;
  background:
    linear-gradient(180deg, rgba(88,56,35,0.18) 0%, rgba(39,31,26,0.28) 18%, rgba(17,18,20,0.82) 42%, rgba(12,13,15,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  line-height: normal;
}

.hero-info-strip::before { display: none; }

.hero-info-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.hero-brand {
  display: grid;
  gap: 2px;
  justify-items: center;
  text-align: center;
}

.hero-brand-kicker,
.hero-brand-sub {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248,216,186,0.82);
}

.hero-brand strong {
  font-size: 1.7rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff8f1;
  text-shadow: 0 3px 14px rgba(0,0,0,0.22);
  max-width: 220px;
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.hero-pill {
  min-height: 34px;
  padding: 6px 9px;
  border-radius: 14px;
  background: rgba(20,20,20,0.76);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.68rem;
  font-weight: 800;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  line-height: 1.1;
  backdrop-filter: blur(10px);
}

.hero-pill::before {
  flex: 0 0 auto;
  font-size: 0.66rem;
}

.hero-pill-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.14);
}

.hero-pill-time::before { content: "O"; }
.hero-pill-fee::before  { content: "+"; }

.hero-pill-time,
.hero-pill-fee {
  color: #f0d7aa;
}

.hero-pill-time {
  border-color: rgba(225,177,73,0.22);
  background: rgba(49,40,24,0.5);
}

.hero-pill-time::before {
  color: #e0b55b;
  font-weight: 900;
}

.hero-pill-desktop { display: none; }

.hero-pill.is-open {
  color: #d7ffe4;
  background: rgba(11,48,25,0.92);
  border-color: rgba(74,222,128,0.28);
}

.hero-actions {
  display: flex;
  gap: 0;
}

.hero-rating { display: none; }

.section-kicker,
.cart-kicker,
.promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-kicker {
  background: var(--red-dim);
  color: var(--red);
  border: 1px solid var(--red-dim2);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.menu-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px 12px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-tab {
  min-height: 40px;
  padding: 8px 6px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.nav-tab:hover { color: var(--text); transform: translateY(-1px); }
.nav-tab.active {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-red);
}

@media (min-width: 500px) {
  .menu-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .nav-tab {
    flex: 0 0 auto;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 14px;
  }
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.page-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 14px calc(var(--mobile-bar-height) + 30px);
  display: grid;
  gap: 20px;
}

.menu-content { display: grid; gap: 28px; }

/* ══════════════════════════════════════════
   HIGHLIGHTS
══════════════════════════════════════════ */
.top-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.highlight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  transition: transform 0.2s, border-color 0.2s;
}
.highlight-card:hover {
  transform: translateY(-2px);
  border-color: var(--red-dim2);
}

.highlight-card--media {
  padding: 0;
  gap: 0;
  overflow: hidden;
  display: block;
}

.highlight-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}

.highlight-media-img {
  width: 100%;
  height: 135%;
  max-width: none;
  display: block;
  object-fit: cover;
}

.highlight-card--pizza .highlight-media-img  { transform: translateX(0%); }
.highlight-card--drinks .highlight-media-img { /* transform: translateX(-33.3333%); */ }
.highlight-card--combos .highlight-media-img { /* transform: translateX(-66.6666%); */ }

.highlight-copy {
  padding: 18px 18px 20px;
}

.highlight-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--red-dim);
  font-size: 1.4rem;
}

.highlight-card strong { display: block; margin-bottom: 4px; font-size: 0.98rem; color: var(--text); }
.highlight-card p,
.section-sub,
.drink-category-copy p,
.promo-desc,
.cart-empty small,
.preview-text,
.preview-copy,
.ci-detalhe,
.modal-box p { color: var(--muted); font-weight: 600; }

/* ══════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════ */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.section-header h2,
.checkout-title h3 {
  margin: 6px 0 0;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.05;
  color: #fff;
}

/* ══════════════════════════════════════════
   BUILDER CARD
══════════════════════════════════════════ */
.builder-card,
.drink-category,
.promo-card,
.cart-panel,
.cart-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.builder-card { overflow: hidden; }

.step {
  padding: 18px;
  border-bottom: 1px solid var(--border);
}
.step:last-of-type { border-bottom: 0; }

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--text);
}
.step-num {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #fff;
  font-weight: 900;
}
.step-hint { font-size: 0.82rem; color: var(--muted); font-weight: 700; }

/* ══════════════════════════════════════════
   TAMANHOS
══════════════════════════════════════════ */
.size-grid, .border-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.size-btn, .border-card, .pill, .flavor-card,
.btn-add-bebida, .btn-add-promo, .ci-qty-btn, .ci-remove {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.size-btn, .border-card, .pill, .flavor-card {
  width: 100%;
  border: 1px solid var(--border2);
  background: var(--card2);
  color: var(--text);
}

.size-btn {
  min-height: 108px;
  padding: 14px;
  border-radius: 22px;
  display: grid;
  gap: 8px;
  text-align: left;
  position: relative;
}
.size-btn:hover { border-color: var(--red-dim2); transform: translateY(-2px); }
.size-btn.active {
  background: linear-gradient(180deg, #1f0000 0%, #2a0505 100%);
  border-color: rgba(229,57,53,0.4);
  box-shadow: 0 8px 24px rgba(229,57,53,0.2);
}

.size-btn.active::after,
.border-card.active::after {
  content: "✓";
  position: absolute;
  top: 12px; right: 12px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
  background: var(--red);
}

/* badge de seleção no canto da foto */
.flavor-card.selected::after {
  content: "✓";
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  color: #fff;
  background: var(--red);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.size-head, .size-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.size-head strong { font-size: 1rem; color: var(--text); }
.size-slices, .size-detail { color: var(--muted); font-weight: 700; font-size: 0.82rem; }
.size-price { color: var(--red); font-weight: 900; font-size: 1rem; }

/* ══════════════════════════════════════════
   PILLS (qtd sabores)
══════════════════════════════════════════ */
.pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.pill {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 18px;
  font-weight: 800;
  color: var(--muted);
}
.pill:hover { border-color: var(--red-dim2); color: var(--text); transform: translateY(-2px); }
.pill.active {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}
.pill.disabled {
  opacity: 0.38;
  filter: grayscale(0.3);
  pointer-events: none;
}

/* ══════════════════════════════════════════
   SABORES
══════════════════════════════════════════ */
.flavor-badge {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--red-dim);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid var(--red-dim2);
}
.flavor-badge.done {
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  border-color: rgba(74,222,128,0.25);
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* ── Card de sabor com imagem cobrindo tudo ── */
.flavor-card {
  padding: 0;
  border-radius: 18px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  cursor: pointer;
  background: var(--card2);
  border: 1px solid var(--border2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.flavor-card:hover:not(.disabled) {
  transform: translateY(-4px);
  border-color: rgba(229,57,53,0.5);
  box-shadow: 0 14px 32px rgba(229,57,53,0.22);
}
.flavor-card.selected {
  border-color: var(--red);
  box-shadow: 0 14px 30px rgba(229,57,53,0.3);
}
.flavor-card.disabled { opacity: 0.35; filter: grayscale(0.4); pointer-events: none; }

/* Imagem ocupa o topo do card */
.flavor-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 0;
  background: #111;
  overflow: hidden;
  flex-shrink: 0;
  border: none;
}
.flavor-img {
  width: 100%;
  height: 111%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.flavor-card:hover:not(.disabled) .flavor-img { transform: scale(1.06); }
.flavor-icon-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--red-dim);
}

/* Overlay de seleção */
.flavor-card.selected::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(229,57,53,0.12);
  pointer-events: none;
  z-index: 1;
}

/* Info abaixo da imagem */
.flavor-info {
  padding: 8px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.flavor-name { font-size: 0.82rem; font-weight: 900; color: var(--text); }
.flavor-select-hint {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.flavor-card.selected .flavor-select-hint { color: var(--red); }

/* ══════════════════════════════════════════
   BORDAS
══════════════════════════════════════════ */
.border-card {
  min-height: 0;
  padding: 0;
  border-radius: 22px;
  position: relative;
  display: block;
  overflow: hidden;
  text-align: left;
}
.border-card:hover { transform: translateY(-2px); border-color: var(--red-dim2); }
.border-card.active {
  border-color: rgba(229,57,53,0.4);
  box-shadow: 0 8px 24px rgba(229,57,53,0.2);
}
.border-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #090909;
}
.border-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.border-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 14px 14px;
  display: grid;
  gap: 4px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(6,6,6,0.2) 8%, rgba(6,6,6,0.92) 100%);
}
.border-name  { font-weight: 900; color: #fff; font-size: 1rem; }
.border-price { color: #f3aa56; font-weight: 800; font-size: 0.9rem; }

/* ══════════════════════════════════════════
   PRÉVIA
══════════════════════════════════════════ */
.pizza-preview {
  margin: 18px;
  padding: 14px 16px;
  border-radius: 20px;
  background: var(--card2);
  border: 1px solid var(--border2);
  display: grid;
  gap: 10px;
}

.preview-copy    { text-align: left; }
.preview-title   { margin: 0; font-size: 0.88rem; font-weight: 900; color: var(--text); }
.preview-text    { margin: 0; font-size: 0.9rem; font-weight: 600; line-height: 1.45; }
.preview-flavors {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}
.preview-flavor-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red-dim);
  border: 1px solid var(--red-dim2);
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
}

/* ══════════════════════════════════════════
   BOTÕES PRINCIPAIS
══════════════════════════════════════════ */
.btn-add-pizza, .btn-finalizar, .btn-add-bebida,
.btn-add-promo, .hero-contact, .mobile-order-bar button { border: 0; }

.btn-add-pizza, .btn-finalizar {
  width: calc(100% - 36px);
  margin: 0 18px 18px;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-add-pizza {
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  box-shadow: var(--shadow-red);
}
.btn-add-pizza:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(229,57,53,0.4);
}

/* ══════════════════════════════════════════
   BEBIDAS
══════════════════════════════════════════ */
.drink-sections { display: grid; gap: 16px; }

.drink-category { padding: 16px; }

.drink-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.drink-category-copy strong { display: block; font-size: 1.05rem; color: var(--text); }
.drink-category-copy p      { margin: 4px 0 0; font-size: 0.88rem; }
.drink-badge {
  padding: 7px 12px;
  border-radius: 14px;
  background: var(--red-dim);
  color: var(--red);
  font-weight: 900;
  font-size: 0.82rem;
  border: 1px solid var(--red-dim2);
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bebida-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border2);
  background: var(--card2);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  transition: transform 0.18s, border-color 0.18s;
}
.bebida-card:hover { transform: translateY(-2px); border-color: var(--red-dim2); }

.bebida-card--image {
  padding: 0;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.bebida-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #111;
}

.bebida-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bebida-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(8,8,8,0.2) 12%, rgba(8,8,8,0.88) 100%);
  pointer-events: none;
}

.bebida-card--image .bebida-info {
  display: grid;
  gap: 4px;
}

.bebida-emoji {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--red-dim);
  font-size: 1.4rem;
}
.bebida-nome  { font-size: 0.98rem; font-weight: 900; color: var(--text); }
.bebida-desc  { color: var(--muted); font-size: 0.82rem; margin-top: 2px; }
.bebida-preco { color: var(--red); font-weight: 900; margin-top: 5px; }

.btn-add-bebida {
  min-width: 100px;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #fff;
  font-weight: 900;
  font-size: 0.88rem;
  box-shadow: 0 6px 18px rgba(229,57,53,0.3);
  transition: transform 0.18s, box-shadow 0.18s;
}
.bebida-card--image .btn-add-bebida {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: auto;
  padding: 9px 16px;
}
.btn-add-bebida:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(229,57,53,0.4);
}

@media (max-width: 639px) {
  .cart-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title close"
      "summary summary";
    align-items: center;
    gap: 14px 12px;
    padding: 8px 14px 12px;
  }

  .cart-header h2 {
    grid-area: title;
    margin: 0 0 0 14px;
    justify-self: center;
    text-align: center;
    font-size: 1.18rem;
    line-height: 1.05;
    white-space: nowrap;
  }

  .cart-close {
    grid-area: close;
    justify-self: end;
    width: 34px;
    height: 34px;
  }

  .cart-summary-card {
    grid-area: summary;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid var(--border2);
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
  }

  .cart-summary-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--red);
    font-size: 1.05rem;
  }

  .cart-summary-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
  }

  .cart-kicker {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text);
  }

  .cart-summary-copy small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .cart-badge {
    min-width: 78px;
    padding: 8px 12px;
    font-size: 0.72rem;
    text-align: center;
    text-transform: capitalize;
  }

  .cart-body {
    padding: 0 12px 12px;
  }

  .cart-items {
    padding: 10px 0 2px;
  }

  .cart-empty {
    min-height: 248px;
    padding: 26px 18px 24px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 8px;
  }

  .cart-empty-emoji {
    font-size: 3rem;
    line-height: 1;
  }

  .cart-empty p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .cart-empty small {
    display: block;
    max-width: 250px;
    margin: 0 auto;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .bebida-media {
    aspect-ratio: 16 / 10;
  }

  .bebida-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 10px 46px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(8,8,8,0.12) 16%, rgba(8,8,8,0.92) 100%);
    pointer-events: none;
  }

  .bebida-card--image .bebida-info {
    gap: 1px;
    max-width: 64%;
    padding-right: 6px;
  }

  .bebida-card--image .bebida-nome {
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .bebida-card--image .bebida-desc {
    font-size: 0.7rem;
  }

  .bebida-card--image .bebida-preco {
    font-size: 0.8rem;
    line-height: 1;
    margin-top: 3px;
  }

  .bebida-card--image .btn-add-bebida {
    position: absolute;
    right: 16px;
    bottom: 13px;
    width: auto;
    min-width: 80px;
    min-height: 26px;
    margin: -9px;
    padding: 5px 10px;
    font-size: 0.68rem;
    line-height: 0;
    border-radius: 10px;
  }

  .bebida-img {
    width: 100%;
    object-fit: cover;
  }

  .bebida-overlay {
    position: absolute;
    left: -3px;
    right: 0px;
    bottom: -41px;
    padding: 12px 10px 46px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(8, 8, 8, 0.12) 16%, rgba(8, 8, 8, 0.92) 100%);
    pointer-events: none;
  }

  .promo-card {
    background: #120909;
  }

  .promo-top {
    min-height: 304px;
    padding: 0;
  }

  .promo-top::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.24) 100%),
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.02) 20px,
        rgba(255,255,255,0.02) 21px
      );
  }

  .promo-body {
    margin-top: -18px;
    padding: 22px 14px 18px;
    background: linear-gradient(
      180deg,
      rgba(2, 2, 2, 0.55) 0%,
      rgba(2, 2, 2, 0.82) 100%
    );
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}

/* ══════════════════════════════════════════
   PROMOÇÕES
══════════════════════════════════════════ */
.promos-grid { display: grid; gap: 16px; }

.promo-card { overflow: hidden; }

.promo-top {
  padding: 4px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-dk) 0%, #7f0000 50%, #1a0000 100%);
  position: relative;
  overflow: hidden;
}
.promo-top-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.02) 20px,
    rgba(255,255,255,0.02) 21px
  );
}

.hero-card-badge, .promo-tag {
  background: rgba(229,57,53,0.85);
  color: #fff;
  border: none;
}

.promo-icon {
  width: 57px; height: 0px;
  display: grid; place-items: center;
  border-radius: 18px;
  font-size: 1.7rem;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.promo-tag,
.promo-title,
.promo-desc,
.promo-prices,
.promo-economia,
.promo-body {
  position: relative;
  z-index: 1;
}
.promo-title  { margin: 4px; font-size: 1.8rem; position: relative; z-index: 1; }
.promo-body   { padding: 16px 18px 18px; background: var(--card); }
.promo-desc   { margin: 1px 0 1px; font-size: 0.9rem; }
.promo-prices {
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
}
.promo-old    { color: var(--muted2); font-size: 0.86rem; font-weight: 800; text-decoration: line-through; }
.promo-price  { color: var(--red); font-size: 1.1rem; font-weight: 900; }
.promo-economia { color: #4ade80; font-size: 0.70rem; font-weight: 800; }

.btn-add-promo {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #fff;
  font-weight: 900;
  font-size: 0.92rem;
  box-shadow: 0 8px 20px rgba(229,57,53,0.28);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-add-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(229,57,53,0.4);
}

/* ══════════════════════════════════════════
   CARRINHO
══════════════════════════════════════════ */
.cart-panel {
  position: fixed;
  inset: auto 0 0;
  z-index: 80;
  border-radius: 26px 26px 0 0;
  max-height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
  transform: translateY(calc(100% + 12px));
  transition: transform 0.28s ease;
  background: var(--card);
  border-color: var(--border2);
  pointer-events: none;
}
.cart-panel.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.cart-mobile-handle {
  width: 56px; height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  margin: 10px auto 6px;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px 14px;
  border-bottom: 1px solid var(--border);
}
.cart-header h2 { margin: 4px 0 0; font-size: 1.35rem; color: var(--text); }

.cart-kicker { background: var(--red-dim); color: var(--red); border: 1px solid var(--red-dim2); }
.cart-summary-card,
.cart-summary-icon,
.cart-summary-copy small {
  display: none;
}

.cart-badge {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--red-dim);
  color: var(--red);
  font-weight: 900;
  font-size: 0.82rem;
  border: 1px solid var(--red-dim2);
}

.cart-close {
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: var(--card2);
  color: var(--muted);
  font-size: 1.2rem;
  transition: background 0.18s, color 0.18s;
}
.cart-close:hover { background: var(--red-dim); color: var(--red); }

.cart-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 14px 8px;
  scroll-padding-bottom: 110px;
}
.cart-items { display: grid; gap: 12px; padding: 14px 0 4px; }

.cart-empty { padding: 28px 18px; text-align: center; }
.cart-empty-emoji { font-size: 2.8rem; }
.cart-empty p { margin: 10px 0 6px; font-weight: 900; color: var(--text); }

.cart-item {
  padding: 14px;
  display: grid;
  gap: 12px;
  background: var(--card2);
  border-color: var(--border);
}
.cart-item-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
}
.ci-emoji {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--red-dim);
  font-size: 1.3rem;
}
.ci-nome   { font-size: 1rem; font-weight: 900; color: var(--text); }
.ci-detalhe { margin-top: 4px; font-size: 0.84rem; line-height: 1.5; }
.ci-preco  { color: var(--red); font-weight: 900; white-space: nowrap; }

.ci-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ci-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border2);
}
.ci-qty-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 0;
  background: var(--card);
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
  transition: background 0.18s, transform 0.18s;
}
.ci-qty-btn:hover { background: var(--red-dim); color: var(--red); transform: scale(1.1); }
.ci-qty-value { min-width: 18px; text-align: center; font-weight: 900; color: var(--text); }

.ci-remove {
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid rgba(229,57,53,0.2);
  background: var(--red-dim);
  color: var(--red);
  font-weight: 900;
  font-size: 0.84rem;
  transition: background 0.18s, transform 0.18s;
}
.ci-remove:hover { background: rgba(229,57,53,0.25); transform: translateY(-1px); }

.cart-totals {
  margin-top: 8px;
  padding: 16px 4px 6px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
}
.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--muted);
  font-weight: 700;
}
.total-row strong { color: var(--text); }
.total-row-discount strong { color: #4ade80; }
.total-final {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--border2);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
}

/* ══════════════════════════════════════════
   CHECKOUT FORM
══════════════════════════════════════════ */
.checkout-form { padding: 18px 0 10px; display: grid; gap: 8px; }
.checkout-form label { font-size: 0.82rem; font-weight: 900; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: var(--card2);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-form input::placeholder,
.checkout-form textarea::placeholder { color: var(--muted2); }
.checkout-form select option { background: var(--card2); color: var(--text); }
.checkout-form textarea { min-height: 90px; resize: vertical; }

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: rgba(229,57,53,0.5);
  box-shadow: 0 0 0 4px rgba(229,57,53,0.1);
}
.checkout-form input.err,
.checkout-form select.err,
.checkout-form textarea.err { border-color: rgba(229,57,53,0.6); }

.form-row { display: grid; grid-template-columns: 1fr; gap: 10px; }

.form-error {
  margin: 6px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(229,57,53,0.12);
  color: var(--red);
  border: 1px solid rgba(229,57,53,0.25);
  font-weight: 800;
}

.cart-footer {
  padding: 14px;
  border-top: 1px solid var(--border);
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(14px);
}
.cart-footer-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.cart-footer-total-label { color: var(--muted); font-weight: 800; }

.btn-finalizar {
  margin: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  box-shadow: var(--shadow-red);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-finalizar:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(229,57,53,0.42); }
.btn-finalizar:disabled { background: #3a1a1a; box-shadow: none; cursor: not-allowed; color: var(--muted); }

/* ══════════════════════════════════════════
   OVERLAY / MOBILE BAR / MODAL
══════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
}

.mobile-order-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
}
.mobile-order-bar button {
  width: 100%;
  min-height: 64px;
  padding: 14px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow-red);
}
.mobile-order-copy { display: flex; flex-direction: column; align-items: flex-start; }
.mobile-order-copy strong { font-size: 1rem; }
.mobile-order-copy small  { opacity: 0.88; }
.mobile-order-total { font-size: 1.05rem; font-weight: 900; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}
.modal-box {
  width: min(100%, 420px);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.modal-icon  { font-size: 3rem; }
.modal-box h3 { margin: 10px 0 8px; color: var(--text); }
.modal-box p  { color: var(--muted); }

.btn-novo-pedido {
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 900;
  transition: transform 0.18s;
}
.btn-novo-pedido:hover { transform: translateY(-2px); }
.btn-novo-pedido {
  border: 1px solid var(--border2);
  background: var(--card2);
  color: var(--text);
}

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--mobile-bar-height) + 18px);
  z-index: 120;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-dk), var(--red));
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-red);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (min-width: 640px) {
  /* Tablet+: strip sobreposta na imagem */
  .hero-full-img {
    height: 360px;
    aspect-ratio: unset;
  }
  .hero-info-strip {
    position: absolute;
    margin: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 70%, transparent 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 40px 18px 16px;
  }
  .hero-info-strip::before {
    display: none;
  }
  .hero-img-wrap::after {
    display: none;
  }
  .hero-brand {
    display: none;
  }
  .hero-pills {
    flex-wrap: wrap;
    overflow: visible;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-pill-desktop {
    display: flex;
  }
  .hero-actions {
    justify-content: flex-end;
    align-items: center;
  }
  .hero-rating {
    display: flex;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2px;
  }
  .hero-rating span { text-align: left; }
  .menu-nav, .page-layout { padding-left: 20px; padding-right: 20px; }
  .top-highlights, .promos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drink-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-row   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 640px) and (max-width: 899px) {
  .hero-contact {
    min-height: 30px;
    padding: 8px 11px;
    font-size: 0.82rem;
  }
}

@media (min-width: 900px) {
  /* Imagem menos cortada — altura calculada pela proporção do banner (5:2) */
  .hero-full-img {
    height: auto;
    aspect-ratio: 5 / 2;
    max-height: 520px;
    object-position: center top;
  }

  /* Tudo dentro do banner, numa única linha */
  .hero-info-strip { padding: 50px 28px 20px; }
  .hero-info-inner {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .hero-pills {
    flex: 1;
    gap: 8px;
  }

  /* Pills e botão menores no desktop */
  .hero-pill {
    font-size: 0.78rem;
    padding: 5px 12px;
  }
  .hero-contact {
    min-height: 38px;
    padding: 9px 16px;
    font-size: 0.85rem;
  }
  .hero-rating strong { font-size: 1.4rem; }
  .hero-rating span   { font-size: 0.78rem; }

  .page-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: start;
    padding-bottom: 28px;
  }
  .top-highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .size-grid      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pills          { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .flavors-grid   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .promos-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .cart-panel {
    position: sticky;
    top: 70px;
    inset: auto;
    max-height: calc(100vh - 90px);
    border-radius: var(--radius-lg);
    transform: none;
    pointer-events: auto;
  }
  .cart-mobile-handle, .cart-close, .cart-overlay,
  .mobile-order-bar, .nav-tab-cart { display: none !important; }
  .cart-header { padding-top: 16px; }
  .cart-body   { padding-bottom: 0; }
  .cart-footer { position: sticky; bottom: 0; }
}

@media (min-width: 1120px) {
  .flavors-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.site-footer {
  margin-top: 28px;
  padding: 22px 16px 28px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.78);
  text-align: center;
}

.site-footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
}

.site-footer p {
  margin: -46px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 639px) {
  .site-footer {
    padding: 20px 16px 24px;
  }

  .site-footer-inner {
    flex-direction: column;
    gap: 10px;
  }

  .site-footer-logo {
    width: 159px;
    height: 120px;
  }

  .site-footer p {
    font-size: 0.5rem;
  }
}
