/* ============================================================
   BARBEARIA FONSECA v2 — style.css
   Conceito: Black Gold Empire — Refinado
   Tipografia: Cormorant Garamond (display) + Outfit (corpo)
   Paleta: #080808 · #c9a84c · #f4efe6
   ============================================================ */

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  /* Cores */
  --ink:          #080808;
  --ink-1:        #111111;
  --ink-2:        #191919;
  --ink-3:        #222222;
  --ink-4:        #2d2d2d;
  --gold:         #c9a84c;
  --gold-lt:      #e8cc80;
  --gold-dk:      #9a7530;
  --gold-muted:   rgba(201,168,76,.12);
  --gold-glow:    rgba(201,168,76,.2);
  --cream:        #f4efe6;
  --cream-dim:    #b8b0a4;
  --white:        #ffffff;

  /* Gradientes */
  --g-gold:       linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
  --g-gold-h:     linear-gradient(90deg,  var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
  --g-dark:       linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  --g-vignette:   radial-gradient(ellipse at center, transparent 30%, rgba(8,8,8,.95) 100%);

  /* Tipografia */
  --f-serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --f-sans:   'Outfit', system-ui, sans-serif;
  --f-wide:   'Bebas Neue', Impact, sans-serif;

  /* Espaços */
  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* Raios */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;

  /* Sombras */
  --sh-card:  0 2px 20px rgba(0,0,0,.4), 0 8px 40px rgba(0,0,0,.25);
  --sh-gold:  0 0 40px rgba(201,168,76,.18), 0 0 80px rgba(201,168,76,.07);
  --sh-deep:  0 24px 80px rgba(0,0,0,.7);

  /* Easing */
  --ease-out:   cubic-bezier(.16,1,.3,1);
  --ease-inout: cubic-bezier(.76,0,.24,1);

  /* Transições */
  --t-fast: .18s var(--ease-out);
  --t-med:  .45s var(--ease-out);
  --t-slow: .8s  var(--ease-out);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-sans);
  background: var(--ink);
  color: var(--cream-dim);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain cinematográfico global */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23f)'/%3E%3C/svg%3E");
  opacity: .022;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─────────────────────────────────────────
   CONTAINER
───────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

/* ─────────────────────────────────────────
   TIPO GLOBAL
───────────────────────────────────────── */
.heading-xl {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.heading-xl em {
  font-style: italic;
  font-weight: 300;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.heading--center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .5;
}
.eyebrow--center { display: flex; justify-content: center; }

.gold-rule {
  width: 52px; height: 2px;
  background: var(--g-gold);
  margin: var(--sp-3) 0 var(--sp-4);
  border-radius: 1px;
}

.section-header { margin-bottom: var(--sp-8); }
.section-lead {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 520px;
  margin: var(--sp-2) auto 0;
  text-align: center;
  line-height: 1.8;
}

/* Número de seção em watermark */
.section-num {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-4);
  font-family: var(--f-wide);
  font-size: clamp(8rem, 14vw, 16rem);
  line-height: 1;
  color: var(--gold);
  opacity: .025;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ─────────────────────────────────────────
   BOTÕES
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--f-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  padding: .9rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-med);
  white-space: nowrap;
}
/* ripple */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.97) !important; }

.btn ion-icon { font-size: 1.05em; flex-shrink: 0; }

.btn--gold {
  background: var(--g-gold);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(201,168,76,.2);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(201,168,76,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}

.btn--sm  { padding: .65rem 1.5rem; font-size: .76rem; }
.btn--lg  { padding: 1.05rem 2.4rem; font-size: .88rem; }
.btn--full { width: 100%; }

/* ─────────────────────────────────────────
   CURSOR PERSONALIZADO
───────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: opacity var(--t-fast);
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  top: 0; left: 0;
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1px solid rgba(201,168,76,.55);
  top: 0; left: 0;
  transition: width var(--t-med), height var(--t-med), border-color var(--t-med), top var(--t-med), left var(--t-med);
}
.cursor-ring.expand { width: 54px; height: 54px; border-color: var(--gold); }
body.no-cursor * { cursor: none !important; }

/* ─────────────────────────────────────────
   PRELOADER
───────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
#preloader.out { opacity: 0; visibility: hidden; pointer-events: none; }

.pre__wrap { text-align: center; }
.pre__emblem {
  width: 80px; height: 80px;
  margin: 0 auto var(--sp-4);
  animation: preRotate 6s linear infinite;
}
@keyframes preRotate {
  to { transform: rotate(360deg); }
}
.pre__label {
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: var(--sp-4);
}
.pre__label span { color: var(--gold); }

.pre__bar {
  width: 180px; height: 1px;
  background: var(--gold-muted);
  margin: 0 auto;
  overflow: hidden;
}
.pre__fill {
  height: 100%;
  background: var(--g-gold-h);
  width: 0;
  animation: preFill 1.6s var(--ease-out) forwards;
}
@keyframes preFill { to { width: 100%; } }

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: padding var(--t-med), background var(--t-med), backdrop-filter var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 1rem 0;
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(24px) saturate(1.4);
  border-color: rgba(201,168,76,.09);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Marca */
.nav__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav__brand-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: var(--f-wide);
  font-size: 1.25rem;
  letter-spacing: .18em;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__brand-sub {
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: .6;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}
.nav__link {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding-bottom: 2px;
}
.nav__link span { display: block; transition: color var(--t-fast); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--g-gold-h);
  transition: width var(--t-med);
}
.nav__link:hover span, .nav__link.active span { color: var(--cream); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Ações */
.nav__actions { display: flex; align-items: center; gap: var(--sp-2); flex-shrink: 0; }
.nav__book {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--g-gold);
  transition: transform var(--t-fast), box-shadow var(--t-med);
}
.nav__book:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }
.nav__book-inner {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .58rem 1.3rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__book-inner ion-icon { font-size: 1rem; }

/* Toggle mobile */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: var(--t-med);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

/* Progress bar */
.nav__progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 1.5px;
  width: 0;
  background: var(--g-gold-h);
  transition: width .1s linear;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute; inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.06);
  transition: transform 10s var(--ease-out);
}
.hero.ready .hero__img { transform: scale(1); }

.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,8,.55) 0%, rgba(8,8,8,.12) 40%, rgba(8,8,8,.72) 80%, rgba(8,8,8,.97) 100%),
    linear-gradient(to right, rgba(8,8,8,.7) 0%, transparent 50%, rgba(8,8,8,.5) 100%);
}
.hero__noise {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .04;
  mix-blend-mode: overlay;
}

/* Elementos geométricos */
.hero__geo {
  position: absolute;
  width: 280px; height: 280px;
  border: 1px solid rgba(201,168,76,.07);
  border-radius: 50%;
  pointer-events: none;
}
.hero__geo--tl { top: -60px; left: -60px; }
.hero__geo--br { bottom: -80px; right: -80px; width: 360px; height: 360px; }

.hero__line {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.18), transparent);
}
.hero__line--v { width: 1px; top: 10%; bottom: 10%; }
.hero__line--left  { left: clamp(1.5rem, 4vw, 4rem); }
.hero__line--right { right: clamp(1.5rem, 4vw, 4rem); }
.hero__line--h {
  height: 1px; width: 40%;
  left: 30%; top: 82%;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.15), transparent);
}

/* Partículas */
.hero__particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: pFloat linear infinite;
  opacity: 0;
}
@keyframes pFloat {
  0%   { opacity: 0;   transform: translateY(0) scale(1); }
  15%  { opacity: .7; }
  85%  { opacity: .2; }
  100% { opacity: 0;   transform: translateY(-120px) scale(.4); }
}

/* Conteúdo hero */
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--sp-4);
  max-width: 960px;
}

.hero__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.hero__tag-line { display: block; width: 36px; height: 1px; background: var(--gold); opacity: .5; }
.hero__tag.vis { opacity: 1; transform: none; }

.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--sp-4);
  line-height: .95;
}
.hero__word {
  display: block;
  font-family: var(--f-sans);
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  font-weight: 200;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: rgba(244,239,230,.55);
  margin-bottom: .3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.hero__word.vis { opacity: 1; transform: none; }
.hero__wordmark {
  display: block;
  font-family: var(--f-wide);
  font-size: clamp(5.5rem, 16vw, 12rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: .04em;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(201,168,76,.15));
  opacity: 0;
  transform: translateY(30px) scale(.97);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.hero__wordmark.vis { opacity: 1; transform: none; }

.hero__copy {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(244,239,230,.7);
  line-height: 1.85;
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease-out) .2s, transform .7s var(--ease-out) .2s;
}
.hero__copy.vis { opacity: 1; transform: none; }

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease-out) .35s, transform .7s var(--ease-out) .35s;
}
.hero__ctas.vis { opacity: 1; transform: none; }

.hero__kpis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s var(--ease-out) .5s, transform .7s var(--ease-out) .5s;
}
.hero__kpis.vis { opacity: 1; transform: none; }

.hero__kpi {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  position: relative;
}
.hero__kpi b {
  font-family: var(--f-wide);
  font-size: 2.8rem;
  line-height: 1;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__kpi sup {
  font-family: var(--f-wide);
  font-size: 1.4rem;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: super;
  line-height: 0;
}
.hero__kpi small {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: .7;
}
.hero__kpi-sep { width: 1px; height: 36px; background: rgba(201,168,76,.2); }

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-4); left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}
.hero__scroll-track {
  width: 1px; height: 60px;
  background: rgba(201,168,76,.15);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.hero__scroll-thumb {
  width: 1px; height: 40%;
  background: var(--g-gold);
  position: absolute;
  top: -40%;
  animation: scrollDown 2s var(--ease-inout) infinite;
}
@keyframes scrollDown {
  0%   { top: -40%; }
  50%  { top: 60%; }
  100% { top: 140%; }
}
.hero__scroll span {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: .45;
  writing-mode: vertical-rl;
}

/* ─────────────────────────────────────────
   SEÇÕES — layout base
───────────────────────────────────────── */
section { position: relative; padding: var(--sp-16) 0; overflow: hidden; }
section:nth-child(even) { background: var(--ink-1); }

/* ─────────────────────────────────────────
   SOBRE
───────────────────────────────────────── */
.sobre { background: var(--ink-1) !important; }

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.sobre__visual { position: relative; }
.sobre__frame {
  position: relative;
  height: 620px;
  border-radius: var(--r-md);
  overflow: hidden;
}
.sobre__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }

/* Moldura dupla com cantos dourados */
.sobre__frame-border {
  position: absolute; inset: 0;
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px rgba(201,168,76,.12);
  pointer-events: none;
}
.sobre__frame-corner {
  position: absolute;
  width: 28px; height: 28px;
  pointer-events: none;
}
.sobre__frame-corner--tl {
  top: 12px; left: 12px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  border-radius: 2px 0 0 0;
}
.sobre__frame-corner--br {
  bottom: 12px; right: 12px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  border-radius: 0 0 2px 0;
}

.sobre__exp-badge {
  position: absolute;
  bottom: -var(--sp-3);
  right: -var(--sp-3);
  bottom: -1.5rem;
  right: -1.5rem;
  width: 116px; height: 116px;
  background: var(--g-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(201,168,76,.35), 0 0 0 6px var(--ink-1);
}
.sobre__exp-inner { text-align: center; }
.sobre__exp-inner b {
  display: block;
  font-family: var(--f-wide);
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
}
.sobre__exp-inner span {
  display: block;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.4;
  opacity: .75;
}

.sobre__lead {
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: var(--sp-3);
  font-weight: 300;
}
.sobre__lead strong { font-weight: 600; color: var(--gold-lt); }
.sobre__text {
  font-size: .97rem;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}
.sobre__text strong { color: var(--cream); font-weight: 600; }

.sobre__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: var(--sp-4) 0;
}
.sobre__pills li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--cream-dim);
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.14);
  border-radius: 100px;
  padding: .4rem 1rem;
  transition: var(--t-fast);
}
.sobre__pills li:hover { background: rgba(201,168,76,.12); border-color: rgba(201,168,76,.3); color: var(--cream); }
.sobre__pills li ion-icon { color: var(--gold); font-size: .85em; }

/* ─────────────────────────────────────────
   SERVIÇOS
───────────────────────────────────────── */
.servicos { background: var(--ink) !important; }

.svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.svc-card {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.045);
  border-radius: var(--r-md);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
  cursor: default;
  /* Perspectiva para tilt */
  transform-style: preserve-3d;
}
/* Linha de entrada inferior */
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--g-gold-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
/* Cantos decorativos top-right */
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 36px; height: 36px;
  background: rgba(201,168,76,.04);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: background var(--t-med);
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,.22);
  box-shadow: var(--sh-card), 0 0 40px rgba(201,168,76,.06);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after  { background: rgba(201,168,76,.1); }

/* Card destaque */
.svc-card--hero {
  background: linear-gradient(145deg, var(--ink-3) 0%, rgba(201,168,76,.06) 100%);
  border-color: rgba(201,168,76,.2);
}
.svc-card--hero::before { transform: scaleX(1); }

.svc-card__popular {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--g-gold);
  color: var(--ink);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
}

.svc-card__num {
  font-family: var(--f-wide);
  font-size: .7rem;
  letter-spacing: .25em;
  color: var(--gold);
  opacity: .45;
  margin-bottom: var(--sp-3);
}

.svc-card__icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  color: var(--gold);
  transition: var(--t-med);
}
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card:hover .svc-card__icon {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
  box-shadow: 0 0 20px rgba(201,168,76,.15);
}

.svc-card__title {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.svc-card__desc {
  font-size: .9rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t-fast), opacity var(--t-fast);
}
.svc-card__link:hover { gap: .7rem; opacity: .85; }

/* Glow de fundo no hover */
.svc-card__glow {
  position: absolute;
  bottom: -50px; right: -50px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.svc-card:hover .svc-card__glow { opacity: 1; }

/* ─────────────────────────────────────────
   DIFERENCIAIS
───────────────────────────────────────── */
.diff { background: var(--ink-1) !important; }

.diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.diff__intro {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-top: var(--sp-3);
}

.diff__items { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: 0; }

.diff__item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(201,168,76,.06);
  transition: padding-left var(--t-med);
}
.diff__item:last-child { border-bottom: none; }
.diff__item:hover { padding-left: .5rem; }

.diff__item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: var(--t-med);
}
.diff__item:hover .diff__item-icon {
  background: rgba(201,168,76,.07);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 0 16px rgba(201,168,76,.12);
}
.diff__item-icon ion-icon { font-size: 1.1rem; }

.diff__item-body h4 {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.diff__item-body p { font-size: .9rem; color: var(--cream-dim); line-height: 1.65; }

/* Visual stack */
.diff__stack { position: relative; height: 600px; }
.diff__img-main {
  position: absolute;
  top: 0; left: 0; right: 2.5rem; bottom: 2.5rem;
  border-radius: var(--r-md);
  overflow: hidden;
}
.diff__img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 48%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 4px solid var(--ink-1);
  box-shadow: var(--sh-card);
}
.diff__img-main img,
.diff__img-float img {
  object-position: center 18%;
}
.diff__ring {
  position: absolute;
  top: -2rem; right: -2rem;
  width: 200px; height: 200px;
  border: 1px solid rgba(201,168,76,.08);
  border-radius: 50%;
  pointer-events: none;
}

.diff__quote {
  margin-top: var(--sp-4);
  background: var(--ink-3);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.25rem 1.5rem;
  position: relative;
}
.diff__quote-mark {
  position: absolute;
  top: .5rem; right: 1.25rem;
  font-family: var(--f-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: .12;
  line-height: 1;
}
.diff__quote p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: .5rem;
}
.diff__quote strong { color: var(--gold); font-style: normal; }
.diff__quote cite { font-size: .8rem; color: var(--gold); opacity: .65; font-style: normal; }

/* ─────────────────────────────────────────
   GALERIA
───────────────────────────────────────── */
.gallery { background: var(--ink) !important; padding-bottom: 0; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
  margin-top: var(--sp-8);
}

/* Layout editorial assimétrico */
.gallery__cell--a { grid-column: 1 / 5;  grid-row: 1; }
.gallery__cell--b { grid-column: 5 / 8;  grid-row: 1; }
.gallery__cell--c { grid-column: 8 / 13; grid-row: 1 / 3; }
.gallery__cell--d { grid-column: 1 / 4;  grid-row: 2; }
.gallery__cell--e { grid-column: 4 / 8;  grid-row: 2; }
.gallery__cell--f { grid-column: 8 / 10; grid-row: 3; }
.gallery__cell--g { grid-column: 10 / 13; grid-row: 3; }
.gallery__cell--h { grid-column: 1 / 8;  grid-row: 3; height: 220px; }

/* Recalculate: simpler approach */
.gallery__grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  grid-auto-rows: 300px;
}
.gallery__cell--a { grid-column: 1 / 3; grid-row: 1; }
.gallery__cell--b { grid-column: 3;     grid-row: 1; }
.gallery__cell--c { grid-column: 4;     grid-row: 1 / 3; }
.gallery__cell--d { grid-column: 1;     grid-row: 2; }
.gallery__cell--e { grid-column: 2 / 4; grid-row: 2; }
.gallery__cell--f { grid-column: 1 / 3; grid-row: 3; }
.gallery__cell--g { grid-column: 3;     grid-row: 3; }
.gallery__cell--h { grid-column: 4;     grid-row: 3; }

.gallery__cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .7s var(--ease-out);
  filter: brightness(.9);
}
.gallery__cell:hover img { transform: scale(1.07); filter: brightness(1); }

.gallery__cell-hover {
  position: absolute; inset: 0;
  background: rgba(8,8,8,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med);
  backdrop-filter: blur(2px);
}
.gallery__cell-hover ion-icon {
  font-size: 2rem;
  color: var(--gold);
  transform: scale(.75);
  transition: transform var(--t-med);
}
.gallery__cell:hover .gallery__cell-hover { opacity: 1; }
.gallery__cell:hover .gallery__cell-hover ion-icon { transform: scale(1); }

/* Lightbox */
.lbox {
  position: fixed; inset: 0;
  background: rgba(4,4,4,.97);
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
  backdrop-filter: blur(6px);
}
.lbox.on { opacity: 1; visibility: visible; }

.lbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 1.4rem;
  transition: var(--t-fast);
}
.lbox__close:hover { border-color: var(--gold); color: var(--gold); }

.lbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 1.4rem;
  transition: var(--t-fast);
}
.lbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lbox__nav--p { left: 1.5rem; }
.lbox__nav--n { right: 1.5rem; }

.lbox__fig { max-width: 88vw; max-height: 88vh; }
.lbox__fig img {
  max-width: 100%; max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  transition: opacity var(--t-fast);
}

/* ─────────────────────────────────────────
   DEPOIMENTOS
───────────────────────────────────────── */
.reviews { background: var(--ink-1) !important; }

.reviews__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,.05) 0%, transparent 65%);
  pointer-events: none;
}

.reviews__track-wrap { position: relative; overflow: hidden; margin-top: var(--sp-8); }
.reviews__track {
  display: flex;
  gap: var(--sp-3);
  transition: transform .55s var(--ease-inout);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - var(--sp-2));
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: var(--r-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.review-card:hover {
  border-color: rgba(201,168,76,.15);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}

.review-card__qmark {
  position: absolute;
  top: 1rem; right: 1.75rem;
  font-family: var(--f-serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: .05;
  pointer-events: none;
  user-select: none;
}

.review-card__stars {
  display: flex; gap: 3px;
  margin-bottom: var(--sp-3);
}
.review-card__stars ion-icon { color: var(--gold); font-size: .9rem; }

.review-card__text {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
  font-weight: 300;
}

.review-card__footer {
  display: flex; align-items: center; gap: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(201,168,76,.07);
}
.review-card__av {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--g-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: var(--ink);
}
.review-card__footer strong {
  display: block; font-size: .9rem; color: var(--cream); margin-bottom: .15rem;
}
.review-card__footer span { font-size: .76rem; color: var(--cream-dim); opacity: .65; }

.reviews__controls {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.rev-btn {
  width: 46px; height: 46px;
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
  transition: var(--t-fast);
}
.rev-btn:hover { background: rgba(201,168,76,.08); border-color: var(--gold); }

.rev-dots { display: flex; gap: 6px; align-items: center; }
.rev-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(201,168,76,.2);
  cursor: pointer;
  transition: var(--t-med);
}
.rev-dot.on { background: var(--gold); width: 22px; border-radius: 4px; }

/* ─────────────────────────────────────────
   HORÁRIOS
───────────────────────────────────────── */
.hours { background: var(--ink) !important; }

.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.hours__sub {
  font-size: .97rem;
  color: var(--cream-dim);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.hours__table {
  width: 100%;
  border-collapse: collapse;
}
.hours__table td {
  padding: .9rem 0;
  font-size: .92rem;
  border-bottom: 1px solid rgba(201,168,76,.05);
}
.hours__table td:first-child {
  color: var(--cream-dim);
  font-weight: 400;
  width: 110px;
}
.hours__table td:last-child {
  font-family: var(--f-wide);
  font-size: .9rem;
  letter-spacing: .08em;
  color: var(--gold);
  text-align: right;
}
.hours__sep { width: 100%; }
.hours__tr--gold td:first-child { color: var(--cream); }
.hours__table tr:last-child td { border-bottom: none; }

/* CTA Card */
.cta-card {
  background: var(--ink-2);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--r-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-card__accent {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-card__title {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: var(--sp-2);
}
.cta-card__title em {
  font-style: italic;
  font-weight: 300;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-card__body {
  font-size: .97rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.cta-card__contacts {
  margin-top: var(--sp-4);
  display: flex; flex-direction: column; gap: .85rem;
}
.cta-contact {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9rem; color: var(--cream-dim);
}
.cta-contact ion-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.cta-contact a { color: var(--gold); transition: color var(--t-fast); }
.cta-contact a:hover { color: var(--gold-lt); }

/* ─────────────────────────────────────────
   MAPA
───────────────────────────────────────── */
.map-sec { background: var(--ink-1) !important; }
.map-sec--early { padding-top: 4.5rem; }
.map-sec__top-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.map-sec__address {
  text-align: center;
  color: var(--cream-dim);
  max-width: 760px;
  margin: 1rem auto 1.8rem;
  font-family: 'Outfit', sans-serif;
}

.map-sec__wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.08);
  margin-top: var(--sp-8);
  filter: grayscale(25%) brightness(.82);
  transition: filter var(--t-med);
}
.map-sec__wrap:hover { filter: none; }

/* removed old overlay pin
.map-sec__pin {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--r-sm);
  padding: var(--sp-2) var(--sp-3);
  display: flex; align-items: flex-start; gap: .75rem;
}
.map-sec__pin ion-icon { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.map-sec__pin strong { display: block; font-size: .95rem; color: var(--cream); margin-bottom: .2rem; }
.map-sec__pin span { font-size: .8rem; color: var(--cream-dim); }
*/

/* ─────────────────────────────────────────
   CTA STRIP
───────────────────────────────────────── */
.cta-strip {
  background: var(--ink) !important;
  text-align: center;
}
.cta-strip__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.cta-strip__mark {
  font-family: var(--f-wide);
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: .1em;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: .9;
  margin-bottom: .25rem;
  filter: drop-shadow(0 0 30px rgba(201,168,76,.12));
}
.cta-strip__sub {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: .5;
  margin-bottom: var(--sp-4);
}
.cta-strip__heading {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: var(--sp-2);
}
.cta-strip__heading em {
  font-style: italic;
  font-weight: 300;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-strip__body {
  font-size: 1rem;
  color: var(--cream-dim);
  margin-bottom: var(--sp-6);
}
.cta-strip__btns {
  display: flex; gap: var(--sp-2);
  justify-content: center; flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--ink-1);
  border-top: 1px solid rgba(201,168,76,.07);
}
.footer__top { padding: var(--sp-12) 0 var(--sp-8); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: var(--sp-8);
}

.footer__logo {
  font-family: var(--f-wide);
  font-size: 2.6rem;
  letter-spacing: .12em;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .25rem;
}
.footer__tagline {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: .5;
  margin-bottom: var(--sp-3);
}
.footer__desc {
  font-size: .88rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
  opacity: .75;
}
.footer__social {
  display: flex; gap: .6rem;
}
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  font-size: .95rem;
  transition: var(--t-fast);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.07); }

.footer__col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.footer__col nav {
  display: flex; flex-direction: column; gap: .55rem;
}
.footer__col nav a {
  font-size: .88rem;
  color: var(--cream-dim);
  opacity: .7;
  transition: color var(--t-fast), opacity var(--t-fast), padding-left var(--t-fast);
}
.footer__col nav a:hover { color: var(--cream); opacity: 1; padding-left: .3rem; }

.footer__info { display: flex; flex-direction: column; gap: .85rem; }
.footer__info > div {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .88rem; color: var(--cream-dim); opacity: .7; line-height: 1.5;
}
.footer__info ion-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding: var(--sp-4) 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__bottom p { font-size: .78rem; color: var(--cream-dim); opacity: .4; }

/* ─────────────────────────────────────────
   WHATSAPP FAB
───────────────────────────────────────── */
/* wa-fab now styled inline in HTML */

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-reveal="up"]    { transform: translateY(44px); }
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(.93); }
[data-reveal="fade"]  { /* opacity only */ }

/* Delay via CSS var */
[data-reveal][style*="--i"] {
  transition-delay: calc(var(--i, 0) * 100ms);
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   RESPONSIVE — Tablet 1100px
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .sobre__grid, .diff__grid, .hours__grid { gap: var(--sp-8); }
}

/* ─────────────────────────────────────────
   RESPONSIVE — Tablet 920px
───────────────────────────────────────── */
@media (max-width: 920px) {
  :root { --sp-16: 5rem; --sp-12: 3.5rem; }

  /* Nav mobile */
  .nav__links {
    position: fixed; inset: 0;
    background: rgba(8,8,8,.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-4);
    opacity: 0; visibility: hidden;
    transition: opacity var(--t-med), visibility var(--t-med);
  }
  .nav__links.open { opacity: 1; visibility: visible; }
  .nav__links .nav__link { font-size: 1.1rem; }
  .nav__link::after { height: 1.5px; }
  .nav__book { display: none; }
  .nav__toggle { display: flex; position: relative; z-index: 1001; }

  .sobre__grid, .diff__grid, .hours__grid { grid-template-columns: 1fr; }

  .sobre__visual { order: -1; }
  .sobre__frame { height: 400px; }
  .diff__right { order: -1; }
  .diff__stack { height: 380px; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 240px);
  }
  .gallery__cell { grid-column: auto !important; grid-row: auto !important; }
  .gallery__cell--c { grid-row: span 2 !important; }

  .review-card { flex: 0 0 calc(100% - var(--sp-3)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — Mobile 600px
───────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --sp-16: 4rem; --sp-12: 3rem; }

  .hero__wordmark { font-size: clamp(4.5rem, 20vw, 7rem); }
  .hero__kpis { gap: var(--sp-3); }
  .hero__kpi b { font-size: 2.2rem; }
  .hero__kpi-sep { height: 28px; }

  .svc__grid { grid-template-columns: 1fr; }
  .sobre__pills { gap: .45rem; }
  .sobre__pills li { font-size: .74rem; padding: .35rem .85rem; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .gallery__cell--c { grid-row: auto !important; }

  .cta-strip__btns { flex-direction: column; align-items: stretch; }
  .cta-strip__btns .btn { justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .hours__grid { grid-template-columns: 1fr; }
  .cta-card { padding: 2rem; }
  .cta-card__title { font-size: 1.8rem; }

  .section-num { font-size: 7rem; opacity: .018; }
}


.map-sec--early .map-sec__wrap { margin-top: 1rem; }

@media (max-width: 768px) {
  .map-sec--early { padding-top: 3.2rem; }
  .map-sec__wrap iframe { height: 300px; }
  .map-sec__address { margin: .8rem auto 1.2rem; padding: 0 1rem; }
  .map-sec__top-actions { gap: .75rem; }
  .map-sec__top-actions .btn { width: min(100%, 320px); justify-content: center; }
}
