/* ============================================================
   Shirley Restaurante — Frutos do mar no Leme, desde 1954
   CSS artesanal, sem frameworks. Identidade do logo:
   amarelo mostarda, azul-marinho, creme. Tema náutico.
   ============================================================ */

:root {
  --sand: #faf5e9;
  --deep: #1b3a5c;
  --deep-soft: #25496e;
  --gold: #f4c430;
  --gold-soft: #f9dc7d;
  --sea: #3d7391;

  --background: var(--sand);
  --foreground: var(--deep);
  --card: #fffdf6;
  --muted: #f0e8d2;
  --muted-foreground: #54687e;
  --border: #e4d9bc;

  --font-display: "Abril Fatface", Georgia, serif;
  --font-condensed: "Oswald", "Arial Narrow", sans-serif;
  --font-sans: "Nunito", ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  border: 0 solid var(--border);
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--background);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; cursor: pointer; }
ul, ol { list-style: none; }
iframe { display: block; border: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

::selection { background: var(--gold); color: var(--deep); }

.container { max-width: 86rem; margin-inline: auto; padding-inline: 1.25rem; }

@media (min-width: 640px) { .container { padding-inline: 2rem; } }

/* ---------- Utilitários da marca ---------- */
.eyebrow {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  font-size: clamp(2.6rem, 8vw, 5.75rem);
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(2rem, 5vw, 3.75rem);
}

.btn-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-condensed);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-stamp .icon { width: 1rem; height: 1rem; }

.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--deep); }
.btn-gold:hover { transform: translateY(-2px); }

.btn-deep { background: var(--deep); border-color: var(--deep); color: var(--gold); }
.btn-deep:hover { transform: translateY(-2px); }

.btn-ghost-sand { color: var(--sand); }
.btn-ghost-sand:hover { background: rgb(250 245 233 / 0.1); }

.btn-ghost-deep { color: var(--deep); }
.btn-ghost-deep:hover { background: var(--deep); color: var(--gold); }

.rule-gold { height: 2px; width: 3.5rem; background: var(--gold); }

.icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Onda no topo das seções */
.wave-top {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3.5rem;
  width: 100%;
}

@media (min-width: 640px) { .wave-top { height: 4.5rem; } }

.fill-sand { fill: var(--sand); }
.fill-deep { fill: var(--deep); }
.fill-gold { fill: var(--gold); }

.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid transparent;
  transition: background-color 0.5s, border-color 0.5s;
}

.site-header.scrolled {
  border-color: rgb(27 58 92 / 0.15);
  background: rgb(250 245 233 / 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 86rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}

.header-brand { display: flex; flex-shrink: 0; align-items: center; gap: 0.75rem; }

.header-brand img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.375rem;
  border: 2px solid var(--deep);
  object-fit: cover;
}

.header-brand span {
  display: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  transition: color 0.5s;
}

.site-header.scrolled .header-brand span { color: var(--deep); }

.header-nav { display: none; justify-content: center; }

.header-nav ul { display: flex; align-items: center; gap: 2rem; }

.header-nav a {
  position: relative;
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(250 245 233 / 0.85);
  transition: color 0.3s;
}

.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  height: 2px;
  width: 100%;
  transform-origin: right;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform 0.3s;
}

.header-nav a:hover { color: var(--sand); }
.header-nav a:hover::after { transform-origin: left; transform: scaleX(1); }

.site-header.scrolled .header-nav a { color: rgb(27 58 92 / 0.75); }
.site-header.scrolled .header-nav a:hover { color: var(--deep); }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.5rem; }

.header-actions .btn-gold { display: none; padding: 0.625rem 1.25rem; }

.header-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.375rem;
  border: 2px solid rgb(250 245 233 / 0.5);
  color: var(--sand);
  transition: border-color 0.5s, color 0.5s;
}

.site-header.scrolled .header-burger { border-color: var(--deep); color: var(--deep); }

@media (min-width: 640px) {
  .header-brand span { display: block; }
  .header-actions .btn-gold { display: inline-flex; }
  .header-inner { padding-inline: 2rem; }
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
  .header-burger { display: none; }
  .header-inner { padding-block: 1rem; }
}

/* Menu mobile fullscreen */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--deep);
  color: var(--sand);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.mobile-menu-top img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.375rem;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.mobile-menu-top button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.375rem;
  border: 2px solid rgb(250 245 233 / 0.4);
}

.mobile-menu nav { padding: 1.5rem 1.5rem 0; }

.mobile-menu nav a {
  display: block;
  border-bottom: 1px solid rgb(250 245 233 / 0.12);
  padding-block: 1rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
}

.mobile-menu .btn-gold { margin-top: 2rem; width: 100%; padding: 1rem 1.5rem; }

.mobile-menu .horario {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgb(250 245 233 / 0.6);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--deep);
}

.hero-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-shade { position: absolute; inset: 0; background: rgb(27 58 92 / 0.7); }

.hero-tint {
  position: absolute;
  inset: 0;
  background: rgb(244 196 48 / 0.2);
  mix-blend-mode: soft-light;
}

.hero-bottom {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 33%;
  background: linear-gradient(to top, var(--deep), transparent);
}

.hero-content {
  position: relative;
  margin-inline: auto;
  display: flex;
  min-height: 100svh;
  max-width: 86rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 1.25rem 2.5rem;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
}

.hero-eyebrow .sep { opacity: 0.6; }

.hero h1 { max-width: 16ch; color: var(--sand); }

.hero h1 .gold { color: var(--gold); }

.hero-row { margin-top: 2rem; display: grid; gap: 2rem; }

.hero-row > p {
  max-width: 36rem;
  line-height: 1.625;
  color: rgb(250 245 233 / 0.85);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-ctas .btn-stamp { padding: 1rem 1.75rem; }

.hero-trust {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  border-top: 2px solid rgb(250 245 233 / 0.15);
  padding-top: 1.75rem;
}

.hero-trust p:first-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--gold);
}

.hero-trust p:last-child {
  margin-top: 0.375rem;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(250 245 233 / 0.6);
}

@media (min-width: 640px) {
  .hero-content { padding-inline: 2rem; }
  .hero-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .hero-content { padding-bottom: 4rem; }
  .hero-row { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
  .hero-trust { max-width: 48rem; }
}

/* ============================================================
   SEÇÕES COM ONDA
   ============================================================ */
.sec { position: relative; padding-top: 8rem; padding-bottom: 6rem; }

.sec-deep { background: var(--deep); color: var(--sand); }
.sec-gold { background: var(--gold); color: var(--deep); }

@media (min-width: 1024px) {
  .sec { padding-top: 10rem; padding-bottom: 8rem; }
}

/* --- O Restaurante --- */
.about-grid { display: grid; gap: 3.5rem; }

.about-text .eyebrow { color: var(--sea); }

.about-text h2 { margin-top: 1.5rem; color: var(--deep); }

.about-text > p {
  margin-top: 1.75rem;
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--muted-foreground);
}

.about-text > p + p { margin-top: 1.25rem; }

.about-stats {
  margin-top: 2.5rem;
  display: grid;
  max-width: 32rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  border-top: 2px solid rgb(27 58 92 / 0.15);
  padding-top: 2rem;
}

.about-stats dt {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.about-stats dd { margin-top: 0.375rem; font-family: var(--font-display); font-size: 1.5rem; color: var(--deep); }

.about-media { position: relative; }

.about-media .principal {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 0.5rem;
  border: 4px solid var(--deep);
  object-fit: cover;
}

.about-media .placa {
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  display: none;
  width: 10rem;
  border-radius: 9999px;
  border: 4px solid var(--gold);
  object-fit: cover;
}

@media (min-width: 640px) { .about-media .placa { display: block; } }

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: 5rem; }
  .about-media .placa { left: -2.5rem; width: 12rem; }
}

/* --- Especialidades --- */
.spec-head { display: grid; gap: 1.5rem; }

.spec-head .eyebrow { color: var(--gold); }

.spec-head h2 { margin-top: 1.25rem; color: var(--sand); }

.spec-head > p { max-width: 24rem; font-size: 0.875rem; line-height: 1.625; color: rgb(250 245 233 / 0.7); }

.spec-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2px;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 2px solid rgb(250 245 233 / 0.2);
  background: rgb(250 245 233 / 0.2);
}

.spec-card { background: var(--deep); padding: 2rem; transition: background-color 0.5s; }

.spec-card:hover { background: var(--deep-soft); }

.spec-card .icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--gold);
  transition: transform 0.5s;
}

.spec-card:hover .icon { transform: rotate(-6deg) scale(1.1); }

.spec-card h3 { margin-top: 1.25rem; font-size: 1.5rem; color: var(--sand); }

.spec-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: rgb(250 245 233 / 0.7); }

.spec-card .linha {
  margin-top: 1.5rem;
  display: block;
  height: 2px;
  width: 2.5rem;
  background: rgb(244 196 48 / 0.6);
  transition: width 0.5s;
}

.spec-card:hover .linha { width: 5rem; }

@media (min-width: 640px) { .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

@media (min-width: 1024px) {
  .spec-head { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
  .spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .spec-card { padding: 2.5rem; }
}

/* --- Destaques --- */
.high-head .eyebrow { color: rgb(27 58 92 / 0.7); }

.high-head .linha { margin-top: 1.25rem; height: 2px; width: 3.5rem; background: var(--deep); }

.high-head h2 { margin-top: 1.5rem; color: var(--deep); }

.high-grid { margin-top: 4rem; display: grid; gap: 2.5rem; }

.high-card .foto {
  overflow: hidden;
  border-radius: 0.5rem;
  border: 4px solid var(--deep);
}

.high-card .foto img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  transition: transform 0.9s ease-out;
}

.high-card:hover .foto img { transform: scale(1.05); }

.high-card h3 { margin-top: 1.5rem; font-size: 1.5rem; line-height: 1.375; color: var(--deep); }

.high-card p { margin-top: 0.75rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.625; color: rgb(27 58 92 / 0.75); }

.high-cta {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  border-top: 2px solid rgb(27 58 92 / 0.25);
  padding-top: 2.5rem;
}

.high-cta p { max-width: 28rem; font-size: 0.875rem; line-height: 1.625; color: rgb(27 58 92 / 0.75); }

.high-cta .btn-deep { padding: 1rem 1.75rem; }

@media (min-width: 640px) {
  .high-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .high-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
  .high-card:nth-child(2) { margin-top: -3rem; }
  .high-card:nth-child(3) { margin-top: 2rem; }
}

/* --- Experiência --- */
.exp-head .eyebrow { color: var(--sea); }
.exp-head h2 { margin-top: 1.5rem; color: var(--deep); }

.exp-grid { margin-top: 3.5rem; display: grid; gap: 3rem; }

.exp-foto { overflow: hidden; border-radius: 0.5rem; border: 4px solid var(--deep); }

.exp-foto img {
  aspect-ratio: 5 / 4;
  width: 100%;
  object-fit: cover;
  transition: transform 1.2s;
}

.exp-foto:hover img { transform: scale(1.04); }

.exp-topics { border-block: 2px solid rgb(27 58 92 / 0.12); }

.exp-topics li { padding-block: 1.75rem; }

.exp-topics li + li { border-top: 2px solid rgb(27 58 92 / 0.12); }

.exp-topics h3 { font-size: 1.5rem; color: var(--deep); }

.exp-topics p { margin-top: 0.5rem; max-width: 28rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

@media (min-width: 1024px) {
  .exp-grid { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 5rem; }
}

/* --- Galeria --- */
.gal-head { display: grid; gap: 1.25rem; }

.gal-head .eyebrow { color: var(--gold); }
.gal-head h2 { margin-top: 1.25rem; color: var(--sand); }
.gal-head > p { max-width: 24rem; font-size: 0.875rem; line-height: 1.625; color: rgb(250 245 233 / 0.65); }

.gal-grid {
  margin-top: 3rem;
  display: grid;
  grid-auto-rows: 180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gal-item {
  overflow: hidden;
  border-radius: 0.375rem;
  border: 4px solid rgb(250 245 233 / 0.85);
}

.gal-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.9s ease-out, filter 0.9s ease-out;
}

.gal-item:hover img { transform: scale(1.05); filter: brightness(1.06); }

@media (min-width: 640px) {
  .gal-grid { grid-auto-rows: 200px; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
  .gal-span-2x2 { grid-column: span 2; grid-row: span 2; }
  .gal-span-2 { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .gal-head { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
}

/* --- Depoimentos --- */
.testi-head { display: grid; gap: 1.5rem; }

.testi-head .eyebrow { color: var(--sea); }
.testi-head h2 { margin-top: 1.5rem; color: var(--deep); }

.testi-arrows { display: flex; gap: 0.75rem; }

.testi-arrows button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.375rem;
  border: 2px solid var(--deep);
  color: var(--deep);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.testi-arrows button:first-child:hover { background: var(--deep); color: var(--gold); }

.testi-arrows button:last-child { background: var(--deep); color: var(--gold); }
.testi-arrows button:last-child:hover { transform: translateY(-2px); }

.testi-track {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.testi-card {
  width: 86%;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 0.5rem;
  border: 2px solid var(--deep);
  background: var(--card);
  padding: 1.75rem;
}

.testi-stars { display: flex; gap: 0.25rem; }

.testi-stars .icon { width: 1rem; height: 1rem; fill: var(--gold); stroke: var(--deep); }

.testi-card > p { margin-top: 1.25rem; font-size: 0.95rem; line-height: 1.8; color: rgb(27 58 92 / 0.85); }

.testi-autor { margin-top: 1.75rem; border-top: 2px solid rgb(27 58 92 / 0.12); padding-top: 1.25rem; }

.testi-autor .nome { font-family: var(--font-display); font-size: 1.25rem; color: var(--deep); }

.testi-autor .papel {
  margin-top: 0.25rem;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .testi-head { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
  .testi-card { width: 48%; }
}

@media (min-width: 1024px) { .testi-card { width: 31%; } }

/* --- Localização --- */
.loc-head .eyebrow { color: var(--gold); }
.loc-head h2 { margin-top: 1.25rem; color: var(--sand); }

.loc-grid { margin-top: 3rem; display: grid; gap: 2rem; }

.loc-map {
  overflow: hidden;
  border-radius: 0.5rem;
  border: 4px solid rgb(250 245 233 / 0.25);
}

.loc-map iframe { height: 320px; width: 100%; }

.loc-card {
  border-radius: 0.5rem;
  border: 2px solid rgb(250 245 233 / 0.2);
  background: var(--deep-soft);
  padding: 2rem;
}

.loc-card h3 { font-size: 1.875rem; color: var(--gold); }

.loc-card ul { margin-top: 2rem; display: grid; gap: 1.5rem; font-size: 0.875rem; }

.loc-card li { display: flex; gap: 1rem; }

.loc-card .icon { margin-top: 0.125rem; color: var(--gold); }

.loc-card .rotulo {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(250 245 233 / 0.55);
}

.loc-card .valor { margin-top: 0.25rem; line-height: 1.625; color: rgb(250 245 233 / 0.9); }

.loc-card a.valor { display: block; transition: color 0.2s; }
.loc-card a.valor:hover { color: var(--gold); }

.loc-card .btn-gold { margin-top: 2.25rem; width: 100%; padding: 1rem 1.5rem; }

@media (min-width: 640px) { .loc-map iframe { height: 440px; } }

@media (min-width: 1024px) {
  .loc-grid { grid-template-columns: 1.4fr 1fr; }
  .loc-map iframe { height: 100%; min-height: 480px; }
  .loc-card { padding: 2.5rem; }
}

/* --- Reservas (CTA) --- */
.reserve { text-align: center; padding-bottom: 5rem; }

.bunting {
  margin-inline: auto;
  display: block;
  height: 3.5rem;
  width: 100%;
  max-width: 64rem;
  padding-inline: 1.25rem;
}

.reserve-inner { margin-inline: auto; margin-top: 2.5rem; max-width: 56rem; padding-inline: 1.25rem; }

.reserve .whale { margin-inline: auto; width: 3rem; height: 3rem; color: var(--deep); }

.reserve .eyebrow { margin-top: 1.5rem; color: rgb(27 58 92 / 0.7); }

.reserve h2 { margin-top: 1.5rem; color: var(--deep); }

.reserve > .reserve-inner > p {
  margin-inline: auto;
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.625;
  color: rgb(27 58 92 / 0.75);
}

.reserve-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.reserve-ctas .btn-stamp { padding: 1rem 2rem; }

.reserve .horario {
  margin-top: 2rem;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgb(27 58 92 / 0.6);
}

@media (min-width: 640px) { .bunting { height: 4rem; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--deep);
  color: var(--sand);
  padding: 7rem 0 3.5rem;
}

.footer-grid { display: grid; gap: 3rem; }

.footer-brand { display: flex; align-items: center; gap: 0.75rem; }

.footer-brand img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.375rem;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.footer-brand span { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }

.footer-desc { margin-top: 1.5rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.625; color: rgb(250 245 233 / 0.7); }

.footer-social { margin-top: 1.5rem; display: flex; gap: 0.75rem; }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.375rem;
  border: 2px solid rgb(250 245 233 / 0.3);
  transition: border-color 0.3s, color 0.3s;
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-title {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgb(244 196 48 / 0.85);
}

.footer-links { margin-top: 1.25rem; display: grid; gap: 0.75rem; font-size: 0.875rem; }

.footer-links a { color: rgb(250 245 233 / 0.8); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact { margin-top: 1.25rem; display: grid; gap: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: rgb(250 245 233 / 0.8); }

.footer-contact a:hover { color: var(--gold); }

.footer-contact .horas { color: rgb(250 245 233 / 0.55); }

.footer-bottom {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 2px solid rgb(250 245 233 / 0.15);
  padding-top: 2rem;
}

.footer-bottom .copy { font-size: 0.75rem; color: rgb(250 245 233 / 0.55); }

.footer-bottom .assinatura {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(250 245 233 / 0.55);
}

.footer-bottom .assinatura .icon { width: 1rem; height: 1rem; color: rgb(244 196 48 / 0.7); }

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* ============================================================
   PÁGINA DO CARDÁPIO
   ============================================================ */
.menu-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid rgb(250 245 233 / 0.15);
  background: var(--deep);
  color: var(--sand);
}

.menu-header-inner {
  max-width: 86rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}

.menu-header .header-brand img { border-color: var(--gold); }

.menu-header .header-brand span { display: none; color: var(--gold); }

.menu-header-actions { display: flex; align-items: center; gap: 0.5rem; }

.menu-header-actions .btn-ghost-sand { padding: 0.625rem 1rem; }
.menu-header-actions .btn-pdf { display: none; }
.menu-header-actions .btn-gold { padding: 0.625rem 1.25rem; }

@media (min-width: 640px) {
  .menu-header .header-brand span { display: block; }
  .menu-header-actions .btn-pdf { display: inline-flex; }
  .menu-header-inner { padding-inline: 2rem; }
}

.menu-hero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--sand);
}

.menu-hero-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.menu-hero-tint {
  position: absolute;
  inset: 0;
  background: rgb(244 196 48 / 0.15);
  mix-blend-mode: soft-light;
}

.menu-hero-inner {
  position: relative;
  max-width: 86rem;
  margin-inline: auto;
  padding: 5rem 1.25rem;
}

.menu-hero .eyebrow { display: flex; align-items: center; gap: 0.5rem; color: var(--gold); }

.menu-hero h1 { margin-top: 1.25rem; max-width: 48rem; color: var(--sand); }

.menu-hero p { margin-top: 1.5rem; max-width: 36rem; font-size: 0.875rem; line-height: 1.625; color: rgb(250 245 233 / 0.75); }

.menu-hero .btn-gold { margin-top: 2rem; padding: 1rem 1.75rem; }

@media (min-width: 640px) { .menu-hero-inner { padding-inline: 2rem; } }
@media (min-width: 1024px) { .menu-hero-inner { padding-block: 7rem; } }

.menu-tabs-bar {
  position: sticky;
  top: 70px;
  z-index: 40;
  border-bottom: 2px solid rgb(27 58 92 / 0.15);
  background: rgb(250 245 233 / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.menu-tabs {
  max-width: 86rem;
  margin-inline: auto;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 1.25rem;
}

.menu-tab {
  flex-shrink: 0;
  border-radius: 0.375rem;
  border: 2px solid rgb(27 58 92 / 0.25);
  padding: 0.625rem 1.25rem;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(27 58 92 / 0.7);
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}

.menu-tab:hover { border-color: var(--deep); color: var(--deep); }

.menu-tab.active { border-color: var(--deep); background: var(--deep); color: var(--gold); }

@media (min-width: 640px) { .menu-tabs { padding-inline: 2rem; } }

.menu-content { padding-block: 4rem; }

.menu-group[hidden] { display: none; }

.menu-intro { max-width: 36rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

.menu-sections { margin-top: 3rem; display: grid; gap: 3.5rem 4rem; }

.menu-sec h2 { font-size: 1.875rem; color: var(--deep); }

.menu-sec .rule-gold { margin-top: 1rem; }

.menu-sec ul { margin-top: 1.5rem; border-top: 2px solid rgb(27 58 92 / 0.15); }

.menu-sec li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-block: 1rem;
}

.menu-sec .item-info { min-width: 0; flex: 1; }

.menu-sec .item-nome { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700; }

.menu-sec .item-desc { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

.menu-sec .item-preco {
  flex-shrink: 0;
  font-family: var(--font-condensed);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--sea);
}

.menu-sec .mais-opcoes {
  margin-top: 1rem;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.menu-footer {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  border-top: 2px solid rgb(27 58 92 / 0.15);
  padding-top: 2.5rem;
}

.menu-footer > p { max-width: 28rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

.menu-footer-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.menu-footer-ctas .btn-stamp { padding: 1rem 1.75rem; }

@media (min-width: 640px) {
  .menu-footer { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .menu-content { padding-block: 6rem; }
  .menu-sections { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   REVEAL + MOVIMENTO REDUZIDO
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .high-card .foto img, .exp-foto img, .gal-item img { transition: none; }
}
