/* ============================================================
   UILMA MIRANDA ESTÉTICA · Guarujá
   Rosa delicado + Dourado · Luxo feminino editorial
   Mobile first
   ============================================================ */

:root {
  --rosa-050: #fdf4f8;
  --rosa-100: #fae3ee;
  --rosa-200: #f6cde1;
  --rosa-300: #efaccb;
  --rosa-400: #e386af;
  --rosa-500: #d4638f;
  --rosa-600: #b84a75;

  --gold-100: #f6e7c6;
  --gold-200: #ecd49a;
  --gold-300: #ddb95f;
  --gold-400: #c9a24b;
  --gold-500: #a87f33;
  --gold-600: #8a6524;

  --cream: #fffaf6;
  --cream-2: #fdf3ec;
  --ink: #43222f;
  --ink-soft: #7a5563;
  --white: #ffffff;

  --grad-gold: linear-gradient(115deg, #b8893a 0%, #eed08d 28%, #c9a24b 52%, #f3e0ac 76%, #a87f33 100%);
  --shadow-soft: 0 18px 50px -18px rgba(184, 74, 117, .22);
  --shadow-card: 0 12px 40px -14px rgba(67, 34, 47, .16);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Jost", "Helvetica Neue", sans-serif;

  --ease-lux: cubic-bezier(.22, .8, .26, .99);
  --header-h: 74px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--rosa-300); color: var(--ink); }

/* ---------- utilitários ---------- */

.wrap {
  width: min(100% - 2.5rem, 1160px);
  margin-inline: auto;
}

.script { font-family: var(--font-script); font-weight: 400; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::before,
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.eyebrow.center::after { background: linear-gradient(90deg, var(--gold-400), transparent); }

.section-head { margin-bottom: 2.6rem; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 6.4vw, 3.4rem);
  line-height: 1.12;
  margin-top: .55rem;
  letter-spacing: .01em;
}
.title em {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin-top: 1.1rem;
  max-width: 56ch;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.section-head.center .lead { margin-inline: auto; }

/* ---------- botões ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .45s var(--ease-lux), box-shadow .45s var(--ease-lux);
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-gold {
  color: #fff;
  background: linear-gradient(115deg, #c9974a, #dfb765 45%, #b8893a);
  box-shadow: 0 14px 32px -12px rgba(168, 127, 51, .55);
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-lux);
  z-index: -1;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(168, 127, 51, .65); }
.btn-gold:hover::after { transform: translateX(120%); }

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--gold-300);
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--gold-400); box-shadow: var(--shadow-soft); }

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .5s ease, box-shadow .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.header.menu-open {
  z-index: 90;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header.scrolled {
  background: rgba(255, 250, 246, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(201, 162, 75, .25);
  box-shadow: 0 10px 30px -18px rgba(67, 34, 47, .25);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name {
  font-family: var(--font-script);
  font-size: 1.9rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .35rem;
}
.brand .brand-sub {
  font-size: .56rem;
  letter-spacing: .52em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: .18rem;
}

.nav-desktop { display: none; }

.nav-toggle {
  position: relative;
  z-index: 80;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 75, .4);
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
}
.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 1.6px;
  background: var(--gold-500);
  transition: transform .45s var(--ease-lux), opacity .3s;
}
.nav-toggle span:nth-child(1) { transform: translateY(-5px); }
.nav-toggle span:nth-child(3) { transform: translateY(5px); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background:
    radial-gradient(120% 90% at 85% 8%, rgba(246, 205, 225, .55), transparent 60%),
    radial-gradient(110% 100% at 10% 95%, rgba(236, 212, 154, .4), transparent 55%),
    var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2.2rem 3rem;
  clip-path: circle(0 at calc(100% - 44px) 37px);
  transition: clip-path .8s var(--ease-lux);
  visibility: hidden;
}
.nav-overlay.open {
  clip-path: circle(150% at calc(100% - 44px) 37px);
  visibility: visible;
}

.nav-overlay ul { display: grid; gap: .4rem; }
.nav-overlay a.nav-link {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  font-weight: 500;
  padding: .45rem 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s var(--ease-lux), color .3s;
}
.nav-overlay.open a.nav-link { opacity: 1; transform: none; }
.nav-overlay a.nav-link:hover { color: var(--rosa-500); }
.nav-overlay a.nav-link i {
  font-style: normal;
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--gold-400);
}
.nav-overlay .nav-foot {
  margin-top: 3rem;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  transition: opacity .6s ease .5s;
}
.nav-overlay.open .nav-foot { opacity: 1; }

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(168deg, #fffaf7 0%, #fceaf2 40%, #f9dfeb 74%, #fbe6e8 100%);
}

/* névoa de cor que respira ao fundo */
.hero-aurora {
  position: absolute;
  inset: -25%;
  z-index: -3;
  pointer-events: none;
}
.hero-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  will-change: transform;
}
.hero-aurora .b1 {
  width: 72vw; height: 72vw; max-width: 560px; max-height: 560px;
  top: 6%; left: -6%;
  background: radial-gradient(circle, rgba(239, 172, 203, .8), rgba(239, 172, 203, 0) 68%);
  animation: drift1 19s ease-in-out infinite;
}
.hero-aurora .b2 {
  width: 62vw; height: 62vw; max-width: 480px; max-height: 480px;
  top: 30%; right: -8%;
  background: radial-gradient(circle, rgba(236, 212, 154, .72), rgba(236, 212, 154, 0) 68%);
  animation: drift2 23s ease-in-out infinite;
}
.hero-aurora .b3 {
  width: 58vw; height: 58vw; max-width: 440px; max-height: 440px;
  bottom: 8%; left: 22%;
  background: radial-gradient(circle, rgba(250, 227, 238, .95), rgba(250, 227, 238, 0) 70%);
  animation: drift3 17s ease-in-out infinite;
}
.hero-aurora .b4 {
  width: 46vw; height: 46vw; max-width: 360px; max-height: 360px;
  top: 2%; right: 24%;
  background: radial-gradient(circle, rgba(212, 99, 143, .35), rgba(212, 99, 143, 0) 70%);
  animation: drift4 27s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(9%, -7%) scale(1.12); }
  66% { transform: translate(-6%, 6%) scale(.94); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-11%, 8%) scale(1.14); }
  70% { transform: translate(5%, -5%) scale(.92); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(7%, -10%) scale(1.16); }
}
@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  45% { transform: translate(-8%, 9%) scale(1.1); }
}

/* trama de pontos dourados */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(201, 162, 75, .16) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(88% 75% at 50% 42%, black, transparent 78%);
  -webkit-mask-image: radial-gradient(88% 75% at 50% 42%, black, transparent 78%);
  pointer-events: none;
  animation: dotShift 30s linear infinite;
}

@keyframes dotShift {
  to { background-position: 26px 26px; }
}

/* véu de luz que atravessa a cena */
.hero::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -45%;
  width: 34%;
  height: 190%;
  z-index: -2;
  background: linear-gradient(102deg, transparent, rgba(255, 255, 255, .45) 46%, rgba(255, 255, 255, .68) 52%, transparent);
  transform: rotate(8deg);
  pointer-events: none;
  animation: lightSweep 13s ease-in-out infinite;
}

@keyframes lightSweep {
  0%, 60% { transform: translateX(0) rotate(8deg); opacity: 0; }
  68% { opacity: .75; }
  100% { transform: translateX(460%) rotate(8deg); opacity: 0; }
}

/* pétalas subindo */
.hero-petals {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-petals i {
  position: absolute;
  bottom: -8%;
  width: 9px;
  height: 9px;
  border-radius: 60% 40% 55% 45%;
  background: linear-gradient(140deg, rgba(239, 172, 203, .95), rgba(236, 212, 154, .8));
  opacity: 0;
  animation: petalRise linear infinite;
}
.hero-petals i:nth-child(1) { left: 8%;  width: 8px;  height: 8px;  animation-duration: 15s; animation-delay: 0s; }
.hero-petals i:nth-child(2) { left: 21%; width: 6px;  height: 6px;  animation-duration: 19s; animation-delay: 2.5s; }
.hero-petals i:nth-child(3) { left: 34%; width: 11px; height: 11px; animation-duration: 17s; animation-delay: 5s; }
.hero-petals i:nth-child(4) { left: 49%; width: 7px;  height: 7px;  animation-duration: 21s; animation-delay: 1.2s; }
.hero-petals i:nth-child(5) { left: 63%; width: 9px;  height: 9px;  animation-duration: 16s; animation-delay: 7s; }
.hero-petals i:nth-child(6) { left: 76%; width: 6px;  height: 6px;  animation-duration: 22s; animation-delay: 3.8s; }
.hero-petals i:nth-child(7) { left: 88%; width: 10px; height: 10px; animation-duration: 18s; animation-delay: 9s; }
.hero-petals i:nth-child(8) { left: 95%; width: 7px;  height: 7px;  animation-duration: 20s; animation-delay: 6.2s; }

@keyframes petalRise {
  0% { transform: translate(0, 0) rotate(0deg) scale(.7); opacity: 0; }
  12% { opacity: .85; }
  50% { transform: translate(28px, -52vh) rotate(180deg) scale(1); }
  85% { opacity: .6; }
  100% { transform: translate(-16px, -108vh) rotate(360deg) scale(.75); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: calc(var(--header-h) + 2.2rem);
  flex: 1;
}

.hero-copy { text-align: center; }

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 6.5vw, 2.6rem);
  color: var(--rosa-500);
  display: block;
  transform: rotate(-3deg);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 10.5vw, 5rem);
  line-height: 1.05;
  margin-top: .4rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; transform: translateY(110%); animation: riseUp 1.1s var(--ease-lux) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: .15s; }
.hero-title .line:nth-child(3) > span { animation-delay: .3s; }

@keyframes riseUp { to { transform: translateY(0); } }

.hero-sub {
  margin: 1.2rem auto 0;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1rem;
  opacity: 0;
  animation: fadeSoft 1s ease .7s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-top: 1.8rem;
  opacity: 0;
  animation: fadeSoft 1s ease .95s forwards;
}

@keyframes fadeSoft { to { opacity: 1; } }

.hero-figure {
  position: relative;
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  flex: 1;
  align-items: flex-end;
  min-height: 380px;
}

/* medalhão de luz atrás dela */
.hero-disco {
  position: absolute;
  bottom: 7%;
  left: 50%;
  width: min(84vw, 400px);
  aspect-ratio: 1;
  margin-left: calc(min(84vw, 400px) / -2);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%,
    rgba(255, 255, 255, .96) 0%,
    rgba(253, 240, 246, .88) 42%,
    rgba(246, 205, 225, .7) 66%,
    rgba(239, 172, 203, .38) 82%,
    transparent 88%);
  box-shadow: 0 0 90px -6px rgba(212, 99, 143, .35);
  animation: discoBreathe 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes discoBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* raios finos irradiando do centro */
.hero-raios {
  position: absolute;
  bottom: 2%;
  left: 50%;
  width: min(100vw, 520px);
  aspect-ratio: 1;
  margin-left: calc(min(100vw, 520px) / -2);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg,
    rgba(201, 162, 75, .3) 0deg .5deg,
    transparent .5deg 9deg);
  mask-image: radial-gradient(circle, transparent 36%, black 50%, black 62%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle, transparent 36%, black 50%, black 62%, transparent 78%);
  animation: spinRaios 120s linear infinite;
  opacity: .75;
  pointer-events: none;
}

@keyframes spinRaios {
  to { transform: rotate(360deg); }
}

/* círculo pontilhado girando */
.hero-pontilhado {
  position: absolute;
  bottom: 4%;
  left: 50%;
  width: min(90vw, 430px);
  aspect-ratio: 1;
  margin-left: calc(min(90vw, 430px) / -2);
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 75, .42);
  animation: spinRaios 70s linear infinite;
  pointer-events: none;
}
/* halo em rotação por trás do arco */
.hero-halo {
  position: absolute;
  bottom: -14%;
  left: 50%;
  width: min(96vw, 440px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(201, 162, 75, .38) 55deg,
    transparent 130deg,
    rgba(239, 172, 203, .5) 205deg,
    transparent 285deg,
    rgba(236, 212, 154, .35) 335deg,
    transparent 360deg
  );
  filter: blur(30px);
  animation: spinHalo 26s linear infinite;
  pointer-events: none;
}

@keyframes spinHalo {
  to { transform: translateX(-50%) rotate(360deg); }
}

/* anel de luz fino orbitando o arco */
.hero-ring {
  position: absolute;
  bottom: -6%;
  left: 50%;
  width: min(84vw, 380px);
  aspect-ratio: 1;
  margin-left: calc(min(84vw, 380px) / -2);
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(201, 162, 75, .42);
  border-left-color: rgba(239, 172, 203, .38);
  animation: spinRing 22s linear infinite;
  pointer-events: none;
  opacity: .85;
}

@keyframes spinRing {
  to { transform: rotate(-360deg); }
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: min(88vw, 430px);
  filter: drop-shadow(0 30px 40px rgba(120, 42, 75, .3));
  opacity: 0;
  transform: translateY(40px) scale(.97);
  animation: heroPhoto 1.3s var(--ease-lux) .35s forwards;
}

@keyframes heroPhoto { to { opacity: 1; transform: translateY(0) scale(1); } }

.sparkle {
  position: absolute;
  z-index: 3;
  color: var(--gold-400);
  animation: twinkle 3.4s ease-in-out infinite;
  pointer-events: none;
}
.sparkle svg { width: 100%; height: 100%; display: block; }
.sparkle.s1 { width: 26px; top: 8%; left: 12%; animation-delay: .2s; }
.sparkle.s2 { width: 16px; top: 20%; right: 14%; animation-delay: 1.1s; }
.sparkle.s3 { width: 20px; bottom: 30%; left: 6%; animation-delay: 1.9s; color: var(--rosa-400); }
.sparkle.s4 { width: 14px; bottom: 12%; right: 8%; animation-delay: 2.6s; }

@keyframes twinkle {
  0%, 100% { opacity: .25; transform: scale(.75) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(18deg); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- faixa marquee ---------- */

.marquee {
  position: relative;
  z-index: 5;
  background: linear-gradient(100deg, #4a2433, #6b3349 50%, #4a2433);
  color: var(--gold-200);
  overflow: hidden;
  padding: .95rem 0;
  border-top: 1px solid rgba(236, 212, 154, .35);
  border-bottom: 1px solid rgba(236, 212, 154, .35);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee span {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .14em;
  white-space: nowrap;
}
.marquee i { font-style: normal; color: var(--rosa-300); font-size: .8rem; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity .95s ease, transform .95s var(--ease-lux);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- divisor ornamental ---------- */

.divider-lux {
  position: relative;
  padding: 3.4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.divider-lux svg { width: min(88vw, 560px); height: auto; color: var(--gold-400); }
.divider-lux .rose { color: var(--rosa-400); }

/* ---------- sobre ---------- */

.sobre {
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow-x: clip;
}

.sobre-grid { display: grid; gap: 2.6rem; }

/* ---------- moldura de quadro (reutilizável) ---------- */

.moldura {
  position: relative;
  padding: 15px;
  background: linear-gradient(152deg, #fffdfa, #fdf4ee 55%, #fbeaf1);
  border: 1px solid rgba(201, 162, 75, .6);
  border-radius: 3px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .75),
    0 30px 62px -28px rgba(120, 42, 75, .5);
}
/* fio dourado externo */
.moldura::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(201, 162, 75, .38);
  border-radius: 5px;
  pointer-events: none;
}
/* halo suave por trás do quadro */
.moldura::after {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 205, 225, .7), rgba(246, 231, 198, .3) 55%, transparent 72%);
  filter: blur(26px);
  animation: haloBreathe 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes haloBreathe {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.07); opacity: 1; }
}

.moldura .shot {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(168, 127, 51, .55);
}
.moldura .shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.6s var(--ease-lux);
}
.moldura:hover .shot img { transform: scale(1.06); }
/* brilho que atravessa o vidro */
.moldura .shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(108deg, transparent 38%, rgba(255, 255, 255, .4) 50%, transparent 62%);
  transform: translateX(-125%);
  transition: transform 1.15s var(--ease-lux);
  pointer-events: none;
}
.moldura:hover .shot::before { transform: translateX(125%); }

/* losangos dourados nos cantos */
.moldura .canto {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--cream);
  border: 1px solid var(--gold-400);
  transform: rotate(45deg);
  pointer-events: none;
}
.moldura .canto.ce { top: -14px; left: -14px; }
.moldura .canto.cd { top: -14px; right: -14px; }
.moldura .canto.be { bottom: -14px; left: -14px; }
.moldura .canto.bd { bottom: -14px; right: -14px; }

/* ---------- foto da seção sobre ---------- */

.sobre-figure {
  position: relative;
  width: min(100% - 24px, 360px);
  margin-inline: auto;
}
.sobre-figure .shot { aspect-ratio: 885 / 1338; }
.sobre-figure .stamp {
  position: absolute;
  z-index: 3;
  bottom: -46px;
  left: 50%;
  margin-left: -52px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 246, .98) 54%, rgba(255, 250, 246, 0) 72%);
  animation: spinSlow 22s linear infinite;
}
.sobre-figure .stamp text {
  font-size: 10.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  fill: var(--gold-500);
}
.sobre-figure .stamp .center-heart { fill: var(--rosa-400); }

@keyframes spinSlow { to { transform: rotate(360deg); } }

.sobre-copy p + p { margin-top: 1rem; }
.sobre-copy .assinatura {
  margin-top: 1.6rem;
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--gold-500);
  transform: rotate(-4deg);
  display: inline-block;
}

.sobre-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(201, 162, 75, .35);
}
.sobre-stats div { padding: 1.1rem .4rem 0; text-align: center; }
.sobre-stats div + div { border-left: 1px solid rgba(201, 162, 75, .25); }
.sobre-stats strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  display: block;
  color: var(--rosa-600);
}
.sobre-stats span {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- procedimentos ---------- */

.procedimentos {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(100% 70% at 100% 0%, rgba(250, 227, 238, .7), transparent 55%),
    radial-gradient(90% 60% at 0% 100%, rgba(246, 231, 198, .5), transparent 55%),
    var(--cream-2);
}

.proc-list { display: grid; gap: 1.1rem; }

.proc-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.3rem;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(201, 162, 75, .28);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .5s var(--ease-lux), box-shadow .5s var(--ease-lux), border-color .4s;
}
.proc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(246, 205, 225, .0), rgba(246, 205, 225, .55) 50%, rgba(236, 212, 154, .35));
  opacity: 0;
  transition: opacity .5s ease;
}
.proc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(201, 162, 75, .6);
}
.proc-card:hover::before { opacity: 1; }

.proc-num {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-500);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 162, 75, .45);
  border-radius: 50%;
  background: #fff;
  transition: transform .5s var(--ease-lux);
}
.proc-card:hover .proc-num { transform: rotate(-12deg) scale(1.06); }

.proc-info { position: relative; }
.proc-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.2;
}
.proc-info p {
  font-size: .86rem;
  color: var(--ink-soft);
  margin-top: .2rem;
}

.proc-arrow {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 99, 143, .4);
  color: var(--rosa-500);
  transition: background .4s, color .4s, transform .5s var(--ease-lux);
}
.proc-arrow svg { width: 16px; height: 16px; }
.proc-card:hover .proc-arrow {
  background: var(--rosa-500);
  color: #fff;
  transform: rotate(-38deg);
}

/* ---------- experiência ---------- */

.experiencia { padding: 4.5rem 0; overflow-x: clip; }

.exp-list {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: exp;
  padding-left: 3.1rem;
}

/* trilho da linha do tempo */
.exp-rail {
  position: absolute;
  left: 15px;
  top: .6rem;
  bottom: .6rem;
  width: 2px;
  border-radius: 2px;
  background: rgba(201, 162, 75, .22);
  overflow: hidden;
}
.exp-rail i {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  display: block;
  background: linear-gradient(180deg, var(--gold-300), var(--rosa-400) 55%, var(--gold-400));
  transform: scaleY(var(--fill, 0));
  transform-origin: top;
  transition: transform .25s linear;
}
.exp-rail::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--fill, 0) * 100%);
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--rosa-500);
  box-shadow: 0 0 0 5px rgba(212, 99, 143, .18), 0 0 14px rgba(212, 99, 143, .6);
  opacity: var(--head, 0);
  transition: top .25s linear, opacity .4s ease;
}

.exp-item {
  position: relative;
  padding: 1.75rem 0 1.75rem 0;
  border-bottom: 1px solid rgba(201, 162, 75, .22);
  opacity: 0;
  transform: translateX(26px);
  transition: opacity .8s ease, transform .8s var(--ease-lux);
}
.exp-item.lit { opacity: 1; transform: none; }
.exp-item:first-child { border-top: 1px solid rgba(201, 162, 75, .22); }

/* marcador na linha */
.exp-item::before {
  content: "";
  position: absolute;
  left: -3.1rem;
  top: 2.1rem;
  width: 14px;
  height: 14px;
  margin-left: 9px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid rgba(201, 162, 75, .5);
  transition: background .5s ease, border-color .5s ease, transform .6s var(--ease-lux), box-shadow .5s;
}
.exp-item.lit::before {
  background: linear-gradient(140deg, var(--gold-300), var(--rosa-400));
  border-color: transparent;
  transform: scale(1.25);
  box-shadow: 0 0 0 6px rgba(239, 172, 203, .22);
}

.exp-head { display: flex; align-items: baseline; gap: .8rem; }
.exp-num {
  counter-increment: exp;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform .6s var(--ease-lux);
}
.exp-num::before { content: counter(exp, decimal-leading-zero); }
.exp-item.lit .exp-num { transform: translateY(-2px); }

.exp-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}
.exp-item p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-top: .45rem;
  max-width: 60ch;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease .18s, transform .7s var(--ease-lux) .18s;
}
.exp-item.lit p { opacity: 1; transform: none; }

/* ---------- depoimentos ---------- */

.depoimentos {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(250, 227, 238, .75), transparent 65%),
    var(--cream);
  overflow: hidden;
}
.depoimentos::before {
  content: "❝";
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: 16rem;
  line-height: 1;
  color: rgba(246, 205, 225, .5);
  pointer-events: none;
}

.depo-grid { display: grid; gap: 1.2rem; }

.depo-card {
  position: relative;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(201, 162, 75, .3);
  border-radius: 24px;
  padding: 2.2rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease-lux), box-shadow .5s;
}
.depo-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: var(--shadow-soft); }
.depo-card::before {
  content: "❝";
  position: absolute;
  top: -4px;
  left: 1.3rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--rosa-400);
  line-height: 1;
}
.depo-card p { font-size: .95rem; color: var(--ink-soft); font-style: italic; }
.depo-card footer {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.depo-card footer .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--rosa-400), var(--rosa-600));
  flex: none;
}
.depo-card footer strong { font-weight: 500; font-size: .92rem; display: block; }
.depo-card footer .stars { color: var(--gold-400); font-size: .72rem; letter-spacing: .18em; }

/* ---------- visita / contato ---------- */

.visita { padding: 4.5rem 0 5.5rem; }

.visita-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(110% 130% at 88% 0%, rgba(239, 172, 203, .5), transparent 55%),
    radial-gradient(100% 110% at 0% 100%, rgba(236, 212, 154, .45), transparent 60%),
    linear-gradient(150deg, #4a2433, #633044 60%, #55293b);
  color: #fbeef3;
  padding: 3rem 1.7rem;
  box-shadow: 0 30px 70px -25px rgba(67, 34, 47, .5);
}
.visita-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(236, 212, 154, .35);
  border-radius: 22px;
  pointer-events: none;
}
.visita-card .eyebrow { color: var(--gold-200); }
.visita-card .title { color: #fff; }
.visita-card .title em { filter: brightness(1.25); }

.visita-info { display: grid; gap: 1.5rem; margin-top: 2rem; }
.visita-info .item { display: flex; gap: 1rem; align-items: flex-start; }
.visita-info .item svg { width: 20px; height: 20px; flex: none; margin-top: .2rem; color: var(--gold-200); }
.visita-info .item strong {
  display: block;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rosa-200);
  margin-bottom: .2rem;
}
.visita-info .item p { font-size: .95rem; color: rgba(251, 238, 243, .85); }

.visita-cta { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- footer ---------- */

.footer {
  position: relative;
  background: #381b26;
  color: rgba(251, 238, 243, .75);
  padding: 3.6rem 0 6.5rem;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.footer-grid { display: grid; gap: 2.4rem; }

.footer .brand-name { font-size: 2.4rem; }
.footer .brand-sub { color: rgba(251, 238, 243, .55); }
.footer-about { font-size: .92rem; max-width: 34ch; margin-top: 1rem; }

.footer h4 {
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-200);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-links { display: grid; gap: .55rem; font-size: .95rem; }
.footer-links a { transition: color .3s, padding-left .3s; }
.footer-links a:hover { color: var(--rosa-300); padding-left: .4rem; }

.footer-contact { display: grid; gap: .7rem; font-size: .92rem; }
.footer-contact a:hover { color: var(--rosa-300); }

.footer-base {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(236, 212, 154, .18);
  font-size: .78rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: space-between;
  color: rgba(251, 238, 243, .5);
}
.footer-base .script { color: var(--gold-300); font-size: 1.05rem; }

/* ---------- whatsapp flutuante ---------- */

.wa-float {
  position: fixed;
  z-index: 55;
  right: 1.1rem;
  bottom: 1.2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, #2ebd59, #189a44);
  box-shadow: 0 16px 34px -10px rgba(24, 154, 68, .55);
  transition: transform .4s var(--ease-lux);
}
.wa-float:hover { transform: scale(1.1) rotate(8deg); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(46, 189, 89, .5);
  animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============================================================
   PÁGINAS DE PROCEDIMENTO
   ============================================================ */

.proc-hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 3.4rem;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(168deg, #fffaf7 0%, #fdf0f5 45%, #fbe7ef 100%);
}
.proc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(201, 162, 75, .15) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(92% 92% at 50% 5%, black, transparent 82%);
  -webkit-mask-image: radial-gradient(92% 92% at 50% 5%, black, transparent 82%);
  pointer-events: none;
  animation: dotShift 30s linear infinite;
}
.proc-hero .hero-aurora { inset: -30% -25%; }
.proc-hero .hero-aurora span { filter: blur(60px); opacity: .85; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.crumbs a:hover { color: var(--rosa-500); }
.crumbs i { font-style: normal; color: var(--gold-400); }

.proc-hero-grid { display: grid; gap: 2.4rem; align-items: center; }

/* foto do procedimento */
.proc-figure {
  position: relative;
  width: min(100%, 350px);
  margin-inline: auto;
  opacity: 0;
  transform: translateY(38px) scale(.97);
  animation: figIn 1.2s var(--ease-lux) .25s forwards;
}
@keyframes figIn { to { opacity: 1; transform: none; } }

.proc-figure .shot { aspect-ratio: 4 / 5; }
.proc-figure .shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(74, 36, 51, .34));
  pointer-events: none;
}

/* aviso de imagem provisória */
.foto-aviso {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(56, 27, 38, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(236, 212, 154, .5);
  color: var(--gold-200);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.foto-aviso svg { width: 12px; height: 12px; flex: none; }

.proc-figure .sparkle { z-index: 4; }
.proc-figure .sparkle.p1 { width: 22px; top: -10px; right: 4%; }
.proc-figure .sparkle.p2 { width: 14px; bottom: 18%; left: -8px; color: var(--rosa-400); animation-delay: 1.4s; }

.proc-hero .hero-script { text-align: left; margin-top: 1.6rem; transform: rotate(-2deg); display: inline-block; }

.proc-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 9vw, 4.4rem);
  line-height: 1.06;
  margin-top: .3rem;
}
.proc-hero h1 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proc-hero .lead { font-size: 1.05rem; }

.proc-hero-meta {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 75, .45);
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(6px);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.meta-pill svg { width: 15px; height: 15px; color: var(--gold-500); }

.proc-body { padding: 3.6rem 0 1rem; }

.prose-grid { display: grid; gap: 2.4rem; }

.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.prose h2 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.prose p { color: var(--ink-soft); }
.prose p + p { margin-top: .9rem; }

.beneficios-card {
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(201, 162, 75, .35);
  border-radius: 26px;
  padding: 1.9rem 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.beneficios-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--grad-gold);
}
.beneficios-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.beneficios-card ul { display: grid; gap: .8rem; }
.beneficios-card li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--ink-soft);
}
.beneficios-card li::before {
  content: "✦";
  color: var(--gold-400);
  flex: none;
  font-size: .8rem;
  margin-top: .25rem;
}

.etapas { padding: 3.4rem 0; }
.etapas-grid { display: grid; gap: 1rem; counter-reset: etapa; }
.etapa {
  position: relative;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(201, 162, 75, .3);
  border-radius: 22px;
  padding: 1.6rem 1.4rem 1.5rem 1.4rem;
  transition: transform .5s var(--ease-lux), box-shadow .5s;
}
.etapa:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.etapa::before {
  counter-increment: etapa;
  content: counter(etapa, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: .6rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.etapa h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.etapa p { font-size: .9rem; color: var(--ink-soft); margin-top: .3rem; }

.faq { padding: 2.6rem 0 3.5rem; }
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  border: 1px solid rgba(201, 162, 75, .32);
  border-radius: 18px;
  background: rgba(255, 255, 255, .75);
  overflow: hidden;
  transition: border-color .3s, box-shadow .4s;
}
.faq-item.open { border-color: rgba(212, 99, 143, .5); box-shadow: var(--shadow-card); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
}
.faq-q .ico {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, .5);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  transition: transform .45s var(--ease-lux), background .3s, color .3s;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--rosa-500); border-color: var(--rosa-500); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-lux);
}
.faq-a p {
  padding: 0 1.3rem 1.2rem;
  font-size: .93rem;
  color: var(--ink-soft);
}

.cta-band { padding: 1rem 0 5rem; }
.cta-band .visita-card { text-align: center; }
.cta-band .visita-card .title { margin-inline: auto; }
.cta-band .lead { margin-inline: auto; color: rgba(251, 238, 243, .8); }
.cta-band .visita-cta { justify-content: center; }

.prox-proc { padding: 0 0 5rem; }
.prox-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(201, 162, 75, .4);
  border-radius: 24px;
  padding: 1.5rem 1.5rem;
  background: rgba(255, 255, 255, .7);
  transition: transform .5s var(--ease-lux), box-shadow .5s;
}
.prox-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.prox-card span {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: block;
  margin-bottom: .25rem;
}
.prox-card strong { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; }
.prox-card .proc-arrow { flex: none; }
.prox-card:hover .proc-arrow { background: var(--rosa-500); color: #fff; transform: rotate(-38deg); }

/* ============================================================
   BREAKPOINTS
   ============================================================ */

@media (min-width: 700px) {
  .depo-grid { grid-template-columns: repeat(3, 1fr); }
  .etapas-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-card { padding: 1.5rem 1.8rem; }
  .visita-card { padding: 3.6rem 3rem; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

@media (min-width: 960px) {
  :root { --header-h: 84px; }

  .nav-toggle { display: none; }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .nav-desktop a {
    position: relative;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .3rem 0;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s var(--ease-lux);
  }
  .nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-desktop .btn { padding: .75rem 1.6rem; font-size: .74rem; }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding-top: var(--header-h);
  }
  .hero-copy { flex: 1.1; text-align: left; }
  .hero-script { text-align: left; }
  .hero-sub { margin-left: 0; }
  .hero-cta { justify-content: flex-start; }
  .hero-figure { flex: 1; margin-top: 0; align-self: stretch; min-height: 0; }
  .hero-disco { width: min(30vw, 420px); margin-left: calc(min(30vw, 420px) / -2); bottom: 10%; }
  .hero-raios { width: min(40vw, 540px); margin-left: calc(min(40vw, 540px) / -2); bottom: 4%; }
  .hero-pontilhado { width: min(33vw, 450px); margin-left: calc(min(33vw, 450px) / -2); bottom: 7%; }
  .hero-ring { width: min(31vw, 410px); margin-left: calc(min(31vw, 410px) / -2); }
  .hero-halo { width: min(34vw, 470px); }
  .hero-photo { width: min(36vw, 500px); }

  .sobre { padding: 6.5rem 0 4rem; }
  .sobre-grid { grid-template-columns: 1fr 1.15fr; gap: 4.5rem; align-items: center; }
  .sobre-figure .stamp { bottom: -40px; left: auto; right: -40px; margin-left: 0; }

  .procedimentos { padding: 6.5rem 0 7rem; }
  .proc-list { max-width: 880px; margin-inline: auto; }

  .experiencia { padding: 6.5rem 0; }
  .exp-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
  .exp-wrap .section-head { position: sticky; top: calc(var(--header-h) + 2rem); margin-bottom: 0; }

  .depoimentos { padding: 6.5rem 0 7rem; }
  .visita { padding: 6.5rem 0 7.5rem; }
  .visita-card { padding: 4.5rem 4.5rem; }
  .visita-flex { display: flex; justify-content: space-between; gap: 3rem; align-items: flex-end; }
  .visita-info { grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }

  .proc-hero { padding: calc(var(--header-h) + 4.5rem) 0 4.5rem; }
  .proc-hero-grid { grid-template-columns: 1.15fr .85fr; gap: 4rem; }
  .proc-figure { width: min(100%, 420px); margin-right: 0; }
  .prose-grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
  .prose-grid .beneficios-card { position: sticky; top: calc(var(--header-h) + 2rem); }
  .etapas-grid { grid-template-columns: repeat(4, 1fr); }
  .faq-list { max-width: 760px; margin-inline: auto; }

  .wa-float { right: 1.8rem; bottom: 1.8rem; }
  .footer { padding: 5rem 0 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
