:root {
  --black: #090604;
  --black-soft: #130d08;
  --panel: #21170f;
  --panel-2: #2b2015;
  --gold: #c7963a;
  --gold-light: #f2cf7b;
  --beige: #fff0cf;
  --muted: #d9c49d;
  --line: rgba(242, 207, 123, 0.24);
  --line-strong: rgba(242, 207, 123, 0.52);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 0%, rgba(199, 150, 58, 0.2), transparent 34rem),
    linear-gradient(180deg, #120c07 0%, var(--black) 48%, #070504 100%);
  color: var(--beige);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 3vw, 44px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 6, 4, 0.9);
  backdrop-filter: blur(14px);
}

.brand { display: flex; align-items: center; gap: 10px; color: var(--gold-light); font-weight: 950; }
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--panel);
  font-size: 12px;
}

.topbar nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; color: var(--muted); font-size: 13px; font-weight: 850; }
.topbar nav a:hover { color: var(--gold-light); }

.status-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);
  padding: 14px clamp(18px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(9, 6, 4, 0.94), rgba(242, 207, 123, 0.16), rgba(9, 6, 4, 0.94));
  text-align: center;
}

.status-strip strong { color: var(--gold-light); font-size: clamp(14px, 1.5vw, 16px); font-weight: 950; letter-spacing: 0.03em; }
.status-strip span { padding-left: clamp(0px, 1vw, 16px); border-left: 1px solid rgba(242, 207, 123, 0.28); color: var(--muted); font-size: clamp(13px, 1.4vw, 15px); font-weight: 850; }

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  min-height: calc(100svh - 112px);
  padding: clamp(34px, 5vw, 72px) clamp(16px, 3vw, 44px);
  background:
    linear-gradient(90deg, rgba(9, 6, 4, 0.98), rgba(9, 6, 4, 0.68)),
    url("./images/cardapio/texas-burger.jpg") center / cover;
}

.hero-copy { max-width: 690px; }
.eyebrow { margin: 0 0 8px; color: var(--gold-light); font-size: 12px; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 16px; color: var(--gold-light); font-size: clamp(56px, 8vw, 112px); line-height: 0.9; }
h2 { margin-bottom: 10px; font-size: clamp(28px, 3.4vw, 48px); line-height: 1; }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 22px); line-height: 1.42; }

.hero-badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 22px 0; }
.hero-badges span { border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; background: rgba(9, 6, 4, 0.68); color: var(--beige); font-size: 13px; font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
}
.primary, .card-button { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1b1208; }
.secondary { border-color: var(--line-strong); background: rgba(255, 240, 207, 0.08); color: var(--gold-light); }

.hero-cards, .cards-grid, .trust-grid { display: grid; gap: 16px; }
.hero-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.section { max-width: 1480px; margin: 0 auto; padding: clamp(34px, 5vw, 64px) clamp(16px, 3vw, 44px); }
.section-title, .category-title { margin-bottom: 20px; }
.favorites-grid, .menu-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.midnight-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.menu-category + .menu-category { margin-top: clamp(28px, 4vw, 48px); }

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 456px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 240, 207, 0.08), rgba(199, 150, 58, 0.08)), var(--panel);
  box-shadow: var(--shadow);
}
.product-card.hero-card { min-height: 620px; border-color: var(--line-strong); background: linear-gradient(145deg, rgba(242, 207, 123, 0.18), rgba(255, 240, 207, 0.07)), var(--panel-2); }
.product-card.compact-card { min-height: 0; }

.card-media { position: relative; overflow: hidden; background: #060403; }
.card-media img { height: 230px; object-fit: cover; }
.hero-card .card-media img { height: clamp(420px, 48vw, 620px); }
.compact-card .card-media img { height: clamp(205px, 17vw, 260px); }
.card-media span { position: absolute; top: 12px; left: 12px; border-radius: 999px; padding: 7px 10px; background: rgba(242, 207, 123, 0.92); color: #1b1208; font-size: 11px; font-weight: 950; text-transform: uppercase; }

.card-copy { display: grid; grid-template-rows: auto auto minmax(50px, 1fr) auto; gap: 8px; height: 100%; padding: 14px; }
.card-copy small { width: fit-content; border: 1px solid rgba(242, 207, 123, 0.24); border-radius: 999px; padding: 5px 8px; background: rgba(242, 207, 123, 0.12); color: var(--gold-light); font-size: 10px; font-weight: 950; }
.card-copy h3 { min-height: 42px; margin: 0; color: var(--beige); font-size: clamp(18px, 1.35vw, 21px); line-height: 1.12; }
.card-copy p { display: -webkit-box; min-height: 50px; max-height: 58px; overflow: hidden; margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.36; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.compact-card .card-copy p { max-height: 40px; -webkit-line-clamp: 2; }
.card-footer { display: grid; align-self: end; gap: 9px; }
.card-footer strong, .combo-copy > strong { display: inline-flex; width: fit-content; min-height: 38px; align-items: center; justify-content: center; border: 1px solid rgba(242, 207, 123, 0.42); border-radius: 8px; padding: 8px 12px; background: rgba(242, 207, 123, 0.12); color: var(--gold-light); font-size: clamp(22px, 1.6vw, 28px); font-weight: 950; line-height: 1; }
.card-button { width: 100%; min-height: 40px; padding: 9px 12px; font-size: 13.5px; }

.combo-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.combo-copy { display: grid; align-content: center; gap: 10px; padding: clamp(22px, 3vw, 38px); }
.combo-copy p, .combo-copy li { color: var(--muted); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.35; }
.combo-copy ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.combo-copy .button { width: fit-content; min-width: 220px; }
.combo-image img { height: 100%; min-height: 300px; object-fit: cover; }

.trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-grid article { display: grid; gap: 8px; border: 1px solid var(--line); border-radius: 8px; padding: 16px; background: rgba(9, 6, 4, 0.68); }
.trust-grid strong { color: var(--gold-light); font-size: 16px; }
.trust-grid span { color: var(--muted); font-size: 13px; line-height: 1.35; }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 24px clamp(16px, 3vw, 44px); border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer strong, .footer a { color: var(--gold-light); }
.floating-whatsapp { position: fixed; right: 16px; bottom: 16px; z-index: 40; display: inline-flex; min-height: 56px; align-items: center; justify-content: center; border: 2px solid rgba(255, 240, 207, 0.34); border-radius: 999px; padding: 0 22px; background: #25d366; color: #06280f; box-shadow: 0 18px 44px rgba(0,0,0,.4); font-size: 14px; font-weight: 950; }

@media (max-width: 1180px) {
  .hero, .combo-feature { grid-template-columns: 1fr; }
  .midnight-grid, .menu-cards, .favorites-grid, .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { padding-bottom: 86px; }
  .topbar { align-items: flex-start; flex-direction: column; }
  .topbar nav { justify-content: flex-start; }
  .status-strip { flex-direction: column; gap: 5px; }
  .status-strip span { padding-left: 0; border-left: 0; }
  .hero-badges, .hero-cards, .midnight-grid, .menu-cards, .favorites-grid, .trust-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(46px, 18vw, 74px); }
  .hero-card .card-media img, .card-media img, .compact-card .card-media img { height: 220px; }
  .product-card, .product-card.hero-card { min-height: 0; }
  .hero-actions, .button { width: 100%; }
  .footer { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { right: 16px; left: 16px; min-height: 64px; font-size: 16px; }
}
