/* Aurora Bistrô — site fictício de demonstração da NeuralWeb. CSS puro, sem build. Celular primeiro. */

:root {
  --bg: #120d0a;
  --bg-2: #17110d;
  --bg-3: #1e1611;
  --line: rgba(240, 220, 200, .1);
  --line-2: rgba(240, 220, 200, .18);
  --text: #f6eee6;
  --muted: #bcae9f;
  --dim: #8f8072;
  --gold: #e8b071;
  --gold-2: #f3ca98;
  --ink: #1b120b;
  --warn: #f0a58f;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --bar-h: 40px;
  --nav-h: 62px;
  --head: calc(var(--bar-h) + var(--nav-h));
  --pad: clamp(16px, 4vw, 40px);
  --r: 16px;
  --r-lg: 26px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
@media (min-width: 900px) { :root { --bar-h: 36px; --nav-h: 76px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--head) + 8px); background: var(--bg); }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, fieldset, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1240px, 100%); margin-inline: auto; padding-inline: var(--pad); }
.skip { position: fixed; left: 12px; top: -80px; z-index: 300; background: var(--gold); color: var(--ink); padding: 12px 16px; border-radius: 10px; font-weight: 600; transition: top .2s; }
.skip:focus { top: calc(var(--bar-h) + 8px); }
.dk { display: none; }
@media (min-width: 720px) { .dk { display: inline; } .mb { display: none; } }
.arr { display: inline-block; transition: transform .35s var(--ease); }

/* ---------- Tipografia ---------- */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font: 500 12px/1.2 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.eyebrow::before, .eyebrow--center::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; flex: none; }
.eyebrow--center { justify-content: center; }
.h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5.8vw, 3.75rem); line-height: 1.06; letter-spacing: -.01em; text-wrap: balance; }
.h2 em, .hero-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.lead { max-width: 54ch; margin-top: 20px; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.12rem); line-height: 1.7; }
.sec { position: relative; padding: clamp(72px, 9vw, 120px) 0; }
.sec-head { margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head--center { text-align: center; }
.sec-head--center .lead { margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 28px; border-radius: 999px; border: 1px solid transparent;
  font: 500 15px/1 var(--sans); letter-spacing: .01em; white-space: nowrap; cursor: pointer;
  transition: transform .45s var(--ease-out), background-color .3s, border-color .3s, color .3s, box-shadow .4s;
}
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 12px 30px -14px rgba(232, 176, 113, .6); }
.btn--ghost { border-color: rgba(246, 238, 230, .28); color: var(--text); background: rgba(18, 13, 10, .28); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: 14px; }
.btn--block { width: 100%; }
@media (hover: hover) {
  .btn--gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(232, 176, 113, .7); }
  .btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
  .btn:hover .arr { transform: translateX(4px); }
}

/* ---------- Aviso de demonstração ---------- */
.demo-bar {
  position: fixed; inset: 0 0 auto 0; z-index: 150; height: var(--bar-h);
  background: #0a0706; border-bottom: 1px solid rgba(232, 176, 113, .18);
  color: var(--muted); font-size: 12.5px; line-height: 1;
}
.demo-bar-in { height: 100%; width: min(1240px, 100%); margin-inline: auto; padding-inline: var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.demo-bar a { display: inline-flex; align-items: center; min-height: 44px; white-space: nowrap; transition: color .3s; }
.demo-back:hover { color: var(--text); }
.demo-msg { display: flex; align-items: center; gap: 8px; min-width: 0; white-space: nowrap; }
.demo-sep { opacity: .5; }
.demo-cta { color: var(--gold); font-weight: 500; }
.demo-cta:hover { color: var(--gold-2); }
@media (max-width: 359px) { .demo-msg .mb, .demo-sep { display: none; } }

/* ---------- Navegação ---------- */
.nav {
  position: fixed; top: var(--bar-h); left: 0; right: 0; z-index: 100; height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background-color .45s, border-color .45s, -webkit-backdrop-filter .45s, backdrop-filter .45s;
}
html:not(.js) .nav, .nav.is-stuck, .menu-open .nav { background: rgba(18, 13, 10, .86); -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3); border-bottom-color: var(--line); }
.nav-in { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; color: var(--text); }
.brand-mark { width: 30px; height: 30px; color: var(--gold); flex: none; }
.brand-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; letter-spacing: -.01em; line-height: 1; white-space: nowrap; }
.brand-name em { font-style: italic; font-weight: 300; color: var(--gold); }
.nav-links { display: none; }
.nav-links a { position: relative; padding: 14px 0; font-size: 14px; color: var(--muted); transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav-links a:hover, .nav-links a.is-on { color: var(--text); }
.nav-links a:hover::after, .nav-links a.is-on::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
.burger { position: relative; margin-left: auto; width: 44px; height: 44px; flex: none; border: 1px solid var(--line-2); border-radius: 50%; background: rgba(18, 13, 10, .35); cursor: pointer; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.burger i { position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--text); transition: transform .4s var(--ease), top .4s var(--ease); }
.burger i:first-child { top: 16px; }
.burger i:last-child { top: 24px; }
.burger[aria-expanded="true"] i:first-child { top: 20px; transform: rotate(45deg); }
.burger[aria-expanded="true"] i:last-child { top: 20px; transform: rotate(-45deg); }
@media (min-width: 640px) {
  .nav-cta { display: inline-flex; margin-left: auto; }
  .burger { margin-left: 0; }
}
@media (min-width: 1100px) {
  .nav-links { display: flex; gap: 30px; margin-left: auto; }
  .nav-cta { margin-left: 8px; }
  .burger { display: none; }
}

/* Menu do celular */
.menu {
  position: fixed; inset: var(--bar-h) 0 0 0; z-index: 90; display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  padding: calc(var(--nav-h) + 16px) var(--pad) calc(28px + env(safe-area-inset-bottom));
  background: #0e0a08; overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.menu[hidden] { display: none; }
.menu.is-open { opacity: 1; visibility: visible; }
.menu nav { display: grid; }
.menu nav a {
  display: flex; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: clamp(1.8rem, 7.6vw, 2.4rem); font-weight: 300; line-height: 1.15;
  opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .3s;
}
.menu nav a small { font: 500 12px/1 var(--sans); font-variant-numeric: tabular-nums; letter-spacing: .12em; color: var(--gold); }
.menu nav a:hover { color: var(--gold-2); }
.menu.is-open nav a { opacity: 1; transform: none; }
.menu.is-open nav a:nth-child(2) { transition-delay: .04s; }
.menu.is-open nav a:nth-child(3) { transition-delay: .08s; }
.menu.is-open nav a:nth-child(4) { transition-delay: .12s; }
.menu.is-open nav a:nth-child(5) { transition-delay: .16s; }
.menu.is-open nav a:nth-child(6) { transition-delay: .2s; }
.menu-foot { display: grid; gap: 18px; color: var(--dim); font-size: 13.5px; line-height: 1.6; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100vh; min-height: max(600px, min(100svh, 1000px));
  padding: calc(var(--head) + 36px) 0 118px; text-align: center;
}
.hero-media { position: absolute; inset: 0; z-index: -2; background: #0e0a08; animation: settle 2.6s var(--ease-out) both; will-change: transform; }
.hero-poster, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% 50%; }
.hero-video { opacity: 0; transition: opacity 1.4s var(--ease); }
.hero-video.is-live { opacity: 1; }
.hero-shade {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 62% 52% at 50% 47%, rgba(12, 8, 6, .55), rgba(12, 8, 6, 0) 78%),
    linear-gradient(180deg, rgba(12, 8, 6, .8) 0%, rgba(12, 8, 6, .34) 26%, rgba(12, 8, 6, .3) 58%, rgba(18, 13, 10, .86) 88%, var(--bg) 100%);
}
.hero-in { position: relative; display: flex; flex-direction: column; align-items: center; will-change: transform, opacity; }
.hero-eyebrow { animation: rise 1s var(--ease-out) .15s both; }
@media (max-width: 479px) { .hero-eyebrow { letter-spacing: .18em; } .hero-eyebrow::before, .hero-eyebrow::after { display: none; } }
.hero-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.9rem, 11vw, 6.9rem); line-height: 1; letter-spacing: -.012em; text-shadow: 0 2px 30px rgba(0, 0, 0, .35); }
.hero-title .ln { display: block; overflow: hidden; padding: .06em .16em .12em; margin: -.06em -.16em -.12em; }
.hero-title .ln > span { display: inline-block; text-wrap: balance; animation: lineUp 1.3s var(--ease-out) .25s both; }
.hero-title .ln + .ln > span { animation-delay: .4s; }
.hero-sub { max-width: 34ch; margin-top: 22px; color: rgba(246, 238, 230, .84); font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.6; animation: rise 1s var(--ease-out) .65s both; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; animation: rise 1s var(--ease-out) .8s both; }
.hero-meta {
  position: absolute; left: 0; right: 0; bottom: 24px; display: flex; align-items: flex-end; justify-content: center; gap: 24px;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(246, 238, 230, .62);
  animation: rise 1s var(--ease-out) 1.05s both;
}
.hero-meta > span { display: none; padding-bottom: 2px; }
.cue { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 44px; min-height: 44px; font-size: 10.5px; letter-spacing: .26em; color: rgba(246, 238, 230, .7); }
.cue i { position: relative; width: 1px; height: 44px; overflow: hidden; background: rgba(232, 176, 113, .28); }
.cue i::after { content: ""; position: absolute; left: 0; top: -45%; width: 100%; height: 45%; background: var(--gold); animation: drip 2.4s var(--ease) infinite; }
@media (min-width: 900px) {
  .hero-meta { justify-content: space-between; bottom: 30px; }
  .hero-meta > span { display: block; }
}
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes lineUp { from { transform: translateY(108%); } to { transform: none; } }
@keyframes settle { from { scale: 1.09; } to { scale: 1; } }
@keyframes drip { to { top: 110%; } }

/* ---------- A cozinha ---------- */
.about-grid { display: grid; gap: 64px; align-items: center; }
.about-media { position: relative; isolation: isolate; margin-left: 12px; }
.about-media::before { content: ""; position: absolute; inset: -12px 12px 12px -12px; z-index: -1; border: 1px solid rgba(232, 176, 113, .32); border-radius: var(--r-lg); }
.about-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); background: var(--bg-3); }
.seal { position: absolute; right: 14px; bottom: -40px; width: 112px; height: 112px; color: var(--gold); filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .45)); }
.seal-bg { fill: var(--bg); stroke: rgba(232, 176, 113, .35); stroke-width: 1; }
.seal text { font: 600 8.3px var(--sans); letter-spacing: .1em; text-transform: uppercase; fill: var(--gold); }
.seal-ring { transform-box: view-box; transform-origin: 50% 50%; animation: spin 38s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.pillars { margin-top: 36px; border-top: 1px solid var(--line); }
.pillars li { display: grid; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.pillars b { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; line-height: 1.2; color: var(--text); }
.pillars span { color: var(--muted); font-size: 15px; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(64px, 7vw, 112px); }
  .about-media { margin-left: 20px; }
  .about-media::before { inset: -20px 20px 20px -20px; }
  .seal { right: -52px; bottom: 64px; width: 128px; height: 128px; }
}
@media (min-width: 1100px) {
  .pillars li { grid-template-columns: 190px minmax(0, 1fr); align-items: baseline; gap: 24px; }
}

/* ---------- Cardápio ---------- */
.menu-sec { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 16%, var(--bg-2) 84%, var(--bg) 100%); }
.menu-sec::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 46% 34% at 50% 12%, rgba(232, 176, 113, .08), rgba(232, 176, 113, 0) 70%); }
.menu-sec .wrap { position: relative; }
.tabs { display: none; width: 100%; max-width: 420px; margin: 0 auto 26px; padding: 5px; gap: 4px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(255, 255, 255, .025); }
.tabs button { flex: 1 1 0; min-height: 44px; padding: 0 8px; border: 0; border-radius: 999px; background: none; color: var(--muted); font-size: 14px; font-weight: 500; cursor: pointer; transition: background-color .35s, color .35s; }
.tabs button[aria-selected="true"] { background: var(--gold); color: var(--ink); }
.carta { display: grid; gap: 48px; }
.cat-title { display: flex; align-items: center; gap: 16px; margin-bottom: 6px; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.85rem; line-height: 1.2; color: var(--gold); }
.cat-title::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(232, 176, 113, .45), rgba(232, 176, 113, 0)); }
.dish { padding: 17px 0 16px; border-bottom: 1px solid var(--line); }
.dish:last-child { border-bottom: 0; }
.dish-top { display: flex; align-items: baseline; gap: 10px; }
.dish-name { font-family: var(--serif); font-size: 1.28rem; font-weight: 400; line-height: 1.2; color: var(--text); }
.dish-dots { flex: 1 1 24px; min-width: 16px; border-bottom: 1px dotted rgba(232, 176, 113, .42); transform: translateY(-.28em); }
.dish-price { font: 500 15px/1 var(--sans); font-variant-numeric: tabular-nums lining-nums; letter-spacing: .01em; color: var(--gold); white-space: nowrap; }
.dish-desc { margin-top: 5px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.tag { display: inline-block; vertical-align: middle; margin-left: 6px; padding: 4px 8px 3px; border: 1px solid rgba(170, 200, 140, .45); border-radius: 999px; font: 600 9.5px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: #bcd6a2; transform: translateY(-2px); }
.tag--gold { border-color: rgba(232, 176, 113, .5); color: var(--gold); }
.menu-note { margin-top: 40px; text-align: center; color: var(--dim); font-size: 13.5px; }
@media (max-width: 899px) {
  .js .tabs { display: flex; }
  .js .cat:not(.is-on) { display: none; }
  .js .cat.is-on { animation: rise .6s var(--ease-out) both; }
  .js .cat-title { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
}
@media (min-width: 900px) {
  .carta { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(32px, 4.5vw, 64px); }
}

/* ---------- Menu degustação ---------- */
.tasting-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: linear-gradient(180deg, #1b130e 0%, #140e0b 100%); }
.tasting-media { position: relative; overflow: hidden; }
.tasting-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 62%; }
.js .tasting-media img { transform: scale(1.07); transition: transform 2.2s var(--ease-out); }
.js .tasting-media.is-in img { transform: none; }
.tasting-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27, 19, 14, 0) 50%, #1b130e 100%); }
.tasting-body { position: relative; display: grid; gap: 44px; padding: clamp(6px, 1.5vw, 20px) clamp(20px, 4.4vw, 60px) clamp(30px, 4.4vw, 60px); }
.tasting-price { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 28px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tasting-price p { display: grid; gap: 4px; }
.tasting-price b { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; line-height: 1; font-variant-numeric: lining-nums; color: var(--gold); }
.tasting-price span { font-size: 13px; color: var(--muted); }
.tasting-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 28px; }
.note { color: var(--dim); font-size: 13.5px; }
.courses { border-top: 1px solid var(--line); }
.courses li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 8px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.courses .num { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.2rem; line-height: 1.35; color: var(--gold); }
.courses b { display: block; font-family: var(--serif); font-size: 1.22rem; font-weight: 400; line-height: 1.25; }
.courses div span { display: block; margin-top: 2px; color: var(--muted); font-size: 14.5px; }
@media (min-width: 700px) {
  .tasting-media img { aspect-ratio: 1280 / 464; }
}
@media (min-width: 900px) {
  .tasting-body { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(44px, 6vw, 96px); align-items: start; }
}

/* ---------- Ambiente ---------- */
.ambient-head .lead { margin-top: 18px; }
.gal {
  display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 172px 152px 152px 172px;
  grid-template-areas: "luzes luzes" "velas detalhe" "velas mesa" "maos maos";
}
.g { position: relative; overflow: hidden; border-radius: var(--r); background: var(--bg-3); }
.g img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.g::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(12, 8, 6, 0) 52%, rgba(12, 8, 6, .78)); }
.g figcaption { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 1; font-size: 10.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(246, 238, 230, .9); }
.g--velas { grid-area: velas; }
.g--velas img { object-position: 38% 50%; }
.g--luzes { grid-area: luzes; }
.g--detalhe { grid-area: detalhe; }
.g--mesa { grid-area: mesa; }
.g--mesa img { object-position: 30% 50%; }
.g--maos { grid-area: maos; }
.g--maos img { object-position: 50% 40%; }
@media (hover: hover) { .g:hover img { transform: scale(1.05); } }
@media (min-width: 900px) {
  .ambient-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; gap: 64px; }
  .ambient-head .lead { margin-top: 0; justify-self: end; }
  .gal { gap: 14px; grid-template-columns: 1.12fr 1fr 1fr; grid-template-rows: 290px 290px; grid-template-areas: "velas luzes detalhe" "velas mesa maos"; }
  .g figcaption { left: 18px; bottom: 16px; font-size: 11px; }
}

/* ---------- Eventos privados ---------- */
.events { position: relative; isolation: isolate; overflow: hidden; padding: clamp(88px, 10vw, 136px) 0; }
.events-bg { position: absolute; inset: -12% 0; z-index: -2; will-change: transform; }
.events-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.events::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(18, 13, 10, 0) 24%, rgba(18, 13, 10, 0) 76%, var(--bg) 100%),
    linear-gradient(90deg, rgba(18, 13, 10, .9) 0%, rgba(18, 13, 10, .74) 55%, rgba(18, 13, 10, .5) 100%);
}
.events-in > * { max-width: 640px; }
.events-in > .events-list { max-width: 720px; }
.events-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.events-list li { display: inline-flex; align-items: center; gap: 10px; min-height: 42px; padding: 0 16px; border: 1px solid rgba(232, 176, 113, .3); border-radius: 999px; background: rgba(18, 13, 10, .5); font-size: 14px; color: var(--text); }
.events-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.events-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* ---------- Reservas ---------- */
.book { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 30%, var(--bg-2) 72%, var(--bg) 100%); }
.book-grid { display: grid; gap: 44px; }
.book-info { margin-top: 30px; border-top: 1px solid var(--line); }
.book-info div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.book-info dt { color: var(--gold); font-weight: 500; }
.book-info dd { color: var(--muted); text-align: right; }
.form {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px 14px;
  padding: clamp(20px, 3vw, 36px); border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 240, 225, .045), rgba(255, 240, 225, .015));
  box-shadow: 0 40px 80px -44px rgba(0, 0, 0, .7);
}
.field { display: grid; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { padding: 0; font-size: 13px; font-weight: 500; letter-spacing: .02em; color: var(--muted); }
.field small { font-size: 12px; font-weight: 400; color: var(--dim); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 15px; border: 1px solid var(--line-2); border-radius: 12px;
  background-color: rgba(10, 7, 5, .55); color: var(--text); font-size: 16px; line-height: 1.3; color-scheme: dark;
  -webkit-appearance: none; appearance: none; transition: border-color .3s, box-shadow .3s, background-color .3s;
}
.field input::-webkit-date-and-time-value { text-align: left; }
.field textarea { min-height: 104px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field select { padding-right: 42px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23e8b071' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232, 176, 113, .16); background-color: rgba(10, 7, 5, .78); }
.field.is-bad input { border-color: var(--warn); }
.slots-field { display: block; border: 0; padding: 0; min-width: 0; }
.slots-field legend { margin-bottom: 8px; }
.slots { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.slot { position: relative; display: block; }
.slot input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.slot span { display: flex; align-items: center; justify-content: center; min-height: 44px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 14.5px; font-weight: 500; font-variant-numeric: tabular-nums; color: var(--text); pointer-events: none; transition: background-color .25s, border-color .25s, color .25s, opacity .25s; }
.slot input:hover + span { border-color: rgba(232, 176, 113, .6); }
.slot input:checked + span { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.slot input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.slot input:disabled { cursor: not-allowed; }
.slot input:disabled + span { opacity: .3; text-decoration: line-through; }
.slots-field.is-bad .slot span { border-color: rgba(240, 165, 143, .6); }
.hint { margin-top: 10px; font-size: 13px; color: var(--dim); }
.hint.is-warn { color: var(--warn); }
.form-end { display: grid; gap: 12px; margin-top: 4px; }
.form-note { font-size: 13px; line-height: 1.5; color: var(--dim); text-align: center; }
.form-note.is-bad { color: var(--warn); }
.form-note.is-ok { color: #a9d8ae; }
@media (min-width: 520px) { .form { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) {
  .book-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(48px, 7vw, 112px); align-items: start; }
  .book-copy { position: sticky; top: calc(var(--head) + 40px); }
}

/* ---------- Localização ---------- */
.visit { padding-top: clamp(40px, 6vw, 80px); }
.visit-card { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg-2); }
.visit-map { position: relative; min-height: 280px; overflow: hidden; background: #17110d; }
.visit-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.8s var(--ease-out) infinite; }
@keyframes pulse { from { transform: scale(1); opacity: .5; } to { transform: scale(4.4); opacity: 0; } }
.map-label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, calc(-100% - 30px));
  display: grid; gap: 3px; padding: 10px 16px; border: 1px solid rgba(232, 176, 113, .32); border-radius: 12px;
  background: rgba(18, 13, 10, .9); box-shadow: 0 16px 30px -14px rgba(0, 0, 0, .7);
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500; line-height: 1.1; text-align: center; white-space: nowrap;
}
.map-street { font: 600 8.5px var(--sans); letter-spacing: .3em; fill: rgba(240, 220, 200, .34); }
.map-label small { font: 500 11px/1.2 var(--sans); letter-spacing: .06em; color: var(--muted); }
.visit-info { display: flex; flex-direction: column; justify-content: center; padding: clamp(26px, 4.4vw, 64px); }
.visit-info .h2 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); }
.visit-addr { margin-top: 20px; font-size: 1.05rem; line-height: 1.6; color: var(--text); }
.hours { margin-top: 24px; border-top: 1px solid var(--line); }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours dt { color: var(--muted); }
.hours dd { color: var(--text); font-variant-numeric: tabular-nums; text-align: right; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
@media (min-width: 900px) {
  .visit-card { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .visit-map { min-height: 480px; }
}

/* ---------- Rodapé ---------- */
.foot { padding: clamp(56px, 7vw, 90px) 0 calc(34px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #0c0806; color: var(--muted); font-size: 14.5px; }
.foot-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.foot-brand p { margin-top: 8px; color: var(--dim); }
.social { display: flex; gap: 10px; }
.social a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 50%; color: var(--text); transition: border-color .3s, color .3s, transform .4s var(--ease-out); }
.social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.foot-cols { display: grid; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.foot-cols h3 { margin-bottom: 10px; font: 500 12px/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.foot-cols a, .foot-bottom a { display: inline-flex; align-items: center; min-height: 44px; margin-block: -10px; color: var(--text); text-decoration: underline; text-decoration-color: rgba(232, 176, 113, .55); text-underline-offset: 4px; transition: color .3s; }
.foot-cols a:hover, .foot-bottom a:hover { color: var(--gold-2); }
.foot-bottom { display: grid; gap: 12px; padding-top: 26px; }
.foot-note { max-width: 82ch; font-size: 12.5px; color: var(--dim); }
@media (min-width: 700px) { .foot-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- WhatsApp flutuante ---------- */
.wa {
  position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 80;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; box-shadow: 0 14px 36px -10px rgba(37, 211, 102, .55);
  transition: transform .6s var(--ease-out), opacity .4s;
}
.js .wa { transform: translateY(90px) scale(.7); opacity: 0; pointer-events: none; }
.js .wa.is-on { transform: none; opacity: 1; pointer-events: auto; }
@media (hover: hover) { .js .wa.is-on:hover { transform: scale(1.07); } }

/* ---------- Revelação ao rolar (só abaixo da dobra; o topo usa animação CSS) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out) var(--d, 0s), transform 1s var(--ease-out) var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Movimento reduzido: só o pôster, sem animações ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .tasting-media img { transform: none; }
  .hero-video { display: none; }
}
