/* =============================================
   WILL PETERS — CHEF PROFISSIONAL
   Design: Cozinha de Presença
   ============================================= */

:root {
  --surface:        #F8F5F2;
  --surface-elev:   #FFFFFF;
  --surface-warm:   #EFEAE2;
  --ink:            #181C1F;
  --ink-soft:       #3D4347;
  --ink-mute:       #5E6569;
  --primary:        #862419;
  --primary-deep:   #6A1A12;
  --secondary:      #8A4E3A;
  --line:           rgba(24, 28, 31, 0.10);
  --line-strong:    rgba(24, 28, 31, 0.20);
  --line-dark:      rgba(255, 250, 240, 0.14);

  --font-display:   'Cormorant Garamond', serif;
  --font-body:      'Inter', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  --container:      1440px;
  --pad-x:          clamp(20px, 5vw, 72px);
  --radius:         12px;
  --transition:     0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--primary); color: #fff; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.mono { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 400; }
.heading-display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

/* =============================================
   NAV
   ============================================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  pointer-events: none;
  transition: padding var(--transition), background var(--transition);
}
.site-nav > * { pointer-events: auto; }
.site-nav.scrolled {
  padding: 16px var(--pad-x);
  background: rgba(15,10,8,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-brand {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links { display: flex; gap: clamp(20px, 3vw, 48px); align-items: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  transition: opacity .25s;
}
.nav-links a:hover { opacity: 0.6; }
.nav-menu-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  padding-bottom: 2px;
  color: #fff;
}
.nav-menu-btn:hover { opacity: 0.6; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: #0A0C0D;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: grayscale(15%) contrast(1.05) brightness(0.78);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,12,13,0.55) 0%, rgba(10,12,13,0.25) 45%, rgba(10,12,13,0) 65%),
              linear-gradient(to top, rgba(10,12,13,0.55) 0%, rgba(10,12,13,0) 40%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 160px var(--pad-x) 120px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 48px;
  opacity: 0; animation: fadeUp 1s 0.2s forwards;
}
.hero-eyebrow .rule { width: 48px; height: 1px; background: rgba(255,255,255,0.5); display: inline-block; }
.hero-eyebrow .mono { color: rgba(255,255,255,0.7); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9.5vw, 9rem);
  line-height: 0.92;
  font-weight: 300;
  margin-bottom: 56px;
  letter-spacing: -0.015em;
  max-width: 1200px;
  opacity: 0; animation: fadeUp 1.2s 0.35s forwards;
}
.hero-title .italic { font-weight: 300; font-style: italic; }
.hero-foot {
  display: flex; align-items: flex-end; gap: 32px;
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero-lead {
  max-width: 380px;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  padding-bottom: 6px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.vertical-stamp {
  position: absolute; right: 32px; bottom: 48px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5em;
  z-index: 2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 44px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.btn .arrow { display: inline-block; transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-white { background: #fff; color: #0A0C0D; }
.btn-white:hover { background: var(--primary); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: #fff; color: #0A0C0D; border-color: #fff; }
.btn-link {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 4px;
  transition: color .25s, gap .25s;
  color: var(--ink);
}
.btn-link:hover { color: var(--primary); gap: 14px; }

/* =============================================
   QUOTE FULL (Stats)
   ============================================= */
.quote-full {
  position: relative;
  min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  color: #fff;
  overflow: hidden;
}
.quote-full .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  filter: grayscale(20%) brightness(0.55) contrast(1.05);
}
.quote-full .bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8, 10, 11, 0.45);
}
.quote-inner { position: relative; z-index: 2; max-width: 1100px; text-align: center; width: 100%; }
.quote-eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 36px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   SOBRE
   ============================================= */
.sobre { background: var(--surface-elev); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: 80px;
}
.sobre-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.96);
}
.sobre-content h2 { margin-bottom: 24px; }
.sobre-content p {
  color: var(--ink-mute);
  margin-bottom: 20px;
  line-height: 1.75;
  font-size: 1rem;
}
.sobre-content strong { color: var(--ink); font-weight: 500; }

.sobre-destaques {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.destaque-item { padding: 0; }
.destaque-num {
  display: block;
  color: var(--primary);
  margin-bottom: 12px;
}
.destaque-item h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.destaque-item p {
  color: var(--ink-mute);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* =============================================
   RECEITAS / GALLERY
   ============================================= */
.gallery { background: var(--surface); }
.gallery-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
  margin-bottom: 64px;
}
.gallery-sub {
  color: var(--ink-mute);
  font-size: 0.95rem;
  max-width: 400px;
  line-height: 1.6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 20px);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  background: var(--surface-warm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(20%) brightness(0.96);
  transition: transform 1s ease, filter .6s ease;
}
.gallery-item:hover img { transform: scale(1.04); filter: grayscale(0%) brightness(1); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px 22px;
  background: linear-gradient(0deg, rgba(10,12,13,0.85), rgba(10,12,13,0));
  color: #fff;
  display: flex; flex-direction: column; gap: 6px;
  text-align: left;
  opacity: 0;
  transition: opacity .35s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption .mono { color: rgba(255,180,168,0.92); font-size: 0.6rem; letter-spacing: 0.3em; }
.gallery-caption .cap { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; }

/* =============================================
   TRAJETÓRIA / METHOD
   ============================================= */
.method { background: var(--surface-elev); }
.method-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(60px, 10vw, 100px);
}
.method-lede {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 620px;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
.method-step {
  padding: 48px 0 48px clamp(16px, 2vw, 32px);
  border-left: 1px solid var(--line);
  transition: background .35s;
}
.method-step:first-child { border-left: none; padding-left: 0; }
.method-step-num {
  color: rgba(134, 36, 25, 0.40);
  margin-bottom: 20px;
  display: block;
  transition: color .35s;
}
.method-step:hover .method-step-num { color: var(--primary); }
.method-step-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 12px;
}
.method-step-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--ink-mute);
}

/* =============================================
   SERVIÇOS / COURSES
   ============================================= */
.courses { background: var(--surface); }
.courses-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  text-align: center;
  font-weight: 300;
  margin-bottom: clamp(60px, 10vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}
.course-card { position: relative; }
.course-card:nth-child(2) { margin-top: clamp(40px, 8vw, 100px); }
.course-card:nth-child(3) { margin-top: clamp(20px, 4vw, 50px); }
.course-card:nth-child(5) { margin-top: clamp(40px, 8vw, 100px); }
.course-card:nth-child(6) { margin-top: clamp(20px, 4vw, 50px); }
.course-thumb {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--surface-warm);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-icon {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  transition: opacity .5s, transform .5s;
}
.course-card:hover .course-icon { opacity: 0.6; transform: scale(1.1); }
.course-body { margin-top: 28px; }
.course-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 400;
  margin-bottom: 10px;
}
.course-desc {
  color: var(--ink-mute);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 24px;
}

/* =============================================
   DEPOIMENTOS / INTERLUDE
   ============================================= */
.interlude {
  position: relative;
  min-height: auto;
  display: flex; align-items: center; justify-content: center;
  background: #0A0C0D;
  color: #fff;
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  overflow: hidden;
}
.interlude-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.32;
  filter: grayscale(35%) brightness(0.7) contrast(1.05);
}
.interlude-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(10,12,13,0.2), rgba(10,12,13,0.7));
}
.interlude-inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; text-align: center; }
.interlude-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 60px;
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.dep-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 28px;
  transition: transform .35s;
}
.dep-card:hover { transform: translateY(-4px); }
.dep-stars { color: var(--primary); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.dep-card blockquote {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.dep-author { display: flex; align-items: center; gap: 14px; }
.dep-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.dep-name { font-weight: 500; font-size: 0.9rem; }
.dep-role { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* =============================================
   FINALE / CONTATO
   ============================================= */
.finale {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: #0A0C0D;
  color: #fff;
  overflow: hidden;
}
.finale-bg {
  position: absolute; inset: 0;
  opacity: 0.55;
}
.finale-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(85%) contrast(1.1);
}
.finale-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(10,12,13,0.2) 0%, rgba(10,12,13,0.85) 100%);
}
.finale-inner {
  position: relative; z-index: 2;
  max-width: 980px;
  padding: 0 var(--pad-x);
  text-align: center;
}
.finale-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 10vw, 9rem);
  line-height: 1.0;
  font-weight: 300;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.finale-sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 64px;
  line-height: 1.6;
  text-transform: none;
}
.finale-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.finale-scroll {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}
.finale-scroll .stick { width: 1px; height: 36px; background: rgba(255,255,255,0.3); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #0A0C0D;
  color: #fff;
  padding: 80px var(--pad-x) 40px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-brand .mono { color: var(--primary); margin-bottom: 16px; display: block; }
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 32px; }
.footer-links a { color: rgba(255,255,255,0.65); font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; transition: color .25s; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255,255,255,0.4); font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1.8; text-align: right; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.whatsapp-float a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}
.whatsapp-float i { font-size: 1.3rem; flex-shrink: 0; }
.whatsapp-float .whatsapp-text { font-size: 0.8rem; }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,12,13,0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.8rem;
  font-family: var(--font-display);
  color: #fff;
  text-decoration: none;
  transition: color .25s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  .sobre-destaques { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
  .method-step:nth-child(4) { border-left: none; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .course-card:nth-child(3) { margin-top: 0; }
  .course-card:nth-child(5) { margin-top: 0; }
  .course-card:nth-child(6) { margin-top: 0; }
}

/* =============================================
   RESPONSIVE — 900px
   ============================================= */
@media (max-width: 900px) {
  .nav-links a:not(.nav-menu-btn) { display: none; }
  .method-head { grid-template-columns: 1fr; gap: 20px; }
  .gallery-head { grid-template-columns: 1fr; gap: 20px; }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .vertical-stamp { display: none; }

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-destaques { grid-template-columns: 1fr 1fr; padding-top: 40px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:last-child { display: none; }

  .method-grid { grid-template-columns: 1fr 1fr; }
  .method-step { border-left: none; border-top: 1px solid var(--line); padding: 32px 0; }
  .method-step:first-child { border-top: none; }
  .method-step:nth-child(4) { border-left: none; }

  .courses-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .course-card { margin-top: 0 !important; }

  .dep-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .footer-grid { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-copy { text-align: left; }

  .whatsapp-float a { padding: 14px 18px; }
  .whatsapp-float .whatsapp-text { display: none; }

  .btn { padding: 16px 32px; }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  .sobre-destaques { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:last-child { display: block; }
  .method-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.6rem, 14vw, 3.4rem); }
  .finale-title { font-size: clamp(2.6rem, 14vw, 3.6rem); }
  .courses-title { font-size: clamp(2.4rem, 12vw, 3rem); }
  .interlude-title { font-size: clamp(2rem, 10vw, 2.6rem); }
  .finale-actions { flex-direction: column; align-items: center; }
  .finale-actions .btn { width: 100%; justify-content: center; }
}

/* ===== CAROUSEL SABORES ===== */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.gallery-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.gallery-carousel::-webkit-scrollbar {
  display: none;
}
.gallery-carousel .gallery-item {
  min-width: 300px;
  max-width: 350px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.carousel-nav:hover {
  background: var(--primary);
  color: #000;
}
.carousel-nav.prev { left: -22px; }
.carousel-nav.next { right: -22px; }
@media (max-width: 768px) {
  .carousel-nav { display: none; }
}

/* =============================================
   CARDAPIO INTERATIVO (ESTÉTICA DO PDF)
   ============================================= */
.menu-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 48px 0 32px;
}
.menu-tab-btn {
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.35s ease;
  background: transparent;
}
.menu-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.menu-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.menu-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
}
.menu-pane.active {
  display: block;
  opacity: 1;
}

/* Buffet Grid side-by-side */
.menu-grid-buffet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

/* Churrasco Grid 2x2 */
.menu-grid-churrasco {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

/* Menu card styling matching PDF exactly */
.menu-pdf-card {
  background-color: rgba(239, 234, 226, 0.4); /* surface-warm style */
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.menu-pdf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 8px 8px 0 0;
}
.menu-pdf-card.highlighted {
  border: 2px solid var(--primary);
  background-color: rgba(134, 36, 25, 0.02);
}
.menu-pdf-card.highlighted::before {
  height: 4px;
}

.menu-pdf-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 500;
}
.menu-pdf-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.menu-pdf-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.menu-pdf-price {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(134, 36, 25, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
}
.menu-pdf-card.highlighted .menu-pdf-price {
  background-color: var(--primary);
  color: #fff;
}

.menu-pdf-category {
  margin-bottom: 20px;
}
.menu-pdf-category:last-child {
  margin-bottom: 0;
}
.menu-pdf-category-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
  font-weight: 500;
}
.menu-pdf-category-items {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
}
.menu-pdf-category-items ul {
  list-style: none;
  padding: 0;
}
.menu-pdf-category-items li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}
.menu-pdf-category-items li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.menu-pdf-download-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

}

/* =============================================
   GOOGLE REVIEWS SECTION
   ============================================= */

.reviews-section {
  background: var(--surface);
}

/* Header */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* Google Badge */
.google-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 18px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.google-badge:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.google-badge-logo {
  display: flex;
  align-items: center;
}
.google-badge-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.google-badge-score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.google-badge-stars {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 2px;
}
.google-badge-count {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Carousel Wrapper */
.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-container {
  overflow: hidden;
  flex: 1;
}

.reviews-track {
  display: flex;
  gap: 24px;
}


/* Review Card */
.rev-card {
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-width: calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.rev-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.rev-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}
.rev-meta {
  flex: 1;
  min-width: 0;
}
.rev-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rev-date {
  font-size: 0.58rem;
  color: var(--ink-mute);
  margin-top: 2px;
}
.rev-google-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.85;
}
.rev-stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: -4px;
}
.rev-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
  flex: 1;
}

/* Navigation arrows */
.rev-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface-elev);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.rev-nav:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.rev-nav:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Dot indicators */
.rev-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.rev-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Google Maps CTA */
.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.btn-google-maps {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface-elev);
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}
.btn-google-maps:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-google-maps .arrow {
  font-size: 1rem;
}

/* Responsividade Reviews */
@media (max-width: 1024px) {
  .rev-card {
    min-width: calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (max-width: 640px) {
  .rev-card {
    min-width: 100%;
    max-width: 100%;
  }
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .google-badge {
    width: 100%;
  }
  .rev-nav {
    display: none;
  }
  .reviews-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .reviews-track {
    overflow: visible;
  }
  .rev-card {
    scroll-snap-align: start;
  }
}

/* Responsiveness */
@media (max-width: 992px) {
  .menu-grid-buffet, .menu-grid-churrasco {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .menu-tabs-wrapper {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .menu-pdf-card {
    padding: 24px 20px;
  }
}



