/* ==========================================================================
   Bistrot Cheiro de Canela — Design tokens
   Palette derived from the brand medallion: charcoal black, burnt cinnamon,
   parchment cream, oak wood, muted sage (living wall), warm ember gold.
   ========================================================================== */

:root {
  --black:        #17130f;
  --charcoal:      #241d17;
  --charcoal-2:    #322820;
  --cinnamon:      #a4471f;
  --cinnamon-2:    #c2531f;
  --cinnamon-light:#dd8a52;
  --cream:         #f4ead9;
  --cream-dim:     #e8d9c0;
  --parchment:     #fbf6ec;
  --wood:          #7c5635;
  --sage:          #5c6a4e;
  --gold:          #c99a4e;
  --white:         #fffdf9;
  --ink:           #241d17;

  --font-display: 'Yeseva One', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;

  --shadow-soft: 0 20px 45px -20px rgba(23, 19, 15, 0.45);
  --shadow-card: 0 12px 28px -14px rgba(23, 19, 15, 0.35);

  --section-pad: clamp(4rem, 8vw, 7.5rem);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; line-height: 1.08; }

p { margin: 0 0 1em; }

button { font-family: inherit; cursor: pointer; }

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

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--cinnamon-2);
  margin-bottom: 0.9em;
  display: block;
}
.eyebrow-center { text-align: center; }

.section-title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 0.5em;
  color: var(--black);
}

.section-lede {
  text-align: center;
  max-width: 46ch;
  margin: 0 auto 3rem;
  color: var(--charcoal-2);
  opacity: 0.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.9em;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--cinnamon);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(164, 71, 31, 0.65);
}
.btn-primary:hover { background: var(--cinnamon-2); }

.btn-ghost {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-delivery {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 24px -10px rgba(201, 154, 78, 0.65);
}
.btn-delivery:hover { background: #dbae63; }

.badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  background: var(--cream-dim);
  color: var(--charcoal);
  padding: 0.5em 0.9em;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.scrolled {
  background: rgba(23, 19, 15, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
  padding: 0.6rem 0;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo img { height: 52px; width: 52px; border-radius: 50%; transition: height .3s ease, width .3s ease; }
.site-header.scrolled .nav-logo img { height: 42px; width: 42px; }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: 2rem;
  flex: 1;
}
.nav-links a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.3em 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-contact svg { width: 16px; height: 16px; color: #25D366; flex-shrink: 0; }
.nav-contact:hover { color: var(--cinnamon-light); }
.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(201, 154, 78, 0.16);
  border: 1px solid rgba(201, 154, 78, 0.5);
  color: var(--gold);
  padding: 0.5em 1em;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,19,15,0.55) 0%, rgba(23,19,15,0.72) 55%, rgba(23,19,15,0.94) 100%);
}

.hero-steam { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; z-index: -1; pointer-events: none; opacity: 0.5; }
.hero-steam span {
  position: absolute;
  bottom: -20px;
  width: 60px; height: 200px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  animation: steam-rise 9s ease-in infinite;
}
.hero-steam span:nth-child(1) { left: 20%; animation-delay: 0s; }
.hero-steam span:nth-child(2) { left: 55%; animation-delay: 3s; }
.hero-steam span:nth-child(3) { left: 80%; animation-delay: 6s; }
@keyframes steam-rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.7; }
  100% { transform: translateY(-260px) scale(1.6); opacity: 0; }
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 760px;
  padding: 0 1.5rem;
  margin-top: 3rem;
}

.hero-medallion {
  width: 92px; height: 92px;
  border-radius: 50%;
  margin: 0 auto 1.6rem;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.6);
}

.hero .eyebrow { color: var(--cinnamon-light); text-align: center; }

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  margin-bottom: 0.4em;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 52ch;
  margin: 0 auto 2.2em;
}
.hero-sub strong { color: var(--gold); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 100px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0% { top: 8px; opacity: 1; }
  70% { top: 24px; opacity: 0; }
  100% { top: 24px; opacity: 0; }
}

/* ==========================================================================
   Stats strip
   ========================================================================== */

.stats-strip {
  background: var(--black);
  color: var(--white);
  padding: 1.8rem 0;
}
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem 0;
}
.stat { text-align: center; padding: 0 1.8rem; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--cinnamon-light);
}
.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.8;
  margin-top: 0.3em;
}
.stat-divider {
  width: 1px; height: 34px;
  background: rgba(255,255,255,0.15);
}

/* ==========================================================================
   Sobre
   ========================================================================== */

.sobre { padding: var(--section-pad) 0; background: var(--parchment); }

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.sobre-media {
  position: relative;
  display: grid;
}
.sobre-media img:first-child {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.sobre-media-small {
  position: absolute;
  bottom: -8%;
  right: -12%;
  width: 58%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--parchment);
  box-shadow: var(--shadow-card);
}

.sobre-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 0.55em; color: var(--black); }
.sobre-text p { color: var(--charcoal-2); }
.sobre-text strong { color: var(--cinnamon); font-weight: 600; }

.sobre-badges { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.4rem; }

/* ==========================================================================
   Cardápio
   ========================================================================== */

.cardapio { padding: var(--section-pad) 0; background: var(--charcoal); color: var(--cream); }
.cardapio .section-title { color: var(--white); }
.cardapio .eyebrow { color: var(--cinnamon-light); }

/* Prominent alteration-notice banner */
.menu-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(201, 154, 78, 0.12);
  border: 1.5px solid rgba(201, 154, 78, 0.45);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.menu-disclaimer-icon { font-size: 1.2rem; color: var(--gold); line-height: 1.3; }
.menu-disclaimer p { margin: 0; font-size: 0.9rem; color: var(--cream); }
.menu-disclaimer strong { color: var(--gold); }

/* Destaques (featured dishes with photos) */
.destaques-grid { margin-bottom: 4rem; }

.menu-full { border-top: 1px solid rgba(244,234,217,0.12); padding-top: 3.5rem; }
.menu-full .eyebrow-center { margin-bottom: 1.6rem; }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.menu-tab {
  background: transparent;
  border: 1.5px solid rgba(244,234,217,0.25);
  color: var(--cream-dim);
  padding: 0.7em 1.4em;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.menu-tab:hover { border-color: var(--cinnamon-light); }
.menu-tab.active { background: var(--cinnamon); border-color: var(--cinnamon); color: var(--white); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade-in 0.4s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px);} to { opacity:1; transform: translateY(0);} }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.6rem;
}

.menu-item {
  background: var(--charcoal-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.menu-item:hover { transform: translateY(-4px); }
.menu-item img { height: 190px; width: 100%; object-fit: cover; }
.menu-item-body { padding: 1.2rem 1.3rem 1.4rem; }
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.4em;
}
.menu-item-head h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }
.menu-item .price {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.menu-item p { color: var(--cream-dim); font-size: 0.9rem; opacity: 0.85; margin: 0; }

.menu-item-signature { border: 1.5px solid var(--gold); }

.menu-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--cream-dim);
  opacity: 0.65;
  margin: 2.6rem 0 0;
}

/* Printed-menu style price list, dotted leaders like the physical card */
.price-cat-note {
  font-size: 0.85rem;
  color: var(--cream-dim);
  opacity: 0.75;
  margin-bottom: 1.6rem;
  text-align: center;
}

.price-list {
  display: grid;
  gap: 2.4rem;
  max-width: 820px;
  margin: 0 auto;
}

.price-cat h4 {
  font-family: var(--font-display);
  color: var(--cinnamon-light);
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(244,234,217,0.15);
}

.price-cat ul { list-style: none; margin: 0; padding: 0; }
.price-cat li { margin-bottom: 0.85rem; }

.pl-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.pl-name {
  font-weight: 500;
  color: var(--white);
  font-size: 0.96rem;
  white-space: nowrap;
}
.pl-name em { color: var(--cream-dim); font-style: italic; font-weight: 400; font-size: 0.88em; }
.pl-dots {
  flex: 1;
  border-bottom: 1.5px dotted rgba(244,234,217,0.3);
  transform: translateY(-0.3em);
  min-width: 20px;
}
.pl-price {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.9rem;
  white-space: nowrap;
}
.pl-desc {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--cream-dim);
  opacity: 0.75;
  font-style: italic;
}
.pl-flavors {
  font-size: 0.85rem;
  color: var(--cream-dim);
  opacity: 0.85;
  margin: 0.8rem 0 1.2rem;
}
.pl-flavors strong { color: var(--cinnamon-light); }

@media (max-width: 600px) {
  .pl-row { flex-wrap: wrap; }
  .pl-dots { display: none; }
  .pl-name { white-space: normal; }
}

/* ==========================================================================
   Galeria
   ========================================================================== */

.galeria { padding: var(--section-pad) 0 0; background: var(--parchment); }

/* Dynamic photo carousel */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 2.5rem auto 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/9;
  background: var(--black);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.65,0,.35,1);
}
.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(23,19,15,0.55);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}
.carousel-arrow:hover { background: rgba(23,19,15,0.85); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

.gallery-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--charcoal-2);
  opacity: 0.8;
  margin-bottom: 2rem;
}
.gallery-note a { color: var(--cinnamon); font-weight: 600; }

@media (max-width: 600px) {
  .carousel { margin: 1.8rem auto 1.2rem; border-radius: var(--radius-md); aspect-ratio: 4/5; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem) var(--section-pad);
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream-dim);
}
.gallery-item.span-2 { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,15,0) 55%, rgba(23,19,15,0.55) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

/* ==========================================================================
   Depoimentos
   ========================================================================== */

.depoimentos { padding: var(--section-pad) 0; background: var(--cream); }

.review-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.review-badge {
  background: var(--white);
  border: 1.5px solid var(--cream-dim);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.8rem;
  text-align: center;
  min-width: 170px;
  box-shadow: var(--shadow-card);
}
.review-badge-score {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--cinnamon);
}
.review-badge-name { display: block; font-weight: 600; font-size: 0.9rem; margin-top: 0.1em; }
.review-badge-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--wood);
  margin-top: 0.35em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--cinnamon);
}
.testimonial p {
  font-size: 0.98rem;
  color: var(--charcoal);
  margin-bottom: 1em;
}
.testimonial footer {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Localização
   ========================================================================== */

.localizacao { padding: var(--section-pad) 0; background: var(--black); color: var(--cream); }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.loc-info h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.5rem); margin-bottom: 1.4rem; }
.loc-info .eyebrow { color: var(--cinnamon-light); }

.loc-list { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: 1.3rem; }
.loc-list li { display: flex; gap: 1rem; align-items: flex-start; }
.loc-icon { font-size: 1.3rem; line-height: 1.4; }
.loc-list strong { display: block; font-size: 0.9rem; color: var(--gold); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25em; }
.loc-list p { margin: 0; color: var(--cream-dim); }
.loc-list a:hover { color: var(--cinnamon-light); }

.loc-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow-soft);
}
.loc-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.15) sepia(0.08); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--charcoal); color: var(--cream-dim); padding: 3.5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(244,234,217,0.1);
}
.footer-brand img { height: 56px; width: 56px; border-radius: 50%; margin-bottom: 1rem; }
.footer-brand p { max-width: 30ch; font-size: 0.9rem; opacity: 0.75; }
.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; }
.footer-links a { display: block; padding: 0.3em 0; font-size: 0.9rem; opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: var(--cinnamon-light); }

.footer-bottom {
  text-align: center;
  padding: 1.4rem 0;
  font-size: 0.78rem;
  opacity: 0.55;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed; inset: 0;
  background: rgba(23,19,15,0.94);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-sm); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.8rem;
  background: none; border: none;
  color: var(--white); font-size: 2.4rem;
  line-height: 1;
}

/* ==========================================================================
   WhatsApp FAB
   ========================================================================== */

.whatsapp-fab {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,0.5);
  z-index: 90;
  transition: transform 0.25s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; color: var(--white); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .sobre-grid, .loc-grid { grid-template-columns: 1fr; }
  .sobre-media { margin-bottom: 2rem; }
  .sobre-media-small { width: 55%; right: 2%; bottom: -6%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-trust { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(23,19,15,0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    margin: 0;
  }
  .site-header.nav-open .nav-links a { padding: 0.9em 0; border-bottom: 1px solid rgba(244,234,217,0.08); }
  .site-header.nav-open .nav-trust {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1rem 1.5rem 1.5rem;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery-item.span-2 { grid-column: span 2; grid-row: span 1; }

  .stats-inner { gap: 1.2rem 0; }
  .stat { padding: 0 1rem; }
  .stat-divider:nth-of-type(2) { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
