:root {
  --bg: #f8f3ea;
  --bg-alt: #ffffff;
  --bg-alt-2: #efe7d6;
  --red: #e6484a;
  --red-dark: #c22f34;
  --cream: #241f1a;
  --cream-dim: #6b5f52;
  --cream-faint: rgba(36, 31, 26, 0.62);
  --border: rgba(36, 31, 26, 0.12);
  --shadow: 0 20px 50px rgba(36, 31, 26, 0.1);
  --radius: 18px;
  --font-body: 'Poppins', sans-serif;
  --font-script: 'Caveat', cursive;
  --font-display: 'Fraunces', serif;
  /* dark surfaces (header, hero, statement band) keep their own light-on-dark palette */
  --surface-dark: #14120f;
  --on-dark: #f5f0e6;
  --on-dark-dim: #cfc6b6;
  --on-dark-faint: rgba(245, 240, 230, 0.68);
  --on-dark-border: rgba(245, 240, 230, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-mark {
  font-family: var(--font-script);
  font-size: 3.2rem;
  color: var(--red);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(230, 72, 74, 0.22);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 26px rgba(230, 72, 74, 0.3); }
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(36, 31, 26, 0.05); transform: translateY(-2px); }
.btn-outline-light { border: 1.5px solid var(--on-dark-border); color: var(--on-dark); }
.btn-outline-light:hover { background: rgba(245, 240, 230, 0.1); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 0;
  background: #0b0a09;
  border-bottom: 3px solid var(--red);
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand-mark { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; }
.brand-blob { position: absolute; inset: 0; width: 100%; height: 100%; }
.brand-blob circle { fill: var(--red); }
.brand-word {
  position: relative;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--on-dark);
  z-index: 1;
}
.brand-word .dot { color: var(--on-dark); }
.brand-word.small { font-size: 2rem; }
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--on-dark-dim);
  margin-left: 2px;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--on-dark-faint);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--on-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--on-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (layered: dark gradient base + real photo + red glow) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(230,72,74,0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(230,72,74,0.1), transparent 50%),
    var(--surface-dark);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  animation: heroKenBurns 18s ease-out forwards;
  will-change: transform;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--surface-dark) 4%, rgba(20,18,15,0.92) 26%, rgba(20,18,15,0.6) 55%, rgba(20,18,15,0.22) 100%),
    linear-gradient(0deg, var(--surface-dark) 0%, rgba(20,18,15,0.05) 22%, rgba(20,18,15,0.05) 68%, rgba(20,18,15,0.55) 100%);
}
@keyframes heroKenBurns {
  from { transform: scale(1.14); }
  to { transform: scale(1); }
}
.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -120px;
  background: radial-gradient(circle, rgba(230,72,74,0.28), transparent 65%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--red);
}
.eyebrow.center { justify-content: center; margin-left: auto; margin-right: auto; }
.eyebrow-solid {
  background: var(--red);
  color: #0b0a09;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 3px;
}
.eyebrow-solid::before { display: none; }
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--on-dark);
}
.hero-title em { color: var(--red); font-style: normal; font-family: var(--font-body); font-weight: 800; }
.hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(6rem, 22vw, 16rem);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(236,231,218,0.09);
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.hero-text {
  font-size: 1.05rem;
  color: var(--on-dark-faint);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--on-dark-dim);
}
.hour-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7ee08a;
  box-shadow: 0 0 0 4px rgba(126,224,138,0.18);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--on-dark-border);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
}
.scroll-cue span {
  width: 4px; height: 8px;
  background: var(--red);
  border-radius: 4px;
  animation: scrollcue 1.6s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Section shared ---------- */
section { padding: 120px 0; position: relative; }
.section-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.section-title em { color: var(--red); font-style: italic; font-family: var(--font-display); font-weight: 600; text-transform: none; }
.section-title.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-text { color: var(--cream-faint); font-size: 1rem; margin-bottom: 16px; }
.section-text.center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Sobre ---------- */
.sobre { background: var(--bg-alt); }
.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.sobre-media { position: relative; min-width: 0; }
.sobre-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-color: var(--bg-alt-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sobre-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}

.sobre-stats { display: flex; gap: 34px; margin-top: 30px; flex-wrap: wrap; }
.stat strong { display: block; font-size: 1.7rem; color: var(--red); }
.stat span { font-size: 0.8rem; color: var(--cream-dim); }
a.stat { transition: transform 0.25s ease; }
a.stat:hover { transform: translateY(-2px); }
a.stat:hover span { color: var(--cream); }

/* ---------- Ambiente ---------- */
.ambiente { background: var(--bg); padding-bottom: 0; overflow: hidden; }
.ambiente-bleed {
  position: relative;
  width: 100%;
  margin-top: 56px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.ambiente-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0;
  position: relative;
}
.ambiente-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.18) 0%, rgba(20,18,15,0.02) 25%, rgba(20,18,15,0.02) 75%, rgba(20,18,15,0.35) 100%);
  pointer-events: none;
}
.ambiente-item {
  position: relative;
  background-color: var(--bg-alt-2);
  background-size: cover;
  background-position: center;
}
.ambiente-item-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.ambiente-item-2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.ambiente-item-3 { grid-column: 3 / 4; grid-row: 2 / 3; }
.ambiente-item-4 { grid-column: 4 / 5; grid-row: 2 / 3; }

/* ---------- Statement band (full-bleed editorial photo) ---------- */
.statement-band {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background-color: var(--surface-dark);
  background-size: cover;
  background-position: center;
}
.statement-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,10,9,0.55) 0%, rgba(11,10,9,0.25) 40%, rgba(11,10,9,0.75) 100%);
}
.statement-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.statement-inner .eyebrow { margin-left: auto; margin-right: auto; }
.statement-title {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.statement-title em { color: var(--red); font-style: normal; }
.statement-sub {
  margin-top: 20px;
  color: var(--on-dark);
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Cardápio (home highlights) ---------- */
.menu-intro { margin-bottom: 50px; }

.menu-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.menu-highlight {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.menu-highlight:hover { transform: translateY(-4px); border-color: rgba(230,72,74,0.35); }
.menu-highlight-media {
  height: 160px;
  background-color: var(--bg-alt-2);
  background-size: cover;
  background-position: center;
}
.menu-highlight-body { padding: 26px 28px; }
.menu-highlight-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}
.menu-highlight-head h3 { font-size: 1.1rem; font-weight: 600; }
.menu-highlight .price { color: var(--red); font-weight: 700; white-space: nowrap; }
.menu-highlight .price small { font-weight: 400; color: var(--cream-dim); display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: .05em; }
.menu-highlight p { font-size: 0.87rem; color: var(--cream-dim); }

.menu-featured-banner {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(230,72,74,0.16), rgba(230,72,74,0.03));
  border: 1px solid rgba(230,72,74,0.35);
  border-radius: var(--radius);
  padding: 38px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.menu-featured-banner h3 { font-family: var(--font-script); font-size: 2rem; font-weight: 700; margin-bottom: 6px; color: var(--cream); }
.menu-featured-banner p { font-size: 0.9rem; color: var(--cream-dim); max-width: 420px; }
.menu-featured-price { text-align: right; }
.menu-featured-price .price { font-size: 2rem; font-weight: 800; color: var(--red); display: block; }
.menu-featured-price span.tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }

.menu-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 50px; }

/* ---------- Promoções ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.promo-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.promo-card:hover { transform: translateY(-6px); border-color: rgba(230,72,74,0.4); }
.promo-media {
  height: 170px;
  background-color: var(--bg-alt-2);
  background-size: cover;
  background-position: center;
}
.promo-body { padding: 26px 24px; }
.promo-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.promo-body p { font-size: 0.88rem; color: var(--cream-dim); margin-bottom: 18px; }
.promo-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.promo-foot .price { color: var(--red); font-weight: 700; font-size: 1.1rem; }
.promo-dates { font-size: 0.72rem; color: var(--cream-dim); }

/* ---------- Galeria ---------- */
.galeria { background: var(--bg-alt); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.galeria-item {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background-color: var(--bg-alt-2);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}
.galeria-item:hover { transform: scale(1.03); }
.galeria-cta { text-align: center; margin-top: 42px; }

/* ---------- Localização ---------- */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.info-list { margin: 30px 0 36px; display: flex; flex-direction: column; gap: 20px; }
.info-list li { display: flex; flex-direction: column; gap: 4px; }
.info-list strong { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); }
.info-list span { color: var(--cream-faint); font-size: 0.98rem; }
.info-list a:hover { color: var(--red); }
.map-embed {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding-top: 70px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 0.88rem; }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.footer-brand p { color: var(--cream-dim); font-size: 0.85rem; line-height: 1.6; max-width: 260px; }
.footer-col a { color: var(--cream-faint); transition: color 0.25s ease; }
.footer-col a:hover { color: var(--red); }
.footer-text { color: var(--cream-dim); line-height: 1.6; }
.footer-social-link { display: flex; align-items: center; gap: 10px; }
.footer-social-link svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--cream-dim); }
.back-to-top { font-size: 0.78rem; color: var(--cream-dim); transition: color 0.25s ease; }
.back-to-top:hover { color: var(--red); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37,211,102,0.4);
  z-index: 400;
  transition: transform 0.25s ease;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered cascade for photo/card grids */
.ambiente-item:nth-child(1) { transition-delay: 0s; }
.ambiente-item:nth-child(2) { transition-delay: .12s; }
.ambiente-item:nth-child(3) { transition-delay: .24s; }
.ambiente-item:nth-child(4) { transition-delay: .36s; }
.galeria-grid .galeria-item:nth-child(1) { transition-delay: 0s; }
.galeria-grid .galeria-item:nth-child(2) { transition-delay: .08s; }
.galeria-grid .galeria-item:nth-child(3) { transition-delay: .16s; }
.galeria-grid .galeria-item:nth-child(4) { transition-delay: .24s; }
.galeria-grid .galeria-item:nth-child(5) { transition-delay: .32s; }
.galeria-grid .galeria-item:nth-child(6) { transition-delay: .4s; }

/* ================= Cardápio completo (accordion page) ================= */
.menu-page-hero {
  position: relative;
  padding: 200px 0 90px;
  overflow: hidden;
}
.menu-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/galeria-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.menu-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(230,72,74,0.18), transparent 50%), var(--bg);
  opacity: 0.92;
}
.menu-page-hero .container { position: relative; z-index: 2; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-bottom: 22px;
  transition: color 0.25s ease;
}
.back-link:hover { color: var(--red); }

.accordion-wrap { max-width: 860px; margin: 0 auto; padding: 20px 0 130px; }
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 4px;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-cat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.accordion-cat h2 { font-size: 1.35rem; font-weight: 700; }
.accordion-cat span { font-size: 0.75rem; color: var(--cream-dim); }
.accordion-plus {
  width: 30px; height: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease, background .3s ease, border-color .3s ease;
}
.accordion-plus::before, .accordion-plus::after {
  content: '';
  position: absolute;
  background: var(--cream);
  transition: opacity .3s ease, background .3s ease;
}
.accordion-plus::before { top: 50%; left: 8px; right: 8px; height: 1.5px; transform: translateY(-50%); }
.accordion-plus::after { left: 50%; top: 8px; bottom: 8px; width: 1.5px; transform: translateX(-50%); }
.accordion-item[open] .accordion-plus { background: var(--red); border-color: var(--red); }
.accordion-item[open] .accordion-plus::before, .accordion-item[open] .accordion-plus::after { background: #fff; }
.accordion-item[open] .accordion-plus::after { opacity: 0; }

.menu-rows { padding: 0 4px 32px; display: flex; flex-direction: column; gap: 24px; }
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.menu-row-thumb {
  width: 64px; height: 64px;
  border-radius: 12px;
  background-color: var(--bg-alt-2);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.menu-row-main { flex: 1; }
.menu-row-main h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.menu-row-main p { font-size: 0.85rem; color: var(--cream-dim); max-width: 480px; }
.menu-row .price { white-space: nowrap; color: var(--red); font-weight: 700; text-align: right; }
.menu-row .price small { display: block; font-weight: 400; font-size: 0.62rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: .05em; }

.price-wrap { text-align: right; white-space: nowrap; }
.price-old { display: block; font-size: 0.78rem; color: var(--cream-dim); text-decoration: line-through; }
.price-promo { font-size: 1.05rem; }
.promo-flag {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: 8px;
}

.menu-page-cta {
  background: var(--bg-alt);
  padding: 90px 0;
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .sobre-grid, .local-grid { grid-template-columns: 1fr; gap: 44px; }
  .ambiente-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .ambiente-item-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .ambiente-item-2 { grid-column: 1 / 3; grid-row: 2 / 3; }
  .ambiente-item-3 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .ambiente-item-4 { grid-column: 2 / 3; grid-row: 3 / 4; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-highlight-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78%, 320px);
    background: var(--bg-alt);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 400;
    border-left: 1px solid var(--border);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav .nav-link { color: var(--cream-faint); }
  .main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--red); }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  section { padding: 90px 0; }
  .ambiente-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .ambiente-item-1, .ambiente-item-2, .ambiente-item-3, .ambiente-item-4 { grid-column: 1 / 2; grid-row: auto; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .menu-featured-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .menu-featured-price { text-align: left; }
  .menu-row { flex-wrap: wrap; align-items: flex-start; gap: 12px; }
  .menu-row-thumb { width: 52px; height: 52px; }
  .menu-row .price-wrap { flex-basis: 100%; text-align: left; }
  .menu-row .price { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
