/* ============ TOKENS ============ */
:root {
  --green: #01322F;
  --green-deep: #02312E;
  --orange: #D7551B;
  --orange-light: #F37742;
  --cream: #F3ECDF;
  --cream-2: #F2ECE0;
  --gold: #CDA67C;
  --ink: #1E1E1E;
  --white: #FFFFFF;
  --gray: #4a4a4a;

  --font-display: "Ricky Bold", "Ricky", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 12px 36px rgba(1, 50, 47, 0.10);
  --hero-title-size: clamp(2.3rem, 4.4vw, 3.8rem);
  --hero-title-line: 1.08;
  --hero-lead-size: 1.05rem;
  --hero-lead-width: 520px;
  --hero-kicker-color: var(--gold);
  --hero-kicker-size: 0.82rem;
  --hero-kicker-letter: 0.2em;
  --hero-kicker-weight: 700;
  --hero-kicker-margin: 18px;
}

/* Fonte principal Ricky Bold: usa a instalada no PC (local) ou o arquivo em fonts/ se existir */
@font-face {
  font-family: "Ricky Bold";
  src: local("Ricky Bold"), local("Ricky");
  font-weight: 400 900;
  font-display: swap;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0; }
input, textarea, select, button { font: inherit; color: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.accent { color: var(--orange); }
.eyebrow {
  text-transform: uppercase; letter-spacing: var(--hero-kicker-letter); font-weight: var(--hero-kicker-weight);
  font-size: var(--hero-kicker-size); color: var(--hero-kicker-color);
  margin-bottom: 14px; display: inline-block;
}
.eyebrow-dark { color: var(--hero-kicker-color); }
.eyebrow-on-dark { color: var(--gold); }
.muted { opacity: .8; font-size: 0.9rem; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #c14a16; }
.btn-outline-light { color: var(--white); border-color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--green); }
.btn-outline-dark { color: var(--green); border-color: var(--green); background: transparent; }
.btn-outline-dark:hover { background: var(--green); color: var(--white); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #024a45; }

/* ============ HEADER / NAV (transparente -> opaco no scroll) ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  color: var(--white);
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(1, 25, 23, .55), rgba(1, 25, 23, 0));
  transition: opacity .3s ease;
}
.site-header.scrolled {
  background: var(--green);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .20);
}
.site-header.scrolled::before { opacity: 0; }
.nav {
  display: flex; align-items: center; gap: 24px;
  padding: 12px 24px; min-height: 92px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 74px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 26px; margin-left: auto; margin-right: 16px;
  font-size: 0.92rem; font-weight: 500;
}
.nav-links a {
  position: relative; color: var(--white); opacity: .92;
  transition: opacity .2s, color .2s;
  text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.04em;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); opacity: 1; }
.btn-fale { background: var(--orange); color: var(--white); padding: 12px 24px; }
.btn-fale:hover { background: #c14a16; }
.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px; margin-left: auto;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--white); margin: 5px 0;
}

/* ============ PAGE HERO (página interna) ============ */
.page-hero {
  background: var(--green); color: var(--white);
  padding: 150px 0 100px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(215, 85, 27, 0.18), transparent 60%),
    radial-gradient(40% 40% at 10% 80%, rgba(205, 166, 124, 0.10), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  font-weight: 800; max-width: 800px; margin-bottom: 24px;
}
.page-hero p.lead {
  font-size: var(--hero-lead-size); max-width: var(--hero-lead-width);
  color: rgba(255, 255, 255, .85); margin-bottom: 32px;
}
.page-hero .eyebrow {
  color: var(--hero-kicker-color);
  font-size: var(--hero-kicker-size);
  letter-spacing: var(--hero-kicker-letter);
  font-weight: var(--hero-kicker-weight);
  margin-bottom: var(--hero-kicker-margin);
}
.page-hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero .ctas .btn-outline-dark {
  color: var(--white); border-color: var(--white);
}
.page-hero .ctas .btn-outline-dark:hover { background: var(--white); color: var(--green); }

/* ============ LOCALIZACAO HERO ============ */
.location-hero {
  min-height: clamp(560px, 53.4vw, 770px);
  padding: 140px 0 62px;
  display: flex;
  align-items: center;
  background: #050505 url("images/localizacao-hero.png") center center / cover no-repeat;
}
.location-hero::before {
  background: none;
}
.location-hero .container {
  max-width: var(--container);
  padding-left: 60px;
  padding-right: 60px;
}
.location-hero .eyebrow {
  color: var(--orange);
  font-size: var(--hero-kicker-size);
  letter-spacing: .02em;
  font-weight: 500;
  margin-bottom: 16px;
}
.location-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.1vw, 4rem);
  line-height: 1.02;
}
.location-hero h1 span {
  color: var(--orange);
}

/* ============ RESERVAS HERO ============ */
.reservation-hero {
  min-height: clamp(610px, 53vw, 770px);
  padding: 142px 0 58px;
  display: flex;
  align-items: center;
  background: #050505 url("images/reservas-hero.png") center center / cover no-repeat;
}
.reservation-hero::before {
  background: none;
}
.reservation-hero .container {
  max-width: var(--container);
}
.reservation-hero .eyebrow {
  color: var(--orange);
  font-size: var(--hero-kicker-size);
  letter-spacing: .02em;
  font-weight: 500;
  margin-bottom: 18px;
}
.reservation-hero h1 {
  max-width: 590px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(3rem, 5.1vw, 4rem);
  line-height: 1.02;
}
.reservation-hero h1 span {
  color: var(--orange);
}
.reservation-hero .lead {
  max-width: 560px;
  color: rgba(255, 255, 255, .92);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 34px;
}
.reservation-hero .ctas {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.reservation-hero .ctas .btn {
  border-radius: 6px;
  min-width: 200px;
  padding: 16px 24px;
  letter-spacing: 0;
  font-size: 1rem;
}
.reservation-hero .ctas .btn-outline-dark {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

/* ============ CARDAPIO HERO ============ */
.menu-hero {
  min-height: 760px;
  padding: 190px 0 78px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
}
.menu-hero::before {
  background: none;
}
.menu-hero .container {
  max-width: var(--container);
}
.menu-hero-copy {
  max-width: 690px;
}
.menu-hero .eyebrow {
  color: var(--hero-kicker-color);
  font-size: var(--hero-kicker-size);
  letter-spacing: var(--hero-kicker-letter);
  font-weight: var(--hero-kicker-weight);
  margin-bottom: var(--hero-kicker-margin);
}
.menu-hero h1 {
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.menu-hero .lead {
  max-width: var(--hero-lead-width);
  color: var(--white);
  font-size: var(--hero-lead-size);
  line-height: 1.55;
  margin-bottom: 32px;
}
.menu-hero-dishes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  width: min(100%, 650px);
}
.menu-hero-dish {
  position: relative;
  height: 112px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.menu-hero-dish::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 24%, rgba(0,0,0,.74) 100%);
}
.menu-hero-dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-hero-dish span {
  position: absolute;
  z-index: 2;
  left: 8px;
  right: 8px;
  bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,.65);
}

.history-hero {
  min-height: 560px;
  padding: 118px 0 64px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
}
.history-hero::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .48) 34%, rgba(0, 0, 0, .16) 70%, rgba(0, 0, 0, .04) 100%);
}
.history-hero .container {
  max-width: var(--container);
}
.history-hero-copy {
  max-width: 600px;
  color: var(--white);
}
.history-hero-kicker {
  color: var(--hero-kicker-color);
  font-size: var(--hero-kicker-size);
  line-height: 1.4;
  letter-spacing: var(--hero-kicker-letter);
  font-weight: var(--hero-kicker-weight);
  text-transform: uppercase;
  margin-bottom: var(--hero-kicker-margin);
}
.history-hero h1 {
  color: var(--white);
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-line);
  font-weight: 800;
  letter-spacing: 0;
}
.history-hero h1 span {
  color: var(--orange);
}

/* ============ HOME HERO (imagem de fundo + texto à esquerda) ============ */
.hero {
  position: relative; color: var(--white); overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
  padding: 150px 0 90px;
  background-size: cover; background-position: center right;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: none; /* a imagem do hero já tem a área escura à esquerda */
}
.hero-inner { position: relative; }
.hero-copy { max-width: 600px; }
.hero .eyebrow {
  color: var(--hero-kicker-color);
  font-size: var(--hero-kicker-size);
  letter-spacing: var(--hero-kicker-letter);
  font-weight: var(--hero-kicker-weight);
  margin-bottom: var(--hero-kicker-margin);
}
.hero-copy h1 {
  font-size: var(--hero-title-size); font-weight: 800; margin: 18px 0 24px;
  line-height: var(--hero-title-line);
}
.hero-lead { font-size: var(--hero-lead-size); max-width: var(--hero-lead-width); color: rgba(255,255,255,.85); margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.whatsapp-link {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--white); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 0.92rem;
}
.whatsapp-link:hover { color: var(--white); }
.whatsapp-link .wa-ico {
  width: 38px; height: 38px;
  display: grid; place-items: center; color: #25D366; flex: none;
}
.whatsapp-link .wa-ico svg { width: 30px; height: 30px; }
.whatsapp-link .wa-text { position: relative; padding-bottom: 6px; }
.whatsapp-link .wa-text::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: #25D366;
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.whatsapp-link:hover .wa-text::after { transform: scaleX(1); }
.eyebrow-gold { color: var(--gold) !important; }

/* ============ BOTÃO FLUTUANTE WHATSAPP ============ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37, 211, 102, .55); }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; z-index: -1; animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--green); margin-bottom: 18px; }
.section-head .section-lead { color: var(--gray); font-size: 1.05rem; }
.section-head.on-dark h2 { color: var(--white); }
.section-head.on-dark .section-lead { color: rgba(255,255,255,.85); }

/* ============ DISHES (home): fundo verde + cards com foto ============ */
.dishes { background-color: var(--green); background-size: cover; background-position: center; padding: 14px 0 38px; }
.dishes .container { max-width: 1212px; padding: 0 30px; }
.dishes .section-head { margin-bottom: 22px; }
.dishes .section-head h2 { font-size: clamp(2.8rem, 4vw, 3.15rem); margin-bottom: 14px; }
.dishes .section-head .section-lead { font-size: 1.05rem; line-height: 1.45; font-weight: 600; }
.dish-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-bottom: 54px; align-items: end; }
.dish-card {
  position: relative;
  transition: transform .25s ease;
}
.dish-card:hover { transform: translateY(-6px); }
.dish-photo {
  width: 100%; height: auto; display: block;
}
.dish-card-body {
  position: absolute; left: 34px; right: 34px; bottom: 36px;
  padding: 0;
}
.dish-card-body h3 { color: var(--white); font-size: 2rem; margin-bottom: 12px; line-height: 1.12; }
.dish-card-body p { color: rgba(255,255,255,.96); font-size: 1rem; line-height: 1.43; font-weight: 600; }
.dish-card-body .accent { color: var(--orange-light); }

/* ============ STATS (creme + ícones) ============ */
.stats { background: var(--cream); padding: 80px 0 42px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-ico { width: 58px; height: auto; margin: 0 auto 14px; }
.stat-number { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--green); line-height: 1; }
.stat-label { font-size: 0.82rem; letter-spacing: 0.16em; font-weight: 700; margin-top: 8px; color: var(--ink); }
.stat-sub { font-size: 0.85rem; color: var(--gray); margin-top: 6px; }

/* ============ CARDS TWO (home): bg real ============ */
.cards-two { background: var(--cream); padding: 0 0 36px; }
.cards-two .container { max-width: 1260px; padding: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bigcard {
  position: relative; overflow: hidden;
  border-radius: 16px; height: 410px;
  display: flex; align-items: center; box-shadow: var(--shadow);
  background-size: cover; background-position: center;
}
.bigcard::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.bigcard-dark { background-color: #d4521a; background-size: auto 92%; background-position: right bottom; background-repeat: no-repeat; }
.bigcard-reserva { background-size: cover; background-position: center; }
.bigcard-dark::after { background: linear-gradient(90deg, rgba(150,42,8,.55) 0%, rgba(150,42,8,.12) 45%, rgba(150,42,8,0) 70%); }
.bigcard-reserva::after { background: linear-gradient(90deg, rgba(1,38,35,.92) 0%, rgba(1,38,35,.65) 42%, rgba(1,38,35,.1) 80%); }
.bigcard-body { position: relative; z-index: 2; padding: 38px 56px; width: 100%; color: var(--white); }
.bigcard-dark .bigcard-body { height: 100%; max-width: 420px; padding: 48px 0 34px 82px; }
.bigcard-reserva .bigcard-body { max-width: 575px; }
.bigcard-main { transform: translateY(-4px); }
.bigcard h3 { color: var(--white); font-size: clamp(1.7rem, 2.5vw, 2.2rem); margin: 14px 0 16px; }
.bigcard p { margin-bottom: 22px; opacity: .95; }
.bigcard-dark h3 { max-width: 360px; }
.bigcard-dark p { max-width: 255px; margin-bottom: 12px; }
.bigcard-dark .btn-outline-light {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.bigcard-dark .btn-outline-light:hover { background: #024a45; border-color: #024a45; color: var(--white); }
.bigcard-reserva .btn-primary {
  background: #F3D6A8;
  color: var(--ink);
}
.bigcard-reserva .btn-primary:hover { background: #eac891; }
.divider { height: 1px; background: rgba(255,255,255,.3); margin: 28px 0 16px; }
.bigcard-dark .divider { position: absolute; left: 82px; right: 280px; bottom: 74px; margin: 0; }
.capacity { display: flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 0.9rem; color: var(--white); }
.capacity-icon { width: 22px; height: auto; flex: none; }
.anota-row { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; }
.bigcard-dark .anota-row { position: absolute; left: 82px; bottom: 30px; }
.anota-row img { width: 82px; height: auto; }

/* ============ TESTIMONIALS (imagens) ============ */
.testimonials { background: var(--cream-2); padding: 42px 0 64px; }
.testimonials-title {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--green); letter-spacing: 0.16em;
  font-size: 1rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 34px;
}
.title-leaf { width: 30px; height: auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-img {
  margin: 0; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.testimonial-img:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(1,50,47,.14); }
.testimonial-img img { width: 100%; height: auto; display: block; }

/* ============ STORY (home: creme com folha) ============ */
.story { background: #F3ECDF url("images/story-bg.png") center/cover no-repeat; color: var(--ink); padding: 90px 0; position: relative; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.story-copy { padding-left: 48px; }
.story-head-row { position: relative; margin-bottom: 28px; }
.story-leaf {
  position: absolute; top: 50%; right: 100%;
  transform: translateY(-50%); margin-right: 12px;
  width: clamp(110px, 11vw, 165px); height: auto;
}
.story-copy h2 { color: var(--green); font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 0; }
.story-line1 { color: var(--green); }
.story-copy p { color: var(--gray); margin-bottom: 18px; }
.story-copy .btn { margin-top: 22px; }
.story-art img { width: 112%; max-width: none; }

/* ============ INSTAGRAM (verde) ============ */
.instagram { background: var(--green); padding: 64px 0 72px; }
.instagram .container { max-width: 1220px; }
.instagram-head { text-align: center; margin-bottom: 26px; }
.instagram-head .title-leaf { display: none; }
.instagram-head h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  line-height: 1.08;
  margin: 4px 0 0;
}
.instagram-head p {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.instagram-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; margin-bottom: 20px; }
.instagram-grid a {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(0,0,0,.26);
  transition: transform .25s ease, box-shadow .25s ease;
}
.instagram-grid a:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(0,0,0,.32); }
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.instagram-grid a:hover img { transform: scale(1.04); }
.instagram-btn {
  background: transparent;
  color: var(--white);
  border-color: var(--orange);
  border-width: 3px;
  border-radius: 7px;
  min-width: 296px;
}
.instagram-btn:hover { background: var(--orange); color: var(--white); }

/* ============ CARDÁPIO ============ */
.cat-tabs {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 42px 24px 22px;
  scrollbar-width: thin;
}
.cat-tab {
  flex: none;
  padding: 11px 18px; border-radius: 999px; background: var(--white);
  color: var(--green); border: 2px solid var(--green);
  font-weight: 800; text-transform: uppercase; font-size: 0.78rem;
  letter-spacing: 0.06em; cursor: pointer; transition: all .2s;
}
.cat-tab:hover, .cat-tab.active { background: var(--green); color: var(--white); }
.menu-section { padding: 30px 0 86px; background: var(--cream); }
.menu-section h2 {
  color: var(--green); font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center; margin-bottom: 8px;
}
.menu-section .menu-sub { text-align: center; color: var(--gray); margin-bottom: 42px; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.menu-card {
  background: #f3ecdf; border: 1px solid rgba(1, 50, 47, .24); border-radius: 10px;
  overflow: hidden; box-shadow: none; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(1,50,47,.12); }
.menu-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--cream); }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.menu-card h3 { color: var(--green); font-size: 1.25rem; margin-bottom: 10px; line-height: 1.2; }
.menu-card p { color: #151515; font-size: 0.9rem; line-height: 1.42; margin-bottom: 18px; flex: 1; }
.menu-card-foot { display: grid; gap: 12px; align-items: start; }
.menu-price { color: var(--orange); font-family: var(--font-body); font-weight: 900; font-size: 1rem; }
.menu-price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}
.menu-price-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(1, 50, 47, .22);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 255, 255, .36);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: .9rem;
  line-height: 1;
  white-space: nowrap;
}
.menu-link {
  width: 152px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-weight: 900;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
}
.menu-link span { font-size: 1.7rem; line-height: 1; transform: translateY(-1px); }
.menu-link:hover { background: var(--green); color: var(--white); }
.featured-menu-section { position: relative; overflow: hidden; }
.menu-section,
.menu-table-card { scroll-margin-top: 112px; }
.featured-menu-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 150px;
  height: 1px;
  background: rgba(212, 82, 26, .25);
}
.featured-menu-section .container { position: relative; }
.highlight-card { min-height: 376px; }
.menu-full-section {
  background: var(--cream-2);
  padding: 82px 0 40px;
}
.menu-full-section .container {
  display: grid;
  gap: 28px;
}
.menu-table-card {
  scroll-margin-top: 115px;
  background: #fffaf0;
  border: 1px solid rgba(1, 50, 47, .13);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(1, 50, 47, .08);
}
.menu-table-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(1, 50, 47, .14);
  padding-bottom: 16px;
}
.menu-table-header span {
  order: 2;
  color: var(--orange);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.menu-table-header h2 {
  color: var(--green);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
}
.menu-subheading {
  color: var(--orange);
  font-family: var(--font-body);
  font-size: .94rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 26px 0 10px;
}
.menu-note {
  color: var(--gray);
  font-weight: 700;
  margin: 0 0 14px;
}
.menu-notes {
  display: grid;
  gap: 10px;
  color: var(--gray);
  padding-left: 18px;
  font-weight: 600;
}
.menu-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(1, 50, 47, .1);
  background: var(--white);
}
.menu-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .94rem;
}
.menu-table th {
  background: var(--green);
  color: var(--white);
  text-align: left;
  padding: 12px 14px;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.menu-table td {
  padding: 12px 14px;
  color: #1f2b29;
  border-bottom: 1px solid rgba(1, 50, 47, .1);
  vertical-align: top;
}
.menu-table tbody tr:last-child td { border-bottom: 0; }
.menu-table .item-cell {
  color: var(--green);
  font-weight: 800;
  min-width: 300px;
}
.menu-action-cards {
  background: var(--cream);
  padding: 30px 0 78px;
}
.menu-action-cards .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1168px;
}
.menu-action-card {
  position: relative;
  height: 226px;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}
.menu-action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.menu-action-card-green { background: var(--green); }
.menu-action-card-orange { background: var(--orange); }
.menu-action-card-green::before {
  background: linear-gradient(90deg, rgba(1, 50, 47, .98) 0%, rgba(1, 50, 47, .9) 38%, rgba(1, 50, 47, .12) 100%);
}
.menu-action-card-orange::before {
  background: linear-gradient(90deg, rgba(212, 82, 26, .96) 0%, rgba(212, 82, 26, .88) 42%, rgba(212, 82, 26, .08) 100%);
}
.menu-action-card img {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: 56%;
  height: 100%;
  object-fit: cover;
}
.menu-action-card:first-child img { width: 55%; }
.menu-action-card:nth-child(2) img { width: 55%; }
.menu-action-card:last-child img { width: 45%; }
.menu-action-copy {
  width: 64%;
  padding: 38px 0 24px 32px;
  color: var(--white);
}
.menu-action-card:last-child .menu-action-copy { width: 74%; }
.menu-action-copy h2 {
  font-size: clamp(1.28rem, 1.65vw, 1.58rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
}
.menu-action-copy p {
  max-width: 220px;
  color: var(--white);
  font-size: .84rem;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 14px;
}
.menu-action-card-orange .menu-action-copy p { max-width: 185px; }
.menu-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 29px;
  padding: 0 16px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
}
.menu-action-btn-dark { background: var(--green); }
.menu-action-btn:hover {
  filter: brightness(1.06);
  color: var(--white);
}

/* ============ DELIVERY ============ */
.delivery-hero {
  min-height: clamp(620px, 58vw, 760px);
  padding: 176px 0 108px;
  display: flex;
  align-items: center;
  background: #050505 url("images/delivery/hero.png") center center / cover no-repeat;
}
.delivery-hero::before { background: none; }
.delivery-hero .container { max-width: var(--container); }
.delivery-hero .eyebrow {
  color: var(--orange);
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.delivery-hero h1 {
  max-width: 610px;
  color: var(--white);
  font-size: clamp(3.2rem, 5vw, 4.4rem);
  line-height: 1.06;
  margin-bottom: 24px;
}
.delivery-hero h1 span { color: var(--orange); }
.delivery-hero .lead {
  max-width: 650px;
  color: rgba(255,255,255,.88);
  font-size: 1.06rem;
  line-height: 1.55;
}
.btn-anota {
  gap: 10px;
  min-width: 250px;
}
.btn-anota img {
  width: 94px;
  height: auto;
}
.delivery-note {
  background: var(--cream);
  padding: 50px 0 54px;
  text-align: left;
}
.delivery-note .container { max-width: var(--container); }
.delivery-note p {
  max-width: 930px;
  margin: 0 auto 22px;
  color: #343434;
  font-size: 1.08rem;
  line-height: 1.62;
  font-weight: 700;
}
.delivery-note p:last-child { margin-bottom: 0; }
.delivery-schedule {
  background: var(--cream);
  color: var(--green);
  padding: 0 0 56px;
}
.delivery-panel {
  width: 100%;
  border: 3px solid rgba(205, 166, 124, .9);
  border-radius: 14px;
  padding: 42px 84px 32px;
}
.delivery-panel .section-head {
  max-width: none;
  margin: 0 0 28px;
  text-align: left;
}
.delivery-panel .section-head .eyebrow {
  color: var(--orange);
  letter-spacing: .02em;
  margin-bottom: 0;
  font-family: var(--font-body);
  font-size: 1.42rem;
  font-weight: 500;
}
.delivery-panel .section-head h2 {
  display: none;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  margin-bottom: 34px;
}
.schedule-block {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.schedule-block h3 {
  color: var(--green);
  font-size: 1.48rem;
  margin-bottom: 16px;
}
.schedule-row {
  display: flex;
  gap: 16px;
  padding: 8px 0 13px;
  border-bottom: 0;
  align-items: flex-start;
}
.schedule-dot {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: none;
}
.schedule-row p {
  color: #252525;
  font-size: .94rem;
  line-height: 1.55;
  font-weight: 700;
}
.schedule-reason {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 26px;
  align-items: center;
  max-width: 962px;
  margin: 0 auto;
  background: rgba(205,166,124,.24);
  border-radius: 6px;
  padding: 22px 36px;
}
.schedule-reason img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.schedule-reason p {
  color: #151515;
  font-size: .94rem;
  line-height: 1.55;
  font-weight: 800;
}
.delivery-areas {
  background: var(--cream);
  padding: 20px 0 20px;
}
.delivery-area-band {
  width: 100%;
  background:
    linear-gradient(rgba(0, 62, 55, .96), rgba(0, 62, 55, .96)),
    url("images/delivery/texture.png") center center / cover no-repeat,
    var(--green);
  border-radius: 8px;
  padding: 32px 52px 26px;
  color: var(--white);
}
.delivery-area-band > .eyebrow {
  display: block;
  text-align: center;
  color: var(--orange);
  letter-spacing: .02em;
  margin-bottom: 26px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.area-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  background: transparent;
  border-radius: 0;
  padding: 0 34px;
  text-align: left;
  box-shadow: none;
}
.area-card + .area-card { border-left: 2px solid rgba(205,166,124,.75); }
.area-icon {
  grid-row: 1 / span 2;
  width: 50px;
  height: 70px;
  object-fit: contain;
  margin: 0;
}
.area-card h3 {
  grid-column: 2;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.05;
  margin: 7px 0 4px;
}
.area-card .area-sub {
  grid-column: 2;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
  align-self: start;
  margin-top: -6px;
}
.area-note {
  text-align: center;
  margin: 32px auto 0;
  color: var(--gold);
  max-width: 940px;
  font-size: .95rem;
  line-height: 1.45;
  font-weight: 800;
}
.delivery-orange-cta {
  background: var(--cream);
  padding: 0 0 40px;
}
.delivery-orange-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 30px;
  width: 100%;
  background: var(--orange);
  border-radius: 8px;
  padding: 28px 100px;
}
.delivery-orange-card h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1;
  margin: 0;
}
.delivery-anota-link {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 9px;
  padding: 0 24px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
}
.delivery-anota-link img {
  width: 116px;
  height: auto;
}
.delivery-faq-cards {
  padding: 0 0 72px;
  background: var(--cream);
}
.delivery-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.faq-mini {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 24px;
  align-items: center;
  background: transparent;
  border: 2px solid rgba(205,166,124,.85);
  border-radius: 8px;
  padding: 34px 36px;
  box-shadow: none;
}
.faq-mini img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.faq-mini h3 {
  color: var(--green);
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.15;
}
.faq-mini p {
  color: #151515;
  font-size: .98rem;
  line-height: 1.55;
  font-weight: 700;
}

/* ============ FORM (reservas) ============ */
.reserva-form-section {
  background: var(--green);
  padding: 32px 0;
}
.reserva-form-section .container { max-width: var(--container); }
.reserva-form-grid {
  display: grid;
  grid-template-columns: 240px minmax(460px, 532px) 328px;
  gap: 24px;
  align-items: stretch;
}
.reserva-info {
  background: transparent;
  color: var(--white);
  padding: 132px 0 0;
  border-radius: 0;
}
.reserva-info .eyebrow {
  color: var(--orange) !important;
  letter-spacing: .02em;
  font-weight: 700;
  margin-bottom: 18px;
}
.reserva-info h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.reserva-info p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0;
}
.reserva-info ul { display: none; }
.reserva-form {
  background: var(--white);
  padding: 34px 22px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.reserva-form h3 { display: none; }
.reservation-phone-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 508px;
}
.reservation-phone-panel .eyebrow {
  color: var(--orange);
  font-size: .78rem;
  letter-spacing: .14em;
  font-weight: 900;
}
.reservation-phone-panel h4 {
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}
.reservation-phone-panel p {
  color: #232323;
  font-weight: 700;
  line-height: 1.55;
  max-width: 430px;
}
.reservation-phone-panel .btn {
  justify-content: center;
  width: 100%;
  border-radius: 7px;
  padding: 16px 20px;
}
.reservation-phone-panel small {
  display: block;
  color: var(--green);
  font-weight: 900;
  text-align: center;
}
.reserva-form-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}
.reserva-form-section .form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.reserva-form-section .form-field.full,
.reserva-form-section .form-field:has(#obs) {
  grid-column: 1 / -1;
}
.reserva-form-section .form-field label {
  font-size: .84rem;
  font-weight: 500;
  color: #151515;
}
.reserva-form-section .form-field label .opt {
  color: #151515;
  font-weight: 400;
  font-size: .78rem;
}
.reserva-form-section .form-field input,
.reserva-form-section .form-field select,
.reserva-form-section .form-field textarea {
  border: 1.5px solid #cfc8bd;
  background: var(--white);
  border-radius: 7px;
  padding: 13px 12px;
  transition: border-color .2s;
  width: 100%;
  font-size: .92rem;
  font-weight: 700;
}
.reserva-form-section .form-field input:focus,
.reserva-form-section .form-field select:focus,
.reserva-form-section .form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.reserva-form-section .form-field textarea {
  resize: vertical;
  min-height: 44px;
}
.reserva-form-section .form-actions { margin-top: 2px; }
.reserva-form-section .form-actions .btn {
  width: 100%;
  justify-content: center;
  border-radius: 7px;
  padding: 16px 20px;
  font-size: 1rem;
  letter-spacing: 0;
}
.reserva-form-photo {
  width: 100%;
  height: 100%;
  min-height: 508px;
  object-fit: cover;
  border-radius: 6px;
}

/* ============ HOW IT WORKS (reservas / eventos) ============ */
.how { background: var(--cream-2); padding: 100px 0; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.how-step {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; text-align: center; box-shadow: var(--shadow); position: relative;
}
.how-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.3rem;
  margin: 0 auto 16px;
}
.how-step h3 { color: var(--green); font-size: 1.05rem; margin-bottom: 6px; line-height: 1.3; }
.how-step p { color: var(--gray); font-size: 0.92rem; }

.reservation-note {
  background: var(--cream);
  padding: 44px 0 28px;
  text-align: left;
}
.reservation-note .container {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 36px;
  align-items: center;
}
.reservation-note-leaf {
  width: 62px;
  height: auto;
  justify-self: start;
}
.reservation-note p {
  max-width: none;
  color: var(--green);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 800;
}
.reservation-how {
  background: var(--cream);
  padding: 24px 0 58px;
}
.reservation-how .container {
  max-width: var(--container);
}
.reservation-how .section-head {
  max-width: none;
  margin: 0 0 30px;
  text-align: left;
  padding-left: 0;
}
.reservation-how .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.reservation-how .section-head .eyebrow img {
  width: 28px;
  height: auto;
}
.reservation-how .section-head h2 {
  color: var(--green);
  font-size: clamp(2rem, 3vw, 2.38rem);
  line-height: 1;
  margin: 0;
}
.reservation-how .how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  margin-top: 70px;
  padding-top: 42px;
}
.reservation-how .how-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100vw - 1200px) / -2);
  right: calc((100vw - 1200px) / -2);
  height: 1px;
  background: rgba(229, 86, 28, .45);
}
.reservation-how .how-step {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reservation-how .how-step-num {
  width: 42px;
  height: 42px;
  margin: -64px auto 30px;
  object-fit: contain;
}
.reservation-how .how-step-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 20px;
}
.reservation-how .how-step p {
  color: #151515;
  font-size: .84rem;
  line-height: 1.45;
  font-weight: 800;
}
.reservation-how .how-arrow {
  position: absolute;
  top: -14px;
  width: 27px;
  height: 27px;
  object-fit: contain;
  background: var(--cream);
}
.reservation-how .how-arrow:nth-of-type(1) { left: 24.6%; }
.reservation-how .how-arrow:nth-of-type(2) { left: 49.2%; }
.reservation-how .how-arrow:nth-of-type(3) { left: 73.8%; }

/* ============ FAQ ============ */
.faq-section { background: var(--cream); padding: 100px 0; }
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  background: var(--white); border-radius: var(--radius); margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(1,50,47,.06); overflow: hidden;
}
.faq-q {
  cursor: pointer; padding: 22px 26px;
  display: flex; align-items: center; gap: 14px;
  color: var(--green); font-weight: 600; font-size: 1.02rem;
}
.faq-q::marker, .faq-q::-webkit-details-marker { display: none; }
.faq-q .faq-num { color: var(--orange); font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; line-height: 1; }
.faq-q::after { content: "+"; margin-left: auto; color: var(--orange); font-size: 1.4rem; line-height: 1; }
details[open] .faq-q::after { content: "−"; }
.faq-a { padding: 0 26px 22px 60px; color: var(--gray); }

.faq-section {
  background: var(--cream);
  padding: 56px 0 34px;
}
.faq-section .container {
  max-width: var(--container);
}
.faq-section .section-head {
  max-width: none;
  margin: 0 0 8px;
  text-align: left;
}
.faq-section .section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.faq-section .section-head .eyebrow img {
  width: 28px;
  height: auto;
}
.faq-section .section-head h2 {
  color: var(--green);
  font-size: clamp(1.72rem, 2.7vw, 2.12rem);
  line-height: 1;
  margin: 0;
}
.faq-list {
  max-width: none;
  margin: 10px 0 0;
  border: 1px solid rgba(229, 86, 28, .52);
  border-radius: 9px;
  overflow: hidden;
}
.faq-item {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 86, 28, .42);
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-q {
  cursor: pointer;
  padding: 11px 18px 10px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #171717;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .94rem;
  line-height: 1.2;
}
.faq-q .faq-num {
  min-width: 30px;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1;
}
.faq-q::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
details[open] .faq-q::after {
  content: "";
  transform: rotate(225deg);
}
.faq-a {
  padding: 0 52px 12px 78px;
  color: #4b4b4b;
  font-size: .86rem;
  line-height: 1.45;
  font-weight: 600;
}

/* ============ TIMELINE (história) ============ */
.history-story {
  position: relative;
  background: var(--cream);
  padding: 54px 0 46px;
  overflow: hidden;
}
.history-story .container {
  max-width: 868px;
}
.history-story h2 {
  color: var(--ink);
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 2.62rem);
  line-height: 1;
  margin-bottom: 38px;
}
.history-story-row {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 0 0 46px;
  border-bottom: 1px solid rgba(205, 166, 124, .8);
}
.history-story-row + .history-story-row {
  grid-template-columns: .92fr 1fr;
  gap: 58px;
  padding-top: 46px;
}
.history-story-row:nth-of-type(3) {
  grid-template-columns: .92fr 1fr;
}
.history-story-row-last {
  border-bottom: 0;
  padding-bottom: 0;
}
.history-story-row-reverse .history-story-art {
  order: -1;
}
.history-story-copy {
  max-width: 456px;
}
.history-story-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 16px;
}
.history-story-num {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 3.58rem;
  font-weight: 900;
  line-height: .82;
}
.history-story-title h3 {
  color: var(--orange);
  font-size: 1.78rem;
  line-height: .98;
  max-width: 330px;
}
.history-story-title h3 span {
  color: var(--green);
}
.history-story-copy p {
  color: #080808;
  font-size: .9rem;
  line-height: 1.45;
  margin: 0 0 18px;
}
.history-story-copy p:last-child {
  margin-bottom: 0;
}
.history-story-art img {
  width: 100%;
  height: auto;
}
.history-story-row:first-of-type .history-story-art {
  max-width: 689px;
}
.history-story-row-reverse .history-story-art {
  max-width: 510px;
}
.history-story-row:nth-of-type(3) .history-story-art {
  max-width: 687px;
}
.history-story-row-last .history-story-art {
  max-width: 691px;
}
.timeline { background: var(--cream); padding: 100px 0; }
.timeline-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-bottom: 70px;
}
.timeline-item:nth-child(even) > .timeline-img { order: -1; }
.timeline-num { color: var(--orange); font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1; margin-bottom: 8px; }
.timeline-copy h3 { color: var(--green); font-size: 1.8rem; margin-bottom: 16px; }
.timeline-copy p { color: var(--gray); line-height: 1.7; }
.timeline-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ============ VALORES ============ */
.values { background: var(--green); color: var(--white); padding: 32px 0 30px; }
.values .container { max-width: 868px; }
.values-head {
  text-align: center;
  margin-bottom: 28px;
}
.values-head h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 2.8vw, 2.15rem);
  line-height: 1;
  margin-bottom: 8px;
}
.values-head p {
  color: var(--gold);
  font-weight: 800;
  font-size: .92rem;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card {
  min-height: 236px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 12px 12px 10px;
  text-align: center;
  transition: background .2s;
}
.value-card:hover { background: rgba(255,255,255,.04); }
.value-card img {
  width: 92px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.value-card h3 {
  color: var(--white);
  font-size: .94rem;
  line-height: 1.16;
  margin-bottom: 12px;
}
.value-card p {
  color: var(--white);
  font-size: .68rem;
  line-height: 1.28;
  font-weight: 700;
}
.history-final-cta {
  background: var(--cream) url("images/story-bg.png") center right / cover no-repeat;
  overflow: hidden;
}
.history-final-cta .container {
  min-height: 286px;
  max-width: 868px;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 24px;
}
.history-final-copy h2 {
  color: var(--green);
  font-size: clamp(1.9rem, 2.55vw, 2.18rem);
  line-height: 1.12;
  margin-bottom: 58px;
}
.history-final-copy h2 span {
  color: var(--orange);
}
.history-final-actions {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
}
.history-final-actions .btn {
  min-width: 182px;
  border-radius: 5px;
  padding: 12px 22px;
  letter-spacing: 0;
}
.history-final-actions .btn-outline-dark {
  background: transparent;
  border-color: var(--green);
}
.history-final-art {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.history-final-art img {
  width: min(100%, 540px);
  height: auto;
  transform: translateX(8px);
}

/* ============ LOCALIZAÇÃO ============ */
.loc-info {
  background: var(--cream);
  padding: 60px 0 52px;
}
.loc-info .container {
  max-width: 820px;
}
.loc-grid {
  display: grid;
  grid-template-columns: 330px 430px;
  column-gap: 60px;
  row-gap: 52px;
}
.loc-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 72px;
}
.loc-card .ico {
  width: 48px;
  height: 58px;
  object-fit: contain;
}
.loc-card h3 {
  color: var(--green);
  font-size: 1.28rem;
  line-height: 1.05;
  margin-bottom: 8px;
}
.loc-card p,
.loc-card a {
  color: #171717;
  font-size: .88rem;
  line-height: 1.35;
}
.loc-card a:hover { color: var(--orange); }
.loc-map { background: var(--cream-2); padding: 100px 0; }
.loc-map-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.map-frame { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.routes { background: var(--cream); padding: 100px 0; }
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.route-card {
  background: var(--white); padding: 26px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.route-card .r-from { color: var(--orange); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.route-card p { color: var(--gray); font-size: 0.95rem; }
.location-routes {
  background:
    url("images/leaf-green.png") left top / 220px auto no-repeat,
    url("images/leaf-green.png") right top / 220px auto no-repeat,
    var(--green);
  padding: 58px 0 54px;
  color: var(--white);
}
.location-routes .container {
  max-width: 936px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 98px;
  align-items: start;
}
.location-routes .eyebrow {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .02em;
  font-weight: 500;
  margin-bottom: 26px;
}
.location-routes-copy h2 {
  color: var(--white);
  font-size: clamp(2.65rem, 4.4vw, 3.35rem);
  line-height: .96;
  margin-bottom: 66px;
}
.location-routes-copy h2 span {
  color: var(--orange);
}
.location-routes-copy p {
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 600;
}
.location-routes .routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}
.location-routes .route-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 18px;
  align-items: start;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 24px;
}
.location-routes .route-card + .route-card {
  padding-top: 24px;
  border-top: 1px solid rgba(205, 166, 124, .8);
}
.location-routes .route-card img {
  width: 44px;
  height: 42px;
  object-fit: contain;
  grid-row: span 2;
}
.location-routes .route-card .r-from {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.location-routes .route-card p {
  color: var(--white);
  font-size: .82rem;
  line-height: 1.35;
}
.location-map-contact {
  background: var(--cream);
  padding: 34px 0 54px;
}
.location-map-contact .container {
  max-width: var(--container);
  padding-left: 0;
  padding-right: 0;
}
.location-map-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 88px;
  align-items: start;
  margin-bottom: 70px;
}
.location-map-copy .eyebrow,
.location-contact-copy .eyebrow {
  color: var(--orange);
  font-size: .9rem;
  letter-spacing: .02em;
  font-weight: 500;
  margin-bottom: 24px;
}
.location-map-copy h2 {
  color: var(--green);
  font-size: clamp(2.7rem, 4.2vw, 3.2rem);
  line-height: 1.03;
  margin-bottom: 64px;
}
.location-map-copy h2 span,
.location-contact-copy h2 span {
  color: var(--orange);
}
.location-map-copy p {
  color: #1c1c1c;
  font-size: 1.12rem;
  line-height: 1.35;
}
.location-map-frame {
  height: 304px;
  border: 1px solid rgba(229, 86, 28, .36);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.location-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.location-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 430px 1fr;
  align-items: center;
  height: 356px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(0, 62, 56, .18) 0%, rgba(0, 62, 56, .97) 38%, rgba(0, 62, 56, 1) 100%),
    var(--green);
}
.location-contact-card::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 28%;
  background: url("images/leaf-green.png") right center / 260px auto no-repeat;
  opacity: .2;
  pointer-events: none;
}
.location-contact-card > img {
  align-self: stretch;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.location-contact-copy {
  position: relative;
  z-index: 1;
  color: var(--white);
  align-self: start;
  max-width: 380px;
  padding: 42px 0 32px 54px;
}
.location-contact-copy h2 {
  color: var(--white);
  font-size: clamp(1.82rem, 2.55vw, 2.12rem);
  line-height: 1.05;
  margin-bottom: 28px;
}
.location-contact-copy p {
  color: var(--white);
  font-size: .84rem;
  line-height: 1.38;
  font-weight: 700;
}
.location-contact-card .btn {
  position: absolute;
  z-index: 1;
  right: 36px;
  bottom: 38px;
  width: 252px;
  margin: 0;
  border-radius: 6px;
  padding: 18px 22px;
  font-size: 1.02rem;
  letter-spacing: 0;
}

/* ============ BLOG ============ */
.blog-list { background: var(--cream); padding: 100px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(1,50,47,.14); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-tag { color: var(--orange); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.blog-card h3 { color: var(--green); font-size: 1.35rem; line-height: 1.3; }
.blog-card p { color: var(--gray); flex: 1; }
.blog-card-link { color: var(--green); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.08em; }
.blog-card-link:hover { color: var(--orange); }

/* ============ POST ============ */
.post-meta { color: rgba(255,255,255,.7); font-size: 0.92rem; letter-spacing: 0.05em; }
.post-content { background: var(--cream); padding: 100px 0; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 50px; box-shadow: var(--shadow); }
.post-body p { color: var(--ink); font-size: 1.05rem; line-height: 1.8; margin-bottom: 22px; }
.post-body h2 { color: var(--green); font-size: 1.7rem; margin: 36px 0 18px; }
.post-body blockquote {
  border-left: 4px solid var(--orange); padding: 16px 24px; margin: 32px 0;
  background: var(--white); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--green); font-style: italic; box-shadow: var(--shadow);
}
.share-block { margin: 50px 0 0; padding-top: 30px; border-top: 1px solid #e1d9c8; display: flex; align-items: center; gap: 16px; }
.share-block strong { color: var(--green); letter-spacing: 0.1em; font-size: 0.85rem; }
.share-block a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: var(--white); transition: background .2s; }
.share-block a:hover { background: var(--orange); }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: var(--cream);
  color: var(--white);
  padding: 0 0 58px;
  text-align: left;
}
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 26px; }
.cta-strip .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-strip .btn-outline-dark { color: var(--white); border-color: var(--white); }
.cta-strip .btn-outline-dark:hover { background: var(--white); color: var(--green); }
.reservation-final-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 26px;
  width: 100%;
  max-width: none;
  min-height: 96px;
  background: var(--green);
  border-radius: 8px;
  padding: 16px 28px 16px 24px;
}
.reservation-final-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.reservation-final-card h2 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 9px;
}
.reservation-final-card p {
  color: var(--white);
  font-size: .86rem;
  line-height: 1.35;
  margin: 0;
}
.reservation-final-link {
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  border: 1px solid var(--orange);
  border-radius: 3px;
  padding: 0 14px;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: .01em;
}
.reservation-final-link span {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
}

/* ============ EVENTOS ============ */
.event-types { background: var(--cream); padding: 100px 0; }
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.event-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); display: grid;
  grid-template-columns: 200px 1fr;
}
.event-card .e-img { background: var(--cream); }
.event-card .e-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card .e-body { padding: 26px; }
.event-card h3 { color: var(--green); font-size: 1.25rem; margin-bottom: 8px; }
.event-card p { color: var(--gray); font-size: 0.95rem; }
.partner { background: var(--cream-2); padding: 100px 0; }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.partner-copy h2 { color: var(--green); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 22px; }
.partner-copy p { color: var(--gray); line-height: 1.7; }
.partner-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ============ EVENTOS - layout aprovado ============ */
.eventos-hero {
  min-height: clamp(560px, 53vw, 690px);
  padding: 150px 0 76px;
  display: flex;
  align-items: center;
  background: #050505 url("images/eventos/hero.png") center center / cover no-repeat;
}
.eventos-hero::before { background: none; }
.eventos-hero .container { max-width: var(--container); }
.eventos-hero .eyebrow {
  color: var(--orange);
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.eventos-hero h1 {
  max-width: 610px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.25rem);
  line-height: 1.06;
  margin-bottom: 22px;
}
.eventos-hero h1 span { color: var(--orange); }
.eventos-hero .lead {
  max-width: 590px;
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  line-height: 1.55;
}
.event-intro {
  background: var(--cream);
  padding: 52px 0 56px;
}
.event-intro .container {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
}
.event-intro p {
  color: #282828;
  font-size: .98rem;
  line-height: 1.75;
  font-weight: 800;
}
.event-types {
  background: var(--cream);
  padding: 0 0 72px;
}
.event-types .section-head {
  max-width: none;
  margin: 0 0 30px;
  text-align: center;
}
.event-types .section-head h2,
.event-process .section-head h2 {
  color: var(--green);
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  line-height: 1;
  margin: 0;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.event-card {
  min-height: 330px;
  display: block;
  background: transparent;
  border: 2px solid rgba(205,166,124,.85);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
  padding: 42px 26px 28px;
  text-align: left;
}
.event-card img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin: 0 auto 24px;
}
.event-card h3 {
  color: var(--green);
  font-size: 1.32rem;
  line-height: 1.15;
  margin-bottom: 22px;
  text-align: center;
}
.event-card p {
  color: #292929;
  font-size: .91rem;
  line-height: 1.72;
  font-weight: 800;
}
.partner.event-decoration {
  background:
    linear-gradient(rgba(0,62,55,.96), rgba(0,62,55,.96)),
    url("images/delivery/texture.png") center center / cover no-repeat,
    var(--green);
  padding: 58px 0 68px;
}
.event-decoration .partner-grid {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
}
.event-decoration .partner-copy .eyebrow {
  color: var(--orange);
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.event-decoration .partner-copy h2 {
  color: var(--white);
  font-size: clamp(2.15rem, 3.7vw, 3rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.event-decoration .partner-copy h2 span { color: var(--orange); }
.event-decoration .partner-copy p {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 700;
}
.event-decoration .partner-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 5px solid var(--orange);
  box-shadow: none;
}
.event-process {
  background: var(--cream);
  padding: 46px 0 68px;
}
.event-process .section-head {
  max-width: none;
  text-align: center;
  margin-bottom: 32px;
}
.event-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px;
  align-items: stretch;
}
.event-process-card {
  position: relative;
  min-height: 238px;
  border: 2px solid rgba(205,166,124,.9);
  border-radius: 8px;
  padding: 30px 28px 26px;
  background: transparent;
}
.event-process-card + .event-process-card::before {
  content: "";
  position: absolute;
  left: -47px;
  top: 50%;
  width: 13px;
  height: 21px;
  transform: translateY(-50%);
  background: url("images/eventos/seta.svg") center center / contain no-repeat;
}
.event-process-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.event-process-icons img:first-child {
  width: 52px;
  height: 52px;
}
.event-process-icons img:last-child {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.event-process-card p {
  color: #262626;
  font-size: .92rem;
  line-height: 1.62;
  font-weight: 800;
}
.event-process-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 620px;
  height: 58px;
  margin: 36px auto 0;
  background: var(--orange);
  color: var(--white);
  border-radius: 4px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: .02em;
}

/* ============ FOOTER ============ */
.site-footer { background: var(--cream); color: var(--ink); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1.25fr 1.15fr 1.35fr; gap: 54px; align-items: start; }
.footer-logo { display: inline-block; }
.footer-logo img { height: 118px; width: auto; }
.socials { display: flex; gap: 12px; margin-top: 28px; justify-content: center; max-width: 210px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; background: var(--orange-light);
  transition: transform .2s, background .2s; color: var(--white);
}
.socials a:hover { background: var(--orange); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.socials svg path,
.socials svg rect,
.socials svg circle { vector-effect: non-scaling-stroke; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.96rem; letter-spacing: 0; color: var(--green); margin: 0 0 18px; font-weight: 800; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: #111; font-weight: 700; line-height: 1.55; }
.footer-col a { color: #111; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-col .light { font-weight: 500; color: #111; }
.i-dot { display: inline-grid; place-items: center; width: 16px; height: 20px; flex: none; color: var(--orange-light); margin-top: 2px; }
.i-dot svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-col strong { font-weight: 800; }
.map-embed { width: 100%; aspect-ratio: 16/8; border-radius: 6px; overflow: hidden; border: 2px solid #ded6c5; background: var(--white); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.footer-bottom {
  background: var(--green);
  margin-top: 42px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 24px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--orange-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero { min-height: auto; padding: 130px 0 70px; background-position: center; }
  .hero::before { background: linear-gradient(180deg, rgba(6,18,16,.55) 0%, rgba(6,18,16,.82) 60%, rgba(6,18,16,.92) 100%); }
  .story-copy { padding-left: 0; }
  .story-head-row { position: static; }
  .story-leaf { position: static; transform: none; margin: 0 0 12px 0; width: 78px; display: block; }
  .story-art img { width: 100%; }
  .dish-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-table-header { display: block; }
  .menu-table-header span { display: block; margin-bottom: 8px; }
  .menu-action-cards .container { grid-template-columns: 1fr; max-width: 620px; }
  .menu-action-card { min-height: 220px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: 1fr; }
  .delivery-faq-grid { grid-template-columns: 1fr; }
  .reserva-form-grid { grid-template-columns: 1fr; }
  .reserva-info { padding: 0; }
  .reserva-form-photo { min-height: 360px; }
  .reservation-note .container { grid-template-columns: 1fr; gap: 18px; }
  .reservation-note-leaf { width: 48px; }
  .reservation-final-card {
    grid-template-columns: 64px 1fr;
  }
  .reservation-final-link {
    grid-column: 2;
    width: 220px;
  }
  .reservation-how .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 34px;
  }
  .reservation-how .how-steps::before,
  .reservation-how .how-arrow { display: none; }
  .reservation-how .how-step-num { margin: 0 auto 18px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { grid-template-columns: 1fr; gap: 28px; }
  .timeline-item:nth-child(even) > .timeline-img { order: 0; }
  .loc-map-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .location-map-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .location-map-contact .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .location-contact-card {
    grid-template-columns: 1fr;
    height: auto;
  }
  .location-contact-card > img {
    max-height: 360px;
  }
  .location-contact-copy {
    padding: 34px 30px 22px;
  }
  .location-contact-card .btn {
    justify-self: start;
    align-self: start;
    margin: 0 30px 34px;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .event-intro .container { grid-template-columns: 1fr; gap: 24px; }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .event-card .e-img { aspect-ratio: 16/10; }
  .event-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
  .event-process-card + .event-process-card::before { display: none; }
  .partner-grid { grid-template-columns: 1fr; }

  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--green); flex-direction: column;
    padding: 24px; gap: 16px;
    transform: translateY(-150%); transition: transform .3s;
    box-shadow: var(--shadow); margin: 0;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav .btn { display: none; }
}

@media (max-width: 760px) {
  .loc-info { padding: 48px 0; }
  .loc-grid {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }
  .loc-card:nth-child(5),
  .loc-card:nth-child(6) {
    padding-top: 0;
  }
  .loc-card:nth-child(5)::before,
  .loc-card:nth-child(6)::before {
    display: none;
  }
  .location-hero {
    min-height: 620px;
    padding: 132px 0 58px;
    background-position: center right;
  }
  .location-hero .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .location-hero h1 {
    font-size: 2.85rem;
    max-width: 520px;
  }
  .reservation-hero {
    min-height: 640px;
    padding: 132px 0 58px;
    background-position: center right;
  }
  .reservation-hero h1 {
    font-size: 2.85rem;
    max-width: 520px;
  }
  .history-story::before { display: none; }
  .history-story-row,
  .history-story-row + .history-story-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .history-story-row-reverse .history-story-art { order: 0; }
  .history-story-copy,
  .history-story-row:first-of-type .history-story-art,
  .history-story-row-reverse .history-story-art { max-width: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .history-final-cta .container { grid-template-columns: 1fr; padding: 42px 24px 0; }
  .history-final-copy h2 { margin-bottom: 30px; }
  .history-final-art { justify-content: center; }
  .history-final-art img { transform: none; }
  .history-final-actions { flex-wrap: wrap; }
  .eventos-hero {
    min-height: 720px;
    padding: 126px 0 58px;
    align-items: flex-end;
    background-position: center center;
  }
  .eventos-hero h1 { font-size: 3.2rem; }
  .event-types { padding-bottom: 52px; }
  .event-card { min-height: 0; }
  .event-decoration .partner-grid { gap: 34px; }
  .event-process { padding: 44px 0 58px; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .reserva-form-section .form-row { grid-template-columns: 1fr; }
  .reserva-form-section { padding: 46px 0; }
  .reserva-form { padding: 24px 18px; }
  .reserva-form-photo { min-height: 300px; }
  .reservation-final-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reservation-final-link {
    grid-column: auto;
    width: 100%;
  }
  .areas-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
  .history-final-actions .btn { width: 100%; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cat-tabs { padding: 30px 24px 20px; }
  .menu-grid { grid-template-columns: 1fr; gap: 22px; }
  .menu-full-section { padding: 54px 0 70px; }
  .menu-table-card { padding: 20px 14px; }
  .menu-table { min-width: 560px; font-size: .88rem; }
  .menu-table th,
  .menu-table td { padding: 10px 12px; }
  .menu-action-cards { padding: 52px 0 64px; }
  .menu-action-card { min-height: 210px; }
  .menu-action-card img,
  .menu-action-card:first-child img,
  .menu-action-card:nth-child(2) img,
  .menu-action-card:last-child img { width: 58%; }
  .menu-action-copy,
  .menu-action-card:last-child .menu-action-copy {
    width: 70%;
    padding: 28px 18px 24px 22px;
  }
  .menu-action-copy h2 { font-size: 1.35rem; }
  .menu-action-copy p { font-size: .86rem; max-width: 220px; }
  .history-hero .container { padding-left: 24px; }
  .history-hero h1 { font-size: 2.82rem; }
  .eventos-hero h1 { font-size: 2.78rem; }
  .eventos-hero .lead { font-size: 1rem; }
  .event-intro { padding: 44px 0; }
  .event-grid,
  .event-process-grid { grid-template-columns: 1fr; }
  .event-card { padding: 34px 24px 26px; }
  .event-decoration .partner-copy h2,
  .event-process .section-head h2 { font-size: 2.28rem; }
  .event-process-card { min-height: 0; }
  .event-process-cta { font-size: .98rem; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .instagram-btn { min-width: 0; width: 100%; }
}

/* ============ BLOG - layout aprovado ============ */
.blog-hero {
  min-height: clamp(560px, 55vw, 690px);
  padding: 170px 0 86px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.20) 100%),
    url("images/blog/Hero.png") center center / cover no-repeat;
}
.blog-hero .container { max-width: var(--container); }
.blog-hero .eyebrow {
  color: var(--orange);
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.blog-hero h1 {
  max-width: 610px;
  color: var(--white);
  font-size: clamp(3.2rem, 5vw, 4.45rem);
  line-height: 1.04;
  margin-bottom: 28px;
}
.blog-hero h1 span { color: var(--orange); }
.blog-hero .lead {
  max-width: 560px;
  color: rgba(255,255,255,.88);
  font-size: 1.16rem;
  line-height: 1.7;
}
.blog-index-section {
  background: var(--cream);
  padding: 56px 0 84px;
}
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}
.blog-card-new {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: transparent;
  border: 2px solid rgba(31,31,31,.46);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.blog-card-new:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 18px 42px rgba(1, 50, 47, .10);
}
.blog-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d9cbb7;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.blog-card-copy {
  min-height: 250px;
  padding: 36px 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.blog-tag-new {
  color: var(--orange);
  font-size: .86rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-card-new h3 {
  color: var(--green);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.14;
}
.blog-card-new p {
  color: #34312b;
  font-weight: 600;
  line-height: 1.58;
  margin-top: auto;
}
.blog-read-btn {
  min-width: 178px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 3px;
  padding: 0 14px 0 18px;
  font-weight: 900;
  font-size: 1.05rem;
}
.blog-read-btn span {
  width: 32px;
  height: 22px;
  display: block;
  overflow: hidden;
  text-indent: 999px;
  background: url("images/blog/Arrow 1.png") center center / contain no-repeat;
}
.blog-featured-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}
.blog-featured-card .blog-card-media { aspect-ratio: auto; min-height: 410px; }
.blog-featured-card .blog-card-copy {
  justify-content: center;
  min-height: 410px;
  padding: 44px 48px;
}
.blog-featured-card h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.6vw, 3rem);
}
.blog-final-cta,
.article-final-cta .container {
  margin-top: 46px;
  min-height: 142px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--green);
  border-radius: 8px;
  padding: 28px 36px;
}
.blog-final-cta h2,
.article-final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}
.blog-final-cta h2 span,
.article-final-cta h2 span { color: var(--orange); }
.blog-final-cta .ctas,
.article-final-cta .ctas {
  display: flex;
  gap: 28px;
}
.blog-final-cta .btn,
.article-final-cta .btn {
  border-radius: 6px;
  min-width: 210px;
}
.blog-final-cta .btn-outline-dark,
.article-final-cta .btn-outline-dark {
  color: var(--white);
  border-color: var(--white);
}
.blog-final-cta .btn-outline-dark:hover,
.article-final-cta .btn-outline-dark:hover {
  background: var(--white);
  color: var(--green);
}

.article-hero {
  min-height: clamp(560px, 53vw, 675px);
  padding: 160px 0 76px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.article-hero .eyebrow {
  color: var(--orange);
  letter-spacing: .02em;
}
.article-hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2.9rem, 5vw, 4.55rem);
  line-height: 1.06;
  margin-bottom: 34px;
}
.article-hero h1 span,
.article-hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.article-layout {
  background: var(--cream);
  padding: 58px 0 40px;
}
.article-grid {
  display: grid;
  grid-template-columns: 96px minmax(0, 780px);
  gap: 54px;
  justify-content: center;
  align-items: start;
}
.article-share {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}
.article-share strong {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.article-share a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--white);
  font-weight: 900;
  font-size: 0;
  line-height: 1;
  position: relative;
}
.article-share a::before {
  display: block;
  width: 100%;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.article-share a[aria-label*="Facebook"]::before { content: "F"; font-size: 1rem; }
.article-share a[aria-label*="Instagram"]::before { content: "◎"; font-size: 1.3rem; }
.article-share a[aria-label*="WhatsApp"]::before { content: "↗"; font-size: 1.08rem; }
.article-body {
  color: #24211c;
  font-weight: 500;
}
.article-body p {
  font-size: 1.06rem;
  line-height: 1.86;
  font-weight: 500;
  margin-bottom: 24px;
}
.article-body p strong {
  font-weight: 800;
}
.article-body h2 {
  color: var(--green);
  font-size: clamp(1.86rem, 2.6vw, 2.28rem);
  line-height: 1.12;
  margin: 44px 0 16px;
}
.article-body blockquote {
  margin: 44px 0;
  padding-left: 64px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.88rem, 3vw, 2.55rem);
  line-height: 1.16;
  font-weight: 700;
  position: relative;
}
.article-body blockquote span {
  position: absolute;
  left: 0;
  top: -18px;
  color: var(--orange-light);
  font-size: 5.5rem;
  line-height: 1;
}
.article-body blockquote strong {
  display: block;
  margin-top: 22px;
  color: var(--orange);
  font-family: var(--font-sans);
  font-size: 1rem;
}
.article-inline-image {
  margin: 48px 0 36px;
}
.article-inline-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}
.article-inline-image figcaption {
  margin-top: 12px;
  color: #68645d;
  font-size: .86rem;
  font-weight: 800;
}
.article-text-cta {
  color: var(--orange);
  font-weight: 900;
}
.article-related {
  background: var(--cream);
  padding: 48px 0 34px;
}
.article-related-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 38px;
}
.article-related-title span {
  height: 1px;
  background: rgba(205,166,124,.85);
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.blog-related-card .blog-card-copy {
  min-height: 205px;
  padding: 20px 18px 22px;
}
.blog-related-card h3 {
  font-size: 1.34rem;
}
.blog-related-card .blog-read-btn {
  min-width: 132px;
  height: 34px;
  font-size: .88rem;
  margin-top: auto;
}
.article-final-cta {
  background: var(--cream);
  padding: 18px 0 72px;
}
.article-final-cta .container {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .76rem; }
  .btn-fale { padding-left: 22px; padding-right: 22px; }
}

@media (max-width: 980px) {
  .blog-featured-card,
  .blog-final-cta,
  .article-final-cta .container {
    grid-template-columns: 1fr;
  }
  .blog-index-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-share {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .blog-hero,
  .article-hero {
    min-height: 650px;
    padding: 132px 0 56px;
    align-items: flex-end;
  }
  .blog-hero h1,
  .article-hero h1 {
    font-size: 2.86rem;
  }
  .blog-index-section { padding: 34px 0 58px; }
  .blog-card-copy,
  .blog-featured-card .blog-card-copy {
    min-height: 0;
    padding: 28px 22px 24px;
  }
  .blog-featured-card .blog-card-media { min-height: 250px; }
  .blog-final-cta,
  .article-final-cta .container {
    padding: 26px 22px;
  }
  .blog-final-cta .ctas,
  .article-final-cta .ctas {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .blog-final-cta .btn,
  .article-final-cta .btn {
    width: 100%;
  }
  .article-layout { padding-top: 40px; }
  .article-body p { font-size: .98rem; }
  .article-body blockquote {
    padding-left: 42px;
    font-size: 1.85rem;
  }
}

/* ============ POLIMENTO GLOBAL: consistencia, leitura e movimento ============ */
.eyebrow,
.eyebrow-dark,
.eyebrow-on-dark,
.eyebrow-gold,
.page-hero .eyebrow,
.location-hero .eyebrow,
.reservation-hero .eyebrow,
.menu-hero .eyebrow,
.history-hero-kicker,
.hero .eyebrow,
.delivery-hero .eyebrow,
.delivery-panel .section-head .eyebrow,
.delivery-area-band > .eyebrow,
.reserva-info .eyebrow,
.reservation-how .section-head .eyebrow,
.faq-section .section-head .eyebrow,
.location-routes .eyebrow,
.location-map-copy .eyebrow,
.location-contact-copy .eyebrow,
.eventos-hero .eyebrow,
.event-decoration .partner-copy .eyebrow,
.blog-hero .eyebrow,
.article-hero .eyebrow {
  color: var(--hero-kicker-color) !important;
  font-size: var(--hero-kicker-size) !important;
  letter-spacing: var(--hero-kicker-letter) !important;
  font-weight: var(--hero-kicker-weight) !important;
  line-height: 1.2;
}

.hero .eyebrow,
.page-hero .eyebrow,
.menu-hero .eyebrow,
.delivery-hero .eyebrow,
.reservation-hero .eyebrow,
.eventos-hero .eyebrow,
.history-hero-kicker,
.location-hero .eyebrow,
.blog-hero .eyebrow,
.article-hero .eyebrow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, .34);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
  }

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

  .btn,
  .blog-read-btn,
  .instagram-btn,
  .menu-action-btn,
  .event-process-cta,
  .reservation-final-link {
    transition: transform .2s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
  }

  .btn:hover,
  .blog-read-btn:hover,
  .instagram-btn:hover,
  .menu-action-btn:hover,
  .event-process-cta:hover,
  .reservation-final-link:hover {
    transform: translateY(-2px);
  }

  .blog-card-new:hover .blog-card-media img,
  .menu-card:hover img,
  .event-card:hover img,
  .dish-card:hover img {
    transform: scale(1.035);
  }
}

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

@media (max-width: 760px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .nav {
    min-height: 82px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo img {
    height: 58px;
  }

  .nav-links {
    top: 82px;
  }

  .page-hero h1,
  .hero h1,
  .menu-hero h1,
  .delivery-hero h1,
  .reservation-hero h1,
  .eventos-hero h1,
  .history-hero h1,
  .location-hero h1,
  .blog-hero h1,
  .article-hero h1 {
    font-size: clamp(2.42rem, 13vw, 3.18rem);
    line-height: 1.04;
  }

  .page-hero .lead,
  .hero .lead,
  .delivery-hero .lead,
  .reservation-hero .lead,
  .eventos-hero .lead,
  .blog-hero .lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .btn {
    min-height: 52px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .blog-card-new {
    border-width: 1.5px;
  }

  .article-grid {
    gap: 20px;
  }

  .article-share {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    position: static;
    padding-top: 0;
    margin: 0 0 24px;
  }

  .article-share strong {
    margin: 0 4px 0 0;
    flex: 0 0 auto;
  }

  .article-share a {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .article-body {
    max-width: 100%;
  }

  .article-body p {
    font-size: 1rem;
    line-height: 1.78;
    font-weight: 500;
  }

  .article-body h2 {
    font-size: 1.72rem;
    margin-top: 34px;
  }

  .article-body blockquote {
    margin: 32px 0;
  }

  .article-text-cta {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--orange);
    border-radius: 6px;
    padding: 0 16px;
    color: var(--orange);
    text-align: center;
    line-height: 1.2;
  }

  .blog-final-cta h2,
  .article-final-cta h2 {
    font-size: 2.05rem;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero .ctas,
  .page-hero .ctas,
  .delivery-hero .ctas,
  .reservation-hero .ctas,
  .eventos-hero .ctas {
    width: 100%;
  }
}

/* ============ MOBILE UX REVIEW PASS ============ */
@media (max-width: 980px) {
  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .location-routes {
    background: var(--green);
  }

  .location-routes .container {
    max-width: var(--container);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .location-routes-copy h2 {
    margin-bottom: 24px;
  }

  .location-routes .routes-grid {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  section,
  [id] {
    scroll-margin-top: 96px;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header {
    z-index: 50;
  }

  .hero,
  .page-hero,
  .menu-hero,
  .delivery-hero,
  .reservation-hero,
  .eventos-hero,
  .history-hero,
  .location-hero,
  .blog-hero,
  .article-hero {
    isolation: isolate;
  }

  .page-hero::before,
  .menu-hero::before,
  .reservation-hero::before,
  .location-hero::before,
  .history-hero::before {
    background: linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.54) 54%, rgba(0,0,0,.18) 100%);
  }

  .delivery-hero::before,
  .eventos-hero::before {
    background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.56) 54%, rgba(0,0,0,.2) 100%);
  }

  .nav {
    width: min(100%, var(--container));
  }

  .nav-links {
    max-height: calc(100vh - 82px);
    overflow-y: auto;
  }

  .socials a {
    width: 44px;
    height: 44px;
  }

  .footer-col a,
  .footer-bottom a,
  .loc-card a,
  .whatsapp-link,
  .article-share a,
  .article-text-cta,
  .reservation-final-link,
  .menu-action-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .whatsapp-link,
  .article-share a,
  .article-text-cta,
  .reservation-final-link,
  .menu-action-btn {
    min-height: 44px;
  }

  .menu-action-btn {
    height: 44px;
  }

  .reservation-final-link {
    height: 44px;
  }

  .menu-full-section .container,
  .location-map-contact .container,
  .faq-section .container,
  .delivery-schedule .container,
  .delivery-areas .container,
  .delivery-orange-cta .container,
  .delivery-faq-cards .container,
  .event-types .container,
  .event-decoration .container,
  .event-process .container,
  .article-layout .container,
  .blog-index-section .container {
    max-width: var(--container);
  }

  .cat-tabs {
    max-width: 100%;
    margin: 0 auto;
    padding: 22px 22px 18px;
    gap: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .cat-tabs::after {
    content: "";
    flex: 0 0 8px;
  }

  .cat-tab {
    scroll-snap-align: start;
    padding: 10px 14px;
    font-size: .72rem;
    white-space: nowrap;
  }

  .menu-table-card {
    width: 100%;
    padding: 20px 14px;
    overflow: hidden;
  }

  .menu-hero-dishes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 340px;
  }

  .menu-hero-dish {
    height: 94px;
  }

  .menu-hero-dish span {
    font-size: .96rem;
  }

  .menu-table-header {
    display: block;
    margin-bottom: 14px;
  }

  .menu-table-header span {
    margin-bottom: 8px;
    font-size: .72rem;
    letter-spacing: .14em;
  }

  .menu-table-header h2 {
    font-size: 1.35rem;
    overflow-wrap: anywhere;
  }

  .menu-table-wrap {
    overflow: visible;
    border: 0;
    border-top: 1px solid rgba(1, 50, 47, .14);
    border-radius: 0;
    background: transparent;
  }

  .menu-table {
    display: block;
    width: 100%;
    min-width: 0;
    font-size: .94rem;
  }

  .menu-table thead {
    display: none;
  }

  .menu-table tbody,
  .menu-table tr,
  .menu-table td {
    display: block;
    width: 100%;
  }

  .menu-table tr {
    padding: 13px 0;
    border-bottom: 1px solid rgba(1, 50, 47, .12);
  }

  .menu-table tr:last-child {
    border-bottom: 0;
  }

  .menu-table td {
    padding: 2px 0;
    border: 0;
  }

  .menu-table td:first-child {
    color: var(--orange);
    font-weight: 900;
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .menu-table .item-cell {
    min-width: 0;
    color: var(--green);
    font-size: .98rem;
    line-height: 1.35;
  }

  .menu-table td:not(:first-child):not(.item-cell) {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: auto;
    margin: 8px 8px 0 0;
    padding: 4px 9px;
    border: 1px solid rgba(1, 50, 47, .18);
    border-radius: 999px;
    background: rgba(255,255,255,.5);
    color: var(--orange);
    font-size: .84rem;
    font-weight: 900;
  }

  .menu-table td:not(:first-child):not(.item-cell)::before {
    content: attr(data-portion);
    color: var(--green);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
  }

  .menu-notes {
    padding-left: 18px;
    overflow-wrap: anywhere;
  }

  .menu-link {
    min-height: 44px;
  }

  .delivery-note {
    padding: 36px 0 40px;
  }

  .delivery-note p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.64;
  }

  .delivery-note br {
    display: none;
  }

  .delivery-panel {
    padding: 28px 18px 22px;
    border-width: 2px;
  }

  .delivery-panel .section-head .eyebrow {
    font-size: var(--hero-kicker-size) !important;
    letter-spacing: var(--hero-kicker-letter) !important;
  }

  .schedule-grid {
    gap: 24px;
    margin-bottom: 24px;
  }

  .schedule-row {
    gap: 12px;
  }

  .schedule-reason {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px 16px;
  }

  .schedule-reason img {
    width: 54px;
    height: 54px;
  }

  .delivery-area-band {
    padding: 28px 18px 24px;
    background: linear-gradient(rgba(0, 62, 55, .96), rgba(0, 62, 55, .96)), var(--green);
  }

  .area-card {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .area-card + .area-card {
    border-left: 0;
    border-top: 1px solid rgba(205,166,124,.72);
  }

  .area-icon {
    width: 42px;
    height: 58px;
  }

  .area-card h3 {
    font-size: 1.28rem;
    margin-top: 4px;
  }

  .delivery-orange-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
    text-align: center;
  }

  .delivery-orange-card h2 {
    font-size: 1.75rem;
  }

  .delivery-anota-link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 14px;
    gap: 8px;
    font-size: .95rem;
  }

  .delivery-anota-link img,
  .btn-anota img {
    width: auto;
    max-width: 92px;
    height: auto;
  }

  .faq-mini {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 24px 18px;
  }

  .faq-mini img {
    width: 54px;
    height: 54px;
  }

  .faq-mini h3 {
    font-size: 1.28rem;
  }

  .location-routes {
    padding: 50px 0;
  }

  .location-routes .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .location-routes-copy h2 {
    font-size: 2.65rem;
    margin-bottom: 22px;
  }

  .location-routes-copy p br,
  .location-routes .route-card p br,
  .location-map-copy p br,
  .location-contact-copy p br {
    display: initial;
  }

  .location-routes .route-card {
    width: 100%;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding-bottom: 20px;
  }

  .location-routes .route-card + .route-card {
    padding-top: 20px;
  }

  .location-map-contact {
    padding: 42px 0 48px;
  }

  .location-map-row {
    gap: 26px;
    margin-bottom: 42px;
  }

  .location-map-copy h2 {
    margin-bottom: 24px;
  }

  .location-map-frame {
    height: 260px;
  }

  .location-contact-card {
    border-radius: 12px;
    overflow: hidden;
  }

  .location-contact-card::after {
    display: none;
  }

  .location-contact-card > img {
    max-height: 300px;
    opacity: .86;
  }

  .location-contact-copy {
    max-width: none;
    padding: 28px 22px 20px;
  }

  .location-contact-card .btn {
    position: static;
    width: calc(100% - 44px);
    margin: 0 22px 26px;
  }

  .faq-section .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .faq-list,
  .faq-section .faq-list {
    width: 100%;
    max-width: none;
  }

  .faq-item {
    width: 100%;
  }

  .faq-question {
    gap: 12px;
    align-items: flex-start;
  }

  .faq-question strong {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero,
  .delivery-hero,
  .reservation-hero,
  .eventos-hero,
  .history-hero,
  .location-hero,
  .blog-hero,
  .article-hero {
    min-height: 600px;
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .delivery-hero {
    min-height: 660px;
    background-position: 62% center;
  }

  .menu-hero {
    min-height: 660px;
    background-position: 64% center;
  }

  .eventos-hero,
  .reservation-hero {
    background-position: center center;
  }

  .btn-anota {
    min-width: 0;
    gap: 8px;
    justify-content: center;
  }

  .btn-anota img {
    max-width: 86px;
  }

  .delivery-panel {
    border-radius: 12px;
  }

  .schedule-reason {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .schedule-reason img {
    width: 48px;
    height: 48px;
  }

  .area-card {
    padding: 16px 0;
  }

  .delivery-anota-link {
    font-size: .86rem;
  }

  .delivery-anota-link img {
    max-width: 82px;
  }

  .location-map-frame {
    height: 230px;
  }

  .location-contact-card > img {
    max-height: 260px;
  }
}

/* ============ HOME MOBILE: DELIVERY + RESERVAS ============ */
@media (max-width: 760px) {
  .cards-two {
    padding: 24px 0 40px;
  }

  .cards-two .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cards-two .two-col {
    gap: 18px;
  }

  .cards-two .bigcard {
    height: auto;
    min-height: 396px;
    border-radius: 14px;
    align-items: stretch;
    box-shadow: 0 16px 34px rgba(1, 50, 47, .13);
  }

  .bigcard-dark {
    background-size: 245px auto;
    background-position: right bottom;
  }

  .bigcard-dark::after {
    background:
      linear-gradient(90deg, rgba(212,82,26,.99) 0%, rgba(212,82,26,.97) 58%, rgba(212,82,26,.5) 82%, rgba(212,82,26,.18) 100%),
      linear-gradient(180deg, rgba(0,0,0,0) 52%, rgba(0,0,0,.12) 100%);
  }

  .bigcard-dark .bigcard-body {
    max-width: none;
    height: auto;
    min-height: 396px;
    padding: 38px 22px 24px;
    display: flex;
    flex-direction: column;
  }

  .bigcard-main {
    transform: none;
  }

  .bigcard-dark .bigcard-main {
    max-width: 250px;
  }

  .bigcard h3 {
    font-size: 1.72rem;
    line-height: 1.08;
    margin: 16px 0 14px;
  }

  .bigcard-dark h3 {
    max-width: 250px;
  }

  .bigcard-dark p {
    max-width: 238px;
    font-size: .98rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .bigcard-dark .btn-outline-light {
    width: min(100%, 280px);
    min-height: 48px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 999px;
    font-size: .86rem;
    position: relative;
    z-index: 3;
  }

  .bigcard-dark .divider {
    position: static;
    width: 72px;
    margin: auto 0 12px;
  }

  .bigcard-dark .anota-row {
    position: static;
    gap: 8px;
    font-size: .95rem;
    flex-wrap: wrap;
  }

  .bigcard-dark .anota-row img {
    width: 78px;
  }

  .bigcard-reserva {
    min-height: 370px;
    background-position: 62% center;
  }

  .bigcard-reserva::after {
    background:
      linear-gradient(90deg, rgba(0,62,55,.98) 0%, rgba(0,62,55,.88) 48%, rgba(0,62,55,.44) 74%, rgba(0,62,55,.16) 100%),
      linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 100%);
  }

  .bigcard-reserva .bigcard-body {
    max-width: none;
    padding: 34px 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .bigcard-reserva h3 {
    max-width: 260px;
    font-size: 1.58rem;
  }

  .bigcard-reserva p {
    max-width: 268px;
    font-size: .98rem;
    line-height: 1.55;
  }

  .bigcard-reserva .btn-primary {
    width: min(100%, 240px);
    min-height: 48px;
    margin-top: 2px;
    border-radius: 999px;
  }

  .capacity {
    margin-top: 22px;
    font-size: .88rem;
    max-width: 260px;
  }
}

@media (max-width: 420px) {
  .cards-two .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cards-two .bigcard {
    min-height: 396px;
  }

  .bigcard-dark {
    background-size: 232px auto;
    background-position: right bottom;
  }

  .bigcard-dark .bigcard-body {
    min-height: 396px;
    padding: 36px 22px 24px;
  }

  .bigcard-dark .bigcard-main,
  .bigcard-dark h3 {
    max-width: 236px;
  }

  .bigcard-dark p {
    max-width: 226px;
  }

  .bigcard-reserva {
    min-height: 366px;
  }
}

/* ============ HOME MOBILE: LEITURA DOS PRATOS ============ */
@media (max-width: 760px) {
  .dish-card {
    overflow: hidden;
  }

  .dish-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.34) 46%, rgba(0,0,0,.9) 100%),
      linear-gradient(90deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,.14) 62%, rgba(0,0,0,.42) 100%);
  }

  .dish-card-body {
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 30px;
  }

  .dish-card-body h3,
  .dish-card-body p {
    text-shadow: 0 2px 12px rgba(0,0,0,.82);
  }
}

/* ============ EVENTOS MOBILE: DECORAÇÃO ============ */
@media (max-width: 760px) {
  .partner.event-decoration {
    padding: 48px 0 54px;
  }

  .event-decoration .partner-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
    width: min(100% - 36px, var(--container));
    padding-left: 0;
    padding-right: 0;
  }

  .event-decoration .partner-copy {
    max-width: none;
  }

  .event-decoration .partner-copy .eyebrow {
    color: var(--gold);
    letter-spacing: .18em;
    margin-bottom: 14px;
  }

  .event-decoration .partner-copy h2 {
    font-size: clamp(2.08rem, 12vw, 3rem);
    line-height: 1.04;
    margin-bottom: 18px;
    max-width: 330px;
  }

  .event-decoration .partner-copy p {
    max-width: 340px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .event-decoration .partner-img {
    width: 100%;
    order: 2;
  }

  .event-decoration .partner-img img {
    width: 100%;
    min-height: 210px;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
    object-position: center;
    border-width: 4px;
    border-radius: 12px;
  }
}
