/*
Theme Name: Crêpe La France
Theme URI: https://crepelafrance.com
Author: Carlos Teles
Author URI: https://carlosteles.com.br
Description: Tema custom do Crêpe La France Buffet — editorial de luxo (Bodoni Moda + Jost), 100% otimizado para velocidade (sem construtor visual), SEO/GEO/AEO completo, com blog integrado. Requer PHP 7.4+.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: crepelafrance
*/

/* ============================================================
   TOKENS
============================================================ */
:root {
  --ink:         #4e1a1a;
  --ink-2:       #340f0f;
  --ink-soft:    #5f2524;
  --cream:       #f5efe3;
  --cream-2:     #faf6ed;
  --paper:       #ffffff;
  --gold:        #b8935a;
  --gold-light:  #d9bd8c;
  --gold-dim:    rgba(184, 147, 90, 0.4);
  --wine:        #7c2d2d;
  --text:        #1c1009;
  --muted:       #6b5e52;
  --muted-2:     #9a8879;
  --line:        rgba(124, 45, 45, 0.14);
  --line-light:  rgba(245, 239, 227, 0.14);
  --white:       #ffffff;

  --serif: "Bodoni Moda", "Didot", Georgia, serif;
  --sans:  "Jost", system-ui, -apple-system, sans-serif;

  --shadow-sm:  0 2px 14px rgba(28, 16, 9, 0.08);
  --shadow-md:  0 10px 44px rgba(28, 16, 9, 0.14);
  --shadow-lg:  0 30px 90px rgba(28, 16, 9, 0.22);

  --radius-sm:  16px;
  --radius-md:  26px;
  --radius-lg:  30px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space-section: 128px;
  --maxw: 1240px;
  --readw: 720px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .suppliers-track { animation: none !important; flex-wrap: wrap; width: 100%; justify-content: center; }
  .gallery-track { animation: none !important; }
  .google-reviews-track { animation: none !important; flex-wrap: wrap; width: 100%; transform: none !important; }
  .google-reviews-arrow { display: none !important; }
  .gallery-row { overflow-x: auto; }
  .marquee-clone { display: none !important; }
  .hero-img { animation: none !important; opacity: 1 !important; transform: none !important; }
  .media-slideshow-img { animation: none !important; transform: none !important; }
  .media-slideshow-img--active { opacity: 1 !important; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

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

/* ============================================================
   LAYOUT
============================================================ */
.container, .wrap {
  width: min(var(--maxw), calc(100% - 48px));
  margin-inline: auto;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 900px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title--light { color: var(--cream); }

.section-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
  margin-top: 22px;
}
.section-copy--light { color: rgba(245, 239, 227, 0.72); }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; display: flex; flex-direction: column; align-items: center; }

.section { padding: var(--space-section) 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--full { width: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(184, 147, 90, 0.32);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 18px 44px rgba(184, 147, 90, 0.4); color: var(--ink); }

.btn-ink {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 34px rgba(28, 16, 9, 0.28);
}
.btn-ink:hover { background: var(--ink-2); }

.btn-ghost {
  background: rgba(245, 239, 227, 0.08);
  color: var(--cream);
  border-color: rgba(245, 239, 227, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(245, 239, 227, 0.16); border-color: rgba(245, 239, 227, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  padding: 13px 24px;
  font-size: 0.82rem;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 227, 0.4);
  padding: 12px 22px;
  font-size: 0.82rem;
}
.btn-outline-light:hover { background: rgba(245, 239, 227, 0.1); border-color: var(--gold-light); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: #1fba59; box-shadow: 0 18px 44px rgba(37, 211, 102, 0.38); }

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.show { opacity: 1; transform: none; }

/* ============================================================
   TOPBAR
============================================================ */
.topbar {
  background: var(--ink);
  color: rgba(245, 239, 227, 0.76);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-sep { opacity: 0.35; }
.topbar-link { color: var(--gold-light); transition: opacity 0.18s; }
.topbar-link:hover { opacity: 0.75; }

/* ============================================================
   HEADER / NAV
============================================================ */
.header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: top 0.3s var(--ease), background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled,
.header.header--solid {
  top: 0;
  background: rgba(78, 26, 26, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(245, 239, 227, 0.08);
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--cream);
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.brand-fallback { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--cream); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.82;
  border-radius: 999px;
  transition: background 0.18s, opacity 0.18s;
}
.nav-links a:hover,
.nav-links a.current-menu-item { background: rgba(245, 239, 227, 0.1); opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 227, 0.32);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.18s;
}
.menu-btn:hover { background: rgba(245, 239, 227, 0.1); }
.burger, .burger::before, .burger::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.18s;
}
.burger { position: relative; }
.burger::before, .burger::after { content: ""; position: absolute; left: 0; }
.burger::before { top: -5px; }
.burger::after { top: 5px; }
.menu-btn[aria-expanded="true"] .burger { background: transparent; }
.menu-btn[aria-expanded="true"] .burger::before { transform: rotate(45deg) translate(3.5px, 3.5px); }
.menu-btn[aria-expanded="true"] .burger::after { transform: rotate(-45deg) translate(3.5px, -3.5px); }

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: 100px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.38s var(--ease), visibility 0s 0.38s;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.38s var(--ease), visibility 0s 0s;
}
.mobile-menu ul { display: grid; gap: 8px; }
.mobile-menu a {
  display: block;
  color: var(--cream);
  font-size: 1.08rem;
  font-weight: 500;
  padding: 17px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 239, 227, 0.12);
  transition: background 0.18s;
}
.mobile-menu a:hover { background: rgba(245, 239, 227, 0.08); }
.mobile-menu .mobile-cta {
  background: var(--gold);
  color: var(--ink);
  border-color: transparent;
  text-align: center;
  font-weight: 700;
  margin-top: 8px;
}

/* ============================================================
   HERO + SLIDESHOW (Ken Burns)
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  color: var(--cream);
  padding-top: 84px;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--ink); }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: transform, opacity;
}
.hero-img--active {
  opacity: 1;
  animation: heroKenBurnsIn 7s ease-in-out forwards;
}
.hero-img--active.hero-img--zoom-out {
  animation-name: heroKenBurnsOut;
}
@keyframes heroKenBurnsIn  { from { transform: scale(1);    } to { transform: scale(1.1); } }
@keyframes heroKenBurnsOut { from { transform: scale(1.08); } to { transform: scale(1);   } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(78, 26, 26, 0.88) 0%,
    rgba(95, 37, 36, 0.66) 45%,
    rgba(28, 16, 9, 0.72) 100%
  );
}

/* ============================================================
   BASTIDORES / VÍDEO
============================================================ */
.video-showcase {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.video-showcase-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.video-bg-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.video-bg-el--active { opacity: 1; }
.video-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(78, 26, 26, 0.86) 0%,
    rgba(95, 37, 36, 0.68) 45%,
    rgba(28, 16, 9, 0.8) 100%
  );
}
.video-showcase-inner { position: relative; max-width: 680px; padding: 100px 0; text-align: center; margin: 0 auto; }
.video-showcase-inner .eyebrow { justify-content: center; }
.video-showcase-inner .section-title { margin-bottom: 20px; }
.video-showcase-inner .btn { margin-top: 30px; }
@media (max-width: 680px) {
  .video-showcase { min-height: 520px; }
  .video-showcase-inner { padding: 64px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .video-bg-el { display: none; }
  .video-bg-el--active { display: block; opacity: 1; }
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 70px 0 48px;
}

.hero-copy { max-width: 700px; }
.hero-copy .eyebrow { color: var(--gold-light); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  color: rgba(245, 239, 227, 0.76);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badge {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.4));
}
.hero-badge-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-stats {
  background: rgba(28, 16, 9, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(245, 239, 227, 0.1);
  padding: 30px 0;
}
.stats-row { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 50px; text-align: center; }
.stat strong { font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 2.9rem); font-weight: 500; color: var(--gold-light); line-height: 1; }
.stat span { font-size: 0.76rem; font-weight: 500; color: rgba(245, 239, 227, 0.62); letter-spacing: 0.06em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 44px; background: rgba(245, 239, 227, 0.14); flex-shrink: 0; }

/* Laptops with short viewports (e.g. MacBook Air) — the hero was taller
   than the screen, cutting off the CTAs/stats on first load. Compact the
   vertical rhythm so the whole section fits without scrolling. */
@media (min-width: 1101px) and (max-height: 860px) {
  .hero { padding-top: 64px; }
  .hero-inner { padding: 28px 0 20px; }
  .hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); margin-bottom: 14px; }
  .hero-sub { margin-bottom: 20px; line-height: 1.5; }
  .hero-actions .btn { padding: 13px 26px; }
  .hero-badge { width: 150px; height: 150px; }
  .hero-stats { padding: 14px 0; }
  .stat { padding: 0 32px; }
  .stat-divider { height: 32px; }
}

/* ============================================================
   SOBRE / QUEM SOMOS
============================================================ */
.sobre { background: var(--cream); }
.sobre-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.sobre-media { position: relative; }
.sobre-photo-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--ink);
}
.sobre-photo-main img { width: 100%; height: 100%; object-fit: cover; }

.media-slideshow-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: transform, opacity;
}
.media-slideshow-img--active {
  opacity: 1;
  animation: heroKenBurnsIn 7s ease-in-out forwards;
}
.media-slideshow-img--active.media-slideshow-img--zoom-out {
  animation-name: heroKenBurnsOut;
}
.sobre-photo-sec {
  position: absolute;
  right: -44px;
  bottom: -40px;
  width: 54%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  background: var(--ink);
  border: 5px solid var(--cream);
}
.sobre-photo-sec img { width: 100%; height: 100%; object-fit: cover; }
.sobre-tag {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(28, 16, 9, 0.72));
  color: var(--cream);
  padding: 26px 16px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sobre-tag-icon { color: var(--gold-light); font-size: 0.65rem; }

.sobre-quote {
  margin-top: 34px;
  padding: 26px 26px 26px 30px;
  border-left: 2px solid var(--gold);
  background: rgba(184, 147, 90, 0.06);
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 34px;
}

/* ============================================================
   PILARES
============================================================ */
.pillars { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillars-head { text-align: center; padding: 32px 0; overflow: hidden; }
.pillars-head .eyebrow { justify-content: center; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Faixa de "Diferenciais": em vez de um título parado, passa as palavras-chave
   da marca em looping contínuo — mesma tipografia do eyebrow do site inteiro. */
.diferenciais-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.diferenciais-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: diferenciaisScroll 32s linear infinite;
}
.diferenciais-track span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 0 22px;
}
.diferenciais-track span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}
@keyframes diferenciaisScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.diferenciais-marquee:hover .diferenciais-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .diferenciais-track { animation: none; flex-wrap: wrap; justify-content: center; }
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.pillar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 340px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pillar-bg { position: absolute; inset: 0; z-index: 0; }
.pillar-bg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter 0.5s ease, transform 0.5s ease; }
.pillar-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(24, 10, 8, 0.15) 0%, rgba(24, 10, 8, 0.82) 100%);
  transition: background 0.5s ease;
}
.pillar-content { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; transition: transform 0.5s ease; }
.pillar:hover .pillar-bg img { filter: blur(3px) brightness(0.75); transform: scale(1.06); }
.pillar:hover .pillar-overlay { background: linear-gradient(180deg, rgba(24, 10, 8, 0.4) 0%, rgba(24, 10, 8, 0.9) 100%); }
.pillar:hover .pillar-content { transform: translateY(-10px); }
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: #fff; }
.pillar p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); line-height: 1.65; }

/* ============================================================
   SERVIÇOS
============================================================ */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; transition: transform 0.55s var(--ease), opacity 0.35s; }
.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 16, 9, 0.7) 0%, transparent 60%);
}
.service-card:hover .service-img img { transform: scale(1.07); opacity: 0.9; }
.service-body { padding: 24px 24px 28px; color: var(--cream); flex: 1; display: flex; flex-direction: column; gap: 6px; }
.service-num { font-family: var(--serif); font-size: 0.84rem; color: var(--gold-light); font-weight: 500; letter-spacing: 0.1em; }
.service-body h3 { font-family: var(--serif); font-size: 1.85rem; font-weight: 500; line-height: 1.05; margin-top: 4px; }
.service-body p { font-size: 0.88rem; color: rgba(245, 239, 227, 0.68); line-height: 1.6; flex: 1; margin-top: 8px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ============================================================
   FORNECEDORES — FAIXA DE MARCAS
============================================================ */
.suppliers {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  overflow: hidden;
}
.suppliers-head { text-align: center; margin-bottom: 34px; }
.suppliers-head .eyebrow { justify-content: center; }
.suppliers-note { font-size: 0.92rem; color: var(--muted); }
.suppliers-track-wrap { position: relative; overflow: hidden; }
.suppliers-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: suppliersScroll 26s linear infinite;
}
.suppliers-track-wrap:hover .suppliers-track { animation-play-state: paused; }
.suppliers-track span {
  display: flex;
  flex-shrink: 0;
  margin-right: 72px;
}
.suppliers-track img {
  height: 76px;
  width: auto;
  opacity: 0.88;
  filter: grayscale(1);
  transition: opacity 0.2s;
}
.suppliers-track img:hover { opacity: 1; }
@keyframes suppliersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(var(--marquee-shift, -50%)); }
}
.suppliers-fade { position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.suppliers-fade--left { left: 0; background: linear-gradient(to right, var(--paper) 20%, transparent); }
.suppliers-fade--right { right: 0; background: linear-gradient(to left, var(--paper) 20%, transparent); }

/* ============================================================
   CARDÁPIO
============================================================ */
.menu-section { background: var(--ink); position: relative; overflow: hidden; }
.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 92%, rgba(184, 147, 90, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 92% 8%, rgba(184, 147, 90, 0.06) 0%, transparent 38%);
  pointer-events: none;
}
.menu-section .section-header { position: relative; z-index: 1; }

.menu-cols { display: grid; grid-template-columns: 1fr 1fr; position: relative; z-index: 1; gap: 0; }
.menu-chapter { padding: 0 44px; }
.menu-chapter:first-child { padding-left: 0; border-right: 1px solid rgba(245, 239, 227, 0.1); }
.menu-chapter:last-child { padding-right: 0; }
.menu-chapter-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  padding-bottom: 14px;
  margin-bottom: 8px;
  position: relative;
}
.menu-chapter-title::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 44px;
  height: 1px;
  background: var(--gold);
}
.menu-chapter-note { font-style: italic; font-size: 0.84rem; color: var(--muted-2); margin: 10px 0 20px; line-height: 1.5; }
.menu-photo-strip { display: flex; gap: 10px; margin: 0 0 24px; }
.menu-photo-strip img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--gold-dim);
  filter: saturate(0.9);
  transition: transform 0.4s var(--ease), filter 0.4s, border-color 0.4s;
}
.menu-photo-strip img:hover { transform: translateY(-4px) scale(1.05); filter: saturate(1); border-color: var(--gold); }
.menu-items { display: flex; flex-direction: column; gap: 11px; }
.menu-items li {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(245, 239, 227, 0.92);
  line-height: 1.35;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.menu-items li::before { content: "•"; color: var(--gold); font-size: 0.85rem; flex-shrink: 0; font-style: normal; }
.menu-acc-title { font-style: italic; font-size: 0.78rem; color: var(--gold-light); letter-spacing: 0.05em; margin: 22px 0 10px; }
.menu-items--acc li { font-size: 0.94rem; color: var(--muted-2); }
.menu-items--acc li::before { color: rgba(184, 147, 90, 0.5); }
.menu-footnote { font-style: italic; font-size: 0.8rem; color: var(--muted-2); margin-top: 16px; line-height: 1.5; opacity: 0.85; }

.menu-ornline {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  font-size: 0.65rem;
  margin: 48px 0;
  position: relative;
  z-index: 1;
}
.menu-ornline::before, .menu-ornline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 147, 90, 0.5), transparent);
}

.menu-footer { text-align: center; margin-top: 48px; position: relative; z-index: 1; }
.menu-footer p { font-style: italic; color: var(--muted-2); margin-bottom: 22px; }
.menu-footer .btn { margin: 0 7px; }
.services-more { text-align: center; margin-top: 44px; }

/* ============================================================
   COMO FUNCIONA
============================================================ */
.process { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 240px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.step:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.step-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; color: var(--gold); line-height: 1; }
.step-body h3 { font-size: 0.98rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.step-body p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   GALERIA — MARQUEE
============================================================ */
.gallery { background: var(--ink); overflow: hidden; }
.gallery-rows { position: relative; display: grid; gap: 20px; }
.gallery-row { overflow: hidden; }
.gallery-track { display: flex; width: max-content; }
.gallery-track--left  { animation: galleryLeft  50s linear infinite; }
.gallery-track--right { animation: galleryRight 56s linear infinite; }
.gallery-row:hover .gallery-track { animation-play-state: paused; }
@keyframes galleryLeft  { from { transform: translateX(0); } to { transform: translateX(var(--marquee-shift, -50%)); } }
@keyframes galleryRight { from { transform: translateX(var(--marquee-shift, -50%)); } to { transform: translateX(0); } }

.gal-item {
  position: relative;
  width: 300px;
  height: 400px;
  flex: 0 0 auto;
  margin-right: 20px;
  border-radius: 24px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  background: var(--ink-soft);
  padding: 0;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease), filter 0.4s; filter: saturate(0.84); }
.gal-item:hover img { transform: scale(1.05); filter: saturate(1); }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28, 16, 9, 0.72) 0%, transparent 55%); }
.gal-label {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.62);
  transition: color 0.3s;
}
.gal-item:hover .gal-label { color: var(--cream); }

.gallery-more { text-align: center; margin: -8px 0 36px; position: relative; z-index: 1; }
.gallery-fade { position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none; }
.gallery-fade--left  { left:  0; background: linear-gradient(to right, var(--ink) 20%, transparent); }
.gallery-fade--right { right: 0; background: linear-gradient(to left,  var(--ink) 20%, transparent); }

/* ============================================================
   PÁGINA FOTOS — grade masonry
============================================================ */
.photo-grid { column-count: 3; column-gap: 18px; }
.photo-tile {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-soft);
  cursor: zoom-in;
  break-inside: avoid;
}
.photo-tile img { width: 100%; height: auto; display: block; transition: transform 0.55s var(--ease); }
.photo-tile:hover img { transform: scale(1.05); }
@media (max-width: 900px) {
  .photo-grid { column-count: 2; column-gap: 12px; }
  .photo-tile { margin-bottom: 12px; border-radius: var(--radius-md); }
}
@media (max-width: 520px) {
  .photo-grid { column-count: 1; }
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.testimonials { background: var(--paper); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonials-more { text-align: center; margin-top: 32px; }
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.42rem); line-height: 1.4; color: var(--ink); font-style: italic; flex: 1; }
.testimonial-card cite { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid var(--line); padding-top: 18px; }
.testimonial-card cite strong { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.testimonial-card cite span { font-size: 0.8rem; color: var(--muted); }

/* Avaliações do Google — estilo reconhecível, mas na linguagem visual do site. */
.google-reviews { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--line); }
.google-reviews-head { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 28px; text-align: left; }
.google-reviews-title { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.google-reviews-nota { display: flex; align-items: center; gap: 8px; }
.google-reviews-nota > span:first-child { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.google-stars { color: #f4b400; font-size: 0.92rem; letter-spacing: 1px; }
.google-reviews-total { font-size: 0.82rem; color: var(--muted); }
.google-reviews-carousel { position: relative; }
.google-reviews-track-wrap { position: relative; overflow: hidden; padding: 18px 4px 26px; margin: -18px -4px -26px; touch-action: pan-y; }
.google-reviews-track { display: flex; align-items: stretch; width: max-content; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); cursor: grab; }
.google-reviews-track.is-dragging { transition: none; cursor: grabbing; user-select: none; }
.google-reviews-nav { display: flex; justify-content: center; gap: 14px; margin-top: 20px; }
.google-reviews-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--wine);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, color 0.2s;
}
.google-reviews-arrow:hover { background: var(--wine); color: var(--cream); }
.google-review-card {
  display: block;
  width: 340px;
  flex-shrink: 0;
  margin-right: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}
.google-review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.google-review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.google-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--wine); color: var(--cream); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.1rem; flex-shrink: 0; }
.google-review-top strong { display: block; font-size: 0.9rem; color: var(--text); font-weight: 700; }
.google-review-top span { font-size: 0.76rem; color: var(--muted); }
.google-review-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 0.76rem; color: var(--muted); }
.google-review-texto { font-size: 0.9rem; line-height: 1.6; color: var(--text); margin-bottom: 14px; }
.google-review-link { font-size: 0.78rem; font-weight: 700; color: var(--wine); }

/* Grade estática dos depoimentos do Google — usada na página /depoimentos
   (sem carrossel, mostra todos de uma vez). */
.google-reviews-static-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.google-reviews-static-grid .google-review-card { width: auto; margin-right: 0; }

/* ============================================================
   CTA / ORÇAMENTO
============================================================ */
.cta-section { position: relative; isolation: isolate; padding: 130px 0; color: var(--cream); background: var(--ink); }
.cta-bg { position: absolute; inset: 0; z-index: -1; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(78, 26, 26, 0.96) 0%, rgba(95, 37, 36, 0.88) 55%, rgba(78, 26, 26, 0.95) 100%); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cta-copy .eyebrow { color: var(--gold-light); }
.cta-copy .btn-whatsapp { margin-top: 30px; }

.form-card {
  background: rgba(245, 239, 227, 0.05);
  border: 1px solid rgba(245, 239, 227, 0.14);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.form-title { font-family: var(--serif); font-size: 1.85rem; font-weight: 500; color: var(--cream); margin-bottom: 26px; }
.field-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; font-weight: 600; color: rgba(245, 239, 227, 0.76); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(245, 239, 227, 0.06);
  border: 1px solid rgba(245, 239, 227, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(245, 239, 227, 0.35); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(245, 239, 227, 0.1); }
.field select option { color: var(--text); background: var(--cream); }
.field textarea { min-height: 110px; resize: vertical; }
.form-footer { margin-top: 20px; }
.form-note { margin-top: 14px; font-size: 0.84rem; color: rgba(245, 239, 227, 0.62); min-height: 20px; }

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 64px; align-items: start; }
.faq-header { position: sticky; top: 116px; }

.accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  transition: color 0.18s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(184, 147, 90, 0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  width: 10px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s;
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px 24px; }
.faq-a p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }
.faq-a a { color: var(--gold); text-decoration: underline; }

/* ============================================================
   CONTATO
============================================================ */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.contact-list { margin-top: 38px; display: flex; flex-direction: column; gap: 24px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(184, 147, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-list strong { display: block; font-size: 0.78rem; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.contact-list a { color: var(--ink); font-weight: 600; font-size: 0.98rem; transition: color 0.18s; }
.contact-list a:hover { color: var(--gold); }
.contact-list span { color: var(--text); font-size: 0.98rem; }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 440px; background: var(--ink); }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--ink-2); color: var(--cream); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 52px; }
.footer-logo { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { margin-top: 20px; font-size: 0.9rem; color: rgba(245, 239, 227, 0.68); line-height: 1.75; max-width: 300px; }
.footer h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); margin-bottom: 20px; font-weight: 500; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer li, .footer a { font-size: 0.88rem; color: rgba(245, 239, 227, 0.68); line-height: 1.5; }
.footer a { transition: color 0.18s; }
.footer a:hover { color: var(--gold-light); }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 227, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(184, 147, 90, 0.08); }

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 227, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(245, 239, 227, 0.68);
}
.footer-credit { width: 100%; order: 3; font-size: 0.72rem; }

/* ============================================================
   WHATSAPP FAB
============================================================ */
.whatsapp-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 14px 44px rgba(37, 211, 102, 0.5); }

/* ============================================================
   MODAL GALERIA
============================================================ */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 4, 4, 0.88); backdrop-filter: blur(6px); cursor: pointer; }
.modal-content { position: relative; z-index: 1; max-width: min(1100px, 96vw); }
.modal-img { display: block; max-width: 100%; max-height: 88vh; border-radius: var(--radius-md); object-fit: contain; box-shadow: 0 34px 100px rgba(0, 0, 0, 0.55); }
.modal-close {
  position: absolute; top: -16px; right: -16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(28, 16, 9, 0.8);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 2;
}
.modal-close:hover { background: var(--gold); color: var(--ink); }
.modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(28, 16, 9, 0.75);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  z-index: 2;
}
.modal-nav:hover { background: var(--gold); color: var(--ink); border-color: transparent; }
.modal-prev { left: -68px; }
.modal-next { right: -68px; }

/* ============================================================
   BLOG — HERO / LISTAGEM
============================================================ */
.blog-hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--cream);
  text-align: center;
  padding: 122px 0 64px;
  border-bottom: 1px solid rgba(245, 239, 227, 0.1);
}
.blog-hero .eyebrow { justify-content: center; color: var(--gold-light); }
.blog-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 14px;
}
.blog-hero p { color: rgba(245, 239, 227, 0.72); max-width: 620px; margin: 0 auto; font-size: 1.02rem; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card__thumb { aspect-ratio: 16/10; background: var(--cream-2); overflow: hidden; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.post-card__title { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; line-height: 1.25; color: var(--ink); margin: 0 0 10px; }
.post-card__title a:hover { color: var(--wine); }
.post-card__excerpt { font-size: 0.92rem; color: var(--muted); line-height: 1.65; margin: 0 0 16px; flex: 1; }
.post-card__meta { font-size: 0.8rem; color: var(--muted-2); display: flex; gap: 10px; align-items: center; border-top: 1px solid var(--line); padding-top: 14px; }
.post-card--featured { grid-column: span 3; display: grid; grid-template-columns: 1.1fr 1fr; }
.post-card--featured .post-card__thumb { aspect-ratio: auto; height: 100%; }
.post-card--featured .post-card__title { font-size: 1.9rem; }

.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; color: var(--ink); }
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-pills a { font-size: 0.78rem; font-weight: 600; color: var(--muted); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; background: var(--paper); }
.cat-pills a:hover, .cat-pills a.current { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; flex-wrap: wrap; }
.pagination .page-numbers { padding: 9px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); color: var(--muted); font-weight: 600; font-size: 0.9rem; }
.pagination .page-numbers.current { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pagination .page-numbers:hover { border-color: var(--gold); color: var(--wine); }

/* ============================================================
   BLOG — ARTIGO (single)
============================================================ */
.article-head { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--cream); padding: 122px 0 44px; }
.article-head .wrap { max-width: 820px; }
.breadcrumbs { font-size: 0.78rem; color: rgba(245, 239, 227, 0.55); margin-bottom: 18px; }
.breadcrumbs a { color: rgba(245, 239, 227, 0.75); }
.breadcrumbs a:hover { color: var(--gold-light); }
.article-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.article-title { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.5vw, 2.9rem); line-height: 1.15; margin: 0 0 18px; color: var(--cream); }
.article-meta { display: flex; align-items: center; gap: 14px; font-size: 0.88rem; color: rgba(245, 239, 227, 0.7); flex-wrap: wrap; }
.article-meta .avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(184, 147, 90, 0.4); }
.article-meta strong { color: var(--cream); font-weight: 600; }

.article-hero-img { max-width: 960px; margin: -28px auto 0; padding: 0 24px; }
.article-hero-img img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

.article-body { max-width: var(--readw); margin: 44px auto 0; padding: 0 24px; font-size: 1.12rem; line-height: 1.8; }
.article-body p { margin: 0 0 1.35em; }
.article-body h2 { font-family: var(--serif); font-weight: 700; font-size: 2rem; line-height: 1.2; margin: 1.2em 0 0.6em; color: var(--ink); }
.article-body h3 { font-family: var(--serif); font-weight: 700; font-size: 1.55rem; line-height: 1.28; margin: 1.5em 0 0.5em; color: var(--ink); }
.article-body h2::after { content: ""; display: block; width: 52px; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; margin-top: 0.4em; }
.article-body a { color: var(--wine); text-decoration: underline; text-decoration-color: rgba(184, 147, 90, 0.6); text-underline-offset: 3px; }
.article-body a:hover { color: var(--gold); }
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 1.35em; padding-left: 1.4em; }
.article-body li { margin: 0 0 0.5em; }
.article-body ul li::marker { color: var(--gold); }
.article-body blockquote { font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.5; color: var(--wine); border-left: 4px solid var(--gold); margin: 1.6em 0; padding: 0.4em 0 0.4em 1.2em; }
.article-body img { border-radius: var(--radius-md); margin: 1.6em 0; box-shadow: var(--shadow-md); }
.article-body figure { margin: 1.6em 0; }
.article-body figcaption { font-size: 0.85rem; color: var(--muted-2); text-align: center; margin-top: 0.6em; }
.article-body h2:first-child, .article-body h3:first-child { margin-top: 0; }

.toc { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 20px 24px; margin: 0 0 32px; }
.toc__title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 12px; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc li { margin: 0.35em 0; font-size: 0.98rem; }
.toc a { color: var(--muted); }
.toc a:hover { color: var(--wine); }

.article-cta { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--cream); border-radius: var(--radius-md); padding: 36px 32px; text-align: center; margin: 40px auto; max-width: var(--readw); }
.article-cta h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 0 0 10px; color: var(--cream); }
.article-cta p { color: rgba(245, 239, 227, 0.75); margin: 0 0 20px; }

.article-foot { max-width: var(--readw); margin: 40px auto 0; padding: 0 24px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tags a { font-size: 0.78rem; font-weight: 600; color: var(--muted); background: var(--cream-2); padding: 6px 14px; border-radius: 999px; }
.tags a:hover { background: var(--ink); color: var(--cream); }
.share { display: flex; gap: 10px; align-items: center; font-size: 0.85rem; color: var(--muted-2); }
.share a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--wine); }
.share a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.author-box { max-width: var(--readw); margin: 44px auto 0; padding: 28px 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; gap: 20px; align-items: flex-start; }
.author-box img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(184, 147, 90, 0.4); flex-shrink: 0; }
.author-box h4 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin: 0 0 4px; color: var(--ink); }
.author-box .role { font-size: 0.8rem; color: var(--wine); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.author-box p { font-size: 0.95rem; color: var(--muted); margin: 0; line-height: 1.6; }

.related { max-width: var(--maxw); margin: 56px auto 0; padding: 0 24px 80px; }
.related h2 { font-family: var(--serif); font-weight: 500; font-size: 1.6rem; color: var(--ink); margin: 0 0 24px; text-align: center; }

/* ============================================================
   PÁGINA GENÉRICA (landing por evento, FAQ, cardápio solo)
============================================================ */
.page-hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--cream);
  text-align: center;
  padding: 122px 0 72px;
}
.page-hero .eyebrow { justify-content: center; color: var(--gold-light); }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.05; margin-bottom: 16px; }
.page-hero p { color: rgba(245, 239, 227, 0.75); max-width: 640px; margin: 0 auto; font-size: 1.06rem; line-height: 1.7; }
.page-body { max-width: var(--readw); margin: 64px auto; padding: 0 24px; font-size: 1.08rem; line-height: 1.8; color: var(--text); }
.page-body h2 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; margin: 1.6em 0 0.6em; color: var(--ink); }
.page-body p { margin: 0 0 1.3em; }
.page-body ul { margin: 0 0 1.3em; padding-left: 1.3em; }
.page-body li { margin: 0 0 0.5em; list-style: disc; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1100px)
============================================================ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-actions .btn-outline-light { display: none; }
  .menu-btn { display: flex; }

  .hero-badge { display: none; }

  .sobre-grid { grid-template-columns: 1fr; gap: 56px; }
  .sobre-media { min-height: 400px; margin-right: 0; }
  .sobre-photo-main { aspect-ratio: 16/10; }
  .sobre-photo-sec { right: -16px; bottom: -32px; }

  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .menu-cols { grid-template-columns: 1fr; gap: 40px; }
  .menu-chapter:first-child { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(245, 239, 227, 0.1); padding-bottom: 32px; }
  .menu-chapter:last-child { padding-left: 0; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step:last-child { grid-column: 1 / -1; }

  .gal-item { width: 260px; height: 340px; border-radius: 20px; }
  .gallery-fade { width: 100px; }
  .modal-prev { left: 6px; }
  .modal-next { right: 6px; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .google-review-card { width: 300px; }
  .google-reviews-static-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 0 30px; }

  .post-grid { grid-template-columns: 1fr 1fr; }
  .post-card--featured { grid-column: span 2; grid-template-columns: 1fr; }
  .post-card--featured .post-card__thumb { aspect-ratio: 16/10; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 680px)
============================================================ */
@media (max-width: 680px) {
  .container, .wrap { width: min(100% - 32px, 1200px); }
  :root { --space-section: 72px; }

  /* Bodoni Moda é uma serifada de alto contraste — em telas pequenas o traço fino
     some/fica ilegível, então no mobile ela sobe de peso + ganha um contorno que
     reforça o traço (a fonte é variável e "font-weight" sozinho nem sempre é
     100% respeitado em navegador mobile). Título claro sobre fundo escuro aguenta
     o peso máximo sem pesar; título escuro sobre fundo claro fica "borrado" no
     900 + contorno, por isso usa um peso mais moderado. */
  .hero h1, .blog-hero h1, .page-hero h1,
  .stat strong, .step-num, .form-title, .footer h3,
  .article-title, .article-cta h3, .service-body h3,
  .section-title.section-title--light {
    font-weight: 900;
    -webkit-text-stroke: 0.5px currentColor;
    text-stroke: 0.5px currentColor;
  }
  .section-title:not(.section-title--light), .pillar h3, .section-head h2,
  .article-body h2, .article-body h3, .post-card__title,
  .related h2, .author-box h4, .page-body h2 {
    font-weight: 700;
    -webkit-text-stroke: 0.5px currentColor;
    text-stroke: 0.5px currentColor;
  }

  /* Nos títulos escritos em tom vinho sobre fundo claro (não branco puro sobre
     fundo escuro), o contraste mais baixo faz a letra parecer fina mesmo em
     negrito — escurecendo pra um tom quase preto, o mesmo traço fica bem
     mais forte aos olhos, sem mudar a paleta do site. Os títulos claros sobre
     fundo escuro (--light, cards de serviço) ficam de fora — já têm contraste
     alto e escurecer os deixaria pretos em cima de um fundo também escuro. */
  .section-title:not(.section-title--light), .section-head h2,
  .article-body h2, .article-body h3, .post-card__title,
  .related h2, .author-box h4, .page-body h2 {
    color: var(--text);
  }

  /* Texto de leitura um pouco maior no mobile — muitos visitantes mais velhos
     acessam pelo celular, então o corpo do texto não pode ficar pequeno. */
  .hero-sub, .section-copy { font-size: 1.02rem; }
  .article-body, .page-body { font-size: 1.14rem; line-height: 1.85; }
  .article-body p, .page-body p { margin-bottom: 1.4em; }

  .topbar { font-size: 0.72rem; gap: 10px; padding: 7px 16px; }
  .topbar > *:first-child, .topbar > *:nth-child(2) { display: none; }

  .suppliers { padding: 36px 0; }
  .suppliers-track span { margin-right: 40px; }
  .suppliers-track img { height: 48px; }
  .suppliers-fade { width: 50px; }

  .header { top: 34px; }
  .header.scrolled { top: 0; }
  .nav { height: 68px; }

  .hero { padding-top: 68px; }
  .hero-inner { padding: 44px 0 32px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.8rem); margin-bottom: 20px; }
  .hero-sub { font-size: 0.98rem; max-width: 100%; margin-bottom: 30px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; padding: 16px 24px; justify-content: center; }

  .hero-stats { padding: 0; }
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .stat { padding: 18px 12px; border: 1px solid rgba(245, 239, 227, 0.07); }
  .stat strong { font-size: 1.85rem; }
  .stat span { font-size: 0.66rem; }

  .section-title { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .section-copy { font-size: 0.97rem; max-width: 100%; }
  .section-header { margin-bottom: 40px; }

  .sobre-media { min-height: auto; }
  .sobre-photo-main { aspect-ratio: 4/3; }
  .sobre-photo-sec { position: relative; right: auto; bottom: auto; width: 100%; aspect-ratio: 16/9; margin-top: 14px; border: 3px solid var(--cream); }
  .sobre-quote { font-size: 1.02rem; padding: 18px 16px 18px 20px; margin: 22px 0 26px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { padding: 30px 24px; min-height: 240px; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-img { aspect-ratio: 1; }
  .service-body { padding: 14px 14px 18px; }
  .service-body h3 { font-size: 1.3rem; }
  .service-body p { font-size: 0.8rem; }

  .menu-chapter { padding: 0; }
  .menu-chapter:first-child { padding-bottom: 26px; }
  .menu-chapter-title { font-size: 1.5rem; }
  .menu-photo-strip img { width: 52px; height: 52px; }
  .menu-chapter-note { font-size: 0.94rem; }
  .menu-items li { font-size: 1.08rem; line-height: 1.5; }
  .menu-acc-title { font-size: 0.88rem; }
  .menu-items--acc li { font-size: 1rem; }
  .menu-footnote { font-size: 0.9rem; }
  .menu-ornline { margin: 34px 0; }

  .steps { grid-template-columns: 1fr; gap: 10px; }
  .step:last-child { grid-column: auto; }
  .step { min-height: auto; padding: 22px 18px; flex-direction: row; align-items: flex-start; gap: 16px; }
  .step-num { font-size: 2rem; flex-shrink: 0; }
  .step-body h3 { font-size: 0.94rem; }
  .step-body p { font-size: 0.84rem; }

  .gal-item { width: 180px; height: 240px; border-radius: 18px; margin-right: 12px; }
  .gallery-rows { gap: 12px; }
  .gallery-fade { width: 40px; }

  .modal { padding: 16px; }
  .modal-content { max-width: calc(100vw - 32px); }
  .modal-img { max-height: 80vh; }
  .modal-close { top: -44px; right: 0; background: rgba(20, 8, 8, 0.92); }
  .modal-prev { left: 6px; width: 44px; height: 44px; }
  .modal-next { right: 6px; width: 44px; height: 44px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 24px 20px; }
  .google-reviews-static-grid { grid-template-columns: 1fr; gap: 14px; }
  .google-reviews { margin-top: 40px; padding-top: 34px; }
  .google-reviews-head { text-align: center; flex-direction: column; gap: 8px; }
  .google-review-card { width: 270px; padding: 20px; }
  .testimonial-card blockquote { font-size: 1.06rem; }

  .cta-section { padding: 80px 0; }
  .form-card { padding: 24px 18px; }
  .form-title { font-size: 1.5rem; margin-bottom: 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .field--full { grid-column: auto; }
  .field input, .field select, .field textarea { padding: 13px 14px; font-size: 1rem; }

  .faq-layout { gap: 32px; }
  .faq-item summary { padding: 18px 18px; font-size: 0.92rem; }
  .faq-icon { width: 24px; height: 24px; }
  .faq-a { padding: 0 18px 18px; }
  .faq-a p { font-size: 0.9rem; }

  .contact-map { min-height: 260px; }
  .contact-list { gap: 18px; margin-top: 26px; }

  .footer { padding: 52px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-bottom: 38px; }
  .footer-services { display: none; }
  .footer h3 { font-size: 1.18rem; margin-bottom: 14px; }
  .footer-logo { height: 42px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; font-size: 0.72rem; }

  .whatsapp-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }

  .blog-hero, .article-head, .page-hero { padding-top: 96px; }
  .post-grid { grid-template-columns: 1fr; }
  .post-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .article-body h2 { font-size: 1.6rem; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
}
