/* ============================================================
   SPA DAS SOBRANCELHAS — Design System
   Paleta: preto profundo, off-white, dourado metálico.
   Sinal visual: "o fio de ouro" — um traço fino dourado que
   se desenha sozinho (referência ao fio de sobrancelha e ao
   traço de um design bem-feito) em divisores, sublinhados de
   título e no cursor de hover.
   ============================================================ */

:root {
  /* Cor */
  --black: #0a0a09;
  --black-soft: #131210;
  --charcoal: #1c1a17;
  --line: rgba(247, 245, 240, 0.10);
  --line-strong: rgba(247, 245, 240, 0.18);
  --white: #f7f5f0;
  --white-dim: #c9c4ba;
  --white-faint: #8b8680;
  --gold: #c9a24d;
  --gold-light: #e9d39a;
  --gold-deep: #9c7a34;
  --gold-glow: rgba(201, 162, 77, 0.25);

  /* Tipografia */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* Ritmo */
  --container: 1240px;
  --gutter: clamp(24px, 5vw, 80px);
  --section-y: clamp(72px, 11vw, 160px);

  /* Movimento */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.9s;
}

* { 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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

::selection { background: var(--gold); color: var(--black); }

/* Focus visível — acessibilidade */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  color: var(--white);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 440; }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
p { margin: 0; color: var(--white-dim); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.italic-serif { font-family: var(--f-display); font-style: italic; font-weight: 400; color: var(--gold-light); }

/* sublinhado "fio de ouro" que se desenha */
.thread {
  position: relative;
  display: inline-block;
}
.thread::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.06em;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease);
}
.is-visible .thread::after { transform: scaleX(1); }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); position: relative; }
.section-dark { background: var(--black); }
.section-soft { background: var(--black-soft); }

.divider {
  height: 1px;
  width: 100%;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.divider::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
}
.divider.is-visible::after { transform: translateX(0); transition: transform 1.4s var(--ease); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.5s var(--ease), background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--black);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px var(--gold-glow); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn svg { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Navegação ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10, 10, 9, 0.86);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
}
.nav.is-scrolled {
  padding-top: 14px; padding-bottom: 14px;
  border-color: var(--line);
}
.nav.is-scrolled::before { opacity: 1; }
.nav-logo { font-family: var(--f-display); font-size: 1.15rem; letter-spacing: 0.02em; display: flex; flex-direction: column; line-height: 1.05; }
.nav-logo span { font-family: var(--f-body); font-size: 0.58rem; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-top: 4px; }
.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; max-width: none; display: block; flex-shrink: 0; }
.footer-brand .logo-img { height: 52px; max-width: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600;
  color: var(--white-dim); position: relative; padding: 4px 0;
  transition: color 0.35s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.45s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 20px; font-size: 0.72rem; }
.nav-cta .btn svg { width: 13px; height: 13px; }
.nav-links-cta { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; }
.nav-toggle span { width: 24px; height: 1px; background: var(--white); transition: transform 0.4s ease, opacity 0.4s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 0; background: var(--black);
    flex-direction: column; justify-content: flex-start; align-items: center; gap: 26px;
    padding: 110px 24px 40px; overflow-y: auto;
    transform: translateY(-100%); opacity: 0; transition: transform 0.55s var(--ease), opacity 0.4s ease;
    pointer-events: none;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links-cta { display: inline-flex; margin-top: 10px; }
  .nav-links a.nav-links-cta,
  .nav-links a.nav-links-cta:hover {
    color: var(--black);
    padding: 14px 30px;
  }
  .nav-links a.nav-links-cta::after { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  padding-top: 120px; padding-bottom: 80px;
  background: radial-gradient(ellipse 90% 60% at 78% 20%, rgba(201,162,77,0.10), transparent 60%), var(--black);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 90px); align-items: center; width: 100%; }
.hero-eyebrow-row { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.hero h1 { margin-bottom: 26px; }
.hero-sub { max-width: 480px; font-size: 1.08rem; color: var(--white-dim); margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-proof { display: flex; gap: clamp(24px, 4vw, 48px); flex-wrap: wrap; }
.hero-proof-item { border-left: 1px solid var(--line-strong); padding-left: 16px; }
.hero-proof-item strong { display: block; font-family: var(--f-display); font-size: 1.6rem; color: var(--gold-light); font-weight: 500; }
.hero-proof-item span { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--white-faint); text-transform: uppercase; }

.hero-media { position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 3.2s var(--ease-soft); }
.hero.is-loaded .hero-media img { transform: scale(1); }
.hero-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line-strong); border-radius: 4px; }
.hero-media::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,9,0.55));
  z-index: 1;
}
.hero-media-badge {
  position: absolute; left: -1px; bottom: 22px;
  background: rgba(10,10,9,0.72); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); border-left: none;
  padding: 16px 22px; z-index: 2; max-width: 240px;
}
.hero-media-badge p { font-size: 0.82rem; color: var(--white-dim); }
.hero-scroll-cue {
  position: absolute; bottom: 34px; left: var(--gutter);
  display: flex; align-items: center; gap: 12px;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--white-faint);
}
.hero-scroll-cue .line { width: 1px; height: 34px; background: var(--line-strong); position: relative; overflow: hidden; }
.hero-scroll-cue .line::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gold); animation: scrollcue 2.4s ease-in-out infinite;
}
@keyframes scrollcue { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; aspect-ratio: 16/11; }
  .hero { padding-top: 110px; }
  .hero-scroll-cue { display: none; }
}

/* ---------- Reveals (JS toggles .is-visible) ---------- */
[data-reveal] { opacity: 0; transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft), filter 1s var(--ease-soft); }
[data-reveal="up"] { transform: translateY(36px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="blur"] { filter: blur(14px); transform: translateY(14px); }
[data-reveal].is-visible { opacity: 1; transform: none; filter: blur(0); }

[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 110ms); }

/* ---------- Cards ---------- */
.card {
  background: var(--black-soft);
  border: 1px solid var(--line);
  padding: 40px 32px;
  border-radius: 3px;
  transition: transform 0.55s var(--ease), border-color 0.5s ease, background 0.5s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.6s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); background: var(--charcoal); }
.card:hover::before { transform: scaleX(1); }
.card-icon { width: 44px; height: 44px; margin-bottom: 26px; color: var(--gold); }
.card-icon svg { width: 100%; height: 100%; stroke-width: 1.1; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.94rem; }

/* ---------- Seção header padrão ---------- */
.section-head { max-width: 680px; margin-bottom: clamp(44px, 6vw, 76px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 20px; font-size: 1.02rem; }

/* ---------- Serviços: tabs de categoria ---------- */
.svc-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
.svc-tab {
  padding: 13px 26px; border: 1px solid var(--line-strong); border-radius: 40px;
  font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600;
  color: var(--white-dim); background: transparent; cursor: pointer;
  transition: all 0.4s var(--ease);
}
.svc-tab:hover { border-color: var(--gold); color: var(--white); }
.svc-tab.is-active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.proc-list { display: flex; flex-direction: column; }
.proc-item { border-bottom: 1px solid var(--line); }
.proc-head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 30px 0; cursor: pointer; background: none; border: none; width: 100%;
  text-align: left; color: var(--white);
}
.proc-head-left { display: flex; align-items: baseline; gap: 22px; }
.proc-num { font-family: var(--f-display); font-style: italic; color: var(--gold-deep); font-size: 1rem; width: 30px; flex-shrink: 0; }
.proc-title h3 { margin-bottom: 6px; }
.proc-title p { font-size: 0.9rem; color: var(--white-faint); }
.proc-plus { width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 50%; position: relative; flex-shrink: 0; transition: transform 0.5s var(--ease), border-color 0.4s ease; }
.proc-plus::before, .proc-plus::after { content: ""; position: absolute; background: var(--white-dim); transition: transform 0.4s ease, background 0.4s ease; }
.proc-plus::before { top: 50%; left: 26%; right: 26%; height: 1px; }
.proc-plus::after { left: 50%; top: 26%; bottom: 26%; width: 1px; }
.proc-item.is-open .proc-plus { border-color: var(--gold); transform: rotate(180deg); }
.proc-item.is-open .proc-plus::after { transform: scaleY(0); }
.proc-item.is-open .proc-plus::before,
.proc-item.is-open .proc-plus::after { background: var(--gold); }

.proc-body { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease); }
.proc-body-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; padding: 6px 0 46px 52px; }
.proc-media { aspect-ratio: 4/3; border-radius: 3px; overflow: hidden; }
.proc-media img { width: 100%; height: 100%; object-fit: cover; }
.proc-col h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-family: var(--f-body); font-weight: 700; }
.proc-col p { font-size: 0.95rem; margin-bottom: 22px; }
.proc-benefits li { position: relative; padding-left: 22px; font-size: 0.92rem; color: var(--white-dim); margin-bottom: 10px; }
.proc-benefits li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 1px; background: var(--gold); }

@media (max-width: 760px) {
  .proc-body-inner { grid-template-columns: 1fr; padding-left: 0; gap: 24px; }
  .proc-head-left { gap: 14px; }
}

/* ---------- Depoimentos ---------- */
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 26px; transition: transform 0.7s var(--ease); }
.testi-card {
  flex: 0 0 min(480px, 86vw);
  background: var(--black-soft); border: 1px solid var(--line); padding: 40px;
  border-radius: 3px;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 22px; color: var(--gold); }
.testi-stars svg { width: 15px; height: 15px; }
.testi-card blockquote { margin: 0 0 28px; font-family: var(--f-display); font-size: 1.18rem; font-style: italic; color: var(--white); line-height: 1.5; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; border: 1px solid var(--gold-deep); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-person strong { display: block; font-size: 0.9rem; }
.testi-person span { font-size: 0.78rem; color: var(--white-faint); }
.testi-nav { display: flex; gap: 14px; margin-top: 40px; }
.testi-nav button {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong); background: none;
  color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
}
.testi-nav button:hover { border-color: var(--gold); color: var(--gold); }
.testi-nav svg { width: 17px; height: 17px; }

/* ---------- CTA banda ---------- */
.cta-band {
  position: relative; padding: clamp(64px, 10vw, 120px) 0; text-align: center; overflow: hidden;
  background: linear-gradient(180deg, var(--black-soft), var(--black));
}
.cta-band::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 900px; height: 900px;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  transform: translate(-50%, -50%); pointer-events: none;
}
.cta-band h2 { max-width: 780px; margin: 0 auto 20px; }
.cta-band p { max-width: 560px; margin: 0 auto 44px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ---------- Rodapé ---------- */
.footer { background: var(--black); border-top: 1px solid var(--line); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 70px; }
.footer-brand p { margin-top: 20px; max-width: 280px; font-size: 0.92rem; }
.footer-social { display: flex; gap: 14px; margin-top: 28px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 15px; height: 15px; }
.footer h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-family: var(--f-body); font-weight: 700; }
.footer-links li { margin-bottom: 13px; }
.footer-links a { font-size: 0.92rem; color: var(--white-dim); transition: color 0.35s ease, padding-left 0.35s ease; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom a strong{
    color: var(--gold);
    font-weight: 600;
    transition: color .3s ease;
}

.footer-bottom a:hover strong{
    color: var(--gold-light);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.6);
  transition: transform 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; color: var(--black); }

/* ---------- Página interna: banner de categoria ---------- */
.page-banner {
  padding-top: 168px; padding-bottom: 70px;
  background: linear-gradient(180deg, var(--black-soft), var(--black));
  border-bottom: 1px solid var(--line);
}
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--white-faint); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--gold); }
.page-banner h1 { max-width: 760px; }
.page-banner-sub { max-width: 620px; margin-top: 22px; font-size: 1.05rem; }

/* ---------- Utilitários ---------- */
.text-center { text-align: center; }
.mt-xl { margin-top: clamp(48px, 6vw, 90px); }
.stat-strip { display: flex; flex-wrap: wrap; gap: clamp(28px,5vw,64px); padding: 46px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-strip .item strong { display: block; font-family: var(--f-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--gold-light); font-weight: 500; }
.stat-strip .item span { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white-faint); }

.gallery-mosaic { display: grid; grid-template-columns: repeat(5, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery-mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; transition: transform 0.7s var(--ease); }
.gallery-mosaic a { overflow: hidden; border-radius: 3px; display: block; }
.gallery-mosaic a:hover img { transform: scale(1.08); }
@media (max-width: 900px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}

/* Cursor sofisticado (desktop apenas) */
.gold-cursor {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px; border: 1px solid var(--gold);
  border-radius: 50%; pointer-events: none; z-index: 999; transform: translate(-50%,-50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference; opacity: 0;
}
.gold-cursor.is-active { opacity: 1; }
.gold-cursor.is-big { width: 54px; height: 54px; background: var(--gold-glow); }
@media (hover: none), (max-width: 900px) { .gold-cursor { display: none; } }
