/* ============ TOKENS ============ */
:root {
  --bg: #130F0C;
  --bg-2: #1A1511;
  --surface: #211A15;
  --surface-2: #2A211A;
  --surface-3: #33281F;
  --border: #372B21;
  --border-soft: #2C2219;
  --gold: #C9A45C;
  --gold-light: #E3C77E;
  --gold-dim: rgba(201, 164, 92, 0.14);
  --wine: #9B3A3A;
  --text: #F4ECDD;
  --text-2: #E4D8C4;
  --muted: #A2937C;
  --muted-2: #786A57;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --space-1: 8px;  --space-2: 16px; --space-3: 24px;
  --space-4: 32px; --space-5: 48px; --space-6: 64px;
  --space-7: 96px; --space-8: 128px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-nav: 100; --z-menu: 200;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--gold); color: var(--bg); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--bg); padding: 12px 20px; z-index: 1000; font-weight: 700; }
.skip-link:focus { left: 0; }

.container { width: min(1180px, 100% - 48px); margin-inline: auto; }
@media (max-width: 640px) { .container { width: min(1180px, 100% - 36px); } }

.kicker {
  display: inline-flex; align-items: center; gap: 13px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gold);
}
.kicker::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.kicker.centered { justify-content: center; }
.kicker.centered::after { content: ""; width: 30px; height: 1px; background: var(--gold); }

.section-title {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 56px);
  font-weight: 400; line-height: 1.12; letter-spacing: 0.01em; margin-top: var(--space-3); color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: var(--muted); max-width: 60ch; margin-top: var(--space-2); font-size: 16.5px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 30px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px; position: relative; overflow: hidden;
  transition: transform 180ms var(--ease), background 220ms var(--ease),
              color 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn-gold { background: var(--gold); color: #17120D; box-shadow: 0 12px 30px rgba(201, 164, 92, 0.24); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(201, 164, 92, 0.34); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-whats { background: #1FAF5A; color: #fff; box-shadow: 0 12px 30px rgba(31, 175, 90, 0.28); }
.btn-whats:hover { background: #189C4E; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(31, 175, 90, 0.36); }
.btn-sm { min-height: 44px; padding: 11px 22px; font-size: 12px; letter-spacing: 0.14em; }

.menu-toggle { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; }

/* ============ TOPBAR ============ */
.topbar { background: #0D0A08; color: #B6A88F; font-size: 13px; border-bottom: 1px solid var(--border-soft); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); min-height: 42px; }
.topbar-list { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; align-items: center; }
.topbar-list li { display: flex; align-items: center; gap: 8px; }
.topbar-list svg { color: var(--gold); flex-shrink: 0; }
.open-pill { display: inline-flex; align-items: center; gap: 7px; color: #CFE0C4; font-weight: 500; }
.open-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #7FC98A; box-shadow: 0 0 0 0 rgba(127,201,138,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(127,201,138,0.5); } 70% { box-shadow: 0 0 0 8px rgba(127,201,138,0); } 100% { box-shadow: 0 0 0 0 rgba(127,201,138,0); } }
@media (max-width: 820px) { .topbar { display: none; } }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(19, 15, 12, 0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms var(--ease), padding 250ms var(--ease), background 250ms var(--ease);
  padding: 16px 0;
}
.nav.scrolled { border-bottom-color: var(--border); padding: 10px 0; background: rgba(19, 15, 12, 0.94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.logo { display: flex; align-items: center; gap: 13px; }
.logo-img { height: 52px; width: auto; display: block; transition: transform 300ms var(--ease); }
.logo:hover .logo-img { transform: scale(1.04); }
.nav.scrolled .logo-img { height: 46px; }
footer .logo-img { height: 46px; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--gold); color: transparent; font-size: 0;
  background: url("images/mark.svg") center / 60% no-repeat;
  display: flex; align-items: center; justify-content: center;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.05); box-shadow: 0 0 0 4px var(--gold-dim); }
.logo-name { font-family: var(--font-display); font-size: 25px; font-weight: 500; line-height: 1; letter-spacing: 0.04em; }
.logo-name small { display: block; font-family: var(--font-body); font-size: 9.5px; font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 180ms var(--ease); position: relative; padding: 6px 0;
}
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 250ms var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--gold-light); }

.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: rgba(13, 10, 8, 0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity 250ms var(--ease), visibility 250ms;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 34px; padding: 10px 24px; color: var(--text-2); transition: color 180ms; }
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { color: var(--gold); }
.mobile-menu .close-btn { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: calc(100dvh - 42px);
  display: flex; align-items: center; padding: 70px 0;
  background:
    radial-gradient(ellipse 55% 65% at 78% 42%, rgba(201, 164, 92, 0.14), transparent 60%),
    radial-gradient(circle at 50% 120%, rgba(155, 58, 58, 0.12), transparent 55%),
    var(--bg);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: center; position: relative; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); }
.hero-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(46px, 6.6vw, 88px); line-height: 1.04;
  letter-spacing: 0.02em; text-transform: uppercase; margin-top: var(--space-3);
  color: var(--gold-light);
}
.hero h1 .thin { color: var(--text); }
.hero p.lead { color: var(--muted); font-size: 18px; max-width: 42ch; margin-top: var(--space-4); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: var(--space-5); color: var(--muted); font-size: 14px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { fill: currentColor; }
.hero-proof strong { color: var(--text); font-weight: 700; }
.proof-divider { width: 1px; height: 18px; background: var(--border); }

.hero-scene { position: relative; display: flex; align-items: center; justify-content: center; min-height: 460px; }
.scene-glow { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(201,164,92,0.22), transparent 68%); filter: blur(6px); }
.plate {
  position: relative; width: min(440px, 92%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 42% 36%, #2A2119, #17110C 72%);
  box-shadow: var(--shadow), inset 0 2px 20px rgba(0,0,0,0.6), inset 0 -8px 30px rgba(201,164,92,0.06);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #3A2E22;
}
.plate::before { content: ""; position: absolute; inset: 7%; border-radius: 50%; border: 1px solid rgba(201,164,92,0.22); }
.plate::after { content: ""; position: absolute; inset: 13%; border-radius: 50%; box-shadow: inset 0 0 40px rgba(0,0,0,0.5); }
.plate svg { width: 56%; position: relative; z-index: 2; }
.season { position: absolute; top: -6%; left: 50%; width: 130px; height: 60%; transform: translateX(-50%); pointer-events: none; z-index: 3; }
.season i { position: absolute; top: 0; width: 2px; height: 2px; border-radius: 50%; background: var(--gold-light); opacity: 0; animation: fall 2.6s linear infinite; }
@keyframes fall {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: 0.9; }
  80% { opacity: 0.7; }
  100% { transform: translateY(220px) scale(0.6); opacity: 0; }
}
.hand-hint { position: absolute; top: -2%; left: 50%; transform: translateX(-50%); color: var(--muted-2); }
.scene-tag {
  position: absolute; bottom: 4%; right: 2%;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow); animation: floaty 5.5s ease-in-out infinite;
}
.scene-tag .ic { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: var(--gold-dim); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.scene-tag strong { display: block; font-size: 14px; }
.scene-tag span { color: var(--muted); font-size: 12.5px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ============ HERO COM FOTO/VÍDEO DE FUNDO ============ */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: radial-gradient(ellipse 70% 70% at 70% 40%, #2A2018, #120D0A 75%); }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 900ms var(--ease); }
.hero-media img.loaded, .hero-media video.loaded { opacity: 1; }
.hero-media img { animation: kenburns 24s ease-in-out infinite alternate; transform-origin: center; }
@keyframes kenburns { 0% { transform: scale(1.06) translate(0, 0); } 100% { transform: scale(1.18) translate(-2%, -2%); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,9,7,0.94) 0%, rgba(12,9,7,0.78) 42%, rgba(12,9,7,0.35) 100%),
    linear-gradient(to top, rgba(12,9,7,0.85), transparent 45%);
}
.hero--photo { min-height: calc(100dvh - 42px); display: flex; align-items: center; padding: 90px 0; position: relative; }
.hero--photo .container { position: relative; z-index: 1; }
.hero--photo .hero-copy { max-width: 620px; }
@media (prefers-reduced-motion: reduce) { .hero-media img { animation: none; } }

/* ============ FOTOS EM CARDS (com fallback) ============ */
.photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.has-photo { background: radial-gradient(ellipse 80% 60% at 50% 30%, #2C2219, #140F0B 78%); }
/* quando há foto real, esconde as ilustrações SVG decorativas de fallback */
.daily.has-photo .daily-art,
.about-frame.has-photo > svg,
.exp-card.has-photo .art { display: none; }

/* ============ INTERIOR PAGE HEADER ============ */
.page-hero {
  position: relative; padding: 120px 0 72px; text-align: center; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,164,92,0.14), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 72px); line-height: 1.06; text-transform: uppercase; letter-spacing: 0.02em; color: var(--gold-light); margin-top: var(--space-3); }
.page-hero h1 .thin { color: var(--text); }
.page-hero p { color: var(--muted); max-width: 56ch; margin: var(--space-3) auto 0; font-size: 17px; }
.page-hero .kicker { justify-content: center; }
.page-hero .kicker::after { content: ""; width: 30px; height: 1px; background: var(--gold); }

/* ============ SECTIONS ============ */
section { padding: var(--space-8) 0; position: relative; }
@media (max-width: 768px) { section { padding: var(--space-7) 0; } }
.section-tight { padding: var(--space-7) 0; }

/* ============ HOME TEASER ============ */
.teaser-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-6); }

/* ============ MENU SECTION ============ */
.menu-sec { background: var(--bg-2); border-block: 1px solid var(--border-soft); }
.menu-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: var(--space-6); align-items: center; }
.daily {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px;
  background: radial-gradient(ellipse 80% 60% at 50% 25%, #2C2219, #140F0B 75%);
  border: 1px solid var(--border);
  display: flex; align-items: flex-end; padding: 34px;
  box-shadow: var(--shadow);
}
.daily .daily-art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.daily .daily-art svg { width: 62%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }
.daily::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,11,8,0.95) 8%, rgba(15,11,8,0.15) 55%, transparent); }
.daily .daily-body { position: relative; z-index: 2; }
.daily .daily-kicker { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.daily h3 { font-family: var(--font-display); font-size: 34px; font-weight: 500; margin-top: 8px; letter-spacing: 0.02em; }
.daily p { color: var(--muted); font-size: 14.5px; margin-top: 8px; max-width: 38ch; }

.menu-panel .menu-head { display: flex; flex-direction: column; align-items: flex-start; }
.menu-emblem { display: flex; align-items: center; gap: 16px; margin-top: var(--space-3); width: 100%; }
.menu-emblem .line { flex: 1; height: 1px; background: var(--border); }
.menu-emblem .word { font-family: var(--font-display); font-size: clamp(38px, 5vw, 56px); letter-spacing: 0.14em; color: var(--text); }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-4); background: var(--surface); border: 1px solid var(--border-soft); border-radius: 999px; padding: 6px; }
.menu-tab {
  flex: 1; min-width: 90px; padding: 10px 14px; border-radius: 999px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 200ms var(--ease), background 200ms var(--ease); white-space: nowrap;
}
.menu-tab[aria-selected="true"] { background: var(--gold); color: #17120D; }
.menu-tab:hover:not([aria-selected="true"]) { color: var(--text); }
.menu-list { margin-top: var(--space-4); }
.menu-panel-items { display: none; }
.menu-panel-items.active { display: block; animation: fadeIn 400ms var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.m-item { display: flex; align-items: baseline; gap: 12px; padding: 15px 2px; }
.m-item + .m-item { border-top: 1px solid var(--border-soft); }
.m-item .m-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; white-space: nowrap; }
.m-item .m-desc { display: block; font-family: var(--font-body); font-size: 13px; color: var(--muted); margin-top: 2px; font-weight: 400; }
.m-item .dots { flex: 1; border-bottom: 1px dotted var(--muted-2); transform: translateY(-5px); min-width: 20px; }
.m-item .m-price { font-family: var(--font-display); font-size: 20px; color: var(--gold); font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-cta-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-4); flex-wrap: wrap; }
.menu-cta-row .note { font-size: 12px; color: var(--muted-2); }
.menu-request-text { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin-top: var(--space-4); max-width: 48ch; }
.menu-request-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }

/* ============ EXPERIENCE ============ */
.exp-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-3); align-items: stretch; }
.exp-copy {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 44px 40px; display: flex; flex-direction: column; justify-content: center;
}
.exp-copy h2 { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 42px); font-weight: 500; line-height: 1.14; }
.exp-copy h2 em { font-style: italic; color: var(--gold); }
.exp-copy .check-list { list-style: none; margin-top: var(--space-4); display: grid; gap: 14px; }
.exp-copy .check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-2); }
.exp-copy .check-list svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.exp-copy .btn { margin-top: var(--space-5); align-self: flex-start; }
.exp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.exp-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 260px;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #2C2219, #140F0B 78%);
  border: 1px solid var(--border);
  display: flex; align-items: flex-end; padding: 24px;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.exp-card .art { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: transform 480ms var(--ease); }
.exp-card:hover .art { transform: scale(1.08); }
.exp-card .art svg { width: 56%; }
.exp-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,11,8,0.94) 10%, rgba(15,11,8,0.1) 60%, transparent); }
.exp-card .body { position: relative; z-index: 2; }
.exp-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.exp-card p { color: var(--muted); font-size: 13px; margin-top: 4px; }
.exp-card .btn { margin-top: 14px; }

/* ============ SOBRE ============ */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-7); align-items: center; }
.about-visual { position: relative; }
.about-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  background: radial-gradient(ellipse 80% 60% at 50% 25%, #2C2219, #120D0A 78%);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.about-frame svg { width: 48%; color: var(--gold); }
.about-seal {
  position: absolute; bottom: -20px; right: 6%;
  width: 118px; height: 118px; border-radius: 50%;
  background: var(--wine); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); transform: rotate(-8deg); box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.about-seal .big { font-size: 30px; font-weight: 500; line-height: 1; }
.about-seal .small { font-size: 10px; font-family: var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 5px; opacity: 0.9; padding: 0 12px; }
.about-copy p { color: var(--muted); margin-top: var(--space-3); }
.about-copy p strong { color: var(--text); font-weight: 600; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: var(--space-5); }
.about-stats .st { background: var(--surface); padding: 22px 16px; text-align: center; }
.about-stats .v { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 500; color: var(--gold); line-height: 1; }
.about-stats .l { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 7px; }

/* ============ AVALIAÇÕES ============ */
.reviews { background: var(--bg-2); }
.rating-summary { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: var(--space-4); flex-wrap: wrap; }
.rating-num { font-family: var(--font-display); font-size: 74px; font-weight: 500; line-height: 1; color: var(--gold); }
.rating-meta { text-align: left; }
.rating-meta .stars svg { width: 20px; height: 20px; }
.rating-meta p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-top: var(--space-6); }
.t-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; text-align: left;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}
.t-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.t-card .t-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.t-card .t-stars svg { fill: currentColor; }
.t-card p { font-family: var(--font-serif); font-size: 18px; line-height: 1.6; font-style: italic; flex: 1; color: var(--text-2); }
.t-author { display: flex; align-items: center; gap: 13px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: var(--gold-dim); color: var(--gold); font-family: var(--font-display); font-weight: 500; font-size: 19px; display: flex; align-items: center; justify-content: center; }
.t-author .who strong { display: block; font-size: 14.5px; font-weight: 600; }
.t-author .who span { font-size: 12.5px; color: var(--muted); }
.g-note { text-align: center; color: var(--muted-2); font-size: 13.5px; margin-top: var(--space-5); }
.g-note a { color: var(--gold); font-weight: 600; }
.g-note a:hover { text-decoration: underline; }

/* ============ VISITA ============ */
.info-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-7); align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: var(--space-4); }
.hours-table td { padding: 14px 4px; border-bottom: 1px solid var(--border-soft); font-size: 15px; color: var(--muted); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--text); font-weight: 500; }
.hours-table tr.closed td:last-child { color: var(--muted-2); font-style: italic; font-weight: 400; }
.hours-table tr.today td { color: var(--gold-light); font-weight: 700; }
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-4); }
.service-tags span { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--text-2); }
.service-tags svg { color: var(--gold); }

.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-item { display: flex; gap: 17px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border-soft); }
.contact-item:last-of-type { border-bottom: none; }
.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 14.5px; font-weight: 600; }
.contact-item span, .contact-item a.plain { font-size: 14.5px; color: var(--muted); }
.contact-item a.plain:hover { color: var(--gold-light); }
.contact-card .btn { width: 100%; margin-top: var(--space-3); }
.contact-card .btn + .btn { margin-top: 12px; }

/* ============ CTA FINAL ============ */
.cta-final { padding: 0 0 var(--space-8); }
.cta-box {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(201,164,92,0.16), transparent 60%),
    linear-gradient(160deg, #241C15, #140F0B);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(52px, 8vw, 96px) var(--space-4);
}
.cta-box h2 { position: relative; font-family: var(--font-display); font-size: clamp(36px, 6vw, 66px); font-weight: 400; line-height: 1.08; max-width: 18ch; margin: var(--space-2) auto 0; text-transform: uppercase; letter-spacing: 0.02em; color: var(--gold-light); }
.cta-box h2 .thin { color: var(--text); }
.cta-box p { position: relative; color: var(--muted); margin: var(--space-3) auto 0; max-width: 50ch; }
.cta-box .cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-top: var(--space-5); }

/* ============ FOOTER ============ */
footer { border-top: 1px solid var(--border); padding: var(--space-7) 0 var(--space-4); background: #0D0A08; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-5); }
.footer-brand .logo { margin-bottom: var(--space-3); }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--space-3); }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 14.5px; transition: color 160ms var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-2); margin-top: var(--space-6); padding-top: var(--space-4); border-top: 1px solid var(--border-soft); }
.footer-bottom .fine { color: var(--muted-2); font-size: 13px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: color 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease); }
.footer-socials a:hover { color: var(--bg); background: var(--gold); border-color: var(--gold); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: var(--z-nav);
  display: inline-flex; align-items: center; gap: 10px;
  background: #1FAF5A; color: #fff;
  padding: 14px 22px 14px 18px; border-radius: 999px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(31, 175, 90, 0.4);
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.wa-float:hover { transform: scale(1.05); background: #189C4E; }
@media (max-width: 500px) { .wa-float span { display: none; } .wa-float { padding: 16px; border-radius: 50%; } }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 90ms; }
.reveal-d2 { transition-delay: 180ms; }
.reveal-d3 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-scene { order: -1; min-height: 340px; }
  .plate { width: min(320px, 74%); }
  .menu-layout { grid-template-columns: 1fr; gap: var(--space-5); }
  .daily { min-height: 340px; }
  .exp-grid { grid-template-columns: 1fr; }
  .about-grid, .info-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .teaser-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-4); }
}
@media (max-width: 860px) {
  .nav-links, .nav .nav-inner > .btn-whats { display: none; }
  .menu-toggle { display: flex; }
}
@media (max-width: 640px) {
  .hero { padding: 50px 0; }
  .hero-ctas .btn { width: 100%; }
  .exp-cards { grid-template-columns: 1fr; }
  .cta-actions .btn { width: 100%; }
  .about-seal { width: 96px; height: 96px; }
  .footer-top { grid-template-columns: 1fr; }
}
