/* ============================================================
   BENDITA BARBEARIA — design system (mobile-first)
   Dark editorial-luxe · Bodoni Moda + Hanken Grotesk · dourado escasso
   ============================================================ */

:root {
  /* Cor (OKLCH, neutros tintados para o dourado ~78°) */
  --bg:        oklch(0.145 0.007 66);
  --bg-2:      oklch(0.185 0.009 66);
  --bg-3:      oklch(0.225 0.011 66);
  --text:      oklch(0.945 0.013 82);
  --text-dim:  oklch(0.75 0.012 82);
  --text-faint:oklch(0.57 0.010 82);
  --gold:      oklch(0.78 0.108 80);
  --gold-soft: oklch(0.84 0.078 84);
  --gold-deep: oklch(0.63 0.095 74);
  --line:      oklch(0.45 0.010 78 / 0.22);
  --line-2:    oklch(0.45 0.010 78 / 0.12);
  --gold-line: oklch(0.78 0.108 80 / 0.38);

  --font-display: "Bodoni Moda", "Bodoni Moda Fallback", Georgia, serif;
  --font-body: "Hanken Grotesk", "Hanken Grotesk Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --step-hero: clamp(2.9rem, 1.5rem + 7vw, 6.5rem);
  --step-h2:   clamp(2rem, 1.4rem + 3vw, 3.5rem);
  --step-lead: clamp(1.05rem, 0.98rem + 0.5vw, 1.28rem);
  --step-body: 1.05rem;
  --step-label:0.75rem;

  --space-2xs: 0.25rem; --space-xs: 0.5rem; --space-sm: 0.75rem;
  --space-md: 1rem; --space-lg: 1.5rem; --space-xl: 2rem;
  --space-2xl: 3rem; --space-3xl: 4rem;
  --space-4xl: clamp(3rem, 2rem + 4vw, 5rem);
  --space-5xl: clamp(3.5rem, 2.5rem + 5vw, 6.5rem);

  --wrap: 74rem;
  --pad: clamp(1.25rem, 0.6rem + 3vw, 3rem);
  --radius: 2px;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);

  color-scheme: dark;
}

@font-face { font-family: "Bodoni Moda Fallback"; src: local("Georgia"); size-adjust: 96%; ascent-override: 92%; }
@font-face { font-family: "Hanken Grotesk Fallback"; src: local("Arial"); size-adjust: 100%; }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: var(--step-body); line-height: 1.65;
  font-kerning: normal; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Grão sutil de fundo */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--gold); color: var(--bg); padding: 0.75rem 1.25rem; font-weight: 600; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---- Tipografia utilitária ---- */
.eyebrow {
  font-size: var(--step-label); text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--gold-soft); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; display: inline-block; }

/* número de seção com linha dourada que cresce ao revelar */
.section__num {
  font-size: var(--step-label); letter-spacing: 0.24em; color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.9rem;
}
.section__num::after {
  content: ""; height: 1px; width: 0; background: var(--gold-line);
  transition: width 1.1s var(--ease-expo) 0.15s;
}
.reveal.is-visible .section__num::after,
.section__num.is-visible::after { width: clamp(2rem, 8vw, 5rem); }

.section__title {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-h2);
  line-height: 1.04; letter-spacing: -0.01em; text-wrap: balance;
}
.section__title em { font-style: italic; color: var(--gold); }

/* ---- Botões ---- */
.btn {
  --btn-pad-y: 0.95rem; --btn-pad-x: 1.6rem;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius); cursor: pointer; border: 1px solid transparent; overflow: hidden;
  transition: transform 0.4s var(--ease-expo), background-color 0.4s var(--ease-quart), color 0.4s var(--ease-quart), border-color 0.4s var(--ease-quart);
}
.btn--gold { background: var(--gold); color: oklch(0.17 0.03 74); }
/* brilho que atravessa no hover */
.btn--gold::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(105deg, transparent 30%, oklch(1 0 0 / 0.35) 50%, transparent 70%);
  transition: transform 0.7s var(--ease-expo);
}
.btn--gold:hover { transform: translateY(-2px); }
.btn--gold:hover::after { transform: translateX(120%); }
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold-line); color: var(--gold-soft); transform: translateY(-2px); }
.btn--sm { --btn-pad-y: 0.62rem; --btn-pad-x: 1.15rem; font-size: 0.72rem; }
.btn--lg { --btn-pad-y: 1.15rem; --btn-pad-x: 2.4rem; font-size: 0.88rem; }

.link-gold {
  color: var(--gold-soft); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.5em;
  border-bottom: 1px solid var(--gold-line); padding-bottom: 3px;
  transition: color 0.3s, gap 0.3s var(--ease-expo);
}
.link-gold:hover { color: var(--gold); gap: 0.9em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: transform 0.5s var(--ease-expo), background-color 0.5s var(--ease-quart), backdrop-filter 0.5s;
}
.site-header.scrolled { background: oklch(0.145 0.007 66 / 0.78); backdrop-filter: blur(16px) saturate(1.1); }
.site-header.hidden { transform: translateY(-100%); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); min-height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__mark { width: 26px; height: auto; }
.brand__word { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; line-height: 0.95; display: flex; flex-direction: column; }
.brand__sub { font-family: var(--font-body); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-soft); margin-top: 2px; }

.nav { display: none; }
.site-header__actions { display: flex; align-items: center; gap: var(--space-sm); }
.header-cta { display: none; }

.nav-toggle { display: inline-flex; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 11px; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.4s var(--ease-expo), opacity 0.3s; }
.nav-toggle span:nth-child(1) { top: 19px; }
.nav-toggle span:nth-child(2) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* menu mobile overlay */
.nav {
  position: fixed; inset: 66px 0 auto 0; flex-direction: column; gap: 0;
  background: oklch(0.145 0.007 66 / 0.98); backdrop-filter: blur(16px);
  padding: var(--space-sm) var(--pad) var(--space-xl);
  transform: translateY(-120%); transition: transform 0.5s var(--ease-expo);
}
.nav.open { display: flex; transform: none; }
.nav a { padding: var(--space-md) 0; border-bottom: 1px solid var(--line-2); font-size: 1.05rem; font-family: var(--font-display); }

/* ============================================================
   HERO (mobile: full-bleed com imagem de fundo)
   ============================================================ */
.hero { position: relative; z-index: 1; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -1; margin: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      oklch(0.10 0.006 66 / 0.66) 0%,
      oklch(0.10 0.006 66 / 0.32) 20%,
      oklch(0.10 0.006 66 / 0.5) 46%,
      oklch(0.10 0.006 66 / 0.82) 72%,
      oklch(0.11 0.006 66 / 0.97) 100%);
}
.hero__inner { padding-top: 6rem; padding-bottom: clamp(6rem, 18vw, 8rem); }
.hero__content { max-width: 34ch; }
.hero .eyebrow { margin-bottom: var(--space-md); }
.hero__title {
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-hero);
  line-height: 0.98; letter-spacing: -0.02em; margin-bottom: var(--space-md);
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: var(--gold); font-weight: 500; }
.hero__lead { color: var(--text); font-size: var(--step-lead); max-width: 40ch; margin-bottom: var(--space-lg); text-shadow: 0 1px 12px oklch(0 0 0 / 0.5); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.hero__meta { display: flex; gap: var(--space-xl); border-top: 1px solid var(--line); padding-top: var(--space-md); }
.hero__meta dt { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-soft); font-weight: 600; margin-bottom: 0.3rem; }
.hero__meta dd { font-size: 0.9rem; color: var(--text); }

.hero__scroll { display: none; }

/* ============================================================
   FAIXA DE PROVAS (marquee sutil no mobile)
   ============================================================ */
.proofs { position: relative; z-index: 1; background: var(--bg-2); overflow: hidden; }
.proofs__track {
  display: flex; gap: 2.6rem; padding-block: var(--space-md); width: max-content;
  animation: marquee 32s linear infinite;
}
.proofs__track span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; display: inline-flex; align-items: center; white-space: nowrap; }
.proofs__track span::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin-left: 2.6rem; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS base
   ============================================================ */
.section { position: relative; z-index: 1; padding-block: var(--space-5xl); }
.section__head { max-width: 52ch; margin-bottom: var(--space-2xl); }
.section__head .section__num { margin-bottom: var(--space-md); }
.section__title { margin-bottom: var(--space-md); }
.section__intro { color: var(--text-dim); font-size: var(--step-lead); max-width: 46ch; }

/* ---- Serviços ---- */
.services { background: var(--bg); }
.services__body { display: flex; flex-direction: column; gap: var(--space-2xl); }
.services__photo { margin: 0; }
.services__photo img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 32%; width: 100%; }
.services__menu { display: grid; gap: var(--space-xl); }
.svc-group__label {
  font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.5rem;
  color: var(--gold); margin-bottom: var(--space-sm); padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--gold-line);
}
.svc-list li { padding-block: var(--space-sm); border-bottom: 1px solid var(--line-2); transition: padding-left 0.4s var(--ease-expo); }
.svc-list li:hover { padding-left: var(--space-sm); }
.svc-name { display: block; font-weight: 600; font-size: 1rem; }
.svc-desc { display: block; color: var(--text-faint); font-size: 0.85rem; margin-top: 2px; }
.services__foot { margin-top: var(--space-2xl); }

/* ---- Galeria: carrossel scroll-snap (mobile) ---- */
.gallery { background: var(--bg-2); }
.gallery__grid {
  display: flex; gap: var(--space-md); overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: var(--space-md); margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad);
  scrollbar-width: none;
}
.gallery__grid::-webkit-scrollbar { display: none; }
.g {
  flex: 0 0 min(80%, 22rem); scroll-snap-align: center; margin: 0;
  aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); position: relative;
}
.g img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92) contrast(1.02); transition: transform 0.9s var(--ease-expo), filter 0.6s; }
.g:hover img { transform: scale(1.05); filter: brightness(1) contrast(1.04); }
.g::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line-2); transition: box-shadow 0.5s; pointer-events: none; }
.g:hover::after { box-shadow: inset 0 0 0 1px var(--gold-line); }
.gallery__hint { margin-top: var(--space-md); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }

/* ---- Sobre ---- */
.about { background: var(--bg); }
.about__inner { display: flex; flex-direction: column; gap: var(--space-xl); }
.about__media { margin: 0; }
.about__media img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.about__content .section__num { margin-bottom: var(--space-md); }
.about__content .section__title { margin-bottom: var(--space-lg); }
.about__content p { color: var(--text-dim); margin-bottom: var(--space-md); max-width: 54ch; }
.about__signature { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--gold) !important; margin-top: var(--space-lg) !important; }

/* ---- Visita ---- */
.visit { background: var(--bg-2); }
.visit__body { display: flex; flex-direction: column; gap: var(--space-2xl); }
.visit__info { display: flex; flex-direction: column; gap: var(--space-xl); }
.visit__block h3 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-soft); font-weight: 600; margin-bottom: var(--space-sm); }
.visit__block p { color: var(--text); line-height: 1.7; margin-bottom: var(--space-sm); }
.hours { width: 100%; border-collapse: collapse; max-width: 26rem; }
.hours th, .hours td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid var(--line-2); font-weight: 500; }
.hours th { color: var(--text-dim); font-weight: 500; }
.hours td { color: var(--text); text-align: right; font-variant-numeric: tabular-nums; }
.hours .is-closed { color: var(--text-faint); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold); font-weight: 700; }
.hours tr.is-today th::before { content: "▸ "; color: var(--gold); }
.visit__contact { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.visit__map { position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line); }
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) invert(0.92) hue-rotate(180deg) contrast(0.9); }

/* ---- Closer ---- */
.closer {
  position: relative; z-index: 1; text-align: center; padding-block: var(--space-4xl); overflow: hidden;
}
.closer::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(oklch(0.13 0.006 66 / 0.8), oklch(0.13 0.006 66 / 0.9)), url("../img/serv-detalhe.webp") center/cover;
}
.closer__inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
.closer__title { font-family: var(--font-display); font-weight: 600; font-size: var(--step-h2); line-height: 1.05; }
.closer__title em { font-style: italic; color: var(--gold); }

/* ============================================================
   FOOTER (tipográfico, sem raster)
   ============================================================ */
.site-footer { position: relative; z-index: 1; background: var(--bg); border-top: 1px solid var(--line-2); padding-top: var(--space-4xl); }
.site-footer__inner { display: flex; flex-direction: column; gap: var(--space-2xl); padding-bottom: var(--space-2xl); }
.footer-wordmark { font-family: var(--font-display); line-height: 0.88; }
.footer-wordmark b { display: block; font-weight: 600; font-size: clamp(2.5rem, 12vw, 4rem); letter-spacing: -0.01em; }
.footer-wordmark i { display: block; font-style: italic; font-weight: 500; font-size: clamp(1.3rem, 6vw, 1.9rem); color: var(--gold); letter-spacing: 0.02em; }
.footer-wordmark span { display: block; margin-top: var(--space-sm); font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-faint); }
.site-footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.site-footer__cols h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-soft); font-weight: 600; margin-bottom: var(--space-sm); }
.site-footer__cols a, .site-footer__cols p { display: block; color: var(--text-dim); font-size: 0.88rem; line-height: 1.9; }
.site-footer__cols a { transition: color 0.3s; }
.site-footer__cols a:hover { color: var(--gold-soft); }
.site-footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm); padding-block: var(--space-md); border-top: 1px solid var(--line-2); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--text-faint); }

/* ---- Barra de ação fixa (mobile) ---- */
.mobile-cta {
  position: fixed; z-index: 95; left: 0; right: 0; bottom: 0;
  display: flex; gap: var(--space-sm); align-items: stretch;
  padding: var(--space-sm) var(--space-md) calc(var(--space-sm) + env(safe-area-inset-bottom));
  background: oklch(0.13 0.006 66 / 0.9); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-2);
  transform: translateY(120%); transition: transform 0.5s var(--ease-expo);
}
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn { flex: 1; }
.mobile-cta .btn--wa { flex: 0 0 auto; padding-inline: 1.1rem; border: 1px solid var(--line); color: var(--text); }
.mobile-cta .btn--wa svg { width: 20px; height: 20px; }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo); transition-delay: calc(var(--i, 0) * 90ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* revelação suave para imagens (opacity+scale — nunca colapsa a área p/ o IntersectionObserver) */
.reveal-img { overflow: hidden; }
.reveal-img img { opacity: 0; transform: scale(1.06); transition: opacity 0.9s var(--ease-expo), transform 1.3s var(--ease-expo); }
.reveal-img.is-visible img { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img img { transition: opacity 0.4s ease; transform: none; opacity: 1; }
  .proofs__track { animation: none; }
  .btn, .g img, .svc-list li, .section__num::after { transition: none; }
  .btn--gold::after { display: none; }
}

/* ============================================================
   RESPONSIVE — tablet / desktop
   ============================================================ */
@media (min-width: 700px) {
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .visit__contact .btn { flex: 0 0 auto; }
}

@media (min-width: 900px) {
  /* header vira barra completa */
  .nav { position: static; flex-direction: row; gap: clamp(1.2rem, 2.4vw, 2.4rem); background: none; backdrop-filter: none; padding: 0; transform: none; display: flex; }
  .nav a { padding: 0.3rem 0; border: 0; font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; color: var(--text-dim); position: relative; }
  .nav a::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 0; background: var(--gold); transition: width 0.4s var(--ease-expo); }
  .nav a:hover { color: var(--text); }
  .nav a:hover::after { width: 100%; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .site-header__inner { min-height: 78px; }
  .brand__mark { width: 30px; }
  .brand__word { font-size: 1.15rem; }
  .brand__sub { font-size: 0.6rem; }

  /* hero vira split, imagem emoldurada — sem full-bleed */
  .hero { min-height: min(92vh, 820px); align-items: center; }
  .hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-top: 7rem; padding-bottom: 3rem; width: 100%; }
  .hero__media { position: relative; inset: auto; z-index: auto; height: 100%; }
  .hero__media img { border-radius: var(--radius); max-height: 72vh; object-position: center; }
  .hero__media::after { display: none; }
  .hero__content { max-width: 42ch; }
  .hero__lead { color: var(--text-dim); text-shadow: none; }
  .hero__meta dd { color: var(--text); }
  .hero__scroll { display: inline-flex; position: absolute; left: var(--pad); bottom: var(--space-lg); font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-faint); align-items: center; gap: 0.7rem; }
  .hero__scroll::after { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); animation: scrollcue 2.2s var(--ease-quart) infinite; }
  @keyframes scrollcue { 0%,100% { opacity: 0.3; transform: scaleX(0.6); transform-origin: left; } 50% { opacity: 1; transform: scaleX(1); } }

  .proofs__track { justify-content: center; width: auto; animation: none; flex-wrap: wrap; gap: 2.6rem; }
  .proofs__track span:last-child::after { display: none; }

  .services__body { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
  .services__photo { position: sticky; top: 100px; }
  .services__photo img { aspect-ratio: 4 / 5; }
  .services__menu { grid-template-columns: repeat(2, 1fr); gap: var(--space-2xl) var(--space-xl); }

  /* galeria: grid uniforme e intencional */
  .gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); overflow: visible; margin-inline: 0; padding-inline: 0; padding-bottom: 0; }
  .g { flex: none; aspect-ratio: 4 / 5; scroll-snap-align: none; }
  .gallery__hint { display: none; }

  .about__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
  .about__media img { aspect-ratio: 3 / 4; }

  .visit__body { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
  .visit__map { aspect-ratio: auto; height: 100%; min-height: 360px; }

  /* closer desktop: sem imagem/parallax — fundo sólido elegante */
  .closer { padding-block: var(--space-5xl); }
  .closer::before { background: radial-gradient(120% 120% at 50% 0%, var(--bg-2), var(--bg)); }

  .site-footer__inner { display: grid; grid-template-columns: 1fr auto; gap: clamp(2rem, 6vw, 5rem); align-items: end; }
  .site-footer__cols { grid-template-columns: repeat(2, 1fr); min-width: 24rem; }

  /* barra CTA mobile some no desktop */
  .mobile-cta { display: none; }
}
