/* ==========================================================================
   ALLINE BEAUTY CLINIC
   Sistema visual: noir + ouro, mobile first
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --noir:        #0B0908;
  --noir-2:      #100D0B;
  --noir-3:      #171310;
  --noir-4:      #221B15;
  --cream:       #F6F1E9;
  --cream-2:     #EFE7DA;
  --white-warm:  #FBFAF7;

  --gold-deep:   #8A6224;
  --gold:        #BB985E;
  --gold-soft:   #CBB693;
  --gold-light:  #DCCCB2;
  --gold-pale:   #F0E4CC;

  --gold-grad: linear-gradient(100deg,
    #8A6224 0%, #CBB693 22%, #F0E4CC 42%,
    #BB985E 58%, #DCCCB2 78%, #8A6224 100%);

  --ink:         #17120E;
  --ink-soft:    rgba(23, 18, 14, .66);
  --paper:       #F6F1E9;
  --paper-soft:  rgba(246, 241, 233, .64);
  --paper-faint: rgba(246, 241, 233, .38);

  --line-dark:   rgba(246, 241, 233, .12);
  --line-light:  rgba(23, 18, 14, .12);

  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-sans:    "Jost", "Helvetica Neue", Arial, sans-serif;
  --f-script:  "Parisienne", "Cormorant Garamond", cursive;

  --pad-x: 1.375rem;
  --maxw: 1240px;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .28s;
  --t-mid: .55s;
  --t-slow: 1.1s;

  --header-h: 68px;
}

@media (min-width: 768px) { :root { --pad-x: 2.5rem; --header-h: 84px; } }
@media (min-width: 1200px) { :root { --pad-x: 3.5rem; } }

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--paper);
  background: var(--noir);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--gold-deep); color: var(--white-warm); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- 3. Tipografia ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.015em;
}

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 300; line-height: 1.08; }

.t-hero { font-size: clamp(2.8rem, 13vw, 5.4rem); line-height: 1; letter-spacing: -.03em; }
.t-xl { font-size: clamp(2.4rem, 9.5vw, 4.4rem); line-height: 1.02; letter-spacing: -.02em; }
.t-lg { font-size: clamp(2rem, 7.4vw, 3.4rem); line-height: 1.08; letter-spacing: -.015em; }
.t-md { font-size: clamp(1.5rem, 5.2vw, 2.2rem); line-height: 1.18; }
.t-sm { font-size: clamp(1.2rem, 4.2vw, 1.5rem); line-height: 1.28; }

.italic { font-style: italic; }
.script { font-family: var(--f-script); font-weight: 400; font-style: normal; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex: none;
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.is-centered::after {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex: none;
}
.eyebrow.on-light { color: var(--gold-deep); }

.lead { font-size: 1.06rem; line-height: 1.82; color: var(--paper-soft); font-weight: 300; }
.lead.on-light { color: var(--ink-soft); }
@media (min-width: 768px) { .lead { font-size: 1.14rem; } }

.gold-text {
  background: var(--gold-grad);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldFlow 9s linear infinite;
}
@keyframes goldFlow { to { background-position: 220% 0; } }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.wrap-narrow { max-width: 860px; }

.section { padding-block: clamp(4.5rem, 14vw, 8.5rem); position: relative; }
.section-tight { padding-block: clamp(3rem, 9vw, 5rem); }

.on-light { background: var(--cream); color: var(--ink); }
.on-light h1, .on-light h2, .on-light h3 { color: var(--ink); }

.stack-sm > * + * { margin-top: 1.05rem; }
.stack > * + * { margin-top: 1.75rem; }
.stack-lg > * + * { margin-top: 2.6rem; }

.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- 5. Botões ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1.05rem 2.1rem;
  font-family: var(--f-sans);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex: none; }

.btn-gold {
  color: #221B12;
  background: var(--gold-grad);
  background-size: 220% 100%;
  box-shadow: 0 10px 30px -12px rgba(187, 152, 94, .6);
}
.btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.55) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .85s var(--ease-out);
  z-index: -1;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -14px rgba(187, 152, 94, .85); }
.btn-gold:hover::after { transform: translateX(130%); }

.btn-ghost { color: var(--paper); border: 1px solid var(--line-dark); backdrop-filter: blur(6px); }
.btn-ghost::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  z-index: -1;
}
.btn-ghost:hover { color: #221B12; border-color: transparent; transform: translateY(-3px); }
.btn-ghost:hover::after { opacity: 1; }

.btn-ghost.on-light { color: var(--ink); border-color: var(--line-light); }
.btn-ghost.on-light:hover { color: #221B12; }

.btn-sm { padding: .85rem 1.5rem; font-size: .68rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-bottom: .3rem;
  border-bottom: 1px solid rgba(187, 152, 94, .32);
  transition: color var(--t-fast) var(--ease), gap var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.link-arrow svg { width: 14px; transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover { color: var(--gold-pale); gap: 1rem; border-color: var(--gold); }
.link-arrow.on-light { color: var(--gold-deep); border-color: rgba(138, 98, 36, .3); }
.link-arrow.on-light:hover { color: var(--ink); }

/* ---------- 6. Cabeçalho ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: transform .5s var(--ease), background-color .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(11, 9, 8, .82);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line-dark);
}
.site-header.is-hidden { transform: translateY(-104%); }

.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { width: 34px; height: auto; }
.brand-name {
  font-family: var(--f-display);
  font-size: 1.02rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1;
}
.brand-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: .5rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: .3rem;
}

.nav-desk { display: none; }
.header-cta { display: none; }

.burger {
  position: relative;
  z-index: 101;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  transition: border-color var(--t-fast) var(--ease);
}
.burger span {
  display: block;
  width: 17px; height: 1px;
  background: var(--paper);
  transition: transform .4s var(--ease-out), opacity .25s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger:hover { border-color: var(--gold); }
.burger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--noir);
  padding: calc(var(--header-h) + 2.2rem) var(--pad-x) 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  clip-path: circle(0% at calc(100% - 46px) 42px);
  transition: clip-path .78s var(--ease-out);
  pointer-events: none;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 46px) 42px); pointer-events: auto; }
.drawer::before {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 90vw; height: 90vw;
  background: radial-gradient(circle, rgba(187,152,94,.16), transparent 68%);
  pointer-events: none;
}

.drawer-nav { position: relative; }
.drawer-nav li { border-bottom: 1px solid var(--line-dark); }
.drawer-nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.2rem 0;
  font-family: var(--f-display);
  font-size: 1.85rem;
  color: var(--paper);
  opacity: 0;
  transform: translateY(18px);
  transition: color var(--t-fast) var(--ease);
}
.drawer.is-open .drawer-nav a {
  animation: drawerIn .6s var(--ease-out) forwards;
  animation-delay: calc(.16s + var(--i, 0) * .055s);
}
.drawer-nav a:hover { color: var(--gold-light); }
.drawer-nav .idx { font-family: var(--f-sans); font-size: .6rem; letter-spacing: .2em; color: var(--gold-deep); }
@keyframes drawerIn { to { opacity: 1; transform: none; } }

.drawer-foot { margin-top: auto; padding-top: 2.4rem; display: grid; gap: 1.1rem; position: relative; }
.drawer-foot .meta { font-size: .8rem; letter-spacing: .04em; color: var(--paper-faint); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--noir);
  padding-top: calc(var(--header-h) + clamp(1.6rem, 5vw, 3rem));
  isolation: isolate;
}

.hero-aura {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 60%;
  width: min(170vw, 1080px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(187, 152, 94, .24), rgba(138, 98, 36, .09) 42%, transparent 66%);
  filter: blur(14px);
  animation: auraPulse 9s var(--ease) infinite alternate;
  pointer-events: none;
}
@keyframes auraPulse {
  from { opacity: .7; transform: translate(-50%, -50%) scale(.94); }
  to   { opacity: 1;  transform: translate(-50%, -52%) scale(1.06); }
}

.hero-rings {
  position: absolute;
  z-index: 0;
  left: 50%; top: 62%;
  width: min(142vw, 840px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(187, 152, 94, .18);
  pointer-events: none;
}
.hero-rings::before, .hero-rings::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(187, 152, 94, .11);
}
.hero-rings::before { inset: -11%; }
.hero-rings::after  { inset: 13%; border-color: rgba(187, 152, 94, .07); }

/* texto centralizado no topo */
.hero-content { position: relative; z-index: 3; width: 100%; text-align: center; flex: none; }
.hero-content .eyebrow { justify-content: center; }
.hero-content .eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex: none;
}

.hero-title { color: var(--paper); margin-top: 1.5rem; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: block;
  transform: translateY(105%);
  animation: lineUp 1.15s var(--ease-out) forwards;
  animation-delay: calc(.25s + var(--i, 0) * .11s);
}
@keyframes lineUp { to { transform: none; } }

.hero-sub {
  max-width: 34ch;
  margin: 1.35rem auto 0;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .78s forwards;
}
.hero-actions {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .92s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* foto embaixo do texto */
.hero-stage {
  position: relative;
  z-index: 2;
  margin-top: clamp(1.6rem, 5vw, 2.6rem);
  flex: 1 1 auto;
  min-height: min(56svh, 470px);
}
.hero-figure {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  margin-inline: auto;
  height: 100%;
  width: auto;
  max-width: min(118vw, 520px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, .72));
  opacity: 0;
  transform: translateY(52px) scale(.97);
}
.hero-figure.is-ready { animation: heroRise 1.25s var(--ease-out) forwards; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

.hero-plate {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 4%;
  width: min(92vw, 400px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(187, 152, 94, .26);
  background: radial-gradient(circle at 50% 45%, rgba(187, 152, 94, .12), transparent 62%);
  pointer-events: none;
}
.hero-pedestal {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -4px;
  width: min(110vw, 680px);
  height: 170px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(187, 152, 94, .20), transparent 70%);
  pointer-events: none;
}

.hero-tags {
  position: absolute;
  z-index: 4;
  inset: auto 0 clamp(.8rem, 3vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-inline: var(--pad-x);
  pointer-events: none;
  font-size: .54rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
.hero-tags span { display: flex; align-items: center; gap: .45rem; }
.hero-tags span::before { content: ""; width: 14px; height: 1px; background: var(--gold-deep); }

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: .9rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .53rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
.hero-scroll i {
  display: block;
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll i::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-pale);
  animation: scrollDot 2.1s var(--ease) infinite;
}
@keyframes scrollDot { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

@media (max-height: 700px) and (max-width: 900px) {
  .hero-title { margin-top: .7rem; }
  .t-hero { font-size: clamp(2.2rem, 10.5vw, 3rem); }
  .hero-sub { font-size: .92rem; line-height: 1.6; margin-top: .8rem; }
  .hero-actions { margin-top: 1.1rem; }
  .hero-stage { min-height: min(48svh, 340px); }
}
@media (max-width: 520px) {
  .hero-actions .btn { padding: .95rem 1.25rem; font-size: .63rem; letter-spacing: .15em; }
  .hero-actions .btn svg { width: 13px; height: 13px; }
}
@media (min-width: 768px) {
  .hero-figure { max-width: min(72vw, 600px); }
}
@media (min-width: 1100px) {
  .hero-figure {
    width: min(54vw, 660px);
    max-width: none;
    object-fit: cover;
    object-position: center top;
  }
  .hero-stage { min-height: min(54svh, 500px); }
  .hero-plate { width: 410px; }
}

/* ---------- 8. Faixa deslizante ---------- */
.hero .ticker { position: relative; z-index: 4; margin-top: -1px; }

.ticker {
  position: relative;
  border-block: 1px solid var(--line-dark);
  background: var(--noir-2);
  overflow: hidden;
  padding-block: .95rem;
}
.ticker-track { display: flex; width: max-content; animation: tick 34s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  padding-inline: 1.1rem;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: .02em;
  color: var(--gold-soft);
  white-space: nowrap;
}
.ticker-track span::after {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold-deep);
  transform: rotate(45deg);
  border-radius: 1px;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- 9. Divisórias ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.8rem, 3vw, 1.6rem);
  padding-block: clamp(2.2rem, 7vw, 3.6rem);
}
.ornament .rule {
  flex: 1;
  max-width: 340px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(187, 152, 94, .55), transparent);
  position: relative;
  overflow: hidden;
}
.ornament .rule::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
  transform: translateX(-100%);
  animation: ruleShine 5.5s var(--ease) infinite;
}
.ornament .rule:last-child::after { animation-delay: .3s; }
@keyframes ruleShine { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }
.ornament .mark { width: clamp(46px, 13vw, 76px); flex: none; color: var(--gold); animation: markSpin 22s linear infinite; }
@keyframes markSpin { to { transform: rotate(360deg); } }
.ornament.on-light .rule { background: linear-gradient(90deg, transparent, rgba(138, 98, 36, .5), transparent); }
.ornament.on-light .mark { color: var(--gold-deep); }

.divider-crest { position: relative; padding-block: clamp(3.5rem, 12vw, 6rem); text-align: center; overflow: hidden; }
.divider-crest::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: min(130vw, 620px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(187, 152, 94, .16), transparent 62%);
  pointer-events: none;
}
.divider-crest .crest-img { position: relative; width: clamp(96px, 26vw, 148px); margin-inline: auto; opacity: .95; }
.divider-crest .crest-word {
  position: relative;
  margin-top: 1.4rem;
  font-family: var(--f-script);
  font-size: clamp(2.1rem, 9vw, 3.6rem);
  line-height: 1;
  color: var(--gold-light);
}
.divider-crest .crest-note {
  position: relative;
  margin-top: .9rem;
  font-size: .68rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

/* ---------- 10. Sobre ---------- */
.about-grid { display: grid; gap: clamp(3.6rem, 11vw, 4.6rem); }

.about-media { position: relative; padding: 18px 18px 0 0; }
.about-media .frame-line {
  position: absolute;
  left: -14px; top: 0;
  right: 46px; bottom: 46px;
  border: 1px solid rgba(187, 152, 94, .38);
  border-radius: var(--r-md);
  pointer-events: none;
}

.shot { position: relative; overflow: hidden; border-radius: var(--r-md); isolation: isolate; }
.shot img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.6s var(--ease-out); }
.shot:hover img { transform: scale(1); }
.shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 9, 8, .34), transparent 46%);
  pointer-events: none;
}

.shot-main { aspect-ratio: 4 / 5; box-shadow: 0 30px 70px -34px rgba(0, 0, 0, .95); }
.shot-main img { object-position: 50% 14%; }

.about-caption {
  position: absolute;
  z-index: 3;
  left: 0; right: 46px;
  bottom: 0;
  transform: translateY(50%);
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 0 1rem;
}
.about-caption .cap-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-deep), transparent); }

.badge-float {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 8%;
  padding: .95rem 1.25rem;
  background: rgba(11, 9, 8, .84);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(187, 152, 94, .35);
  border-radius: var(--r-md);
  text-align: center;
}
.badge-float .stars-mini { display: flex; justify-content: center; gap: 2px; margin-bottom: .45rem; color: var(--gold); }
.badge-float .stars-mini svg { width: 10px; height: 10px; }
.badge-float b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
}
.badge-float span {
  display: block;
  margin-top: .35rem;
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

.about-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.28rem, 4.8vw, 1.7rem);
  line-height: 1.5;
  color: var(--gold-light);
  border-left: 1px solid rgba(187, 152, 94, .4);
  padding-left: 1.5rem;
}

.signature { font-family: var(--f-script); font-size: 2.4rem; color: var(--gold-light); line-height: 1; }
.signature-row { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.signature-role { font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--paper-faint); }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.05fr; align-items: center; gap: 4.6rem; }
}

/* ---------- 11. Credenciais ---------- */
.creds {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: linear-gradient(120deg, rgba(187, 152, 94, .30), rgba(187, 152, 94, .06));
  border: 1px solid rgba(187, 152, 94, .22);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cred {
  position: relative;
  background: linear-gradient(165deg, #16110D, var(--noir));
  padding: 2rem 1.1rem 1.8rem;
  text-align: center;
  overflow: hidden;
}
.cred::before {
  content: "";
  position: absolute;
  left: 50%; top: -60%;
  width: 150%; aspect-ratio: 1;
  transform: translateX(-50%) scale(.5);
  background: radial-gradient(circle, rgba(187, 152, 94, .20), transparent 62%);
  opacity: 0;
  transition: opacity .6s var(--ease), transform .8s var(--ease-out);
  pointer-events: none;
}
.cred:hover::before { opacity: 1; transform: translateX(-50%) scale(1); }

.cred .cred-icon {
  width: 26px; height: 26px;
  margin: 0 auto .85rem;
  color: var(--gold);
  opacity: .85;
  transition: transform .6s var(--ease-out), color var(--t-mid) var(--ease);
}
.cred:hover .cred-icon { transform: translateY(-3px) rotate(8deg); color: var(--gold-pale); }

.cred b {
  position: relative;
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2rem, 8vw, 2.7rem);
  font-weight: 300;
  line-height: 1;
  background: var(--gold-grad);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldFlow 11s linear infinite;
}
.cred .cred-label {
  position: relative;
  display: block;
  margin-top: .7rem;
  font-size: .55rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper-faint);
  line-height: 1.7;
}
.cred .cred-rule {
  position: relative;
  display: block;
  width: 22px; height: 1px;
  margin: .9rem auto 0;
  background: var(--gold-deep);
  transition: width .6s var(--ease-out);
}
.cred:hover .cred-rule { width: 44px; }

@media (min-width: 860px) { .creds { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 12. Procedimentos ---------- */
.proc-head { display: grid; gap: 1.4rem; margin-bottom: clamp(2.2rem, 7vw, 3.4rem); }
@media (min-width: 900px) { .proc-head { grid-template-columns: 1fr auto; align-items: end; } }

.proc-grid { display: grid; gap: 1.1rem; }
@media (min-width: 680px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .proc-grid { grid-template-columns: repeat(3, 1fr); gap: 1.3rem; } }

.proc-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  background: var(--noir-2);
  min-height: 340px;
  transition: transform .7s var(--ease-out), box-shadow .7s var(--ease-out);
}
@media (min-width: 1040px) {
  .proc-card { min-height: 390px; }
  .proc-card.is-tall { min-height: 470px; }
}
.proc-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  transition: transform 1.6s var(--ease-out), filter .7s var(--ease);
  filter: saturate(.8) brightness(.74);
}
.proc-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9, 7, 6, .95) 6%, rgba(9, 7, 6, .6) 44%, rgba(9, 7, 6, .2) 80%);
  transition: background .6s var(--ease);
}
.proc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .95); }
.proc-card:hover img { transform: scale(1); filter: saturate(.95) brightness(.84); }

.proc-card .pc-frame {
  position: absolute;
  z-index: 2;
  inset: 12px;
  border: 1px solid rgba(246, 241, 233, .16);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
  transition: inset .6s var(--ease-out), border-color .6s var(--ease);
}
.proc-card:hover .pc-frame { inset: 18px; border-color: rgba(187, 152, 94, .55); }

.proc-card .pc-body {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.1rem 1.8rem 2rem;
}
.proc-card .pc-num {
  position: absolute;
  top: 1.7rem; left: 1.7rem;
  z-index: 3;
  font-size: .58rem;
  letter-spacing: .26em;
  color: var(--gold-soft);
}
.proc-card .pc-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 5.4vw, 1.95rem);
  line-height: 1.12;
  color: var(--paper);
  transition: color var(--t-mid) var(--ease);
}
.proc-card:hover .pc-title { color: var(--gold-pale); }
.proc-card .pc-desc { margin-top: .55rem; font-size: .87rem; line-height: 1.6; color: var(--paper-soft); max-width: 34ch; }
.proc-card .pc-go {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.proc-card .pc-go svg { width: 13px; }
.proc-card:hover .pc-go { gap: 1rem; color: var(--gold-pale); }

.proc-card .pc-tape {
  position: absolute;
  z-index: 3;
  top: 1.4rem; right: 1.4rem;
  padding: .3rem .62rem;
  font-size: .46rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(246, 241, 233, .6);
  border: 1px solid rgba(246, 241, 233, .2);
  border-radius: 999px;
  background: rgba(11, 9, 8, .55);
  backdrop-filter: blur(6px);
}

/* cartões simples */
.card-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  position: relative;
  padding: 1.95rem 1.6rem 2.1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(34, 27, 21, .55), rgba(11, 9, 8, .2));
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease-out), border-color var(--t-mid) var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.card:hover { transform: translateY(-6px); border-color: rgba(187, 152, 94, .38); }
.card:hover::after { transform: scaleX(1); }
.card h3 { font-size: 1.35rem; margin-bottom: .55rem; color: var(--paper); }
.card p { font-size: .9rem; color: var(--paper-soft); }
.card .card-num { font-size: .6rem; letter-spacing: .24em; color: var(--gold-deep); display: block; margin-bottom: 1.1rem; }

/* ---------- 13. Ritual com aparelho animado ---------- */
.ritual-wrap { position: relative; padding-left: var(--rail-pad, 3.6rem); --rail-x: 30px; }

.ritual-rail { position: absolute; left: var(--rail-x, 30px); top: 0; bottom: 0; width: 2px; }
.ritual-rail .rail-bg { position: absolute; inset: 0; background: var(--line-dark); }
.ritual-rail .rail-fill {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: calc(var(--p, 0) * 100%);
  background: linear-gradient(180deg, rgba(187, 152, 94, .18), var(--gold) 38%, var(--gold-pale));
  box-shadow: 0 0 14px rgba(187, 152, 94, .6);
}
.ritual-rail.on-light .rail-bg { background: var(--line-light); }

.lash-tool {
  position: absolute;
  left: 1px;
  top: calc(var(--p, 0) * 100%);
  width: 58px;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .75));
  pointer-events: none;
}
.lash-tool svg { width: 100%; height: auto; overflow: visible; }
.lash-tool .tool-body { animation: toolTilt 3.6s var(--ease) infinite alternate; transform-origin: 62% 82%; }
@keyframes toolTilt { from { transform: rotate(-6deg); } to { transform: rotate(4deg); } }

.lash-tool .tool-glow { transform-origin: center; animation: toolGlow 1.7s var(--ease) infinite; }
@keyframes toolGlow {
  0%, 100% { opacity: .3; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1.4); }
}
.lash-tool .spark { animation: sparkFloat 2.6s var(--ease) infinite; transform-origin: center; }
.lash-tool .spark:nth-of-type(2) { animation-delay: .6s; }
.lash-tool .spark:nth-of-type(3) { animation-delay: 1.2s; }
@keyframes sparkFloat {
  0% { opacity: 0; transform: translate(0, 0) scale(.3); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(6px, -16px) scale(1); }
}

.ritual { position: relative; display: grid; gap: 0; }
.ritual-step { position: relative; padding: 2rem 0; }
.ritual-step::before {
  content: "";
  position: absolute;
  left: calc(var(--rail-x, 30px) - var(--rail-pad, 3.6rem));
  top: 2.15rem;
  margin-left: -4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--noir);
  border: 1px solid var(--gold-deep);
  transition: background-color .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.ritual-step.is-active::before {
  background: var(--gold);
  border-color: var(--gold-pale);
  box-shadow: 0 0 0 6px rgba(187, 152, 94, .16);
}
.ritual-step .step-idx {
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  transition: color .5s var(--ease);
}
.ritual-step.is-active .step-idx { color: var(--gold); }
.ritual-step h3 { font-size: 1.45rem; margin: .65rem 0; transition: color .5s var(--ease); }
.ritual-step p { font-size: .92rem; color: var(--paper-soft); max-width: 54ch; }
.ritual-step.is-active h3 { color: var(--gold-light); }

@media (min-width: 900px) {
  .ritual-wrap { --rail-x: 36px; --rail-pad: 4.2rem; }
  .lash-tool { width: 74px; }
  .ritual-step h3 { font-size: 1.6rem; }
}

.ritual.on-light .ritual-step::before { background: var(--cream); }
.ritual.on-light .ritual-step p { color: var(--ink-soft); }
.ritual.on-light .ritual-step.is-active h3 { color: var(--gold-deep); }

/* ---------- 14. Especificações ---------- */
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  overflow: hidden;
}
.specs > div { background: var(--noir-2); padding: 1.55rem 1.2rem; text-align: center; }
.specs dt { font-size: .55rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); }
.specs dd { margin-top: .5rem; font-family: var(--f-display); font-size: 1.3rem; color: var(--paper); line-height: 1.2; }
@media (min-width: 760px) { .specs { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 15. Listas ---------- */
.check-list { display: grid; gap: .85rem; }
.check-list li { position: relative; padding-left: 1.9rem; font-size: .95rem; color: var(--paper-soft); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 8px; height: 8px;
  background: var(--gold-grad);
  transform: rotate(45deg);
  border-radius: 1px;
}
.check-list.on-light li { color: var(--ink-soft); }

/* ---------- 16. Acordeão ---------- */
.accordion { border-top: 1px solid var(--line-dark); text-align: left; }
.acc-item { border-bottom: 1px solid var(--line-dark); }
.acc-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.45rem 0;
  text-align: left;
  font-family: var(--f-display);
  font-size: 1.2rem;
  line-height: 1.32;
  color: var(--paper);
  transition: color var(--t-fast) var(--ease);
}
.acc-btn:hover { color: var(--gold-light); }
.acc-icon { position: relative; flex: none; width: 16px; height: 16px; margin-top: .35rem; }
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 16px; height: 1px;
  background: var(--gold);
  transition: transform .45s var(--ease-out);
}
.acc-icon::after { transform: rotate(90deg); }
.acc-item.is-open .acc-icon::after { transform: rotate(0deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-out); }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p { font-size: .95rem; color: var(--paper-soft); padding-bottom: 1.3rem; max-width: 62ch; }
.accordion.on-light { border-top-color: var(--line-light); }
.accordion.on-light .acc-item { border-bottom-color: var(--line-light); }
.accordion.on-light .acc-btn { color: var(--ink); }
.accordion.on-light .acc-btn:hover { color: var(--gold-deep); }
.accordion.on-light .acc-panel p { color: var(--ink-soft); }

/* ---------- 17. Contato ---------- */
.contact-grid { display: grid; gap: 2.4rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; } }

.info-list { display: grid; gap: 1.65rem; }
.info-list li { display: grid; gap: .4rem; padding-bottom: 1.65rem; border-bottom: 1px solid var(--line-dark); }
.info-list dt, .info-list .k { font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); }
.info-list .v { font-family: var(--f-display); font-size: 1.28rem; line-height: 1.4; color: var(--paper); }
.info-list a.v:hover { color: var(--gold-light); }

.map-frame {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  overflow: hidden;
  filter: grayscale(1) contrast(1.05) brightness(.82);
  transition: filter var(--t-mid) var(--ease);
}
.map-frame:hover { filter: grayscale(.35) contrast(1) brightness(.95); }
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ---------- 18. Prova social ---------- */
.rating-band { display: flex; flex-direction: column; align-items: center; gap: .9rem; text-align: center; }
.stars { display: flex; gap: .3rem; color: var(--gold); }
.stars svg { width: 20px; height: 20px; animation: starIn .5s var(--ease-out) backwards; animation-delay: calc(var(--i, 0) * .09s); }
@keyframes starIn { from { opacity: 0; transform: scale(.4) rotate(-25deg); } }

/* ---------- 19. Rodapé ---------- */
.site-footer { background: var(--noir-2); border-top: 1px solid var(--line-dark); padding-block: clamp(3rem, 10vw, 4.6rem) 2rem; }
.footer-top { display: grid; gap: 2.4rem; }
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; } }

.footer-logo { width: 120px; margin-bottom: 1.3rem; }
.footer-col h4 {
  font-family: var(--f-sans);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.footer-col li + li { margin-top: .75rem; }
.footer-col a, .footer-col p { font-size: .92rem; color: var(--paper-soft); transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: .6rem;
  font-size: .72rem;
  color: var(--paper-faint);
  letter-spacing: .04em;
}
@media (min-width: 700px) { .footer-bottom { grid-auto-flow: column; justify-content: space-between; align-items: center; } }

/* ---------- 20. WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  z-index: 80;
  right: 1rem;
  bottom: 1rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0B0908;
  background: var(--gold-grad);
  background-size: 200% 100%;
  box-shadow: 0 12px 34px -10px rgba(187, 152, 94, .7);
  transform: scale(0);
  transition: transform .5s var(--ease-out), box-shadow var(--t-fast) var(--ease);
}
.wa-float.is-in { transform: scale(1); }
.wa-float:hover { box-shadow: 0 16px 42px -10px rgba(187, 152, 94, .95); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(187, 152, 94, .6);
  animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .9; } 70%, 100% { transform: scale(1.55); opacity: 0; } }
@media (min-width: 768px) { .wa-float { right: 1.6rem; bottom: 1.6rem; width: 60px; height: 60px; } }

/* ---------- 21. Páginas internas ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.8rem, 10vw, 4.6rem));
  padding-bottom: clamp(2.2rem, 7vw, 3.4rem);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%; top: -32%;
  width: min(160vw, 1000px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(187, 152, 94, .17), transparent 62%);
  pointer-events: none;
}
.page-hero .ghost-num {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: clamp(11rem, 40vw, 24rem);
  line-height: .8;
  color: rgba(187, 152, 94, .055);
  pointer-events: none;
  user-select: none;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero .eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex: none;
}
.page-hero .lead { margin-inline: auto; }
.page-hero .hero-actions { justify-content: center; }

.crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.crumbs a:hover { color: var(--gold-light); }
.crumbs span { color: var(--gold-deep); }

.hero-shot { position: relative; border-radius: var(--r-lg); overflow: hidden; isolation: isolate; }
.hero-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.85) brightness(.8);
  transform: scale(1.05);
  transition: transform 1.6s var(--ease-out);
}
.hero-shot:hover img { transform: scale(1); }
@media (min-width: 760px) { .hero-shot img { aspect-ratio: 21 / 9; } }
.hero-shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 9, 8, .74), rgba(11, 9, 8, .05) 58%);
  pointer-events: none;
}
.hero-shot .shot-frame {
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(246, 241, 233, .18);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}

.img-note {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .9rem;
  font-size: .5rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(246, 241, 233, .72);
  background: rgba(11, 9, 8, .7);
  border: 1px solid rgba(246, 241, 233, .18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.img-note::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  animation: notePulse 2.4s var(--ease) infinite;
}
@keyframes notePulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@media (max-width: 430px) { .img-note { font-size: .43rem; letter-spacing: .1em; padding: .4rem .7rem; } }

.cta-band {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid rgba(187, 152, 94, .28);
  background: radial-gradient(120% 140% at 50% 0%, rgba(187, 152, 94, .18), transparent 60%), var(--noir-2);
  padding: clamp(2.2rem, 8vw, 3.8rem) clamp(1.4rem, 6vw, 3rem);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: 50%; top: -40%;
  width: 120%; aspect-ratio: 1;
  transform: translateX(-50%);
  background: conic-gradient(from 0deg, transparent, rgba(187, 152, 94, .12), transparent 40%);
  animation: markSpin 26s linear infinite;
  pointer-events: none;
}
.cta-band > * { position: relative; }

/* ---------- 22. Revelação no scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal="left"] { transform: translateX(-26px); }
[data-reveal="right"] { transform: translateX(26px); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal].is-in { opacity: 1; transform: none; }

.reveal-mask { overflow: hidden; display: block; }
.reveal-mask > * {
  display: block;
  transform: translateY(102%);
  transition: transform 1.05s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-mask.is-in > * { transform: none; }

/* ---------- 23. Utilidades ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-veil {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--noir);
  pointer-events: none;
  animation: veilOut 1s var(--ease-out) forwards;
}
@keyframes veilOut { to { opacity: 0; visibility: hidden; } }

.hide-sm { display: none; }
@media (min-width: 900px) { .hide-sm { display: block; } }

@media (min-width: 900px) {
  .nav-desk { display: flex; align-items: center; gap: 2rem; }
  .nav-desk > li > a {
    position: relative;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--paper-soft);
    padding-block: .4rem;
    transition: color var(--t-fast) var(--ease);
  }
  .nav-desk > li > a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease-out);
  }
  .nav-desk > li > a:hover { color: var(--paper); }
  .nav-desk > li > a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-desk .is-current { color: var(--gold-light); }

  .header-cta { display: inline-flex; }
  .burger { display: none; }

  .has-sub { position: relative; }
  .submenu {
    position: absolute;
    left: -1.2rem; top: 100%;
    min-width: 280px;
    padding: .8rem;
    margin-top: .9rem;
    background: rgba(16, 13, 11, .94);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line-dark);
    border-radius: var(--r-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .35s var(--ease), transform .35s var(--ease-out), visibility .35s;
  }
  .has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: none; }
  .submenu a {
    display: block;
    padding: .58rem .8rem;
    font-size: .84rem;
    color: var(--paper-soft);
    border-radius: var(--r-sm);
    transition: color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
  }
  .submenu a:hover { color: var(--gold-light); background: rgba(187, 152, 94, .1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal], .reveal-mask > * { opacity: 1 !important; transform: none !important; }
  .hero-figure { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
