/* ═══════════════════════════════════════════════════════════
   FABIO CAMPELO — FOTOGRAFIA
   preto · ouro · tipografia gigante
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:        #050505;
  --bg-2:      #0b0a07;
  --ink:       #ece7dc;
  --muted:     rgba(236, 231, 220, .52);
  --gold:      #d4af37;
  --gold-hi:   #f3d977;
  --gold-deep: #8a6a1c;
  --line:      rgba(212, 175, 55, .16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --gold-grad: linear-gradient(100deg, #8a6a1c 0%, #d4af37 30%, #f6e27a 50%, #d4af37 70%, #8a6a1c 100%);
  --ease: cubic-bezier(.65, .05, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #2a2413; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }

/* ── utilitários ─────────────────────────────────── */
.gold { color: var(--gold); }

.gold-text {
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

/* quando o texto é dividido em spans, o gradiente vai para os filhos */
.gold-text.is-split {
  background: none;
  animation: none;
  -webkit-text-fill-color: currentColor;
  color: var(--ink);
}
.gold-text.is-split .char,
.gold-text.is-split .line-inner {
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

.stars { color: var(--gold); letter-spacing: .2em; }

.section { position: relative; padding: clamp(6rem, 12vw, 11rem) clamp(1.4rem, 6vw, 7rem); }

.section__head { margin-bottom: clamp(3rem, 7vw, 6rem); }
.section__head--center { text-align: center; }

.section__label {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -.01em;
}
.section__title em { font-style: italic; font-weight: 300; }

/* char splitting */
.char-wrap { display: inline-block; overflow: hidden; vertical-align: top; }
.char { display: inline-block; will-change: transform; }
.line-mask { display: block; overflow: hidden; }
.line-inner { display: block; will-change: transform; }

/* ═══════════════ PRELOADER ═══════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: all;
}
.loader__panel {
  position: absolute;
  left: 0; width: 100%; height: 50.5%;
  background: #030303;
}
.loader__panel--top { top: 0; border-bottom: 1px solid var(--line); }
.loader__panel--bottom { bottom: 0; }

.loader__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader__brand {
  position: absolute;
  top: 2rem; left: 2rem;
  font-size: .62rem;
  letter-spacing: .4em;
  color: var(--muted);
}
.loader__mono { width: clamp(120px, 16vw, 190px); }
.loader__counter {
  position: absolute;
  bottom: 1.2rem; right: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 1;
  color: var(--ink);
  opacity: .92;
}
.loader__counter::after { content: "%"; font-size: .35em; color: var(--gold); margin-left: .08em; }
.loader__bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: rgba(212, 175, 55, .12);
}
.loader__bar span {
  display: block;
  height: 100%; width: 0%;
  background: var(--gold-grad);
}

/* ═══════════════ MONOGRAMA ═══════════════ */
.monogram { display: block; color: var(--gold); }
.mono-circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}
.mono-circle--inner { stroke-width: .5; opacity: .55; }
.mono-fc {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -6px;
  fill: currentColor;
}
.monogram--loader .mono-circle { stroke-dasharray: 359; stroke-dashoffset: 359; }
.monogram--loader .mono-circle--inner { stroke-dasharray: 315; stroke-dashoffset: 315; }
.monogram--loader .mono-fc { opacity: 0; }
.monogram--nav { width: 44px; }
.monogram--footer { width: 74px; margin: 0 auto 1.6rem; }

/* ═══════════════ CURSOR ═══════════════ */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor { display: block; }
  .cursor__dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: var(--gold);
    z-index: 9995;
    pointer-events: none;
  }
  .cursor__ring {
    position: fixed;
    top: 0; left: 0;
    width: 38px; height: 38px;
    margin: -19px 0 0 -19px;
    border: 1px solid rgba(212, 175, 55, .55);
    border-radius: 50%;
    z-index: 9994;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease),
                background-color .35s, border-color .35s;
  }
  .cursor__ring span {
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #050505;
    opacity: 0;
    transition: opacity .25s;
  }
  .cursor--active .cursor__ring {
    width: 84px; height: 84px;
    margin: -42px 0 0 -42px;
    background: rgba(212, 175, 55, .92);
    border-color: transparent;
  }
  .cursor--active .cursor__ring span { opacity: 1; }
  .cursor--hidden .cursor__dot, .cursor--hidden .cursor__ring { opacity: 0; }
}

/* ═══════════════ PROGRESS ═══════════════ */
.progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold-grad);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 9980;
}

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9900;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem clamp(1.4rem, 4vw, 3rem);
  transition: background .5s, backdrop-filter .5s, padding .5s;
}
.nav--scrolled {
  background: rgba(5, 5, 5, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: .7rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(212, 175, 55, .1);
}
.nav__logo { display: flex; align-items: center; gap: .8rem; }
.nav__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.nav__name em { font-style: italic; color: var(--gold); margin-left: .3rem; }

.nav__links {
  display: flex;
  gap: 2.1rem;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .3rem 0;
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .45s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav__links a.is-active { color: var(--gold); }

.nav__cta {
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, .5);
  border-radius: 99px;
  padding: .72rem 1.5rem;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--gold); color: #050505; border-color: var(--gold); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: .6rem .2rem;
  z-index: 9902;
}
.nav__burger span {
  display: block;
  width: 30px; height: 1.5px;
  background: var(--gold);
  transition: transform .45s var(--ease), width .3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.2px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.2px) rotate(-45deg); }

/* ═══════════════ MENU FULLSCREEN ═══════════════ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 9895;
  background: #030303;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem clamp(1.6rem, 8vw, 8rem) 3rem;
}
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  font-weight: 400;
  line-height: 1.28;
  padding: .2rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, .12);
  transition: color .35s, padding-left .45s var(--ease), font-style .3s;
}
.menu__links a i {
  font-style: normal;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--gold);
  vertical-align: super;
  margin-right: 1.2rem;
}
.menu__links a:hover { color: var(--gold-hi); padding-left: 1.4rem; font-style: italic; }
.menu__footer {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu__footer a:hover { color: var(--gold); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 1.4rem 4rem;
}

.hero__dust {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: 0;
}

.hero__watermark {
  position: absolute;
  right: -4vw;
  bottom: -8vh;
  z-index: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20rem, 46vw, 44rem);
  line-height: .8;
  letter-spacing: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, .07);
  user-select: none;
}

.hero__stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  perspective: 900px;
}

.hero__figure {
  position: relative;
  width: clamp(240px, 27vw, 400px);
  aspect-ratio: 3 / 4;
  overflow: visible;
}
.hero__figure::before {
  content: "";
  position: absolute;
  inset: -16%;
  z-index: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(212, 175, 55, .18), transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}
.hero__figure img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.04);
}
.js .hero__figure img { clip-path: inset(100% 0 0 0); }
.hero__frame {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(212, 175, 55, .4);
  z-index: 3;
  pointer-events: none;
}
.js .hero__frame { opacity: 0; }
.hero__frame::after {
  content: "EST. 2011";
  position: absolute;
  bottom: -1.6rem;
  right: 0;
  font-size: .58rem;
  letter-spacing: .34em;
  color: var(--gold);
}

.hero__name {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .84;
  letter-spacing: .02em;
  text-align: center;
  pointer-events: none;
}
.hero__line {
  display: block;
  font-size: clamp(4.2rem, 13.5vw, 12.5rem);
  filter: drop-shadow(0 3px 18px rgba(3, 3, 3, .55));
}
.hero__line--first {
  transform: translateX(clamp(-3rem, -9vw, -9rem));
  margin-bottom: clamp(1.2rem, 8vw, 7.5rem);
}
.hero__line--last {
  transform: translateX(clamp(2rem, 7vw, 7rem));
}

.hero__script {
  position: absolute;
  z-index: 4;
  top: -3.9rem;
  right: -18%;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  color: var(--gold-hi);
  transform: rotate(-7deg);
  text-shadow: 0 2px 18px rgba(3, 3, 3, .65);
  white-space: nowrap;
}
.js .hero__script { opacity: 0; }

.hero__meta {
  position: absolute;
  z-index: 5;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
}
.js .hero__meta { opacity: 0; }
.hero__meta--tl { top: 7rem; left: clamp(1.4rem, 4vw, 3rem); }
.hero__meta--tr { top: 7rem; right: clamp(1.4rem, 4vw, 3rem); text-align: right; }
.hero__meta--bl { bottom: 1.1rem; left: clamp(1.4rem, 4vw, 3rem); }
.hero__meta .stars { font-size: .68rem; margin-right: .5em; }

.hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 2rem;
  right: clamp(1.4rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}
.js .hero__scroll { opacity: 0; }
.hero__scroll span {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  position: relative;
  width: 1px; height: 64px;
  background: rgba(212, 175, 55, .25);
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%; height: 40%;
  background: var(--gold);
  animation: scrolldrop 2.1s var(--ease) infinite;
}
@keyframes scrolldrop {
  0% { top: -40%; }
  60%, 100% { top: 110%; }
}

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.1rem, 2.4vw, 2rem) 0;
  background: var(--bg-2);
}
.marquee__inner { display: flex; width: max-content; will-change: transform; }
.marquee__track {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}
.marquee__track span {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  padding: 0 1.6rem;
}
.marquee__track span.it { font-style: italic; color: var(--gold); font-weight: 300; }
.marquee__track i {
  font-style: normal;
  color: var(--gold);
  font-size: clamp(1rem, 2vw, 1.6rem);
  transform: translateY(-.5em);
}

/* ═══════════════ SOBRE ═══════════════ */
.sobre { background: var(--bg); }

.sobre__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.sobre__figure {
  position: relative;
  overflow: hidden;
}
.sobre__figure img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
  transition: transform 1.2s var(--ease), filter .8s;
}
.sobre__figure:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.05); }
.sobre__figure figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.2rem .9rem;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-hi);
  background: linear-gradient(transparent, rgba(3, 3, 3, .82));
}

.sobre__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 2.4rem;
}
.sobre__quote .line-inner::first-letter { color: var(--gold); }

.sobre__p {
  max-width: 56ch;
  font-size: 1.02rem;
  color: var(--muted);
  margin-bottom: 2.2rem;
}
.sobre__p strong { color: var(--gold-hi); font-weight: 400; }

.sobre__chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.sobre__chips li {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: .55rem 1.1rem;
  transition: color .3s, border-color .3s, background .3s;
}
.sobre__chips li:hover {
  color: #050505;
  background: var(--gold);
  border-color: var(--gold);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: clamp(4rem, 8vw, 7rem);
}
.stats__item {
  padding: clamp(1.6rem, 3vw, 2.8rem) 1rem 0;
  border-left: 1px solid var(--line);
}
.stats__item:first-child { border-left: none; }
.stats__num {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  color: var(--ink);
}
.stats__num em {
  font-style: normal;
  font-size: .5em;
  color: var(--gold);
}
.stats__label {
  display: block;
  margin-top: .7rem;
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════ PORTFÓLIO (hover list) ═══════════════ */
.portfolio { background: var(--bg-2); }

.plist { border-top: 1px solid var(--line); }
.plist__item { position: relative; border-bottom: 1px solid var(--line); }
.plist__item a {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.6rem);
  padding: clamp(1.5rem, 3.4vw, 2.6rem) .4rem;
  transition: opacity .4s, filter .4s, padding-left .5s var(--ease);
}
.plist__idx {
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--gold);
}
.plist__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5.6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.01em;
  transition: font-style .2s, color .4s;
}
.plist__tag {
  margin-left: auto;
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color .4s;
}
.plist:hover .plist__item a { opacity: .28; filter: blur(1px); }
.plist .plist__item:hover a { opacity: 1; filter: none; padding-left: 1.6rem; }
.plist .plist__item:hover .plist__title { font-style: italic; color: var(--gold-hi); }
.plist .plist__item:hover .plist__tag { color: var(--gold); }

.plist__float {
  position: fixed;
  top: 0; left: 0;
  z-index: 60;
  width: clamp(220px, 21vw, 320px);
  aspect-ratio: 3 / 4;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transform: scale(.85);
  border: 1px solid rgba(212, 175, 55, .35);
}
.plist__float img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ═══════════════ GALERIA HORIZONTAL ═══════════════ */
.galeria { position: relative; background: var(--bg); overflow: clip; }
.galeria__pin {
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.galeria__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 0 clamp(1.4rem, 6vw, 7rem);
  will-change: transform;
}

.galeria__intro { flex-shrink: 0; max-width: 420px; }
.galeria__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(4.4rem, 11vw, 10rem);
  line-height: .82;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, .65);
  margin: 1.2rem 0 1.6rem;
}
.galeria__intro p {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
}

.gcard {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  height: min(62vh, 560px);
  aspect-ratio: 3 / 4;
}
.gcard--wide { aspect-ratio: 4 / 3; height: min(54vh, 500px); }
.gcard--tall { height: min(70vh, 620px); }
.gcard img {
  width: 100%; height: 112%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.04) brightness(.94);
  transition: filter .6s;
  will-change: transform;
}
.gcard:hover img { filter: saturate(1.05) contrast(1.06) brightness(1); }
.gcard figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: 2rem 1.1rem .8rem;
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(transparent, rgba(3, 3, 3, .8));
}
.gcard figcaption i { font-style: normal; color: var(--gold); }

.galeria__end {
  flex-shrink: 0;
  padding-right: clamp(2rem, 8vw, 8rem);
  text-align: center;
}
.galeria__end p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.galeria__ig {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, .5);
  border-radius: 99px;
  padding: 1.1rem 2.2rem;
  transition: background .4s var(--ease), color .4s;
}
.galeria__ig:hover { background: var(--gold); color: #050505; }
.galeria__ig span { display: inline-block; transition: transform .35s var(--ease); }
.galeria__ig:hover span { transform: translate(3px, -3px); }

/* ═══════════════ DEPOIMENTOS ═══════════════ */
.depo { background: var(--bg-2); }

.depo__score { margin-top: .6rem; }
.depo__five {
  display: block;
  font-family: var(--serif);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 500;
  line-height: .9;
}
.depo__stars { display: block; font-size: clamp(1.1rem, 2.6vw, 1.7rem); margin: 1rem 0 1.2rem; }
.depo__score p {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2.1;
}
.depo__score strong { color: var(--gold-hi); font-weight: 400; }

.depo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.depo__card {
  position: relative;
  border: 1px solid var(--line);
  padding: 2rem 1.7rem 1.7rem;
  background: rgba(255, 255, 255, .012);
  transition: transform .5s var(--ease), border-color .5s, background .5s;
}
.depo__card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, .45);
  background: radial-gradient(120% 90% at 50% 0%, rgba(212, 175, 55, .07), rgba(255, 255, 255, .012) 60%);
}
.depo__card .stars { font-size: .72rem; }
.depo__card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.34rem;
  line-height: 1.45;
  margin: 1.1rem 0 1.5rem;
}
.depo__card figcaption {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.depo__card figcaption span { color: var(--muted); letter-spacing: .12em; text-transform: none; }

.depo__links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}
.depo__links a {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: .35rem;
  transition: color .3s, border-color .3s;
}
.depo__links a:hover { color: var(--gold); border-color: var(--gold); }

/* ═══════════════ CONTATO ═══════════════ */
.contato {
  background: var(--bg);
  text-align: center;
  padding-top: clamp(7rem, 14vw, 13rem);
}
.contato__pre {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  color: var(--gold-hi);
  margin-bottom: 1.4rem;
}
.contato__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 8.6vw, 8rem);
  line-height: .98;
  letter-spacing: -.01em;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.contato__title span { display: block; }

.contato__circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(160px, 21vw, 220px);
  height: clamp(160px, 21vw, 220px);
  border: 1px solid rgba(212, 175, 55, .55);
  border-radius: 50%;
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 2;
  transition: background .5s var(--ease), color .5s, transform .5s var(--ease);
  overflow: hidden;
}
.contato__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold-grad);
  transform: scale(0);
  transition: transform .55s var(--ease);
  z-index: -1;
}
.contato__circle:hover { color: #050505; border-color: transparent; }
.contato__circle:hover::before { transform: scale(1.05); }
.contato__circle span { position: relative; z-index: 1; }

.contato__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: clamp(4rem, 9vw, 8rem);
  text-align: left;
}
.contato__cell {
  padding: 2.2rem 1.4rem 0;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.contato__cell:first-child { border-left: none; }
.contato__label {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.contato__cell a {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  transition: color .3s, letter-spacing .35s var(--ease);
}
.contato__cell a:hover { color: var(--gold-hi); letter-spacing: .03em; }
.contato__cell small { font-size: .72rem; color: var(--muted); letter-spacing: .08em; }

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  border-top: 1px solid var(--line);
  background: #030303;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 1.4rem 2.4rem;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .9rem;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.footer__dot { color: var(--gold); }
.footer__row--links { gap: 2rem; }
.footer__row--links a, .footer__top {
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .3s;
}
.footer__row--links a:hover, .footer__top:hover { color: var(--gold); }

/* ═══════════════ REVEAL STATES (JS liga) ═══════════════ */
.js [data-reveal] { opacity: 0; transform: translateY(46px); }
.js [data-reveal-img] { clip-path: inset(0 0 100% 0); }
.js [data-reveal-img] img { transform: scale(1.28); }

/* ═══════════════ RESPONSIVO ═══════════════ */
@media (max-width: 1060px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { margin-left: auto; }
}

@media (max-width: 900px) {
  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__figure { max-width: 440px; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2.2rem; }
  .stats__item:nth-child(3) { border-left: none; }
  .contato__grid { grid-template-columns: 1fr; }
  .contato__cell { border-left: none; border-top: 1px solid var(--line); padding: 1.6rem .2rem; }
  .contato__cell:first-child { border-top: none; }

  /* galeria vira scroll nativo */
  .galeria__pin { height: auto; overflow-x: auto; padding: 4rem 0; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
  .galeria__track { padding: 0 1.4rem; }
  .galeria__intro, .galeria__end { scroll-snap-align: start; }
  .gcard { scroll-snap-align: center; height: 54vh; }
  .gcard--tall { height: 58vh; }
  .gcard--wide { height: 48vh; }
  .galeria__pin::-webkit-scrollbar { height: 4px; }
  .galeria__pin::-webkit-scrollbar-thumb { background: var(--gold-deep); }
}

@media (max-width: 700px) {
  .hero__meta--tr { display: none; }
  .hero__meta--tl { top: 5.6rem; }
  .hero__scroll { display: none; }
  .hero__line--first { transform: translateX(-6vw); margin-bottom: clamp(1rem, 10vw, 4rem); }
  .hero__line--last { transform: translateX(6vw); }
  .hero__script { top: -2.4rem; right: -2%; }
  .plist__tag { display: none; }
  .plist__float { display: none; }
  .nav__name { display: none; }
  .depo__grid { grid-template-columns: 1fr; }
}

/* modo reduzido: galeria vira scroll nativo também no desktop */
.reduced .galeria__pin { height: auto; overflow-x: auto; padding: 4rem 0; }
.reduced .gcard { height: 54vh; }
.reduced .gcard--tall { height: 58vh; }
.reduced .gcard--wide { height: 48vh; }

/* ═══════════════ REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal], .js [data-reveal-img] { opacity: 1; transform: none; clip-path: none; }
  .js [data-reveal-img] img { transform: none; }
}
