/* =====================================================================
   RESTAURANTE PERFIL FLUTUANTE — "Golden hour no Tocantins"
   Design cinematográfico. Compatível com js/main.js (reveal, contadores,
   menu, header, progresso). Respeita prefers-reduced-motion.
   ===================================================================== */

:root {
  /* Marca */
  --brand:        #0E7A74;
  --brand-2:      #0A5651;
  --petrol:       #062E2B;   /* base escura imersiva */
  --petrol-2:     #0A403B;
  --accent:       #F97316;   /* laranja pôr do sol */
  --rose:         #FB7185;
  --amber:        #FBBF24;
  --sunset:       linear-gradient(100deg, #FB7185 0%, #F97316 52%, #FBBF24 100%);

  /* Neutros */
  --ink:          #0B1F1D;
  --ink-soft:     #46564F;
  --bg:           #FAF7F1;   /* cream quente */
  --surface:      #FFFFFF;
  --line:         #E7E2D6;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius:       20px;
  --radius-sm:    14px;
  --shadow:       0 18px 50px -18px rgba(6,46,43,.28);
  --shadow-lg:    0 40px 90px -30px rgba(6,46,43,.45);
  --maxw:         1200px;
  --gutter:       clamp(20px, 5vw, 56px);
  --whats:        #25D366;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.65; font-size: 17px; overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.04; margin: 0 0 .4em; font-weight: 600; letter-spacing: -0.015em; overflow-wrap: break-word; }
h2 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h3 { font-size: 1.5rem; }
p  { margin: 0 0 1rem; color: var(--ink-soft); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }

/* Eyebrow com traço em gradiente do pôr do sol (assinatura) */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--font-body); font-weight: 700; font-size: .76rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--brand); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 3px; background: var(--sunset); }
.on-dark .eyebrow { color: var(--amber); }

.lead { font-size: clamp(1.05rem, 2vw, 1.24rem); max-width: 60ch; color: var(--ink-soft); }
.text-center { text-align: center; }
.text-center .eyebrow { display: inline-flex; }
.text-center .eyebrow::before { display: none; }
.text-center .lead { margin-inline: auto; }

/* Palavra em destaque com gradiente do pôr do sol */
.grad {
  background: var(--sunset); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; font-style: italic;
}

/* -------------------- BOTÕES -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 16px 30px; min-height: 54px; border: 0; border-radius: 999px; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: #fff; background: var(--brand);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 12px 30px -10px rgba(14,122,116,.6);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(14,122,116,.7); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn--accent { background: var(--sunset); color: #2a1400; box-shadow: 0 14px 34px -10px rgba(249,115,22,.65); }
.btn--accent:hover { filter: brightness(1.05); box-shadow: 0 20px 46px -12px rgba(249,115,22,.75); }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; box-shadow: none; }
.btn--ghost-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.btn--ghost-dark:hover { border-color: var(--brand); color: var(--brand); box-shadow: none; }
.btn svg { width: 21px; height: 21px; }

/* -------------------- HEADER -------------------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding-block: 20px; transition: background .35s ease, box-shadow .35s ease, padding .35s ease; color: #fff; }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header.is-scrolled { color: var(--ink); background: color-mix(in srgb, var(--bg) 85%, transparent); backdrop-filter: saturate(1.5) blur(14px); box-shadow: 0 1px 0 var(--line); padding-block: 12px; }
.brand { display: flex; align-items: center; gap: .55em; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -.02em; }
.brand-mark { width: 40px; height: 40px; border-radius: 12px; flex: 0 0 auto; display: grid; place-items: center; font-size: 1.15rem; background: var(--sunset); box-shadow: 0 6px 18px -6px rgba(249,115,22,.6); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-weight: 600; font-size: .98rem; position: relative; }
.nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0; background: var(--amber); transition: width .22s ease; }
.nav > a:not(.btn):hover::after, .nav > a.is-active::after { width: 100%; }
.header .btn { min-height: 46px; padding: 11px 22px; }

.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px auto; border-radius: 2px; transition: .25s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; z-index: 120; }
  .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; background: var(--petrol); color: #fff; gap: 26px; font-size: 1.35rem; transform: translateX(100%); transition: transform .35s ease; z-index: 110; }
  .nav-open .nav { transform: translateX(0); }
  .nav > a:not(.btn)::after { display: none; }
}

/* -------------------- HERO (full-bleed cinematográfico) -------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 140px; overflow: clip; color: #fff; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 60%; transform: scale(1.14); will-change: transform; }
.hero-bg.lit { animation: heroFade 1.2s ease forwards; }
@keyframes heroFade { from { opacity: .3; } to { opacity: 1; } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(6,46,43,.94) 0%, rgba(6,46,43,.72) 40%, rgba(6,46,43,.30) 75%),
    linear-gradient(to top, rgba(6,46,43,.85), transparent 40%);
}
.hero-inner { max-width: 680px; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: var(--sunset); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6.6vw, 5rem); font-weight: 500; line-height: 1.02; }
.hero .lead { color: rgba(255,255,255,.9); margin-top: .3em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; color: rgba(255,255,255,.85); font-size: .92rem; font-weight: 600; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5em; }
.hero-trust svg { width: 18px; height: 18px; color: var(--amber); }

/* Cartão de nota flutuante (bob) */
.hero-card {
  position: absolute; right: max(var(--gutter), 6%); bottom: 130px; z-index: 1;
  background: rgba(255,255,255,.12); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px; padding: 18px 22px; color: #fff; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px; animation: bob 5s ease-in-out infinite;
}
.hero-card .big { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.hero-card .stars { color: var(--amber); letter-spacing: 2px; font-size: .95rem; }
.hero-card small { display: block; color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 500; }
.hero-card .sep { width: 1px; height: 42px; background: rgba(255,255,255,.25); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 118px; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,.8); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.6); border-radius: 12px; position: relative; }
.scroll-cue .mouse::before { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; background: #fff; border-radius: 3px; transform: translateX(-50%); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%,-4px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,8px); } }

/* Divisor em ondas (assinatura — o restaurante "flutua") */
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 0; line-height: 0; pointer-events: none; }
.wave-divider svg { width: 100%; height: 92px; display: block; }
.wave-divider .w1 { animation: waveBob 6s ease-in-out infinite; transform-origin: center; }
.wave-divider .w2 { animation: waveBob 8.5s ease-in-out infinite reverse; opacity: .5; }
@keyframes waveBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 900px) {
  .hero { text-align: left; }
  .hero-card { display: none; }
  .scroll-cue { display: none; }
}

/* -------------------- STATS -------------------- */
.stats { background: var(--petrol); color: #fff; padding-block: clamp(48px, 7vw, 80px); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,.14); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.3rem, 5vw, 3.4rem); font-weight: 600; color: #fff; line-height: 1; }
.stat .num .plus, .stat .num .hl { background: var(--sunset); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .label { color: rgba(255,255,255,.68); font-size: .9rem; margin-top: 10px; }
@media (max-width: 640px) { .stats .container { grid-template-columns: 1fr 1fr; gap: 34px 16px; } .stat:nth-child(2)::after { display: none; } }

/* -------------------- SOBRE (editorial split) -------------------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 5/6; object-fit: cover; width: 100%; }
.split-media .badge-float { position: absolute; left: -22px; bottom: -22px; background: var(--surface); border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow); max-width: 220px; }
.split-media .badge-float .k { font-family: var(--font-display); font-size: 2rem; color: var(--brand); line-height: 1; }
.split-media .badge-float .v { font-size: .86rem; color: var(--ink-soft); margin-top: 4px; }
.split-media::before { content: ""; position: absolute; inset: auto -18px -18px auto; width: 60%; height: 60%; background: var(--sunset); border-radius: var(--radius); z-index: -1; opacity: .18; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split-media { max-width: 460px; margin-inline: auto; } .split-media .badge-float { left: 8px; } }

/* Mini-features dentro do sobre */
.mini-feats { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 18px; }
.mini-feats li { display: flex; gap: 16px; align-items: flex-start; }
.mini-feats .ico { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--brand); }
.mini-feats .ico svg { width: 24px; height: 24px; }
.mini-feats b { display: block; font-size: 1.05rem; font-family: var(--font-display); }
.mini-feats span { color: var(--ink-soft); font-size: .96rem; }

/* -------------------- CARDÁPIO (destaque estilo revista) -------------------- */
.menu-grid { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 1fr 1fr; gap: 22px; margin-top: 54px; }
.dish { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 250px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow); isolation: isolate; }
.dish.feature-dish { grid-row: span 2; min-height: 522px; }
.dish img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s ease; }
.dish::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(6,46,43,.92) 6%, rgba(6,46,43,.25) 55%, transparent); }
.dish:hover img { transform: scale(1.06); }
.dish-body { padding: 28px; }
.dish .tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--sunset); color: #2a1400; margin-bottom: 12px; }
.dish h3 { color: #fff; margin-bottom: .3em; }
.dish p { color: rgba(255,255,255,.85); margin: 0; font-size: .96rem; }
.dish.feature-dish h3 { font-size: 2rem; }
@media (max-width: 760px) { .menu-grid { grid-template-columns: 1fr; grid-template-rows: none; } .dish.feature-dish { grid-row: auto; min-height: 300px; } }

/* -------------------- EXPERIÊNCIA (parallax full-bleed) -------------------- */
.experience { position: relative; color: #fff; text-align: center; padding-block: clamp(110px, 18vw, 220px); overflow: clip; isolation: isolate; }
.experience .bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.experience::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(6,46,43,.82), rgba(10,64,59,.6)); }
.experience h2 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 4rem); font-weight: 500; max-width: 16ch; margin-inline: auto; }
.experience p { color: rgba(255,255,255,.88); max-width: 54ch; margin: 18px auto 0; font-size: 1.1rem; }
@media (min-width: 901px) { .experience .bg { background-attachment: fixed; } }

/* -------------------- GALERIA -------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; margin-top: 54px; }
.gallery a { border-radius: var(--radius-sm); overflow: hidden; position: relative; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,46,43,.4), transparent 50%); opacity: 0; transition: opacity .3s ease; }
.gallery a:hover img { transform: scale(1.09); }
.gallery a:hover::after { opacity: 1; }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
@media (max-width: 900px) { .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; } }

/* -------------------- AVALIAÇÕES (seção escura) -------------------- */
.reviews { background: var(--petrol); color: #fff; }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.reviews-head h2 { color: #fff; }
.google-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 12px 20px; font-weight: 700; }
.google-badge .stars { color: var(--amber); letter-spacing: 2px; }
.google-badge small { color: rgba(255,255,255,.65); font-weight: 500; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
.review { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px; position: relative; }
.review .quote { font-family: var(--font-display); font-size: 3.4rem; line-height: .6; color: var(--accent); opacity: .5; margin-bottom: 6px; }
.review .stars { color: var(--amber); letter-spacing: 3px; }
.review blockquote { margin: 12px 0 20px; font-size: 1.04rem; color: #fff; font-family: var(--font-display); font-weight: 400; line-height: 1.45; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #2a1400; background: var(--sunset); }
.review .who b { display: block; font-size: .96rem; color: #fff; }
.review .who small { color: rgba(255,255,255,.6); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* -------------------- CTA BAND -------------------- */
.cta-band .inner { position: relative; border-radius: calc(var(--radius) + 8px); padding: clamp(44px, 8vw, 84px); text-align: center; color: #fff; overflow: hidden; box-shadow: var(--shadow-lg); isolation: isolate; }
.cta-band .inner .bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transform: scale(1.05); }
.cta-band .inner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(10,86,81,.9), rgba(14,122,116,.78)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }

/* -------------------- CONTATO -------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; margin-top: 54px; align-items: stretch; }
.info-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ico { width: 50px; height: 50px; flex: 0 0 auto; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--brand); }
.info-list .ico svg { width: 23px; height: 23px; }
.info-list b { display: block; font-family: var(--font-display); font-size: 1.08rem; }
.info-list span { color: var(--ink-soft); font-size: .96rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; min-height: 400px; box-shadow: var(--shadow); border: 6px solid #fff; }
.map-embed iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* -------------------- FOOTER -------------------- */
.footer { background: #041F1D; color: rgba(255,255,255,.72); padding-block: 60px 32px; }
.footer .top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; }
.footer .socials { display: flex; gap: 12px; }
.footer .socials a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; transition: background .2s ease, transform .2s ease; }
.footer .socials a:hover { background: var(--brand); transform: translateY(-3px); }
.footer .socials svg { width: 20px; height: 20px; }
.footer .bottom { margin-top: 24px; font-size: .85rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: rgba(255,255,255,.5); }
.footer a:hover { color: #fff; }

/* -------------------- WHATSAPP FLUTUANTE -------------------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; background: var(--whats); color: #fff; font-weight: 700; padding: 15px 22px 15px 17px; border-radius: 999px; box-shadow: 0 14px 34px -8px rgba(37,211,102,.6); transition: transform .2s ease; }
.wa-float:hover { transform: scale(1.05); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float .wa-label { max-width: 0; overflow: hidden; white-space: nowrap; transition: max-width .3s ease; }
.wa-float:hover .wa-label { max-width: 160px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 var(--whats); animation: pulse 2.4s infinite; }
@media (max-width: 620px) { .wa-float .wa-label { display: none; } .wa-float { padding: 15px; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--whats) 60%, transparent); } 70% { box-shadow: 0 0 0 16px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.dot-live { width: 10px; height: 10px; border-radius: 50%; background: var(--whats); box-shadow: 0 0 0 0 var(--whats); animation: pulse 2s infinite; flex: 0 0 auto; }

/* -------------------- BARRA DE PROGRESSO -------------------- */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--sunset); z-index: 200; transition: width .1s linear; }

/* -------------------- SCROLL REVEAL -------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.fade-left  { transform: translateX(-36px); }
.reveal.fade-right { transform: translateX(36px); }
.reveal.zoom       { transform: scale(.94); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   REFINAMENTO PREMIUM — grão, ticker, cardápio à la carte, reserva, título
   ===================================================================== */

/* Grão/film sutil pra tirar o "flat" e dar calor */
.grain {
  position: fixed; inset: 0; z-index: 300; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px;
}

/* Título do herói — revela palavra por palavra */
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(46px) rotate(3deg); animation: wordUp 1s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes wordUp { to { opacity: 1; transform: none; } }
.hero-proof { margin-top: 22px; display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 600; font-size: .95rem; opacity: .95; }
.hero-proof .stars { color: var(--amber); letter-spacing: 1px; }
.hero-proof .divider { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* Ticker de especialidades */
.marquee { background: var(--bg); border-block: 1px solid var(--line); overflow: hidden; padding: 20px 0; position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: inline-flex; align-items: center; gap: 34px; white-space: nowrap; animation: marq 34s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.7rem); color: var(--ink); }
.marquee-track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sunset); flex: 0 0 auto; }
@keyframes marq { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Cardápio à la carte (lista) */
.menu-list-wrap { margin-top: 60px; }
.menu-list-wrap .ml-head { text-align: center; margin-bottom: 30px; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 64px; }
.menu-cat { grid-column: 1 / -1; font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brand); margin: 26px 0 6px; display: flex; align-items: center; gap: 12px; }
.menu-cat::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-cat:first-child { margin-top: 0; }
.mi { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 15px 0; border-bottom: 1px dashed var(--line); }
.mi-name { font-family: var(--font-display); font-size: 1.16rem; color: var(--ink); }
.mi-desc { display: block; font-size: .88rem; color: var(--ink-soft); margin-top: 3px; max-width: 42ch; }
.mi-flag { flex: 0 0 auto; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-2); align-self: center; }
@media (max-width: 760px) { .menu-list { grid-template-columns: 1fr; gap: 0 0; } }

/* Seção de reserva (com mini-formulário -> WhatsApp) */
.reserve { position: relative; color: #fff; overflow: hidden; isolation: isolate; padding-block: clamp(80px, 12vw, 150px); }
.reserve .bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transform: scale(1.05); }
.reserve::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, rgba(4,31,29,.94) 0%, rgba(6,46,43,.8) 45%, rgba(10,64,59,.6) 100%); }
.reserve-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.reserve-copy h2 { color: #fff; }
.reserve-copy p { color: rgba(255,255,255,.85); max-width: 46ch; }
.reserve-hours { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; max-width: 340px; }
.reserve-hours li { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.14); font-size: .96rem; }
.reserve-hours .muted { color: rgba(255,255,255,.55); }
.reserve-hours .open { color: var(--amber); font-weight: 700; }

.reserve-card { background: rgba(255,255,255,.1); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.22); border-radius: 22px; padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-lg); }
.reserve-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 4px; }
.reserve-card .sub { color: rgba(255,255,255,.75); font-size: .92rem; margin-bottom: 20px; }
.rf-field { margin-bottom: 16px; }
.rf-field label { display: block; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: 7px; letter-spacing: .02em; }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reserve-card input, .reserve-card select {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12); color: #fff; font-family: var(--font-body); font-size: 1rem; -webkit-appearance: none; appearance: none;
}
.reserve-card input::placeholder { color: rgba(255,255,255,.55); }
.reserve-card input:focus, .reserve-card select:focus { outline: 2px solid var(--amber); outline-offset: 1px; border-color: transparent; }
.reserve-card select option { color: #10221f; }
.reserve-card .btn { width: 100%; margin-top: 6px; }
.reserve-card .fineprint { text-align: center; font-size: .8rem; color: rgba(255,255,255,.6); margin: 12px 0 0; }
@media (max-width: 860px) { .reserve-grid { grid-template-columns: 1fr; } }

/* Barra de reserva fixa no mobile */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { flex: 1; min-height: 50px; }
  .wa-float { bottom: 78px; }
  body { padding-bottom: 72px; }
}

/* Reserve bg headroom pro parallax */
.reserve .bg { inset: -12% 0; will-change: transform; }

/* =====================================================================
   SCROLLYTELLING — seção fixa (pinned) que avança em 3 momentos
   ===================================================================== */
.scrolly { position: relative; height: calc(var(--steps, 3) * 100vh); }
.scrolly-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; color: #fff; isolation: isolate; display: grid; }
.scrolly-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; opacity: 0; transition: opacity .8s ease; will-change: opacity, transform; }
.scrolly-bg[data-step="0"] { opacity: 1; }
.scrolly-stage::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(4,31,29,.78), rgba(6,46,43,.5) 60%, rgba(6,46,43,.35)); }
.scrolly-captions { position: absolute; inset: 0; display: grid; place-items: center; padding: var(--gutter); }
.scrolly-step { grid-area: 1 / 1; text-align: center; max-width: 30ch; opacity: 0; transform: translateY(34px); transition: opacity .55s ease, transform .55s ease; }
.scrolly-step[data-step="0"] { opacity: 1; transform: none; }
.scrolly-step .eyebrow { color: var(--amber); justify-content: center; }
.scrolly-step h2 { color: #fff; font-size: clamp(1.9rem, 4.8vw, 3.5rem); font-weight: 500; }
.scrolly-step p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-top: 6px; }
.scrolly-step .btn { margin-top: 22px; }
.scrolly-count { position: absolute; top: clamp(90px, 12vh, 130px); left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: .95rem; letter-spacing: .3em; color: rgba(255,255,255,.7); }
.scrolly-count b { color: var(--amber); font-size: 1.3rem; }
.scrolly-progress { position: absolute; left: 50%; bottom: clamp(30px, 6vh, 54px); transform: translateX(-50%); width: 160px; height: 3px; background: rgba(255,255,255,.25); border-radius: 3px; overflow: hidden; }
.scrolly-progress i { display: block; height: 100%; width: 0; background: var(--sunset); border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-bg, .hero-card, .dot-live, .wa-float::after, .scroll-cue .mouse::before, .wave-divider .w1, .wave-divider .w2 { animation: none; }
  .hero h1 .w { opacity: 1; transform: none; animation: none; }
  .marquee-track { animation: none; }
  .dish img, .gallery img, .btn { transition: none; }
  /* Scrolly vira seção estática legível */
  .scrolly { height: auto; }
  .scrolly-stage { position: relative; height: auto; min-height: 70vh; padding-block: 80px; }
  .scrolly-bg { opacity: 0; }
  .scrolly-bg[data-step="1"] { opacity: 1; }
  .scrolly-step { position: static; grid-area: auto; opacity: 1; transform: none; margin-inline: auto; }
  .scrolly-step[data-step="0"], .scrolly-step[data-step="2"] { display: none; }
  .scrolly-count, .scrolly-progress { display: none; }
}

/* =====================================================================
   v6 — galeria horizontal pinned, watermark, brasas, orbs, magnético
   ===================================================================== */

/* Palavra gigante de fundo (editorial) */
.wm { position: absolute; z-index: 0; pointer-events: none; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: -.04em; line-height: .8; white-space: nowrap; color: transparent; -webkit-text-stroke: 1.5px color-mix(in srgb, var(--brand) 20%, transparent); opacity: .55; font-size: clamp(5rem, 20vw, 18rem); }
.wm.on-dark { -webkit-text-stroke-color: rgba(255,255,255,.14); opacity: 1; }
.section > .container { position: relative; z-index: 1; }

/* Galeria HORIZONTAL pinned (desliza conforme rola) */
.hgallery { position: relative; height: 330vh; background: var(--petrol); color: #fff; isolation: isolate; }
.hgallery-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; display: flex; align-items: flex-start; }
.hgallery-head { position: absolute; top: clamp(74px, 12vh, 130px); left: 0; right: 0; text-align: center; z-index: 3; padding-inline: var(--gutter); }
.hgallery-head h2 { color: #fff; }
.hgallery-head .eyebrow { color: var(--amber); justify-content: center; }
.hgallery-track { display: flex; gap: 26px; padding-inline: clamp(20px, 8vw, 130px); margin-top: clamp(150px, 21vh, 220px); will-change: transform; }
.hcard { position: relative; flex: 0 0 auto; width: min(78vw, 430px); height: 60vh; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hcard img { width: 100%; height: 100%; object-fit: cover; }
.hcard figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; font-family: var(--font-display); font-size: 1.25rem; background: linear-gradient(to top, rgba(4,31,29,.92), transparent); }
.hcard .n { position: absolute; top: 16px; left: 18px; font-family: var(--font-display); font-size: .95rem; color: rgba(255,255,255,.85); }
.hgallery-progress { position: absolute; bottom: clamp(30px, 6vh, 54px); left: 50%; transform: translateX(-50%); width: 170px; height: 3px; background: rgba(255,255,255,.25); border-radius: 3px; overflow: hidden; z-index: 3; }
.hgallery-progress i { display: block; height: 100%; width: 0; background: var(--sunset); }
.hgallery-hint { position: absolute; bottom: clamp(28px, 6vh, 52px); right: clamp(20px, 5vw, 54px); z-index: 3; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; }
.hgallery-hint::after { content: "→"; }

/* Brasas/luzes subindo */
.embers { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.embers i { position: absolute; bottom: -12px; border-radius: 50%; background: radial-gradient(circle, var(--amber), transparent 68%); opacity: 0; animation: ember linear infinite; }
@keyframes ember { 0% { transform: translateY(0) scale(.5); opacity: 0; } 12% { opacity: .85; } 100% { transform: translateY(-92vh) scale(1.15); opacity: 0; } }

/* Orbs de brilho (atmosfera) */
.orb { position: absolute; border-radius: 50%; filter: blur(40px); pointer-events: none; opacity: .5; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, transparent), transparent 70%); will-change: transform; }

/* Botão magnético — transição suave do movimento */
.btn { transition: transform .18s ease, box-shadow .2s ease, filter .2s ease, background .18s ease; }

@media (max-width: 900px) {
  .hgallery { height: auto; }
  .hgallery-stage { position: static; height: auto; padding: 90px 0 46px; display: block; }
  .hgallery-head { position: static; margin-bottom: 22px; }
  .hgallery-track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; transform: none !important; padding-bottom: 16px; margin-top: 0; }
  .hcard { width: 80vw; height: 56vh; scroll-snap-align: center; }
  .hgallery-progress { display: none; }
  .wm { font-size: clamp(3.5rem, 24vw, 8rem); }
}

@media (prefers-reduced-motion: reduce) {
  .hgallery { height: auto; }
  .hgallery-stage { position: static; height: auto; padding: 80px 0; display: block; }
  .hgallery-head { position: static; margin-bottom: 22px; }
  .hgallery-track { overflow-x: auto; transform: none !important; margin-top: 0; }
  .embers i, .orb { animation: none !important; display: none; }
}
