/* =========================================================================
   ESQUINA 63 GASTROBAR: Landing Page
   Design system: Material Design 3 (Google), brand: preto, branco e verde escuro
   Fonts: Fraunces (display) + Roboto (UI/corpo) + Material Symbols (ícones)
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens (Material 3 inspired)
   ------------------------------------------------------------------------- */
:root {
  /* Marca: verde escuro */
  --green-950: #08241A;
  --green-900: #0B2E20;
  --green-800: #103C2C;
  --green-700: #17543C;
  --green-600: #1F6B4C;
  --green-500: #2E8B5F;
  --green-400: #45A578;
  --green-300: #77C8A0;

  /* Preto e branco */
  --ink-950:  #080A09;
  --ink-900:  #0C100E;
  --ink-800:  #121815;
  --ink-700:  #1A211D;
  --paper:    #FFFFFF;
  --paper-2:  #F5F7F5;
  --paper-3:  #EBEFEC;
  --paper-4:  #DFE5E1;

  /* Papéis de texto */
  --on-dark:        #F3F6F4;
  --on-dark-muted:  #AEB9B3;
  --on-dark-faint:  #7C8681;
  --on-light:       #10150F;
  --on-light-muted: #48544D;
  --on-light-faint: #6E7A72;

  /* Papéis semânticos (claro é o default) */
  --bg: var(--paper);
  --surface: var(--paper);
  --surface-2: var(--paper-2);
  --on-surface: var(--on-light);
  --on-surface-muted: var(--on-light-muted);
  --primary: var(--green-700);
  --primary-hover: var(--green-800);
  --on-primary: #FFFFFF;
  --outline: #D3DAD5;
  --outline-strong: #B7C0BA;

  /* Tipografia */
  --font-display: "Fraunces", "Roboto Serif", Georgia, "Times New Roman", serif;
  --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Escala tipográfica fluida (M3 display/headline/title/body) */
  --t-display-lg: clamp(2.75rem, 6.5vw, 5.25rem);
  --t-display-md: clamp(2.25rem, 5vw, 3.75rem);
  --t-headline:   clamp(1.75rem, 3.4vw, 2.75rem);
  --t-title-lg:   clamp(1.3rem, 2.2vw, 1.6rem);
  --t-title:      1.15rem;
  --t-body-lg:    1.125rem;
  --t-body:       1rem;
  --t-label:      0.8125rem;

  /* Forma (M3 shape scale) */
  --r-xs: 6px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 999px;

  /* Espaçamento */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;

  /* Elevação (M3) */
  --e1: 0 1px 2px rgba(8,20,15,.10), 0 1px 3px rgba(8,20,15,.06);
  --e2: 0 2px 6px rgba(8,20,15,.10), 0 1px 2px rgba(8,20,15,.08);
  --e3: 0 8px 22px rgba(8,20,15,.12), 0 3px 8px rgba(8,20,15,.08);
  --e4: 0 16px 40px rgba(8,20,15,.16), 0 6px 14px rgba(8,20,15,.10);

  /* Movimento (M3 easing) */
  --ease-emph: cubic-bezier(.2, 0, 0, 1);
  --ease-standard: cubic-bezier(.4, 0, .2, 1);

  --maxw: 1200px;
  --nav-h: 72px;

  color-scheme: light;
}
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
/* Modo de pré-visualização achatada (?flat): só para conferência, não afeta o site */
html.is-flat { scroll-behavior: auto; }
.is-flat .hero { min-height: auto; padding-block: 8rem 4rem; }

/* -------------------------------------------------------------------------
   2. Reset base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--on-surface);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--green-700); color: #fff; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  user-select: none;
}

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, var(--space-7)); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--t-label); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--primary);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green-500); border-radius: 2px; }
.section-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: var(--t-headline);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-block: .7rem .9rem;
}
.section-lead { font-size: var(--t-body-lg); color: var(--on-surface-muted); max-width: 62ch; }
.text-center { text-align: center; }
.center-col { display: flex; flex-direction: column; align-items: center; }
.center-col .section-lead { margin-inline: auto; }

/* -------------------------------------------------------------------------
   4. Buttons (Material 3)
   ------------------------------------------------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem; padding: .85rem 1.6rem; min-height: 52px;
  border: none; border-radius: var(--r-full);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  transition: box-shadow .2s var(--ease-standard), transform .2s var(--ease-emph), background .2s;
  overflow: hidden; white-space: nowrap;
}
.btn .material-symbols-outlined { font-size: 21px; }
.btn::after { /* state layer */
  content: ""; position: absolute; inset: 0; background: currentColor; opacity: 0; transition: opacity .2s;
}
.btn:hover::after { opacity: .08; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--filled { background: var(--primary); color: var(--on-primary); box-shadow: var(--e1); }
.btn--filled:hover { box-shadow: var(--e3); background: var(--primary-hover); }

.btn--wa { background: #1FA855; color: #fff; box-shadow: var(--e1); }
.btn--wa:hover { background: #178f47; box-shadow: var(--e3); }

.btn--tonal { background: var(--green-800); color: #eafff3; }
.btn--tonal:hover { background: var(--green-700); }

.btn--outline { background: transparent; color: var(--primary); border: 1.5px solid var(--outline-strong); }
.btn--outline:hover { border-color: var(--primary); }

.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); }

.btn--lg { min-height: 58px; padding: 1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* -------------------------------------------------------------------------
   5. Top navigation
   ------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10,14,12,.35);
  transition: background .3s var(--ease-standard), box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--e2);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__brand { display: flex; align-items: center; gap: .65rem; }
.nav__brand img { height: 40px; width: auto; }
.nav__brand .logo-dark { display: block; }
.nav__brand .logo-light { display: none; }
.nav.is-scrolled .logo-dark { display: none; }
.nav.is-scrolled .logo-light { display: block; }

.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__links a {
  padding: .55rem .85rem; border-radius: var(--r-full);
  font-size: .95rem; font-weight: 500; color: #fff; transition: background .2s, color .2s;
}
.nav__links a:hover { background: rgba(255,255,255,.14); }
.nav.is-scrolled .nav__links a { color: var(--on-light); }
.nav.is-scrolled .nav__links a:hover { background: var(--paper-3); color: var(--primary); }

.nav__cta { display: flex; align-items: center; gap: .75rem; }
.nav__toggle {
  display: none; background: transparent; border: none; color: #fff;
  width: 46px; height: 46px; border-radius: var(--r-full); align-items: center; justify-content: center;
}
.nav.is-scrolled .nav__toggle { color: var(--on-light); }
.nav__toggle .material-symbols-outlined { font-size: 30px; }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: var(--ink-900); color: #fff;
  padding: 1rem clamp(1.15rem, 4vw, 2.5rem) 1.75rem;
  transform: translateY(-120%); transition: transform .35s var(--ease-emph);
  box-shadow: var(--e4); display: none;
}
.nav__drawer.is-open { transform: translateY(0); }
.nav__drawer a {
  display: flex; align-items: center; gap: .75rem;
  padding: .95rem .5rem; font-size: 1.1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08); color: var(--on-dark);
}
.nav__drawer a .material-symbols-outlined { color: var(--green-400); }
.nav__drawer .btn { margin-top: 1.25rem; }

/* -------------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-h);
  background:
    radial-gradient(120% 90% at 78% 10%, rgba(31,107,76,.35), transparent 55%),
    radial-gradient(90% 70% at 12% 95%, rgba(23,84,60,.28), transparent 60%),
    linear-gradient(160deg, var(--ink-950) 0%, var(--green-950) 60%, var(--ink-900) 100%);
  color: #fff; overflow: hidden;
}
.hero__bull {
  position: absolute; right: -6%; bottom: -4%; width: min(58vw, 720px);
  opacity: .06; pointer-events: none; filter: grayscale(1) brightness(3);
  transform: rotate(-2deg);
}
.hero__grain { position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px; }
.hero__inner { position: relative; z-index: 2; display: grid; gap: var(--space-3); max-width: 60rem; padding-block: var(--space-5); }

.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .95rem; border-radius: var(--r-full);
  font-size: .85rem; font-weight: 500;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
}
.chip .material-symbols-outlined { font-size: 18px; color: var(--green-300); }
.chip--live { background: rgba(31,168,85,.16); border-color: rgba(45,139,95,.5); }
.chip--live .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d17d; box-shadow: 0 0 0 0 rgba(52,209,125,.7); animation: pulse 2s infinite; }

@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(52,209,125,.6)} 70%{box-shadow:0 0 0 8px rgba(52,209,125,0)} 100%{box-shadow:0 0 0 0 rgba(52,209,125,0)} }

.hero h1 {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-weight: 600; font-size: var(--t-display-lg); line-height: .98; letter-spacing: -.025em;
}
.hero h1 .accent { color: var(--green-300); font-style: italic; }
.hero h1 .brand { display: block; }
.hero h1 .tagline { display: block; font-family: var(--font-body); font-weight: 500;
  font-size: clamp(1.05rem, 2.5vw, 1.85rem); letter-spacing: 0; line-height: 1.25; margin-top: .7rem; color: var(--on-dark); }
.hero__sub { font-size: var(--t-body-lg); color: var(--on-dark-muted); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: .5rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem 2.25rem; margin-top: var(--space-2);
  padding-top: var(--space-3); border-top: 1px solid rgba(255,255,255,.12); }
.hero__meta-item { display: flex; align-items: center; gap: .7rem; }
.hero__meta-item .material-symbols-outlined { color: var(--green-300); font-size: 26px; }
.hero__meta-item b { display: block; font-size: .95rem; }
.hero__meta-item span { font-size: .8rem; color: var(--on-dark-faint); }

.scroll-hint { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.5); animation: bob 2.4s var(--ease-standard) infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* -------------------------------------------------------------------------
   7. Trust bar
   ------------------------------------------------------------------------- */
.trust { background: var(--ink-900); color: var(--on-dark); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.trust__item b { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.3rem); color: #fff; display: block; }
.trust__item span { font-size: .82rem; color: var(--on-dark-muted); letter-spacing: .04em; }
.trust__item + .trust__item { border-left: 1px solid rgba(255,255,255,.1); }

/* -------------------------------------------------------------------------
   8. Sobre / História
   ------------------------------------------------------------------------- */
.about { background: var(--paper); }
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__body p { color: var(--on-surface-muted); font-size: var(--t-body-lg); margin-top: 1rem; }
.about__body p .hl { color: var(--on-surface); font-weight: 600; }
.about__sign { margin-top: 1.75rem; display: flex; align-items: center; gap: .9rem; }
.about__sign img { height: 54px; width: auto; }
.about__sign span { font-size: .9rem; color: var(--on-surface-muted); }

.about__figure { position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--e4);
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(45,139,95,.4), transparent 55%),
    linear-gradient(150deg, var(--green-800), var(--ink-900));
  display: grid; place-items: center; }
.about__figure figcaption { position: absolute; left: 1.1rem; bottom: 1.1rem; right: 1.1rem;
  color: rgba(255,255,255,.8); font-size: .82rem; display: flex; align-items: center; gap: .5rem; }
.img-slot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* -------------------------------------------------------------------------
   9. Diferenciais (feature grid)
   ------------------------------------------------------------------------- */
.features { background: var(--paper-2); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: var(--space-4); }
.feature-card {
  background: var(--surface); border: 1px solid var(--outline); border-radius: var(--r-md);
  padding: 1.75rem; transition: transform .3s var(--ease-emph), box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--e3); border-color: transparent; }
.feature-card__icon {
  width: 56px; height: 56px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: linear-gradient(150deg, var(--green-700), var(--green-900)); color: #eafff3; margin-bottom: 1.1rem;
}
.feature-card__icon .material-symbols-outlined { font-size: 30px; }
.feature-card h3 { font-size: var(--t-title); font-weight: 600; letter-spacing: -.01em; }
.feature-card p { color: var(--on-surface-muted); margin-top: .5rem; font-size: .98rem; }

/* -------------------------------------------------------------------------
   10. Cardápio / Gastronomia
   ------------------------------------------------------------------------- */
.menu { background: var(--ink-950); color: var(--on-dark); position: relative; overflow: hidden; }
.menu::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 85% 0%, rgba(31,107,76,.22), transparent 60%); pointer-events: none; }
.menu .section-title, .menu .center-col { position: relative; z-index: 1; }
.menu .section-lead { color: var(--on-dark-muted); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; margin-top: var(--space-4); position: relative; z-index: 1; }
.menu-cat {
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 1.6rem 1.75rem;
  transition: border-color .3s, background .3s;
}
.menu-cat:hover { border-color: rgba(45,139,95,.5); background: linear-gradient(160deg, rgba(45,139,95,.1), rgba(255,255,255,.02)); }
.menu-cat__head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.menu-cat__head .material-symbols-outlined { color: var(--green-300); font-size: 28px; }
.menu-cat__head h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.45rem; letter-spacing: -.01em; }
.menu-cat ul li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.1); font-size: .98rem; }
.menu-cat ul li:last-child { border-bottom: none; }
.menu-cat ul li span:last-child { color: var(--green-300); font-weight: 600; white-space: nowrap; }
.menu__note { text-align: center; color: var(--on-dark-faint); font-size: .88rem; margin-top: 2rem; position: relative; z-index: 1; }

/* -------------------------------------------------------------------------
   11. Galeria
   ------------------------------------------------------------------------- */
.gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: .9rem; margin-top: var(--space-4); }
.gallery-item { position: relative; border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--e1);
  background: linear-gradient(150deg, var(--green-800), var(--ink-900)); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-emph); }
.gallery-item:hover img { transform: scale(1.06); }

/* -------------------------------------------------------------------------
   12. Localização + Horário
   ------------------------------------------------------------------------- */
.visit { background: var(--paper-2); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.info-card { background: var(--surface); border: 1px solid var(--outline); border-radius: var(--r-md); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--e1); }
.info-row { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--paper-3); }
.info-row:last-of-type { border-bottom: none; }
.info-row .material-symbols-outlined { color: var(--primary); font-size: 26px; flex: none; margin-top: 2px; }
.info-row h3 { font-size: 1rem; font-weight: 600; }
.info-row p { color: var(--on-surface-muted); font-size: .96rem; margin-top: .15rem; }
.info-row a { color: var(--primary); font-weight: 500; }
.info-row a:hover { text-decoration: underline; }

.hours-list { margin-top: .25rem; }
.hours-list li { display: flex; justify-content: space-between; padding: .45rem 0; font-size: .96rem;
  border-bottom: 1px solid var(--paper-3); }
.hours-list li:last-child { border-bottom: none; }
.hours-list li.is-closed { color: var(--on-light-faint); }
.hours-list li b { font-weight: 600; }
.hours-list .badge-open { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 600;
  color: var(--green-700); background: rgba(45,139,95,.12); padding: .15rem .55rem; border-radius: var(--r-full); }

.map-wrap { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--e2); min-height: 340px; height: 100%; border: 1px solid var(--outline); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.25); }

/* -------------------------------------------------------------------------
   13. FAQ
   ------------------------------------------------------------------------- */
.faq { background: var(--paper); }
.faq-list { max-width: 800px; margin: var(--space-4) auto 0; }
.faq-item { border: 1px solid var(--outline); border-radius: var(--r-sm); margin-bottom: .85rem; overflow: hidden; background: var(--surface); transition: box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: var(--e2); border-color: var(--outline-strong); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem; font-weight: 600; font-size: 1.05rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .material-symbols-outlined { color: var(--primary); transition: transform .3s var(--ease-emph); flex: none; }
.faq-item[open] summary .material-symbols-outlined { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.35rem 1.25rem; color: var(--on-surface-muted); font-size: 1rem; }

/* -------------------------------------------------------------------------
   14. CTA final
   ------------------------------------------------------------------------- */
.cta { background: linear-gradient(150deg, var(--green-900), var(--ink-950)); color: #fff; position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 0%, rgba(45,139,95,.25), transparent 60%); }
.cta__inner { position: relative; z-index: 1; text-align: center; }
.cta h2 { font-family: var(--font-display); font-weight: 600; font-size: var(--t-display-md); line-height: 1.02; letter-spacing: -.02em; }
.cta p { color: var(--on-dark-muted); font-size: var(--t-body-lg); max-width: 50ch; margin: 1rem auto 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* -------------------------------------------------------------------------
   15. Footer
   ------------------------------------------------------------------------- */
.footer { background: var(--ink-950); color: var(--on-dark-muted); padding-block: var(--space-5) var(--space-3); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer__brand img { height: 52px; margin-bottom: 1rem; }
.footer__brand p { font-size: .92rem; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul li { margin-bottom: .6rem; }
.footer a { font-size: .95rem; transition: color .2s; }
.footer a:hover { color: var(--green-300); }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; margin-bottom: .8rem; }
.footer__contact .material-symbols-outlined { font-size: 20px; color: var(--green-400); margin-top: 2px; }
.footer__social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer__social a { width: 44px; height: 44px; border-radius: var(--r-full); background: rgba(255,255,255,.06);
  display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer__social a:hover { background: var(--green-700); transform: translateY(-2px); }
.footer__bottom { margin-top: var(--space-4); padding-top: var(--space-3); border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; }
.footer__bottom a:hover { color: var(--green-300); }

/* -------------------------------------------------------------------------
   16. Scroll reveal (progressive, só ativa com JS)
   ------------------------------------------------------------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-emph), transform .7s var(--ease-emph); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

/* =========================================================================
   MATERIAL DESIGN 3 (Material Web): theming da marca + ajustes de componentes
   Tokens do sistema (--md-sys-color-*) recebem a paleta preto/branco/verde.
   ========================================================================= */
:root {
  /* Tipografia Material = Roboto */
  --md-ref-typeface-brand: "Roboto";
  --md-ref-typeface-plain: "Roboto";

  /* Esquema claro (default) */
  --md-sys-color-primary: #17543C;
  --md-sys-color-on-primary: #FFFFFF;
  --md-sys-color-primary-container: #A9F0C8;
  --md-sys-color-on-primary-container: #00210F;
  --md-sys-color-secondary: #4C6357;
  --md-sys-color-on-secondary: #FFFFFF;
  --md-sys-color-secondary-container: #CFE9D8;
  --md-sys-color-on-secondary-container: #0A1F15;
  --md-sys-color-surface: #FFFFFF;
  --md-sys-color-surface-container-lowest: #FFFFFF;
  --md-sys-color-surface-container-low: #F3F6F2;
  --md-sys-color-surface-container: #EDF1EC;
  --md-sys-color-surface-container-high: #E7ECE6;
  --md-sys-color-surface-container-highest: #E1E7E0;
  --md-sys-color-on-surface: #10150F;
  --md-sys-color-on-surface-variant: #48544D;
  --md-sys-color-outline: #C1CAC3;
  --md-sys-color-outline-variant: #DEE5DF;
}

/* Ícones: usar Material Symbols (Google) dentro do <md-icon> */
md-icon {
  font-family: "Material Symbols Outlined";
  --md-icon-font: "Material Symbols Outlined";
}

/* Listas Material transparentes (herdam o fundo do card/seção) */
md-list, md-list-item {
  --md-list-container-color: transparent;
  --md-list-item-container-color: transparent;
}

/* Seções escuras: remapeia os tokens Material para fundo escuro */
.md-dark {
  --md-sys-color-primary: #77C8A0;
  --md-sys-color-on-primary: #06251A;
  --md-sys-color-on-surface: #F3F6F4;
  --md-sys-color-on-surface-variant: #B9C4BD;
  --md-sys-color-outline: rgba(255,255,255,.30);
  --md-sys-color-outline-variant: rgba(255,255,255,.14);
  --md-sys-color-surface-container-lowest: rgba(255,255,255,.03);
  --md-sys-color-surface-container-low: rgba(255,255,255,.045);
  --md-sys-color-surface-container: rgba(255,255,255,.06);
  --md-sys-color-surface-container-high: rgba(255,255,255,.08);
  --md-sys-color-surface-container-highest: rgba(255,255,255,.10);
}

/* --- Botões --- */
.brand-cta { --md-sys-color-primary: #1FA855; --md-sys-color-on-primary: #FFFFFF; }
.on-dark { --md-sys-color-primary: #EAF6EF; --md-sys-color-outline: rgba(255,255,255,.46); }
.btn-xl {
  --md-filled-button-container-height: 56px;
  --md-outlined-button-container-height: 56px;
  --md-filled-button-label-text-size: 1.02rem;
  --md-outlined-button-label-text-size: 1.02rem;
  --md-filled-button-label-text-weight: 600;
  --md-outlined-button-label-text-weight: 600;
}

/* Skip link acessível */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--green-800);
  color: #fff; padding: .7rem 1.1rem; border-radius: var(--r-full); }
.skip-link:focus { left: 1rem; top: 1rem; }
.link-green { color: var(--primary); font-weight: 600; }
.link-green:hover { text-decoration: underline; }

/* --- Nav (md components) --- */
.nav__toggle { --md-sys-color-on-surface-variant: #fff; }
.nav.is-scrolled .nav__toggle { --md-sys-color-on-surface-variant: var(--on-light); }
.nav__drawer .drawer-cta { width: 100%; margin-top: 1.25rem; --md-filled-button-container-height: 52px; }

/* --- Hero (chips + ícones) --- */
.hero__badges { display: block; margin-bottom: .3rem; }
.chip-live { --md-assist-chip-label-text-color: #d6ffe8; --md-assist-chip-icon-color: #34d17d;
  --md-assist-chip-outline-color: rgba(52,209,125,.5); }
.hero__meta-item md-icon { color: var(--green-300); --md-icon-size: 26px; font-size: 26px; }
.scroll-hint md-icon { font-size: 32px; --md-icon-size: 32px; }

/* --- Feature cards (superfície Material elevada) --- */
.feature-card { display: block; padding: 1.75rem; border: 1px solid var(--md-sys-color-outline-variant);
  background: var(--md-sys-color-surface); border-radius: var(--r-md); box-shadow: var(--e1);
  transition: transform .3s var(--ease-emph), box-shadow .3s, border-color .3s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--e3); border-color: transparent; }
.feature-card__icon md-icon { color: #eafff3; --md-icon-size: 30px; font-size: 30px; }

/* --- Cardápio (superfície Material com contorno + md-list) --- */
.menu-cat { display: block; padding: 1.5rem 1.6rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.12);
  transition: border-color .3s, background .3s; }
.menu-cat:hover { border-color: rgba(45,139,95,.5); background: rgba(45,139,95,.08); }
.menu-cat__head md-icon { color: var(--green-300); --md-icon-size: 28px; font-size: 28px; }
.menu-cat md-list-item [slot="trailing-supporting-text"],
.menu-cat [slot="trailing-supporting-text"] { color: var(--green-300); font-weight: 600; }

/* --- Info card / localização (superfície Material elevada) --- */
.info-card { display: block; padding: .5rem .5rem 0; border: 1px solid var(--md-sys-color-outline-variant);
  background: var(--md-sys-color-surface); border-radius: var(--r-md); box-shadow: var(--e2); }
.info-card__cta { padding: 1rem 1rem 1.25rem; }
.info-card__cta .brand-cta { width: 100%; --md-filled-button-container-height: 52px; }
.badge-open { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 700;
  color: #fff; background: var(--green-600); padding: .1rem .5rem; border-radius: var(--r-full); vertical-align: middle; }

/* --- FAQ --- */
.faq-item summary md-icon { color: var(--primary); transition: transform .3s var(--ease-emph); flex: none; }
.faq-item[open] summary md-icon { transform: rotate(45deg); }

/* --- Footer --- */
.footer__contact md-icon { font-size: 20px; --md-icon-size: 20px; color: var(--green-400); margin-top: 2px; }
.footer__social md-icon-button { --md-icon-button-icon-color: #cfe; --md-sys-color-on-surface-variant: #cfe; }
.footer__brand img { height: 52px; margin-bottom: 1rem; }

/* Evita flash antes do Material carregar */
.hero__actions, .nav__cta, .cta__actions { min-height: 1px; }

/* =========================================================================
   EXPERIÊNCIA FOTOGRÁFICA: fotos reais da cozinha e do espaço
   ========================================================================= */
.hero__inner {
  max-width: var(--maxw);
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.hero__content { display: grid; gap: var(--space-3); min-width: 0; }
.hero h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.hero__visual { position: relative; min-height: clamp(520px, 68vh, 650px); isolation: isolate; }
.hero__visual::before {
  content: ""; position: absolute; width: 72%; aspect-ratio: 1; right: -7%; top: 11%; z-index: -1;
  border: 1px solid rgba(119,200,160,.34); border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(119,200,160,.035), 0 0 0 84px rgba(119,200,160,.025);
}
.hero-photo {
  position: absolute; overflow: hidden; margin: 0;
  border: 1px solid rgba(255,255,255,.24); background: var(--ink-900);
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--main { width: 70%; height: 88%; right: 0; top: 3%; z-index: 1; border-radius: 11rem 1.5rem 1.5rem 11rem; }
.hero-photo--main img { object-position: center 68%; }
.hero-photo--top { width: 47%; height: 31%; left: 0; top: 8%; z-index: 2; border-radius: 1.3rem; transform: rotate(-4deg); }
.hero-photo--bottom { width: 49%; height: 32%; left: 1%; bottom: 8%; z-index: 3; border-radius: 1.3rem; transform: rotate(3deg); }
.hero__photo-note {
  position: absolute; right: 2%; bottom: 1%; z-index: 4; display: inline-flex; align-items: center; gap: .45rem;
  color: #fff; background: rgba(8,10,9,.82); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); border-radius: var(--r-full); padding: .6rem .9rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .02em; box-shadow: var(--e3);
}
.hero__photo-note md-icon { color: var(--green-300); font-size: 19px; }

.about__figure::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(4,10,7,.72)); pointer-events: none; }
.about__figure img.about__photo { width: 100%; height: 100%; object-fit: cover; }
.about__figure figcaption { z-index: 1; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.5); }

.feature-card.feature-card--photo { padding: 0; overflow: hidden; }
.feature-card__media { height: 190px; overflow: hidden; background: var(--ink-900); }
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-emph), filter .35s; }
.feature-card--photo:hover .feature-card__media img { transform: scale(1.055); filter: saturate(1.06); }
.feature-card__content { padding: 0 1.5rem 1.55rem; }
.feature-card__content .feature-card__icon {
  position: relative; z-index: 1; margin-top: -28px; margin-bottom: .8rem;
  border: 4px solid var(--surface); box-shadow: var(--e2);
}

.food-showcase {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 150px; grid-auto-flow: dense;
  gap: .75rem; margin-top: var(--space-5); position: relative; z-index: 1;
}
.food-shot { position: relative; overflow: hidden; margin: 0; border-radius: var(--r-sm); background: var(--ink-800); border: 1px solid rgba(255,255,255,.1); }
.food-shot--hero { grid-column: span 2; grid-row: span 2; }
.food-shot--wide { grid-column: span 2; }
.food-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-emph), filter .35s; }
.food-shot::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); pointer-events: none; }
.food-shot figcaption { position: absolute; z-index: 1; left: .85rem; right: .85rem; bottom: .7rem; color: #fff; font-size: .78rem; font-weight: 600; line-height: 1.3; text-shadow: 0 1px 8px rgba(0,0,0,.55); }
.food-shot:hover img { transform: scale(1.06); filter: saturate(1.08); }

.gallery-grid { grid-auto-rows: 190px; grid-auto-flow: dense; }
.gallery-item { margin: 0; }
.gallery-item::after { content: ""; position: absolute; inset: 52% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.72)); pointer-events: none; }
.gallery-item__label { position: absolute; z-index: 1; left: .9rem; right: .9rem; bottom: .75rem; color: #fff; font-size: .78rem; font-weight: 600; line-height: 1.25; text-shadow: 0 1px 8px rgba(0,0,0,.6); }

.cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(8,36,26,.68), rgba(8,10,9,.88)), url("../assets/photos/venue/fachada-jardim.webp") center 54% / cover no-repeat;
  opacity: .72;
}
.cta__inner { z-index: 2; }

/* -------------------------------------------------------------------------
   18. Responsivo
   ------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__figure { aspect-ratio: 16/10; max-height: 420px; order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta .btn span.hide-sm { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__drawer { display: block; }
  .nav__cta .btn--wa { padding: .7rem; min-height: 46px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .trust__item:nth-child(2) { border-left: none; }
  .trust__item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; }
  .trust__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; }
  .hero__meta { gap: 1rem 1.5rem; }
}
@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
}

@media (max-width: 1080px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; padding-block: clamp(7.5rem, 14vw, 9rem) 4rem; }
  .hero__content { max-width: 800px; }
  .hero__visual { width: min(100%, 800px); min-height: 470px; margin-inline: auto; }
  .hero-photo--main { width: 58%; border-radius: 9rem 1.5rem 1.5rem 9rem; }
  .hero-photo--top { width: 49%; }
  .hero-photo--bottom { width: 48%; }
}

@media (max-width: 960px) {
  .food-showcase {
    display: flex; overflow-x: auto; gap: .85rem; margin-inline: calc(clamp(1.15rem, 4vw, 2.5rem) * -1);
    padding-inline: clamp(1.15rem, 4vw, 2.5rem); padding-bottom: .8rem; scroll-snap-type: x mandatory;
    scrollbar-width: thin; scrollbar-color: var(--green-500) rgba(255,255,255,.08);
  }
  .food-shot, .food-shot--hero, .food-shot--wide { flex: 0 0 min(72vw, 340px); height: 255px; scroll-snap-align: start; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__drawer { display: block; }
}

@media (max-width: 600px) {
  .hero__inner { padding-top: 7rem; gap: 1.5rem; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .hero__visual { min-height: 340px; }
  .hero-photo--main { width: 67%; height: 90%; border-radius: 6rem 1rem 1rem 6rem; }
  .hero-photo--top { width: 46%; height: 31%; top: 5%; border-radius: .9rem; }
  .hero-photo--bottom { width: 48%; height: 32%; bottom: 5%; border-radius: .9rem; }
  .hero__photo-note { right: 0; bottom: -2%; font-size: .7rem; padding: .5rem .7rem; }
  .feature-card__media { height: 210px; }
  .gallery-grid { grid-auto-rows: 150px; gap: .55rem; }
  .gallery-item__label { left: .65rem; right: .65rem; bottom: .55rem; font-size: .7rem; }
}

/* =========================================================================
   PÁGINAS DE DESTINO: localização e Instagram
   ========================================================================= */
.subpage-body { background: var(--paper-2); }
.subnav { position: sticky; top: 0; z-index: 100; background: rgba(8,10,9,.96); color: #fff; backdrop-filter: blur(14px); }
.subnav__inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.subnav__brand img { width: 120px; height: auto; }
.subnav__links { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.5rem); font-size: .9rem; font-weight: 600; }
.subnav__links a { color: rgba(255,255,255,.82); }
.subnav__links a:hover, .subnav__links a[aria-current="page"] { color: var(--green-300); }
.subhero { position: relative; isolation: isolate; min-height: 520px; display: grid; align-items: end; color: #fff; overflow: hidden; }
.subhero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,9,7,.96), rgba(5,9,7,.58) 62%, rgba(5,9,7,.32)); }
.subhero__image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.subhero__content { padding-block: clamp(5rem, 10vw, 8rem) clamp(3rem, 7vw, 5rem); max-width: 800px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.25rem; color: rgba(255,255,255,.7); font-size: .86rem; }
.breadcrumbs a:hover { color: var(--green-300); }
.subhero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: .95; letter-spacing: -.04em; text-wrap: balance; }
.subhero p { max-width: 62ch; margin-top: 1.25rem; color: rgba(255,255,255,.82); font-size: clamp(1rem, 2vw, 1.18rem); }
.page-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.page-button { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 52px; padding: .8rem 1.25rem; border-radius: var(--r-full); background: var(--green-500); color: #fff; font-weight: 700; box-shadow: var(--e2); }
.page-button:hover { background: var(--green-600); transform: translateY(-1px); }
.page-button--outline { background: transparent; border: 1px solid rgba(255,255,255,.45); box-shadow: none; }
.page-button--outline:hover { background: rgba(255,255,255,.09); }
.page-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.content-card { background: #fff; border: 1px solid var(--outline); border-radius: var(--r-md); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--e1); }
.content-card h2, .page-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.08; margin-bottom: .8rem; }
.content-card h3 { margin-top: 1.25rem; font-size: 1.05rem; }
.content-card p + p { margin-top: .85rem; }
.detail-list { display: grid; gap: .85rem; margin-top: 1.35rem; }
.detail-list li { display: flex; align-items: flex-start; gap: .75rem; padding-top: .85rem; border-top: 1px solid var(--outline); }
.detail-list .material-symbols-outlined { color: var(--green-600); }
.map-panel { overflow: hidden; border-radius: var(--r-md); min-height: 500px; border: 1px solid var(--outline); box-shadow: var(--e2); background: #fff; }
.map-panel iframe { width: 100%; height: 500px; border: 0; display: block; }
.route-steps { counter-reset: route; display: grid; gap: 1rem; margin-top: 1.3rem; }
.route-steps li { counter-increment: route; position: relative; padding-left: 3.25rem; }
.route-steps li::before { content: counter(route); position: absolute; left: 0; top: -.1rem; width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border-radius: 50%; background: var(--green-800); color: #fff; font-weight: 700; }
.social-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin-top: 2rem; }
.social-gallery figure { position: relative; min-height: 230px; border-radius: var(--r-md); overflow: hidden; background: var(--ink-900); }
.social-gallery figure:nth-child(1), .social-gallery figure:nth-child(6) { grid-column: span 2; }
.social-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease-emph); }
.social-gallery figure:hover img { transform: scale(1.04); }
.subpage-footer { background: var(--ink-950); color: var(--on-dark-muted); padding-block: 2.3rem; }
.subpage-footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; }
.subpage-footer a { color: var(--green-300); }
.route-fab {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: max(1rem, env(safe-area-inset-bottom)); z-index: 90;
  display: inline-flex; align-items: center; gap: .55rem; min-height: 54px; padding: .8rem 1.15rem;
  border-radius: var(--r-full); background: var(--green-500); color: #fff; font-weight: 700;
  box-shadow: 0 14px 34px rgba(8,36,26,.35); transition: transform .2s var(--ease-emph), background .2s;
}
.route-fab:hover { background: var(--green-600); transform: translateY(-2px); }
.route-fab md-icon { font-size: 23px; }

@media (max-width: 820px) {
  .subnav__links a:not([aria-current="page"]):not(.subnav__home) { display: none; }
  .page-grid { grid-template-columns: 1fr; }
  .social-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .subhero { min-height: 470px; }
  .subhero h1 { font-size: clamp(2.6rem, 14vw, 4.2rem); }
  .page-actions .page-button { width: 100%; }
  .social-gallery figure { min-height: 180px; }
  .route-fab { min-height: 50px; padding: .7rem 1rem; font-size: .9rem; }
}

/* =========================================================================
   NOVA NARRATIVA: o espaço como protagonista, a comida em galeria própria
   ========================================================================= */
.hero {
  display: block; min-height: 100svh; padding-top: var(--nav-h);
  background: var(--ink-950); isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,9,7,.94) 0%, rgba(5,9,7,.83) 38%, rgba(5,9,7,.32) 72%, rgba(5,9,7,.18) 100%),
    linear-gradient(0deg, rgba(5,9,7,.9) 0%, transparent 42%);
}
.hero__backdrop { position: absolute; inset: 0; z-index: 0; }
.hero__backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: saturate(.9) contrast(1.03); }
.hero__grain { z-index: 1; }
.hero__inner {
  position: relative; z-index: 2; min-height: calc(100svh - 250px); max-width: var(--maxw);
  display: flex; align-items: center; padding-block: clamp(4rem, 9vh, 7rem) 3rem;
}
.hero__content { max-width: 780px; display: grid; gap: var(--space-3); }
.hero h1 { font-size: initial; line-height: 1; }
.hero__kicker {
  display: block; margin-bottom: .65rem; font-family: var(--font-body); font-size: .82rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green-300);
}
.hero__headline {
  display: block; font-family: var(--font-display); font-size: clamp(3.15rem, 7vw, 6.25rem);
  font-weight: 600; line-height: .92; letter-spacing: -.045em; text-wrap: balance;
  text-shadow: 0 4px 32px rgba(0,0,0,.42);
}
.hero__sub { max-width: 58ch; color: rgba(255,255,255,.82); text-shadow: 0 2px 18px rgba(0,0,0,.48); }
.hero__meta { border-color: rgba(255,255,255,.24); }
.hero__meta-item span { color: rgba(255,255,255,.62); }
.hero__space-rail {
  position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem;
  padding-bottom: 1.4rem;
}
.hero__space-rail figure {
  position: relative; height: 116px; overflow: hidden; margin: 0; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.2); background: rgba(8,10,9,.7); box-shadow: 0 14px 34px rgba(0,0,0,.25);
}
.hero__space-rail figure::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.hero__space-rail img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease-emph); }
.hero__space-rail figure:hover img { transform: scale(1.06); }
.hero__space-rail figcaption { position: absolute; z-index: 1; left: .75rem; bottom: .55rem; color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .04em; }
.scroll-hint { display: none; }

.about__statement {
  margin-top: 1.5rem; padding: 1.2rem 1.35rem; border-left: 4px solid var(--green-500);
  background: var(--paper-2); color: var(--green-900); font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 1.65rem); font-weight: 550; line-height: 1.25;
}
.about__visual { position: relative; min-height: 620px; }
.about__photo { position: absolute; overflow: hidden; margin: 0; border-radius: var(--r-md); box-shadow: var(--e4); background: var(--ink-900); }
.about__photo::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.76)); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo figcaption { position: absolute; z-index: 1; left: .85rem; bottom: .65rem; color: #fff; font-size: .76rem; font-weight: 700; }
.about__photo--main { width: 78%; height: 75%; left: 0; top: 0; border-radius: var(--r-xl) var(--r-md) var(--r-md) var(--r-md); }
.about__photo--side { width: 58%; height: 38%; right: 0; bottom: 0; border: 6px solid #fff; }
.about__photo--detail { width: 42%; height: 31%; right: -3%; top: 8%; border: 6px solid #fff; transform: rotate(2deg); }

.space-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: var(--space-5); }
.space-heading > div { max-width: 620px; }
.space-heading .section-lead { max-width: 48ch; padding-bottom: .5rem; }
.space-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; grid-auto-flow: dense; gap: .9rem; }
.space-card {
  position: relative; grid-column: span 4; overflow: hidden; min-height: 0; border-radius: var(--r-md);
  background: var(--ink-900); box-shadow: var(--e2); isolation: isolate;
}
.space-card--lead { grid-column: span 8; grid-row: span 2; }
.space-card--tall { grid-column: span 4; grid-row: span 2; }
.space-card--wide { grid-column: span 8; }
.space-card::after { content: ""; position: absolute; inset: 28% 0 0; z-index: 0; background: linear-gradient(transparent, rgba(0,0,0,.9)); }
.space-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-emph), filter .35s; }
.space-card:hover img { transform: scale(1.045); filter: saturate(1.06); }
.space-card__copy { position: absolute; z-index: 1; left: 1.2rem; right: 1.2rem; bottom: 1.05rem; color: #fff; }
.space-card__copy md-icon { float: right; color: var(--green-300); font-size: 28px; }
.space-card__copy > span { display: block; margin-bottom: .25rem; color: var(--green-300); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.space-card__copy h3 { max-width: 24ch; font-family: var(--font-display); font-size: clamp(1.25rem, 2.1vw, 1.75rem); line-height: 1.08; }
.space-card__copy p { max-width: 42ch; margin-top: .38rem; color: rgba(255,255,255,.72); font-size: .82rem; line-height: 1.4; }

.menu-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.6rem; position: relative; z-index: 1; }
.menu-highlights span { padding: .48rem .85rem; border: 1px solid rgba(119,200,160,.38); border-radius: var(--r-full); color: var(--green-300); background: rgba(119,200,160,.06); font-size: .78rem; font-weight: 700; }
.menu-feast {
  position: relative; overflow: hidden; min-height: clamp(300px, 42vw, 520px); margin: var(--space-5) 0 0;
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-xl) var(--r-md) var(--r-md) var(--r-md); background: var(--ink-900);
}
.menu-feast::after { content: ""; position: absolute; inset: 24% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.92)); }
.menu-feast img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; transition: transform .7s var(--ease-emph); }
.menu-feast:hover img { transform: scale(1.025); }
.menu-feast figcaption { position: absolute; z-index: 1; left: clamp(1.25rem, 4vw, 3.2rem); right: 1.25rem; bottom: clamp(1.25rem, 4vw, 2.8rem); color: #fff; }
.menu-feast figcaption span { display: block; margin-bottom: .4rem; color: var(--green-300); font-size: .7rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.menu-feast figcaption strong { display: block; max-width: 20ch; font-family: var(--font-display); font-size: clamp(1.65rem, 4vw, 3.5rem); font-weight: 520; line-height: .98; }
.dish-family-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; grid-auto-flow: dense;
  gap: .75rem; margin-top: var(--space-5); position: relative; z-index: 1;
}
.dish-family { position: relative; overflow: hidden; margin: 0; border-radius: var(--r-sm); background: var(--ink-800); border: 1px solid rgba(255,255,255,.1); }
.dish-family--lead { grid-column: span 2; grid-row: span 2; }
.dish-family--wide { grid-column: span 2; }
.dish-family::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.88)); }
.dish-family img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-emph); }
.dish-family:hover img { transform: scale(1.05); }
.dish-family figcaption { position: absolute; z-index: 1; left: 1rem; right: 1rem; bottom: .85rem; color: #fff; line-height: 1.25; }
.dish-family figcaption span { display: block; margin-bottom: .2rem; color: var(--green-300); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.dish-family figcaption strong { display: block; max-width: 28ch; font-family: var(--font-display); font-size: clamp(1rem, 1.7vw, 1.35rem); font-weight: 550; }

.dish-carousel { margin-top: clamp(2.5rem, 5vw, 4.5rem); position: relative; z-index: 1; }
.dish-carousel__head { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.25rem; }
.dish-carousel__head h3 { margin-top: .25rem; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 550; line-height: 1; }
.dish-carousel__controls { display: flex; align-items: center; gap: .65rem; }
.dish-carousel__controls button {
  width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; transition: background .2s, border-color .2s, transform .2s;
}
.dish-carousel__controls button:hover { background: var(--green-700); border-color: var(--green-500); transform: translateY(-2px); }
.dish-carousel__controls span { min-width: 64px; text-align: center; color: var(--on-dark-muted); font-size: .78rem; font-variant-numeric: tabular-nums; }
.dish-carousel__viewport { overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; border-radius: var(--r-md); }
.dish-carousel__viewport::-webkit-scrollbar { display: none; }
.dish-carousel__track { display: flex; gap: .9rem; width: max-content; }
.dish-slide { flex: 0 0 clamp(245px, 28vw, 360px); scroll-snap-align: start; margin: 0; }
.dish-slide__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-sm); background: var(--ink-800); border: 1px solid rgba(255,255,255,.1); }
.dish-slide__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease-emph); }
.dish-slide:hover img { transform: scale(1.04); }
.dish-slide figcaption { display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .65rem .2rem 0; color: var(--on-dark-muted); font-size: .75rem; }
.dish-slide figcaption strong { color: #fff; font-weight: 600; }
.dish-carousel__hint { display: flex; align-items: center; gap: .4rem; margin-top: .9rem; color: var(--on-dark-faint); font-size: .76rem; }
.dish-carousel__hint md-icon { font-size: 18px; }
.dish-carousel__noscript { padding: 1rem; color: var(--on-dark-muted); }
.menu-grid { margin-top: var(--space-5); }

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero__inner { min-height: 720px; padding-block: 6rem 3rem; }
  .hero__space-rail { overflow-x: auto; grid-template-columns: repeat(4, minmax(210px, 1fr)); padding-bottom: 1rem; scroll-snap-type: x mandatory; }
  .hero__space-rail figure { scroll-snap-align: start; }
  .about__visual { min-height: 540px; order: -1; }
  .space-heading { align-items: start; flex-direction: column; gap: .5rem; }
  .space-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .space-card, .space-card--lead, .space-card--tall, .space-card--wide { grid-column: span 1; grid-row: span 1; }
  .space-card--lead, .space-card--wide { grid-column: span 2; }
  .dish-family-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding-top: var(--nav-h); }
  .hero::before { background: linear-gradient(0deg, rgba(5,9,7,.96) 0%, rgba(5,9,7,.72) 65%, rgba(5,9,7,.32) 100%); }
  .hero__backdrop img { object-position: 63% center; }
  .hero__inner { min-height: 690px; align-items: end; padding-block: 5rem 2rem; }
  .hero__headline { font-size: clamp(2.85rem, 14vw, 4.25rem); }
  .hero__sub { font-size: 1rem; }
  .hero__meta { display: grid; grid-template-columns: 1fr; gap: .8rem; }
  .hero__space-rail { grid-template-columns: repeat(4, 180px); margin-inline: 0; }
  .hero__space-rail figure { height: 104px; }
  .about__visual { min-height: 410px; }
  .about__photo--main { width: 88%; height: 72%; }
  .about__photo--side { width: 64%; height: 37%; }
  .about__photo--detail { width: 44%; height: 29%; right: -1%; }
  .space-grid { grid-template-columns: 1fr; grid-auto-rows: 255px; }
  .space-card, .space-card--lead, .space-card--tall, .space-card--wide { grid-column: span 1; }
  .dish-family-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .dish-family--lead { grid-column: span 2; grid-row: span 2; }
  .dish-family--wide { grid-column: span 2; }
  .dish-family figcaption strong { font-size: .95rem; }
  .dish-carousel__head { align-items: start; flex-direction: column; }
  .dish-slide { flex-basis: min(82vw, 320px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   JANELA DO INSTAGRAM NA HERO
   ========================================================================= */
.hero__inner { justify-content: space-between; gap: clamp(2rem, 4vw, 4.25rem); }
.hero__content { flex: 1 1 650px; min-width: 0; }
.hero__instagram {
  position: relative; flex: 0 0 clamp(320px, 29vw, 370px); width: clamp(320px, 29vw, 370px);
  overflow: hidden; border: 1px solid rgba(255,255,255,.25); border-radius: 30px 12px 30px 12px;
  background: rgba(8,10,9,.88); box-shadow: 0 28px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(18px); transform: rotate(.7deg);
}
.instagram-window__head { display: flex; align-items: center; gap: .75rem; padding: .85rem .9rem; }
.instagram-window__avatar {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center; padding: 3px;
  border-radius: 50%; background: conic-gradient(#f9ce34, #ee2a7b, #6228d7, #f9ce34);
}
.instagram-window__avatar img { width: 100%; height: 100%; object-fit: contain; border: 3px solid var(--ink-950); border-radius: 50%; background: #fff; }
.instagram-window__head > div { min-width: 0; display: grid; line-height: 1.25; }
.instagram-window__head strong { overflow: hidden; color: #fff; font-size: .88rem; text-overflow: ellipsis; white-space: nowrap; }
.instagram-window__head span { color: rgba(255,255,255,.58); font-size: .72rem; }
.instagram-window__head > a { width: 40px; height: 40px; display: grid; place-items: center; margin-left: auto; border-radius: 50%; color: var(--green-300); }
.instagram-window__head > a:hover { background: rgba(119,200,160,.12); }
.instagram-window__body { overflow: hidden; border-block: 1px solid rgba(255,255,255,.12); background: #000; }
.instagram-window__body--video { position: relative; aspect-ratio: 9 / 16; }
.instagram-window__video {
  display: block; width: 100%; height: 100%; object-fit: contain; background: #000;
}
.instagram-window__play {
  position: absolute; inset: 50% auto auto 50%; display: flex; align-items: center; gap: .5rem;
  min-height: 52px; padding: .65rem 1.05rem .65rem .7rem; border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px; color: #fff; background: rgba(8,10,9,.82); box-shadow: 0 12px 32px rgba(0,0,0,.4);
  font: inherit; font-size: .84rem; font-weight: 800; cursor: pointer; transform: translate(-50%, -50%);
  backdrop-filter: blur(10px); transition: transform .2s ease, background-color .2s ease;
}
.instagram-window__play:hover { background: rgba(49,150,100,.92); transform: translate(-50%, -50%) scale(1.04); }
.instagram-window__play:focus-visible { outline: 3px solid var(--green-300); outline-offset: 4px; }
.instagram-window__play md-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--green-950); background: #fff; }
.instagram-window__play[hidden] { display: none; }
.instagram-window__story-link {
  display: flex; align-items: center; justify-content: center; gap: .55rem; min-height: 52px; padding: .75rem 1rem;
  color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .02em;
}
.instagram-window__story-link:hover { background: rgba(119,200,160,.1); }
.instagram-window__story-link md-icon { color: var(--green-300); font-size: 19px; }
.instagram-window__pulse { width: 9px; height: 9px; border-radius: 50%; background: #39d98a; box-shadow: 0 0 0 0 rgba(57,217,138,.5); animation: story-pulse 2s infinite; }
@keyframes story-pulse { 70% { box-shadow: 0 0 0 8px rgba(57,217,138,0); } 100% { box-shadow: 0 0 0 0 rgba(57,217,138,0); } }

@media (max-width: 960px) {
  .hero__inner { min-height: auto; flex-direction: column; align-items: stretch; padding-bottom: 3.5rem; }
  .hero__content { flex: none; max-width: 800px; }
  .hero__instagram { flex: none; width: min(100%, 430px); margin-inline: auto; transform: none; }
}

@media (max-width: 600px) {
  .hero__inner { min-height: auto; align-items: stretch; padding-block: 4.5rem 2.5rem; }
  .hero__instagram { width: 100%; border-radius: 24px 10px 24px 10px; }
}
