/* =========================================================
   Restaurante Panela Velha — style.css
   Paleta: creme + terracota (apetite) dominante,
   verde-floresta da marca só em faixas escuras.
   ========================================================= */

:root {
  /* superfícies */
  --canvas:          hsl(38, 36%, 94%);
  --superficie:      hsl(36, 32%, 90%);
  --canvas-tom:      hsl(34, 30%, 87%);
  --canvas-escuro:   hsl(150, 42%, 9%);
  --canvas-escuro-2: hsl(150, 30%, 14%);

  /* tinta */
  --tinta:               hsl(24, 22%, 15%);
  --texto-suave:         hsl(28, 13%, 37%);
  --texto-inverso:       hsl(40, 42%, 95%);
  --texto-inverso-suave: hsl(40, 20%, 74%);

  /* acento — terracota quente */
  --acento:        hsl(16, 58%, 44%);
  --acento-hover:  hsl(16, 62%, 37%);
  --acento-forte:  hsl(15, 62%, 32%);
  --dourado:       hsl(42, 74%, 47%);
  --verde-marca:   hsl(147, 52%, 30%);

  /* linhas e sombras */
  --hairline:         hsla(24, 22%, 15%, .12);
  --hairline-forte:   hsla(24, 22%, 15%, .26);
  --hairline-inversa: hsla(40, 42%, 95%, .16);
  --sombra:       0 16px 44px hsla(20, 30%, 20%, .10);
  --sombra-hover: 0 26px 66px hsla(20, 30%, 20%, .18);

  /* tipografia */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --text-h1: clamp(2.1rem, 6.2vw, 4.4rem);
  --text-h2: clamp(1.7rem, 3.9vw, 3rem);
  --text-h3: clamp(1.15rem, 2vw, 1.4rem);
  --text-body: clamp(1rem, calc(.35vw + .93rem), 1.12rem);
  --text-number: clamp(3.2rem, 9vw, 6.4rem);
  --text-kicker: .76rem;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section-space: clamp(3.4rem, 7vw, 6.2rem);
  --content-gap: clamp(1.4rem, 3vw, 2.8rem);
  --header-h: 68px;

  /* raios e easing */
  --r-sm: 12px; --r-md: 20px; --r-lg: 30px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.62;
  color: var(--tinta);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -.01em; }
strong { font-weight: 700; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.pular-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--acento); color: var(--texto-inverso);
  padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0;
}
.pular-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--acento-forte); outline-offset: 2px; border-radius: 4px; }

/* ---------- kicker / títulos ---------- */
.kicker {
  font-size: var(--text-kicker); font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--acento-forte); margin-bottom: .75rem;
}
.kicker--claro { color: var(--dourado); text-shadow: 0 1px 8px hsla(150, 50%, 4%, .8); }

.sec-titulo { font-size: var(--text-h2); text-wrap: balance; }
.sec-titulo--claro { color: var(--texto-inverso); }
.sec-texto { color: var(--texto-suave); max-width: 60ch; margin-top: .9rem; }
.sec-texto--claro { color: var(--texto-inverso-suave); }
.sec-cabeca { max-width: 44ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }

/* ---------- ritmo de seções ---------- */
.sec { padding-block: var(--section-space); position: relative; }
.sec--claro { background: var(--canvas); }
.sec--tom { background: var(--canvas-tom); }
.sec--escuro { background: var(--canvas-escuro); color: var(--texto-inverso); }

/* ---------- botões ---------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 46px; padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  border-radius: var(--r-sm); border: 1.5px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn--acento { background: var(--acento); color: var(--texto-inverso); box-shadow: var(--sombra); }
.btn--acento:hover { background: var(--acento-hover); transform: translateY(-2px); box-shadow: var(--sombra-hover); }
.btn--acento:active { transform: translateY(0); }
.btn--fantasma { border-color: var(--hairline-forte); color: var(--tinta); }
.btn--fantasma:hover { border-color: var(--acento); color: var(--acento-forte); transform: translateY(-2px); }
.btn--fantasma.btn--escuro {
  color: var(--texto-inverso); border-color: hsla(40, 30%, 92%, .55);
  background: hsla(150, 40%, 10%, .45);
}
.btn--fantasma.btn--escuro:hover { border-color: var(--dourado); color: var(--dourado); }
.btn--claro { background: var(--texto-inverso); color: var(--canvas-escuro); }
.btn--claro:hover { transform: translateY(-2px); box-shadow: var(--sombra-hover); }
.btn--grande { --pad-y: 17px; --pad-x: 32px; font-size: 1.05rem; min-height: 54px; }
.btn--compacto { min-height: 42px; --pad-y: 9px; --pad-x: 18px; }
.btn--bloco { width: 100%; }
.ico-zap { width: 1.25em; height: 1.25em; fill: currentColor; flex: none; }

.lnk-acento {
  display: inline-block; color: var(--acento-forte); font-weight: 600;
  position: relative; padding-bottom: 2px;
}
.lnk-acento::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--acento-forte); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.lnk-acento:hover::after { transform: scaleX(1); }

/* =========================================================
   HEADER
   ========================================================= */
.cabecalho {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.cabecalho-inner {
  max-width: var(--maxw); margin-inline: auto; padding: 10px var(--gutter);
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
}
.cabecalho.is-scrolled {
  background: hsla(38, 40%, 94%, .9); backdrop-filter: blur(10px);
  border-bottom-color: var(--hairline); box-shadow: 0 6px 24px hsla(20,30%,20%,.07);
}
.marca { display: inline-flex; align-items: center; gap: .55rem; color: var(--verde-marca); }
.marca-icone { display: inline-flex; }
.marca-texto {
  font-family: var(--font-display); font-weight: 800; font-size: 1.28rem;
  color: var(--tinta); letter-spacing: -.02em;
}
.cabecalho.is-scrolled .marca-icone { color: var(--verde-marca); }
.nav { display: flex; gap: 1.6rem; }
.nav a {
  font-weight: 500; font-size: .95rem; color: var(--texto-suave);
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--acento); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover { color: var(--tinta); }
.nav a:hover::after { transform: scaleX(1); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden; isolation: isolate;
}
.hero-midia { position: absolute; inset: 0; z-index: -1; }
.hero-img {
  width: 100%; height: 116%; object-fit: cover; object-position: center 42%;
  filter: saturate(1.08) contrast(1.03);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg,
      hsla(150, 45%, 5%, .97) 0%,
      hsla(150, 45%, 6%, .90) 28%,
      hsla(150, 45%, 7%, .74) 52%,
      hsla(150, 45%, 8%, .48) 76%,
      hsla(150, 45%, 8%, .24) 100%),
    linear-gradient(90deg, hsla(150, 45%, 7%, .55) 0%, transparent 65%);
}
.hero-conteudo {
  position: relative; width: 100%; max-width: var(--maxw);
  margin-inline: auto; padding-inline: var(--gutter);
}
.hero-titulo {
  font-size: var(--text-h1); color: var(--texto-inverso);
  max-width: 17ch; text-wrap: balance;
  text-shadow: 0 2px 14px hsla(150, 50%, 4%, .8), 0 1px 3px hsla(150, 50%, 4%, .6);
}
.hero-sub {
  color: var(--texto-inverso); max-width: 52ch;
  margin-top: 1.1rem; font-size: clamp(1rem, 1.5vw, 1.18rem);
  text-shadow: 0 1px 10px hsla(150, 50%, 4%, .75), 0 1px 2px hsla(150, 50%, 4%, .55);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-fricao {
  margin-top: .85rem; font-size: .85rem; color: hsl(40, 25%, 88%);
  text-shadow: 0 1px 8px hsla(150, 50%, 4%, .7);
}

.hero-provas {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem;
  margin-top: 2rem;
}
.badge-nota {
  display: inline-flex; align-items: center; gap: .6rem;
  background: hsla(150, 40%, 10%, .55); border: 1px solid var(--hairline-inversa);
  backdrop-filter: blur(6px);
  padding: 10px 16px; border-radius: 999px; min-height: 44px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.badge-nota:hover { border-color: var(--dourado); transform: translateY(-1px); }
.badge-estrelas { color: var(--dourado); letter-spacing: 1px; font-size: .95rem; }
.badge-txt { color: var(--texto-inverso); font-size: .92rem; }
.badge-txt strong { font-family: var(--font-display); font-size: 1.05rem; }
.hero-horario { color: var(--texto-inverso); font-size: .9rem; font-weight: 500; opacity: .95; }

/* vapor da panela (assinatura) */
.vapor {
  position: absolute; left: 50%; bottom: 30%; width: clamp(90px, 16vw, 150px);
  height: auto; transform: translateX(-50%); opacity: .5; z-index: 1;
  pointer-events: none;
}
.vapor-w {
  fill: none; stroke: hsla(40, 40%, 95%, .8); stroke-width: 3.4; stroke-linecap: round;
  opacity: 0;
  animation: vapor-sobe 5.5s var(--ease-expo) infinite;
}
.vapor-w2 { animation-delay: 1.1s; }
.vapor-w3 { animation-delay: 2.3s; }
@keyframes vapor-sobe {
  0%   { opacity: 0; transform: translateY(10px) scaleY(.85); }
  25%  { opacity: .55; }
  70%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(-16px) scaleY(1.1); }
}

/* entrada do hero */
@keyframes hero-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-conteudo > * { animation: hero-rise .8s var(--ease) both; }
.hero-conteudo > *:nth-child(2) { animation-delay: .12s; }
.hero-conteudo > *:nth-child(3) { animation-delay: .22s; }
.hero-conteudo > *:nth-child(4) { animation-delay: .32s; }
.hero-conteudo > *:nth-child(5) { animation-delay: .42s; }
.hero-conteudo > *:nth-child(6) { animation-delay: .52s; }
@keyframes hero-zoom { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
.hero-img { animation: hero-zoom 1.6s var(--ease-expo) both; }

/* =========================================================
   TRUST
   ========================================================= */
.trust { padding-block: clamp(2rem, 4vw, 3rem); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: .3rem; padding: .5rem;
  border-left: 1px solid var(--hairline);
}
.trust-item:first-child { border-left: 0; }
.trust-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem); color: var(--acento-forte);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.trust-num--txt { color: var(--verde-marca); }
.trust-star { color: var(--dourado); font-size: .7em; }
.trust-rot { font-size: .82rem; color: var(--texto-suave); font-weight: 500; }

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.dif-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: var(--content-gap);
}
.cartao {
  background: var(--superficie); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: clamp(1.4rem, 2.4vw, 2rem);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.dif-card { min-width: 0; }
.dif-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); border-color: var(--acento); }
.dif-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: hsla(16, 58%, 44%, .12); margin-bottom: 1rem;
}
.dif-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--acento-forte); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dif-card h3 { font-size: var(--text-h3); margin-bottom: .45rem; }
.dif-card p { color: var(--texto-suave); font-size: .96rem; }

/* =========================================================
   BUFFET
   ========================================================= */
.buffet-top {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center;
}
.buffet-intro { min-width: 0; }
.carro-chefe {
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin: 1.4rem 0 1.8rem; padding: 0; list-style: none;
}
.carro-chefe li {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 7px 15px; font-size: .9rem; font-weight: 500;
  color: var(--tinta);
}
.carro-chefe li::before { content: "•"; color: var(--acento); margin-right: .4rem; font-weight: 700; }
.buffet-foto { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sombra); position: relative; }
.buffet-foto img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.buffet-foto figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.2rem .9rem; font-size: .88rem; color: var(--texto-inverso); font-weight: 500;
  background: linear-gradient(0deg, hsla(150,45%,6%,.85), transparent);
}
.buffet-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--content-gap);
  margin-top: var(--content-gap);
}
.buffet-foto--sec img { aspect-ratio: 3/4; }

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.como-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--content-gap); align-items: stretch;
}
.como-card {
  display: flex; flex-direction: column; gap: .5rem; min-width: 0;
  position: relative; overflow: hidden;
}
.como-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem;
  color: var(--acento); opacity: .22; line-height: 1;
  position: absolute; top: 1rem; right: 1.2rem;
}
.como-card h3 { font-size: var(--text-h3); }
.como-card p { color: var(--texto-suave); font-size: .96rem; }
.como-nota { font-size: .88rem !important; font-style: italic; }
.como-card .lnk-acento, .como-card .btn { margin-top: auto; align-self: flex-start; }
.como-card .btn--bloco { align-self: stretch; }
.como-card--destaque {
  background: var(--canvas-escuro); border-color: var(--canvas-escuro-2); color: var(--texto-inverso);
}
.como-card--destaque h3 { color: var(--texto-inverso); }
.como-card--destaque p { color: var(--texto-inverso-suave); }
.como-card--destaque .como-num { color: var(--dourado); opacity: .32; }
.como-selo {
  display: inline-block; align-self: flex-start;
  background: hsla(42, 74%, 47%, .18); color: var(--dourado);
  border: 1px solid hsla(42, 74%, 47%, .4);
  font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 11px; border-radius: 999px; margin-bottom: .2rem;
}
.como-card--destaque h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }

/* =========================================================
   GALERIA
   ========================================================= */
.grid-galeria {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: clamp(.6rem, 1.4vw, 1rem);
}
.gal { border-radius: var(--r-md); overflow: hidden; position: relative; background: var(--superficie); }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal:hover img { transform: scale(1.05); }
.gal--alta { grid-row: span 2; }
.gal--larga { grid-column: span 2; }

/* =========================================================
   AVALIAÇÕES
   ========================================================= */
.avaliacoes { overflow: hidden; }
.avaliacoes-inner {
  display: grid; grid-template-columns: minmax(200px, .7fr) 1.3fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.aval-numero {
  text-align: center; padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--hairline-inversa); border-radius: var(--r-lg);
  background: var(--canvas-escuro-2);
}
.aval-nota {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: var(--text-number); line-height: 1; color: var(--dourado);
  font-variant-numeric: tabular-nums;
}
.aval-estrelas { display: block; color: var(--dourado); font-size: 1.5rem; letter-spacing: 3px; margin: .5rem 0 .3rem; }
.aval-de { color: var(--texto-inverso-suave); font-size: .95rem; }
.aval-count { color: var(--dourado); font-variant-numeric: tabular-nums; }
.aval-selo {
  display: inline-block; color: var(--canvas-escuro); background: var(--dourado);
  font-family: var(--font-display); font-weight: 800; font-style: normal;
  padding: 1px 10px; border-radius: 8px; transform: rotate(-2deg);
}
.aval-consulta { font-size: .8rem; color: var(--texto-inverso-suave); margin-top: 1rem; opacity: .8; }

/* =========================================================
   SOBRE
   ========================================================= */
.sobre-grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center;
}
.sobre-foto { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sombra); }
.sobre-foto img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.sobre-texto { min-width: 0; }
.sobre-texto .sec-texto + .sec-texto { margin-top: .9rem; }
.sobre-texto .lnk-acento { margin-top: 1.3rem; }

/* =========================================================
   LOCALIZAÇÃO + FAQ
   ========================================================= */
.local-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.local-info { min-width: 0; }
.local-lista { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: 1rem; }
.local-lista li { display: flex; gap: .85rem; align-items: flex-start; font-size: .97rem; color: var(--tinta); }
.local-ico {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  background: hsla(16, 58%, 44%, .12);
  display: inline-flex; align-items: center; justify-content: center;
}
.local-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--acento-forte); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.local-acoes { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.mapa { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sombra); border: 1px solid var(--hairline); }
.mapa iframe { width: 100%; height: 300px; border: 0; display: block; }

.faq { min-width: 0; }
.faq-titulo { font-size: var(--text-h3); margin-bottom: 1.2rem; }
.faq-item {
  border: 1px solid var(--hairline); border-radius: var(--r-sm);
  background: var(--canvas); margin-bottom: .7rem; overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item[open] { border-color: var(--acento); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 15px 48px 15px 18px;
  font-weight: 600; font-size: .98rem; position: relative; min-height: 44px;
  display: flex; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 11px; height: 11px; border-right: 2px solid var(--acento-forte);
  border-bottom: 2px solid var(--acento-forte); transform: translateY(-70%) rotate(45deg);
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-corpo { padding: 0 18px 16px; color: var(--texto-suave); font-size: .95rem; }
.faq-corpo p { max-width: 60ch; }

/* =========================================================
   FECHAMENTO
   ========================================================= */
.fechamento { overflow: hidden; isolation: isolate; text-align: center; }
.fechamento-fundo { position: absolute; inset: 0; z-index: -1; }
.fechamento-fundo img { width: 100%; height: 100%; object-fit: cover; opacity: .28; filter: saturate(.9); }
.fechamento::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, hsla(150,45%,7%,.9), hsla(150,45%,9%,.7));
}
.fechamento-conteudo { max-width: 40ch; margin-inline: auto; }
.fechamento-titulo { font-size: var(--text-h2); color: var(--texto-inverso); text-wrap: balance; }
.fechamento-sub { color: var(--texto-inverso-suave); margin-top: 1rem; }
.fechamento-ctas { margin-top: 1.8rem; display: flex; justify-content: center; }

/* =========================================================
   RODAPÉ
   ========================================================= */
.rodape { background: var(--canvas-escuro-2); color: var(--texto-inverso-suave); padding-top: clamp(2.6rem, 5vw, 4rem); }
.rodape-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.6rem, 3vw, 2.5rem); padding-bottom: 2.4rem;
}
.rodape-marca .marca-texto { color: var(--texto-inverso); display: block; margin-bottom: .6rem; }
.rodape-marca p { font-size: .9rem; max-width: 34ch; }
.rodape-col h4 { color: var(--texto-inverso); font-size: .95rem; margin-bottom: .7rem; font-family: var(--font-body); font-weight: 700; }
.rodape-col p { font-size: .9rem; margin-bottom: .4rem; }
.rodape-col ul { list-style: none; padding: 0; }
.rodape-col li { margin-bottom: .4rem; }
.rodape-col a { font-size: .9rem; transition: color .2s var(--ease); }
.rodape-col a:hover, .rodape-marca a:hover { color: var(--dourado); }
.rodape-fim {
  border-top: 1px solid var(--hairline-inversa); padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: space-between;
  font-size: .82rem;
}
.rodape-mini { color: var(--texto-inverso-suave); opacity: .8; }

/* =========================================================
   STICKY CTA MOBILE + ZAP-FLOAT
   ========================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: hsla(38, 40%, 94%, .95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
  transform: translateY(115%); transition: transform .35s var(--ease);
  display: none;
}
.sticky-cta.is-on { transform: translateY(0); }

.zap-float {
  position: fixed; right: 20px; bottom: 24px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--acento); color: var(--texto-inverso);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--sombra-hover);
  opacity: 0; transform: scale(.6);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s var(--ease);
}
.zap-float.is-ready { opacity: 1; transform: scale(1); }
.zap-float:hover { background: var(--acento-hover); transform: scale(1.06); }
.zap-float.is-hidden { opacity: 0 !important; transform: scale(.6) !important; pointer-events: none; }
.zap-float .ico-zap { width: 28px; height: 28px; }

/* =========================================================
   REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 85ms);
}
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"] { transform: scale(.94); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 940px) {
  .buffet-top, .sobre-grid, .local-grid { grid-template-columns: 1fr; }
  .sobre-foto { max-width: 460px; }
  .avaliacoes-inner { grid-template-columns: 1fr; text-align: center; }
  .aval-numero { max-width: 320px; margin-inline: auto; }
  .rodape-grid { grid-template-columns: 1fr 1fr; }
  .grid-galeria { grid-auto-rows: 170px; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .sticky-cta { display: block; }
  .zap-float { display: none; }
  main { padding-bottom: 74px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item { border-top: 0; }
  .buffet-duo { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 92svh; }
}

@media (max-width: 560px) {
  .grid-galeria { grid-template-columns: 1fr 1fr; grid-auto-rows: 46vw; }
  .gal--larga { grid-column: span 2; }
  .gal--alta { grid-row: span 2; }
  .buffet-duo { grid-template-columns: 1fr; }
  .rodape-grid { grid-template-columns: 1fr; }
  .rodape-fim { justify-content: flex-start; }
  .hero-ctas .btn { width: 100%; }
}

@media (max-width: 380px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--hairline); padding-top: 1rem; }
  .trust-item:first-child { border-top: 0; }
}

/* =========================================================
   PREFERS-REDUCED-MOTION (regra dura)
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .vapor { display: none; }
  .zap-float { opacity: 1; transform: none; }
}
