/* ==========================================================
   Geovana Ferreira Studio — estilos
   ========================================================== */

:root {
  --bg: #0f0d0c;
  --bg-2: #171311;
  --surface: #1f1916;
  --cream: #f5eee6;
  --cream-2: #ebe1d6;
  --ink: #1b1512;
  --text: #f3ece4;
  --muted: #a99d92;
  --muted-dark: #6f625a;
  --gold: #d4b483;
  --gold-2: #b8925a;
  --gold-grad: linear-gradient(120deg, #f1dcb4 0%, #c9a26a 45%, #e9cf9f 70%, #a9824c 100%);
  --rose: #c99a92;
  --line: rgba(212, 180, 131, .22);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --pad: clamp(16px, 5vw, 80px);
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; margin: 0; }
em { font-style: italic; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }

.title { font-size: clamp(2.4rem, 5.4vw, 4.6rem); letter-spacing: -.01em; }
.title em, .contact__title em {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 300;
}

.section { padding: clamp(80px, 12vw, 160px) var(--pad); position: relative; }
.section--light { background: var(--cream); color: var(--ink); }
.section--light .eyebrow { color: var(--gold-2); }
.section--light .title em {
  background: linear-gradient(120deg, #a97d45, #c79b5f 50%, #8c6534);
  -webkit-background-clip: text; background-clip: text;
}
.section__head { max-width: 1280px; margin: 0 auto clamp(40px, 6vw, 80px); }

/* ---------- Botões ---------- */
.btn {
  --h: 54px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  height: var(--h);
  padding: 0 1.9rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease), transform .3s var(--ease);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-grad);
  transform: translateY(101%);
  border-radius: inherit;
  transition: transform .6s var(--ease);
  z-index: -1;
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; }
.btn--sm { --h: 42px; padding: 0 1.3rem; font-size: .72rem; }
.btn--gold { background: var(--gold-grad); }
.btn--gold::before { background: var(--text); }
.btn--ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px rgba(243, 236, 228, .35); }
.btn--ghost:hover { color: var(--ink); }
.section--light .btn { background: var(--ink); color: var(--cream); }
.section--light .btn:hover { color: var(--ink); }

.link-arrow {
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  display: inline-flex; gap: .6rem; align-items: center;
  padding-bottom: 4px;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size .5s var(--ease);
}
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow span { transition: transform .4s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; align-content: center; gap: 28px;
  background: var(--bg);
  transition: clip-path 1.1s var(--ease-in-out);
  clip-path: inset(0 0 0 0);
}
.loader__logo { width: min(240px, 60vw); opacity: 0; animation: loaderLogo 1.2s var(--ease) .1s forwards; }
.loader__bar { width: 160px; height: 1px; background: rgba(255, 255, 255, .12); overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 100%; background: var(--gold-grad); transform: translateX(-100%); animation: loaderBar 1.4s var(--ease-in-out) forwards; }
body.is-loaded .loader { clip-path: inset(0 0 100% 0); pointer-events: none; }
@keyframes loaderLogo { from { opacity: 0; transform: translateY(14px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes loaderBar { to { transform: translateX(0); } }

/* ---------- Progresso e cursor ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 120;
  background: var(--gold-grad);
  transform-origin: 0 50%;
  transform: scaleX(var(--p, 0));
}

.cursor {
  position: fixed; top: 0; left: 0; z-index: 150;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  transform: translate3d(var(--x, -100px), var(--y, -100px), 0) translate(-50%, -50%);
  transition: width .4s var(--ease), height .4s var(--ease), background .4s;
  display: grid; place-items: center;
  mix-blend-mode: difference;
}
.cursor span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity .3s; }
.cursor.is-hover { width: 46px; height: 46px; background: var(--text); }
.cursor.is-view { width: 84px; height: 84px; background: var(--gold); mix-blend-mode: normal; }
.cursor.is-view span { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Navegação ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: padding .5s var(--ease), background .5s, backdrop-filter .5s, transform .5s var(--ease);
}
.nav.is-scrolled {
  padding-top: 10px; padding-bottom: 10px;
  background: rgba(15, 13, 12, .72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav__brand img { height: 52px; width: auto; transition: height .5s var(--ease); }
.nav.is-scrolled .nav__brand img { height: 42px; }
.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); }
.nav__links a:not(.btn) {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  position: relative; padding: 6px 0;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav__links a:not(.btn):hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active { color: var(--gold); }
.nav__toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 2; }
.nav__toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--text); transition: transform .5s var(--ease), top .5s var(--ease); }
.nav__toggle span:first-child { top: 17px; }
.nav__toggle span:last-child { top: 26px; }
.nav.is-open .nav__toggle span:first-child { top: 21px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { top: 21px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 28px;
    background: var(--bg);
    clip-path: circle(0 at calc(100% - 38px) 38px);
    transition: clip-path .8s var(--ease-in-out);
  }
  .nav.is-open .nav__links { clip-path: circle(150% at calc(100% - 38px) 38px); }
  .nav__links a:not(.btn) {
    font-family: var(--serif); font-size: 2.4rem; letter-spacing: 0; text-transform: none;
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s var(--ease), transform .6s var(--ease);
  }
  .nav.is-open .nav__links a { opacity: 1; transform: none; }
  .nav.is-open .nav__links a:nth-child(1) { transition-delay: .25s; }
  .nav.is-open .nav__links a:nth-child(2) { transition-delay: .32s; }
  .nav.is-open .nav__links a:nth-child(3) { transition-delay: .39s; }
  .nav.is-open .nav__links a:nth-child(4) { transition-delay: .46s; }
  .nav.is-open .nav__links a:nth-child(5) { transition-delay: .53s; }
  .nav__brand img { height: 44px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px var(--pad) 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; width: 70vmax; height: 70vmax; right: -20vmax; top: -20vmax;
  background: radial-gradient(circle, rgba(212, 180, 131, .16), transparent 60%);
  pointer-events: none;
  animation: glow 12s ease-in-out infinite alternate;
}
@keyframes glow { to { transform: translate(-8vmax, 10vmax) scale(1.1); } }

.hero__text { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero__title .line--italic { font-style: italic; padding-left: clamp(24px, 6vw, 110px); }
.hero__title .line--italic .char {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.char { display: inline-block; transform: translateY(110%) rotate(6deg); transition: transform 1.2s var(--ease); transition-delay: calc(var(--i) * 45ms + .9s); }
body.is-loaded .char { transform: none; }

.hero__eyebrow, .hero__lead, .hero__cta {
  opacity: 0; transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
body.is-loaded .hero__eyebrow { opacity: 1; transform: none; transition-delay: .8s; }
body.is-loaded .hero__lead { opacity: 1; transform: none; transition-delay: 1.4s; }
body.is-loaded .hero__cta { opacity: 1; transform: none; transition-delay: 1.55s; }
.hero__lead { max-width: 440px; color: var(--muted); margin: 0 0 2.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }

.hero__media { position: relative; height: min(78vh, 720px); }
.float {
  position: absolute; margin: 0; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8);
  clip-path: inset(100% 0 0 0 round var(--radius));
  transition: clip-path 1.4s var(--ease-in-out);
}
.float img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.3); transition: transform 2s var(--ease); }
body.is-loaded .float { clip-path: inset(0 0 0 0 round var(--radius)); }
body.is-loaded .float img { transform: scale(1); }
.float--a { width: 54%; height: 76%; right: 6%; top: 4%; border-radius: 999px 999px var(--radius) var(--radius); transition-delay: 1s; }
.float--a { clip-path: inset(100% 0 0 0 round 999px 999px var(--radius) var(--radius)); }
body.is-loaded .float--a { clip-path: inset(0 0 0 0 round 999px 999px var(--radius) var(--radius)); }
.float--b { width: 36%; height: 42%; left: 0; top: 18%; transition-delay: 1.2s; }
.float--c { width: 34%; height: 38%; left: 24%; bottom: 0; transition-delay: 1.35s; z-index: 2; }
.float--a img { transition-delay: 1s; }
.float--b img { transition-delay: 1.2s; }
.float--c img { transition-delay: 1.35s; }
.hero__ring {
  position: absolute; right: 0; bottom: 6%; width: 140px; height: 140px;
  border: 1px solid var(--line); border-radius: 50%;
  animation: spin 18s linear infinite;
}
.hero__ring::after { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-hint {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid rgba(243, 236, 228, .35); border-radius: 20px;
}
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--gold); animation: scrollHint 2s var(--ease) infinite; }
@keyframes scrollHint { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 110px; gap: 20px; }
  .hero__media { height: 44vh; min-height: 300px; order: -1; }
  .hero__title { font-size: clamp(3.4rem, 17vw, 5rem); margin-bottom: 1.2rem; }
  .hero__lead { margin-bottom: 1.6rem; }
  .hero__ring { width: 90px; height: 90px; }
  .scroll-hint { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding: 22px 0; background: var(--bg-2);
}
.marquee__track {
  display: flex; gap: 40px; width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.6rem); font-style: italic; white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: .6em; align-self: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sobre ---------- */
.about {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 8vw, 120px);
  align-items: center; max-width: 1400px; margin: 0 auto;
}
.section--light.about { max-width: none; padding-inline: max(var(--pad), calc((100vw - 1280px) / 2)); }
.about__media { position: relative; }
.arch {
  border-radius: 999px 999px 24px 24px; overflow: hidden;
  aspect-ratio: 670 / 842;
  box-shadow: 0 50px 90px -40px rgba(60, 40, 20, .45);
}
.arch img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.about__badge {
  position: absolute; right: -10px; bottom: 12%;
  width: 124px; height: 124px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: var(--ink); color: var(--gold);
  font-family: var(--serif); font-size: .95rem; line-height: 1.1; letter-spacing: .12em; text-transform: uppercase;
  animation: bob 5s ease-in-out infinite;
}
.about__badge em { font-size: 2.4rem; letter-spacing: 0; text-transform: none; }
@keyframes bob { 50% { transform: translateY(-12px) rotate(-4deg); } }
.about__text p { color: #4d4038; max-width: 560px; }
.about__text .title { margin-bottom: 1.8rem; }
.quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.25;
  margin: 2rem 0 .6rem; padding-left: 1.4rem; border-left: 2px solid var(--gold-2); color: var(--ink);
}
.signature { font-family: var(--serif); font-size: 1.2rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2) !important; }
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; width: 100%; }
  .about__badge { right: 0; width: 100px; height: 100px; }
}

/* ---------- Serviços ---------- */
.services__grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.card {
  grid-column: span 2;
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 460px; display: flex; align-items: flex-end;
  cursor: pointer; isolation: isolate;
  transform: perspective(900px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: transform .5s var(--ease);
}
.card:nth-child(4), .card:nth-child(5) { grid-column: span 3; min-height: 420px; }
.card__img { position: absolute; inset: 0; z-index: -1; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter 1s; filter: saturate(.85); }
.card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 13, 12, 0) 30%, rgba(15, 13, 12, .92) 100%);
  transition: opacity .6s;
}
.card:hover .card__img img { transform: scale(1.08); filter: saturate(1.05); }
.card__body { padding: 28px; }
.card__num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.1rem; }
.card h3 { font-size: clamp(1.8rem, 2.4vw, 2.3rem); margin: .3rem 0 .6rem; }
.card p {
  margin: 0; color: #d9cfc5; font-size: .95rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .7s var(--ease), opacity .5s;
}
.card:hover p, .card:focus-within p { max-height: 120px; opacity: 1; }
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(241, 220, 180, .18), transparent 45%);
  opacity: 0; transition: opacity .4s; z-index: 1;
}
.card:hover::before { opacity: 1; }
@media (hover: none) { .card p { max-height: none; opacity: 1; } }
@media (max-width: 960px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .card, .card:nth-child(4), .card:nth-child(5) { grid-column: span 1; min-height: 380px; }
  .card:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .card, .card:nth-child(4), .card:nth-child(5) { grid-column: auto; min-height: 400px; }
}

.price {
  max-width: 1280px; margin: 40px auto 0;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(24px, 4vw, 60px);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212, 180, 131, .08), transparent 60%);
}
.price .eyebrow { margin-bottom: .4rem; }
.price__value { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4rem); line-height: 1; margin: 0; }
.price__value small { display: block; font-family: var(--sans); font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.price__value sup { font-size: .4em; vertical-align: super; color: var(--gold); }
.price__note { color: var(--muted); margin: 0; max-width: 520px; }
@media (max-width: 860px) { .price { grid-template-columns: 1fr; } .price .btn { justify-self: start; } }

/* ---------- Galeria ---------- */
.gallery { background: var(--bg-2); }
.filters {
  max-width: 1280px; margin: 0 auto 40px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.filter {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(243, 236, 228, .18);
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  transition: background .4s, color .4s, border-color .4s;
}
.filter:hover { border-color: var(--gold); color: var(--gold); }
.filter.is-active { background: var(--gold-grad); color: var(--ink); border-color: transparent; }

.masonry { max-width: 1280px; margin: 0 auto; columns: 4 240px; column-gap: 16px; }
@media (max-width: 600px) { .masonry { columns: 2; column-gap: 10px; } .tile { margin-bottom: 10px; border-radius: 10px; } }
.tile {
  break-inside: avoid; margin: 0 0 16px;
  position: relative; border-radius: 14px; overflow: hidden; cursor: zoom-in;
  background: var(--surface);
  opacity: 0; transform: translateY(40px) scale(.97);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.tile.is-in { opacity: 1; transform: none; }
.tile.is-hidden { display: none; }
.tile img { width: 100%; height: auto; transition: transform 1.2s var(--ease), filter .8s; }
.tile::after {
  content: attr(data-label);
  position: absolute; left: 14px; bottom: 12px;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(15, 13, 12, .6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .5s var(--ease);
}
.tile:hover img { transform: scale(1.06); }
.tile:hover::after, .tile:focus-visible::after { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 180;
  display: grid; grid-template-columns: 70px 1fr 70px; align-items: center;
  background: rgba(10, 8, 7, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .4s;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__figure { margin: 0; display: grid; justify-items: center; gap: 14px; }
.lightbox__figure img {
  max-height: 84vh; max-width: 100%; border-radius: 10px;
  transform: scale(.94); opacity: 0; transition: transform .6s var(--ease), opacity .4s;
}
.lightbox.is-open .lightbox__figure img.is-ready { transform: none; opacity: 1; }
.lightbox figcaption { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.lightbox__nav, .lightbox__close {
  width: 54px; height: 54px; border-radius: 50%; justify-self: center;
  font-size: 2rem; line-height: 1; border: 1px solid var(--line);
  transition: background .3s, color .3s;
}
.lightbox__nav:hover, .lightbox__close:hover { background: var(--gold); color: var(--ink); }
.lightbox__close { position: absolute; top: 20px; right: 20px; }
@media (max-width: 700px) {
  .lightbox { grid-template-columns: 1fr; padding: 0 12px; }
  .lightbox__nav { position: absolute; bottom: 24px; }
  .lightbox__prev { left: calc(50% - 70px); }
  .lightbox__next { right: calc(50% - 70px); }
}

/* ---------- Informações ---------- */
.steps {
  list-style: none; padding: 0; max-width: 1280px; margin: 0 auto clamp(50px, 7vw, 90px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  counter-reset: s;
}
.step {
  padding: 30px 26px; border-radius: var(--radius);
  background: #fff; box-shadow: 0 20px 50px -30px rgba(60, 40, 20, .3);
  transition: transform .5s var(--ease), box-shadow .5s;
}
.step:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(60, 40, 20, .45); }
.step__n { font-family: var(--serif); font-style: italic; font-size: 2.8rem; color: var(--gold-2); line-height: 1; }
.step h3 { font-size: 1.7rem; margin: .8rem 0 .5rem; }
.step p { margin: 0; color: var(--muted-dark); font-size: .95rem; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

.accordion { max-width: 900px; margin: 0 auto; border-top: 1px solid rgba(27, 21, 18, .15); }
.acc { border-bottom: 1px solid rgba(27, 21, 18, .15); }
.acc summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 0;
  font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  transition: color .3s;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--gold-2); }
.acc__icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px; background: currentColor; transition: transform .5s var(--ease); }
.acc__icon::after { transform: rotate(90deg); }
.acc[open] .acc__icon::after { transform: rotate(0); }
.acc__body { overflow: hidden; }
.acc__body ul { margin: 0; padding: 0 0 28px; list-style: none; display: grid; gap: 12px; }
.acc__body li { position: relative; padding-left: 26px; color: #4d4038; }
.acc__body li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-2); font-size: .8rem; top: .25em; }

.pix { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-left: 4px; }
.pix__key {
  font-family: var(--sans); font-size: 1rem; font-weight: 500; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 8px; background: #fff; border: 1px solid rgba(27, 21, 18, .12); color: var(--ink);
}
.pix__copy {
  padding: 5px 14px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.pix__copy:hover { background: var(--gold-2); }
.pix__copy.is-done { background: #2e7d4f; }

/* ---------- Contato ---------- */
.contact { overflow: hidden; text-align: center; min-height: 90vh; display: grid; place-items: center; }
.contact__bg { position: absolute; inset: -10% 0; z-index: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; filter: grayscale(.4); transform: translateY(var(--py, 0)); }
.contact::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(15, 13, 12, .55), var(--bg) 75%);
}
.contact__inner { position: relative; z-index: 2; max-width: 820px; }
.contact__inner .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
.contact__title { font-size: clamp(2.6rem, 6.5vw, 5.4rem); margin-bottom: 1.4rem; font-weight: 300; }
.contact__inner > p { color: var(--muted); }
.contact__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 2.4rem 0; }
.contact__place { font-size: .85rem; letter-spacing: .12em; }

/* ---------- Rodapé ---------- */
.footer {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  padding: 36px var(--pad) 40px; border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--muted);
}
.footer__logo { height: 56px; width: auto; }
.footer p { margin: 0; }
.footer__top:hover { color: var(--gold); }
@media (max-width: 700px) { .footer { flex-direction: column; text-align: center; padding-bottom: 100px; } }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6);
  transform: scale(0); transition: transform .6s var(--ease);
}
.wa-float.is-visible { transform: scale(1); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { from { transform: scale(1); opacity: .8; } to { transform: scale(1.7); opacity: 0; } }

/* ---------- Revelação ao rolar ---------- */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.reveal[data-reveal="left"] { transform: translateX(-60px); }
.reveal.is-in { opacity: 1; transform: none; }
.card.reveal.is-in {
  transform: perspective(900px) rotateX(var(--rx, 0)) rotateY(var(--ry, 0));
  transition: opacity 1.1s var(--ease) var(--d, 0s), transform .6s var(--ease);
}
.about__media.is-in .arch img { transform: scale(1); transition: transform 1.8s var(--ease); }

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
}
