/* ── Cardápio premium ── */
.page-cardapio {
  padding-bottom: 0;
  background: #fafbfc;
}

.page-cardapio .menu-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21,36,90,.08);
}
.menu-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
}
.menu-header__logo img { height: 56px; border-radius: 10px; }
.menu-header__nav {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}
.menu-header__nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color .2s;
}
.menu-header__nav a:hover,
.menu-header__nav a.is-active { color: var(--brand); }
.menu-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25D366;
  color: #fff;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.menu-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
}

/* Hero — compacto claro */
.menu-hero {
  background: #F7F8FC;
  border-bottom: 1px solid #e8ebf2;
  padding: 1.75rem 0 1.5rem;
}
.menu-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.menu-hero__head {
  flex: 1;
  min-width: min(100%, 520px);
}
.menu-hero__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.menu-hero__logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(21,36,90,.12);
  flex-shrink: 0;
}
.menu-hero__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.25rem;
}
.menu-hero h1 {
  font-family: Inter, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  color: #162B75;
  letter-spacing: -0.02em;
}
.menu-hero h1 em {
  font-style: normal;
  color: #FF2E44;
}
.menu-hero__desc {
  margin: 0;
  font-size: 0.95rem;
  color: #5c6478;
  line-height: 1.55;
  max-width: 540px;
}
.menu-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-hero__fact {
  background: #fff;
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(22,43,117,.05);
}
.menu-hero__fact strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #162B75;
  line-height: 1.2;
}
.menu-hero__fact span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 0.15rem;
  line-height: 1.25;
}

/* Toolbar */
.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 10;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(21,36,90,.1);
  border: 1px solid rgba(21,36,90,.06);
}
.menu-toolbar__search {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-gray);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  border: 2px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.menu-toolbar__search:focus-within {
  border-color: var(--brand-light);
  box-shadow: 0 0 0 4px rgba(36,71,165,.12);
  background: #fff;
}
.menu-toolbar__search svg { color: var(--text-muted); flex-shrink: 0; }
.menu-toolbar__search input {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  color: var(--text);
}
.menu-toolbar__sizes {
  display: flex;
  gap: 0.35rem;
  background: var(--bg-gray);
  padding: 0.35rem;
  border-radius: 14px;
}
.size-btn {
  border: none;
  background: transparent;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-align: center;
  min-width: 52px;
}
.size-btn:hover { background: rgba(21,36,90,.06); }
.size-btn.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(21,36,90,.25);
}
.size-btn__label {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
}
.size-btn__sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  opacity: .75;
}
.size-btn.is-active .size-btn__sub { opacity: .9; }
.menu-toolbar__unit {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.menu-toolbar__unit label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}
.menu-toolbar__unit select {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  cursor: pointer;
}

/* Mobile category chips */
.menu-mobile-cats {
  display: none;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 1rem 1.25rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-mobile-cats::-webkit-scrollbar { display: none; }
.mob-cat {
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: #fff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.mob-cat.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Layout */
.menu-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
  align-items: start;
}

/* Sidebar */
.menu-sidebar {
  position: sticky;
  top: 88px;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.menu-sidebar__title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.menu-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.sidebar-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.sidebar-link:hover { background: var(--bg-gray); color: var(--brand); }
.sidebar-link.is-active {
  background: rgba(21,36,90,.08);
  color: var(--brand);
  font-weight: 700;
}
.sidebar-link--sub {
  font-size: 0.8rem;
  padding-left: 1rem;
  opacity: .85;
}
.menu-sidebar__cta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.menu-sidebar__cta p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}
.sidebar-wa-btn {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 0.65rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background .2s;
}
.sidebar-wa-btn:hover { background: #1ebe57; }

/* Sections */
.menu-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}
.menu-section.is-hidden { display: none; }
.menu-section__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.menu-section__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(21,36,90,.2);
}
.menu-section__head h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0;
  color: var(--brand);
}
.menu-section__head p {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.menu-section__count {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-gray);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Items */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.menu-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(21,36,90,.08);
  border-color: rgba(36,71,165,.25);
}
.menu-item.is-hidden { display: none; }
.menu-item__body { flex: 1; min-width: 0; }
.menu-item__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(90deg, var(--gold), #ff9500);
  color: #1a1a2e;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.35rem;
}
.menu-item h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.menu-item__desc {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.menu-item__action {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.menu-item__price {
  text-align: right;
  min-width: 90px;
}
.menu-item__price .price-from {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
}
.menu-item__price strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.02em;
}
.menu-item__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(37,211,102,.12);
  color: #128C7E;
  border: 2px solid rgba(37,211,102,.35);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.menu-item__wa:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  transform: scale(1.04);
}

.menu-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.menu-empty span { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

/* CTA Banner */
.menu-cta-banner {
  background: linear-gradient(135deg, #0f1a3d, #15245A);
  color: #fff;
  padding: 3rem 0;
}
.menu-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.menu-cta-banner h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}
.menu-cta-banner p {
  margin: 0;
  opacity: .85;
  max-width: 420px;
}
.menu-cta-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  transition: transform .2s;
}
.cta-wa:hover { transform: translateY(-2px); }
.cta-ifood, .cta-aiqfome {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  transition: background .2s;
}
.cta-ifood:hover, .cta-aiqfome:hover { background: rgba(255,255,255,.12); }

/* Footer */
.menu-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.menu-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.menu-footer__inner img { height: 48px; border-radius: 8px; }
.menu-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.menu-footer a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

/* FAB */
.menu-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  z-index: 150;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: fabPulse 3s ease-in-out infinite;
}
.menu-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(37,211,102,.6);
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.15); }
}

/* Unit picker toolbar */
.unit-picker-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.unit-change-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.unit-change-btn:hover { background: #f0f4ff; }

/* Modals (cardápio) */
.page-cardapio .modal__panel--unit {
  max-width: 520px;
  text-align: center;
}
.page-cardapio .modal__panel--order {
  max-width: 480px;
}
.unit-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.unit-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  width: 100%;
  padding: 1rem 1.15rem;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.unit-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(21,36,90,.12);
  transform: translateY(-2px);
}
.unit-card__city {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
}
.unit-card__addr,
.unit-card__phone {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.unit-card__phone {
  font-weight: 600;
  color: #25D366;
}

.order-modal__unit {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
}
.order-modal__size {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.order-modal__size strong { color: var(--brand); }
.order-modal__field {
  margin-bottom: 1rem;
}
.order-modal__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.35rem;
}
.order-modal__optional {
  font-weight: 500;
  color: var(--text-muted);
}
.order-modal__field input,
.order-modal__field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}
.order-modal__field input[readonly] {
  background: #f5f7fb;
  color: var(--brand);
  font-weight: 600;
}
.order-modal__hint {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.order-modal__preview {
  background: #f5f7fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.order-modal__preview-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.order-modal__preview pre {
  margin: 0;
  font-family: inherit;
  font-size: 0.82rem;
  line-height: 1.5;
  white-space: pre-wrap;
  color: #333;
}
.order-modal__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.order-modal__wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

/* Responsive */
@media (max-width: 960px) {
  .menu-mobile-cats { display: flex; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar {
    position: static;
    display: none;
  }
  .menu-hero__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .menu-hero__facts { justify-content: center; }
  .menu-hero__fact { flex: 1; min-width: 0; }
  .menu-header__nav { display: none; }
}

@media (max-width: 640px) {
  .menu-toolbar { flex-direction: column; align-items: stretch; }
  .menu-toolbar__sizes { justify-content: center; }
  .menu-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .menu-item__action {
    width: 100%;
    justify-content: space-between;
  }
  .menu-section__head { flex-wrap: wrap; }
  .menu-section__count { margin-left: 0; }
}
