/* Reset e variáveis */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  background: #0b1020;
}

:root {
  --primary: #ff3b3f;
  --primary-600: #e23437;
  --secondary: #ffc107;
  --bg-dark: #0b1020;
  --surface: #0f152b;
  --muted: #94a3b8;
  --ring: 0 0 0 6px rgba(255, 59, 63, 0.15);
  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,.25);
}

/* Utilitários */
.container { width: min(1120px, 92%); margin: 0 auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .875rem 1.25rem; border-radius: 999px;
  background: var(--primary); color: #fff; text-decoration: none; font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 8px 24px rgba(255,59,63,.35);
}
.btn:hover { background: var(--primary-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,59,63,.45); }
.btn:focus { outline: none; box-shadow: var(--ring); }
.btn--lg { padding: 1rem 1.5rem; font-size: 1.05rem; }
.btn--sm { padding: .6rem .9rem; font-size: .9rem; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(1.2) blur(8px);
  background: linear-gradient(180deg, rgba(11,16,32,.95), rgba(11,16,32,.75) 70%, rgba(11,16,32,0));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__content { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; }
.logo { color: #fff; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.5rem; letter-spacing: .5px; text-decoration: none; }
.logo span { color: var(--secondary); }
.logo--footer { font-size: 1.3rem; }

.nav { display: flex; align-items: center; gap: 1rem; }
.nav a { color: #e2e8f0; text-decoration: none; padding: .5rem .75rem; border-radius: 10px; transition: background .2s ease, color .2s ease; }
.nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav__toggle { display: none; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.2); padding: .45rem .6rem; border-radius: 8px; cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 76vh; display: grid; place-items: center; background: #0b1020; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1543351611-58f69d8d2bee?q=80&w=1800&auto=format&fit=crop');
  background-size: cover; background-position: center; filter: brightness(.55);
}
.overlay { position: absolute; inset: 0; background: radial-gradient(1000px 500px at 20% 20%, rgba(255,59,63,.25), transparent 50%), radial-gradient(1200px 600px at 80% 80%, rgba(255,193,7,.18), transparent 50%); z-index: 1; }
.hero__content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 4rem 0; }
.hero__title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; }
.hero__subtitle { margin: 1rem auto 2rem; max-width: 680px; color: #e2e8f0; font-weight: 300; }

/* Seções */
.section { padding: 4.5rem 0; background: linear-gradient(180deg, #0b1020, #0f152b); }
.section__title { color: #fff; font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); text-align: center; margin-bottom: .25rem; }
.section__subtitle { color: var(--muted); text-align: center; margin-bottom: 2.5rem; }

/* Grid Cardápio */
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.card { grid-column: span 12; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.card__image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card__image img { width: 100%; height: 100%; object-fit: cover; display: block; border-bottom: 1px solid rgba(255,255,255,.08); filter: saturate(1.05) contrast(1.05); transition: transform .35s ease, filter .35s ease; }
.card:hover .card__image img { transform: scale(1.06); filter: saturate(1.2) contrast(1.1); }
.card__body { padding: 1rem 1.1rem 1.2rem; color: #e2e8f0; }
.card__title { font-weight: 700; font-size: 1.1rem; color: #fff; }
.card__desc { margin: .45rem 0 .9rem; color: #cbd5e1; font-size: .95rem; }
.card__price { display: inline-block; background: rgba(255,193,7,.15); color: #ffd666; padding: .4rem .7rem; border-radius: 999px; font-weight: 700; letter-spacing: .2px; }

/* Footer */
.footer { background: #090d1a; border-top: 1px solid rgba(255,255,255,.06); margin-top: 2rem; }
.footer__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; padding: 2.2rem 0; color: #cbd5e1; }
.footer__grid > div:first-child { grid-column: span 8; }
.footer__grid > div:last-child { grid-column: span 4; }
.footer__text { color: #94a3b8; margin-top: .5rem; }
.footer__title { color: #e2e8f0; font-weight: 600; margin-bottom: .5rem; }
.social { display: flex; gap: .75rem; flex-wrap: wrap; }
.social__link { color: #cbd5e1; text-decoration: none; background: rgba(255,255,255,.06); padding: .45rem .7rem; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.social__link:hover { background: rgba(255,255,255,.12); color: #fff; }
.copy { border-top: 1px solid rgba(255,255,255,.06); color: #64748b; font-size: .9rem; text-align: center; padding: .9rem 0; }

/* Responsividade */
@media (min-width: 640px) {
  .card { grid-column: span 6; }
}
@media (min-width: 960px) {
  .card { grid-column: span 4; }
}

@media (max-width: 900px) {
  .nav { position: fixed; inset: 64px 0 auto 0; background: rgba(11,16,32,.98); border-bottom: 1px solid rgba(255,255,255,.06); padding: .75rem 1rem; display: none; flex-direction: column; gap: .25rem; }
  .nav.is-open { display: flex; }
  .nav__toggle { display: inline-block; }
}