:root {
  --cream: #FAF3E1;
  --off-white: #FFFCF5;
  --charcoal: #2E2A22;
  --gold: #B8862E;
  --gold-dark: #96691F;
  --gold-on-dark: #CDAA6D; /* gold text on dark/photo backgrounds — plain --gold fails WCAG AA (~3.2-4.4:1) on --brown-dark; this hits ≥4.7:1. Rule: --gold for text on light bg, --gold-on-dark for text on dark bg (never plain --gold on --brown-dark or photos) */
  --leaf: #8FA662;
  --yellow: #E4D816;
  --brown-dark: #33291D;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5b;
  --border: rgba(46, 42, 34, 0.12);
  --radius: 14px;
  --shadow: 0 12px 32px rgba(46, 42, 34, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Lora", Georgia, serif;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
}

.section-dark .eyebrow { color: var(--gold-on-dark); }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--off-white);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--charcoal); /* white text only hit 1.98:1 on this green (fails AA); charcoal hits 7.2:1 */
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.section-dark .btn-ghost { color: var(--off-white); }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}
.brand-logo { height: 58px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link.active { color: var(--gold); }

.brand { transition: transform 0.25s ease; }
.brand:hover { transform: scale(1.03) rotate(-1deg); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--charcoal);
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* Hero — split layout: copy left, big photo right, everything above the fold on desktop */

.hero-split {
  background: var(--brown-dark);
  color: var(--off-white);
  overflow: hidden;
}

.hero-split-inner {
  display: flex;
  align-items: stretch;
  gap: 56px;
  min-height: calc(100vh - 76px);
  padding: 48px 64px;
}

.hero-split-copy {
  width: 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow-light { color: var(--gold-on-dark); }

.hero-split-h1 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 3.4vw, 3.3rem);
  line-height: 1.16;
  color: var(--cream);
  max-width: 16ch;
  margin: 0;
}

.hl-anos {
  position: relative;
  display: inline-block;
  color: var(--gold-on-dark);
}
.hl-anos::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.04em;
  height: 0.06em;
  min-height: 3px;
  background: var(--gold-on-dark);
  transform-origin: left center;
  animation: hlDraw 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
@keyframes hlDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hl-anos::after { animation: none; transform: scaleX(1); }
}

.hero-split-sub {
  font-size: 1.05rem;
  color: rgba(255, 252, 245, 0.82);
  margin: 18px 0 0;
  max-width: 42ch;
}
/* linha "digitando" com produtos que trocam — apetite + vida no hero */
.hero-split-type {
  font-family: "Lora", Georgia, serif;
  font-size: 1.08rem;
  color: rgba(255, 252, 245, 0.9);
  margin: 8px 0 0;
}
.hero-split-type .tw { color: var(--gold-on-dark); font-weight: 700; white-space: nowrap; }
.hero-split-type .tw-caret {
  display: inline-block; width: 2px; height: 1em; margin-left: 3px;
  background: var(--gold-on-dark); vertical-align: -0.14em; border-radius: 1px;
  animation: twBlink 1.05s steps(1) infinite;
}
@keyframes twBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-split-type .tw-caret { animation: none; opacity: 0; } }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 28px;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 252, 245, 0.55);
  color: var(--off-white);
}

.hero-split-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 252, 245, 0.85);
}
.hero-split-social strong { color: var(--gold-on-dark); font-weight: 700; }
.hero-split-social .dot { opacity: 0.5; }

.hero-split-photo {
  width: 46%;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-split-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(51, 41, 29, 0.35), rgba(51, 41, 29, 0) 30%);
}

/* Mobile: photo becomes full-bleed background with a scrim so copy stays readable — not yet fine-tuned, desktop is the priority for this round */
@media (max-width: 900px) {
  .hero-split { position: relative; min-height: 100svh; }
  .hero-split-inner { flex-direction: column; padding: 0; gap: 0; min-height: 100svh; }
  .hero-split-photo { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; border-radius: 0; box-shadow: none; }
  .hero-split-photo::after { background: linear-gradient(180deg, rgba(51,41,29,0.55) 0%, rgba(51,41,29,0.8) 50%, rgba(51,41,29,0.96) 100%); }
  .hero-split-copy { width: 100%; position: relative; z-index: 1; padding: 32px 24px 40px; justify-content: flex-end; }
  .hero-split-h1 { max-width: none; font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* Marquee */

.marquee-strip {
  background: var(--brown-dark);
  color: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.marquee-track span::after {
  content: "·";
  margin-left: 48px;
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Wave dividers entre seções */

.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 70px;
  animation: waveBob 7s ease-in-out infinite;
}
@keyframes waveBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
.wave-dark-to-light { background: var(--brown-dark); }
.wave-dark-to-light path { fill: var(--off-white); }
.wave-light-to-dark { background: var(--off-white); }
.wave-light-to-dark path { fill: var(--brown-dark); }
@media (prefers-reduced-motion: reduce) {
  .wave-divider svg { animation: none; }
}

/* Sections */

.section { padding: 88px 0; }
.section-dark {
  background: var(--brown-dark);
  color: var(--off-white);
}
.section-dark h2, .section-dark h3 { color: var(--off-white); }
.section-dark p { color: rgba(255, 252, 245, 0.78); }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { color: rgba(46, 42, 34, 0.7); }
.section-dark .section-head p { color: rgba(255, 252, 245, 0.78); }

/* Historia */

.historia-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.historia-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.historia-tags span {
  border: 1px solid rgba(255, 252, 245, 0.3);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  color: var(--gold);
}
.historia-media {
  background: rgba(255, 252, 245, 0.06);
  border-radius: 24px;
  padding: 32px;
  color: var(--gold);
}
.historia-media-photo {
  padding: 14px 14px 44px;
  position: relative;
  transition: transform 0.4s ease;
}
.historia-media-photo:hover { transform: rotate(-1deg) scale(1.02); }
.historia-media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: sepia(0.25) contrast(1.02);
}
.historia-photo-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 252, 245, 0.6);
  font-style: italic;
}

/* Especialidades */

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.especialidade-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.especialidade-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.especialidade-card .ico {
  display: inline-flex;
  width: 48px;
  height: 48px;
  transition: transform 0.25s ease;
}
.especialidade-card:hover .ico { transform: scale(1.15) rotate(-4deg); }
  color: var(--gold);
  margin-bottom: 18px;
}
.especialidade-card p { color: rgba(46, 42, 34, 0.72); margin-bottom: 0; }

.section-cta { text-align: center; margin-top: 40px; }

.vitrine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vitrine-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.vitrine-grid img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(46, 42, 34, 0.25);
}

/* Buffet */

.buffet-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.buffet-photos {
  display: grid;
  gap: 16px;
}
.buffet-photos img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.buffet-photos img:hover { transform: translateY(-6px) scale(1.02); }
.buffet-photos img:first-child { margin-left: -24px; }
.buffet-head { text-align: left; margin: 0 0 28px; max-width: none; }

.buffet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.buffet-card {
  border: 1px solid rgba(255, 252, 245, 0.18);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.buffet-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(255, 252, 245, 0.04);
}
.buffet-card p { margin-bottom: 0; }

/* Localizacao */

.local-photo {
  margin-bottom: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 260px;
}
.local-photo img { width: 100%; height: 260px; object-fit: cover; object-position: center 58%; display: block; background: var(--cream); }

.local-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.local-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--border);
}
.local-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

.local-info { display: flex; flex-direction: column; gap: 18px; }
.local-info-card {
  display: flex;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.local-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.local-info-card .icon { font-size: 1.4rem; }
.local-info-card h3 { margin-bottom: 6px; }
.local-info-card p { margin-bottom: 6px; color: rgba(46, 42, 34, 0.75); }
.local-info-card .link {
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
}

/* Instagram Stories */

.insta-stories {
  display: flex;
  justify-content: center;
  gap: 24px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
  .insta-stories { justify-content: flex-start; }
}
.insta-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.insta-story-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  transition: transform 0.25s ease;
}
.insta-story:hover .insta-story-ring { transform: scale(1.07); }
.insta-story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--cream);
}
.insta-story-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}
.insta-cta { display: flex; justify-content: center; }
.insta-cta .btn { display: inline-flex; align-items: center; gap: 9px; }

/* Footer */

.site-footer {
  background: var(--brown-dark);
  color: var(--off-white);
  padding: 48px 0 28px;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; color: rgba(255, 252, 245, 0.8); font-size: 0.9rem; }
.footer-bottom {
  max-width: 1160px;
  margin: 28px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255, 252, 245, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 252, 245, 0.55);
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 60;
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  to { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::after { animation: none; }
}

/* Scroll reveal */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===================================================================
   Cardápio / carrinho (site/cardapio.html)
   =================================================================== */

.page-hero {
  padding: 56px 0 40px;
  text-align: center;
}
.page-hero p { max-width: 56ch; margin: 0 auto; color: rgba(46, 42, 34, 0.72); }

.menu-hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
.menu-hero-strip img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.menu-hero-strip img:hover { transform: translateY(-6px) scale(1.03); }

.menu-section-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.menu-section-grid-reverse { grid-template-columns: 1.15fr 0.85fr; }
.menu-section-grid-reverse .menu-section-photo { order: 2; }
.menu-section-grid-reverse .menu-section-main { order: 1; }

.menu-section-photo {
  position: sticky;
  top: 96px;
}
.menu-section-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.menu-section-photo-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.menu-section-photo-double img { height: 300px; }
.menu-section-photo-double img:first-child { margin-top: 32px; }

.menu-section-head-left { max-width: none; margin: 0 0 28px; text-align: left; }

.cat-nav {
  position: sticky;
  top: 76px;
  z-index: 40;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.cat-nav .container {
  display: flex;
  gap: 8px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.cat-nav a {
  white-space: nowrap;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.cat-nav a:hover,
.cat-nav a.active {
  background: var(--gold);
  color: var(--off-white);
  border-color: var(--gold);
}

.menu-section { padding: 56px 0; scroll-margin-top: 150px; }
.menu-section:nth-child(even) { background: var(--cream); }

.menu-section-head { max-width: 640px; margin: 0 auto 32px; text-align: center; }
.menu-section-head p { color: rgba(46, 42, 34, 0.7); }

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 40px;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item h3 { font-family: "Inter", sans-serif; font-size: 1rem; font-weight: 600; margin: 0; }

.menu-flavors-extra {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  font-size: 0.9rem;
  color: rgba(46, 42, 34, 0.7);
}
.menu-flavors-extra strong { color: var(--charcoal); }

.menu-note {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius);
}
.menu-note p { margin-bottom: 16px; color: rgba(46, 42, 34, 0.75); }

/* Stepper */

.stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  flex-shrink: 0;
}
.stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--off-white);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease;
}
.stepper-btn:hover { transform: scale(1.08); }
.stepper-btn.minus {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.stepper[data-qty="0"] .stepper-btn.minus,
.stepper[data-qty="0"] .stepper-qty { display: none; }
.stepper-qty {
  min-width: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.92rem;
}

/* Carrinho (floating trigger + drawer) */

.cart-trigger {
  position: fixed;
  bottom: 98px;
  right: 26px;
  height: 58px;
  width: 58px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--off-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  box-shadow: 0 14px 30px rgba(184, 134, 46, 0.35);
  z-index: 60;
  cursor: pointer;
  transition: width 0.2s ease, padding 0.2s ease;
}
.cart-trigger-icon { display: flex; flex-shrink: 0; }
.cart-trigger-info { display: none; flex-direction: column; align-items: flex-start; line-height: 1.1; white-space: nowrap; }
.cart-trigger-count { font-size: 0.8rem; font-weight: 700; }
body.cart-has-items .cart-trigger { width: auto; padding: 0 20px 0 18px; }
body.cart-has-items .cart-trigger-info { display: flex; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 42, 34, 0.4);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--off-white);
  z-index: 80;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -20px 0 50px rgba(46, 42, 34, 0.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-head h3 { margin: 0; font-size: 1.25rem; }
.cart-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 1.25rem;
  cursor: pointer;
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; color: rgba(46, 42, 34, 0.6); padding: 60px 20px; font-size: 0.95rem; }
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-row-info h4 { font-family: "Inter", sans-serif; font-size: 0.95rem; font-weight: 600; margin: 0; }
.cart-footer { padding: 18px 24px 24px; border-top: 1px solid var(--border); background: var(--cream); }
.cart-checkout { width: 100%; justify-content: center; }
.cart-note { font-size: 0.78rem; color: rgba(46, 42, 34, 0.6); text-align: center; margin-top: 10px; }

/* ===================================================================
   Curiosidades — stack de cards estilo Stories
   =================================================================== */

.story-stack {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 14px;
  user-select: none;
}

.story-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}
.story-progress .seg {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.2);
  overflow: hidden;
}
.story-progress .seg span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--yellow);
  transition: width 0.25s ease;
}
.story-progress .seg.is-done span { width: 100%; }
.story-progress .seg.is-active span { width: 100%; }

.story-viewport {
  position: relative;
  height: 460px;
}

.story-card {
  position: absolute;
  inset: 0;
  background: var(--brown-dark);
  border: 1px solid rgba(255, 252, 245, 0.14);
  border-radius: 22px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  transform-origin: center bottom;
  transition: transform 0.45s cubic-bezier(.2,.8,.25,1), opacity 0.45s ease;
}
.story-card.no-transition { transition: none; }

.story-card-photo { height: 100%; min-height: 0; overflow: hidden; }
.story-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-card-body {
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  padding: 38px 44px 38px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.story-card-body h3,
.story-card-body .story-text { flex-shrink: 0; }

.story-card h3 {
  color: var(--off-white);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.story-text p {
  color: rgba(255, 252, 245, 0.82);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 1em;
}

/* stacking offsets, set via inline JS classes */
.story-card.is-active { transform: translateY(0) scale(1); opacity: 1; z-index: 30; pointer-events: auto; }
.story-card.is-offset-1 { transform: translateY(20px) scale(0.96); opacity: 0.85; z-index: 20; pointer-events: none; }
.story-card.is-offset-2 { transform: translateY(36px) scale(0.93); opacity: 0.55; z-index: 10; pointer-events: none; }
.story-card.is-offset-far { transform: translateY(46px) scale(0.9); opacity: 0; z-index: 1; pointer-events: none; }
.story-card.is-exit-left { transform: translateX(-110%) rotate(-4deg); opacity: 0; z-index: 40; }
.story-card.is-exit-right { transform: translateX(110%) rotate(4deg); opacity: 0; z-index: 40; }

.story-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 252, 245, 0.12);
  color: var(--off-white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 50;
  transition: background 0.2s ease, transform 0.2s ease;
}
.story-arrow:hover { background: var(--gold); transform: translateY(-50%) scale(1.08); }
.story-prev { left: -64px; }
.story-next { right: -64px; }

.story-hint {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 252, 245, 0.5);
  margin-top: 46px;
}

@media (max-width: 1180px) {
  .story-prev { left: 8px; }
  .story-next { right: 8px; }
}

@media (max-width: 900px) {
  .story-card { display: flex; flex-direction: column; }
  .story-card-photo { height: 200px; flex: 0 0 200px; }
  .story-card-body { flex: 1; height: auto; padding: 22px 24px 26px; justify-content: flex-start; }
  .story-viewport { height: 560px; }
}

@media (max-width: 640px) {
  .story-arrow { display: none; }
}

/* Responsive */

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .historia-grid { grid-template-columns: 1fr; }
  .historia-media { order: -1; max-width: 220px; margin: 0 auto; }
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
  .buffet-layout { grid-template-columns: 1fr; }
  .buffet-photos { grid-template-columns: repeat(2, 1fr); margin-bottom: 8px; }
  .buffet-photos img:first-child { margin-left: 0; }
  .buffet-head { text-align: center; }
  .buffet-grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .vitrine-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-hero-strip { grid-template-columns: repeat(2, 1fr); }
  .menu-section-grid,
  .menu-section-grid-reverse { grid-template-columns: 1fr; }
  .menu-section-grid-reverse .menu-section-photo,
  .menu-section-grid-reverse .menu-section-main { order: initial; }
  .menu-section-photo { position: static; }
  .menu-section-photo img { height: 240px; }
  .menu-section-photo-double img:first-child { margin-top: 0; }
  .menu-section-head-left { text-align: center; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }
  .main-nav.nav-open { transform: translateY(0); }
  .main-nav .nav-link { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .main-nav .btn-whatsapp { margin-top: 12px; justify-content: center; }
  .especialidades-grid { grid-template-columns: 1fr; }
  .vitrine-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .brand-logo { height: 42px; }
  .brand { gap: 8px; }
}
