:root {
  --bg: #000000; --white: #FFFFFF; --gray: #D9D9D9;
  --font-display: "Oswald", sans-serif; --font-body: "Montserrat", sans-serif;
  --header-h: 56px; --safe: env(safe-area-inset-bottom, 0px);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--white); line-height: 1.5; padding-bottom: calc(72px + var(--safe)); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--white); }
.header-inner, .menu, .hero, .site-footer { max-width: 1100px; margin: 0 auto; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 14px; min-height: var(--header-h); }
.logo { height: 40px; width: auto; }
.header-title { flex: 1; text-align: center; }
.header-title h1 { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.12em; }
.header-title span { display: block; font-size: 0.6rem; letter-spacing: 0.28em; color: var(--gray); }
.header-actions { display: flex; gap: 6px; }
.icon-btn { width: 38px; height: 38px; border: 1px solid var(--white); display: grid; place-items: center; color: var(--white); background: transparent; }
.icon-btn svg { width: 18px; height: 18px; }
.hero { text-align: center; padding: 36px 16px 24px; border-bottom: 1px solid var(--white); }
.hero-logo { height: 72px; width: auto; margin: 0 auto 12px; }
.hero h2 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.16em; }
.hero p { font-size: 0.75rem; letter-spacing: 0.3em; color: var(--gray); margin-top: 4px; }
.menu { padding: 8px 0 32px; }
.grid { display: grid; grid-template-columns: 1fr; }
.card { padding: 28px 20px; border-bottom: 1px solid var(--white); text-align: center; }
.card-name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.08em; margin-bottom: 10px; }
.ings { font-size: 0.82rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.tag {
  display: inline-block; border: 2px dotted var(--bg); background: var(--white); color: var(--bg);
  font-family: var(--font-display); font-size: 1.05rem; padding: 6px 18px; margin: 4px;
}
.combo { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.25); }
.combo small { display: block; letter-spacing: 0.16em; font-size: 0.7rem; margin-bottom: 8px; color: var(--gray); }
.bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 110; display: flex; justify-content: center; background: var(--bg); border-top: 1px solid var(--white); padding: 10px 12px calc(10px + var(--safe)); }
.bottom-bar a { flex: 1; max-width: 120px; display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 0.62rem; text-transform: uppercase; color: var(--gray); }
.bottom-bar svg { width: 22px; height: 22px; color: var(--white); }
.bottom-bar .whatsapp svg { color: #25D366; }
.site-footer { text-align: center; padding: 16px; font-size: 0.7rem; color: #666; }
@media (min-width: 700px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .card { border-right: 1px solid var(--white); }
  body { padding-bottom: 0; }
  .bottom-bar { position: static; max-width: 1100px; margin: 0 auto 24px; }
}
@media (min-width: 1024px) {
  .grid { grid-template-columns: 1fr 1fr 1fr; }
}

[hidden] { display: none !important; }

