/* ============================================================
   ERIKA BORGES · SAÚDE E ESTÉTICA
   Quiet luxury · champagne, nude, dourado rosé, espresso
   ============================================================ */

:root {
  --ivory: #F6F0E7;
  --cream: #EFE6D8;
  --sand: #E4D4C0;
  --champagne: #D9C3A9;
  --gold: #C29A74;
  --bronze: #A97F5B;
  --copper: #8A6244;
  --espresso: #2C2118;
  --cocoa: #45362A;
  --ink: #201811;
  --white: #FDFBF7;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Avenir Next", sans-serif;

  --nav-h: 76px;
  --radius: 22px;
  --ease-lux: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

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

/* grain sutil em todo o site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.08;
  letter-spacing: .01em;
}

em, .it { font-style: italic; }

.wrap {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- rótulos e micro tipografia ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 400;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin-bottom: 20px;
}
.section-title em { color: var(--bronze); }

.lead {
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  max-width: 56ch;
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 18px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .45s var(--ease-lux);
  position: relative;
  overflow: hidden;
}
.btn-solid {
  background: linear-gradient(120deg, var(--gold), var(--bronze));
  color: var(--white);
  box-shadow: 0 14px 32px -14px rgba(138, 98, 68, .55);
}
.btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px -16px rgba(138, 98, 68, .65);
}
.btn-ghost {
  border-color: rgba(169, 127, 91, .5);
  color: var(--copper);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(194, 154, 116, .12);
  border-color: var(--bronze);
}
.btn-light {
  border-color: rgba(246, 240, 231, .45);
  color: var(--ivory);
}
.btn-light:hover { background: rgba(246, 240, 231, .12); }

/* brilho que atravessa o botão sólido */
.btn-solid::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg);
  animation: btnshine 4.5s ease infinite;
}
@keyframes btnshine {
  0%, 60% { left: -80%; }
  100% { left: 160%; }
}

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .5s ease, box-shadow .5s ease, backdrop-filter .5s ease;
}
.nav.scrolled {
  background: rgba(246, 240, 231, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(169, 127, 91, .18);
}
.nav-inner {
  width: min(1180px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 46px; width: auto; }
.nav.on-dark:not(.scrolled) .nav-logo img { filter: brightness(1.25); }

.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cocoa);
  position: relative;
  padding: 6px 0;
}
.nav.on-dark:not(.scrolled) .nav-links a { color: rgba(246,240,231,.85); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease-lux);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }

/* hamburguer */
.nav-burger {
  width: 44px; height: 44px;
  border: 1px solid rgba(169,127,91,.4);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 70;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.6px;
  background: var(--copper);
  position: relative;
  transition: background .3s;
}
.nav.on-dark:not(.scrolled) .nav-burger span,
.nav.on-dark:not(.scrolled) .nav-burger span::before,
.nav.on-dark:not(.scrolled) .nav-burger span::after { background: var(--ivory); }
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1.6px;
  background: var(--copper);
  transition: transform .4s var(--ease-lux), top .4s var(--ease-lux), background .3s;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
body.menu-open .nav-burger span { background: transparent !important; }
body.menu-open .nav-burger span::before { top: 0; transform: rotate(45deg); background: var(--ivory) !important; }
body.menu-open .nav-burger span::after { top: 0; transform: rotate(-45deg); background: var(--ivory) !important; }

/* menu overlay mobile */
.menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(194,154,116,.25), transparent 55%),
    linear-gradient(160deg, #241a12, #38291d 70%, #241a12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8% 50px;
  clip-path: circle(0% at calc(100% - 54px) 38px);
  transition: clip-path .8s var(--ease-lux);
  visibility: hidden;
}
body.menu-open .menu {
  clip-path: circle(150% at calc(100% - 54px) 38px);
  visibility: visible;
}
body.menu-open { overflow: hidden; }
body.menu-open .nav {
  z-index: 70;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.menu-open .nav .nav-logo img { filter: brightness(1.25); }
body.menu-open .nav-burger { border-color: rgba(246, 240, 231, .4); }
.menu a.menu-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.5vw, 3.2rem);
  color: var(--ivory);
  padding: 8px 0;
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s var(--ease-lux), color .3s;
}
.menu a.menu-link small {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
}
.menu a.menu-link:hover { color: var(--champagne); font-style: italic; }
body.menu-open .menu a.menu-link { opacity: 1; transform: translateY(0); }
body.menu-open .menu a.menu-link:nth-child(1) { transition-delay: .15s; }
body.menu-open .menu a.menu-link:nth-child(2) { transition-delay: .22s; }
body.menu-open .menu a.menu-link:nth-child(3) { transition-delay: .29s; }
body.menu-open .menu a.menu-link:nth-child(4) { transition-delay: .36s; }
body.menu-open .menu a.menu-link:nth-child(5) { transition-delay: .43s; }
.menu-foot {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246,240,231,.45);
}

/* ============================================================
   HERO HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 70% 30%, rgba(190, 138, 92, .55), transparent 60%),
    radial-gradient(70% 55% at 20% 80%, rgba(120, 82, 54, .5), transparent 65%),
    linear-gradient(155deg, #1d140d 0%, #3a2a1c 45%, #57402b 75%, #241a12 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 70% at 50% 100%, rgba(18, 12, 8, .75), transparent 55%);
  pointer-events: none;
}

/* palavra gigante atrás dela */
.hero-word {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 21vw, 15rem);
  letter-spacing: .06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 195, 169, .34);
  white-space: nowrap;
  z-index: 1;
  animation: heroWord 2s var(--ease-lux) both .2s;
}
.hero-word b {
  font-weight: 500;
  color: rgba(217, 195, 169, .16);
  -webkit-text-stroke: 0;
}
@keyframes heroWord {
  from { opacity: 0; letter-spacing: .3em; }
  to { opacity: 1; letter-spacing: .06em; }
}

.hero-figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 118vw);
  z-index: 2;
  animation: heroFig 1.6s var(--ease-lux) both .35s;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
}
@keyframes heroFig {
  from { opacity: 0; transform: translateX(-50%) translateY(60px) scale(.97); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, 92%);
  margin-inline: auto;
  padding-bottom: clamp(46px, 8vh, 90px);
  color: var(--ivory);
}
.hero-kicker {
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 1.2s var(--ease-lux) both .7s;
}
.hero-kicker::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  font-weight: 500;
  margin: 16px 0 18px;
  max-width: 13ch;
  animation: fadeUp 1.2s var(--ease-lux) both .85s;
}
.hero h1 em { color: var(--champagne); }
.hero p.hero-sub {
  max-width: 46ch;
  color: rgba(246, 240, 231, .8);
  font-size: clamp(.95rem, 2.5vw, 1.08rem);
  animation: fadeUp 1.2s var(--ease-lux) both 1s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: fadeUp 1.2s var(--ease-lux) both 1.15s;
}
.hero-cred {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(246,240,231,.55);
  animation: fadeUp 1.2s var(--ease-lux) both 1.3s;
}
.hero-cred b { color: var(--champagne); font-weight: 400; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* sparkles */
.spark {
  position: absolute;
  z-index: 2;
  width: 22px;
  color: var(--champagne);
  opacity: 0;
  animation: sparkle 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50% { opacity: .95; transform: scale(1) rotate(90deg); }
}

/* seta de scroll */
.hero-scroll {
  position: absolute;
  right: 5%;
  bottom: 30px;
  z-index: 3;
  width: 1px;
  height: 64px;
  background: rgba(246,240,231,.25);
  overflow: hidden;
}
.hero-scroll::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--champagne);
  animation: scrollhint 2.2s ease-in-out infinite;
}
@keyframes scrollhint {
  0% { top: -40%; }
  100% { top: 110%; }
}

/* ============================================================
   MARQUEE / FAIXA
   ============================================================ */
.marquee {
  background: var(--espresso);
  color: var(--champagne);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(217,195,169,.15);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: .12em;
  white-space: nowrap;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 44px;
}
.marquee span::after { content: "✦"; font-size: .7rem; font-style: normal; color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */
section { position: relative; }
.section { padding: clamp(80px, 12vw, 140px) 0; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre-grid {
  display: grid;
  gap: 48px;
}
.sobre-photo {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(76, 55, 38, .5);
}
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre-badge {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(32, 24, 17, .72);
  backdrop-filter: blur(8px);
  color: var(--ivory);
  border: 1px solid rgba(217,195,169,.35);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(169, 127, 91, .25);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 500;
  color: var(--copper);
  line-height: 1;
}
.stat b sup { font-size: .5em; color: var(--gold); }
.stat span {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ============================================================
   DIVISÓRIA ORNAMENTAL
   ============================================================ */
.divider-lux {
  padding: clamp(40px, 7vw, 70px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: transparent;
}
.divider-lux .line {
  height: 1px;
  flex: 1;
  max-width: 320px;
  background: linear-gradient(90deg, transparent, var(--gold));
  position: relative;
  overflow: visible;
}
.divider-lux .line.rev { background: linear-gradient(270deg, transparent, var(--gold)); }
.divider-lux .line::after {
  content: "";
  position: absolute;
  top: -1.5px;
  width: 46px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 210, .95), transparent);
  filter: blur(1px);
  animation: beamRun 3.4s ease-in-out infinite;
}
.divider-lux .line.rev::after { animation: beamRunRev 3.4s ease-in-out infinite; }
@keyframes beamRun { 0% { left: -15%; opacity: 0; } 30% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes beamRunRev { 0% { right: -15%; opacity: 0; } 30% { opacity: 1; } 100% { right: 100%; opacity: 0; } }
.divider-lux .gem {
  width: 54px;
  height: 54px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 127, 91, .4);
  border-radius: 50%;
  transform: rotate(45deg);
  animation: gemSpin 14s linear infinite;
}
.divider-lux .gem svg { width: 22px; transform: rotate(-45deg); color: var(--bronze); }
@keyframes gemSpin {
  0% { transform: rotate(45deg); }
  50% { transform: rotate(225deg); }
  100% { transform: rotate(405deg); }
}

/* ============================================================
   PROCEDIMENTOS · EMPILHAMENTO
   ============================================================ */
.stack-zone { position: relative; }
.stack-card {
  position: sticky;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  margin-bottom: 26px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 -18px 50px -22px rgba(44, 33, 24, .38);
  transition: transform .35s var(--ease-lux);
  will-change: transform;
}
.stack-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .2em;
  opacity: .65;
  margin-bottom: 10px;
}
.stack-card h3 {
  font-size: clamp(1.9rem, 6vw, 3rem);
  margin-bottom: 12px;
  color: inherit;
}
.stack-card p {
  max-width: 52ch;
  opacity: .82;
  font-size: .98rem;
  margin-bottom: 26px;
}
.stack-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
}
.stack-card .card-link svg { width: 30px; transition: transform .4s var(--ease-lux); }
.stack-card:hover .card-link svg { transform: translateX(8px); }
.stack-card .card-glyph {
  position: absolute;
  top: 26px;
  right: 26px;
  width: clamp(64px, 10vw, 96px);
  opacity: .5;
}

/* variações de cor dos cards */
.card-cream { background: linear-gradient(150deg, #F3EBDE, #E7D9C5); color: var(--cocoa); }
.card-cream h3 { color: var(--espresso); }
.card-cream .card-link { color: var(--copper); }
.card-sand { background: linear-gradient(150deg, #E5D3BC, #D6BD9F); color: #3d2e21; }
.card-sand h3 { color: #2f2317; }
.card-sand .card-link { color: #7c5a3c; }
.card-bronze { background: linear-gradient(150deg, #B98F68, #9A7350); color: #fbf5ec; }
.card-bronze h3 { color: #fff8ee; }
.card-bronze .card-link { color: #f5e6d3; }
.card-cocoa { background: linear-gradient(150deg, #57422f, #3c2d1f); color: #efe4d4; }
.card-cocoa h3 { color: #f6edde; }
.card-cocoa .card-link { color: var(--champagne); }
.card-espresso { background: linear-gradient(150deg, #392b1e, #241a12); color: #e9dcc9; }
.card-espresso h3 { color: #f3e9d8; }
.card-espresso .card-link { color: var(--champagne); }
.card-gold { background: linear-gradient(150deg, #CBA57E, #B08657); color: #33251a; }
.card-gold h3 { color: #2b1f14; }
.card-gold .card-link { color: #5c4229; }

/* ============================================================
   ANIMAÇÃO DO APARELHO DE LASER
   ============================================================ */
.laser-stage {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(80% 90% at 75% 15%, rgba(194, 154, 116, .28), transparent 60%),
    linear-gradient(160deg, #2a1f15, #1d140d);
  padding: clamp(40px, 7vw, 80px) clamp(22px, 5vw, 70px);
  overflow: hidden;
  color: var(--ivory);
}
.laser-stage .eyebrow { color: var(--champagne); }
.laser-stage h3 {
  color: var(--ivory);
  font-size: clamp(1.8rem, 5.5vw, 2.8rem);
  max-width: 20ch;
  margin-bottom: 14px;
}
.laser-stage p { color: rgba(246,240,231,.72); max-width: 52ch; }
.laser-svg { width: 100%; height: auto; margin-top: 36px; display: block; }

/* aparelho desliza */
.laser-device { animation: laserSweep 6s var(--ease-lux) infinite; }
@keyframes laserSweep {
  0% { transform: translateX(0); }
  45% { transform: translateX(360px); }
  55% { transform: translateX(360px); }
  100% { transform: translateX(0); }
}
/* feixe pulsa */
.laser-beam { animation: laserSweep 6s var(--ease-lux) infinite, beamPulse .5s ease-in-out infinite alternate; transform-origin: center; }
@keyframes beamPulse { from { opacity: .45; } to { opacity: .95; } }
/* anel de luz na pele */
.laser-glow { animation: laserSweep 6s var(--ease-lux) infinite; }
.laser-glow ellipse { animation: glowPulse .5s ease-in-out infinite alternate; }
@keyframes glowPulse { from { opacity: .25; } to { opacity: .7; } }
/* pelos somem quando o aparelho passa */
.hair { animation: hairFade 6s ease infinite; transform-origin: bottom center; }
@keyframes hairFade {
  0%, 12% { opacity: 1; transform: scaleY(1); }
  30%, 78% { opacity: 0; transform: scaleY(.1); }
  92%, 100% { opacity: 1; transform: scaleY(1); }
}
.hair.h2 { animation-delay: .35s; }
.hair.h3 { animation-delay: .7s; }
.hair.h4 { animation-delay: 1.05s; }
.hair.h5 { animation-delay: 1.4s; }
.hair.h6 { animation-delay: 1.75s; }
/* brilhos que nascem na pele lisa */
.skin-spark { opacity: 0; animation: skinSpark 6s ease infinite; }
.skin-spark.s2 { animation-delay: .5s; }
.skin-spark.s3 { animation-delay: 1s; }
@keyframes skinSpark {
  0%, 38% { opacity: 0; transform: scale(.4); transform-origin: center; }
  48%, 70% { opacity: 1; transform: scale(1); }
  82%, 100% { opacity: 0; transform: scale(.4); }
}

/* ============================================================
   ANIMAÇÃO BOTOX (página toxina)
   ============================================================ */
.botox-svg { width: 100%; max-width: 520px; margin: 40px auto 0; display: block; }
.syringe { animation: syringeMove 5s var(--ease-lux) infinite; }
@keyframes syringeMove {
  0% { transform: translate(30px, -30px); opacity: 0; }
  12% { transform: translate(30px, -30px); opacity: 1; }
  35%, 60% { transform: translate(-46px, 46px); opacity: 1; }
  88% { transform: translate(30px, -30px); opacity: 1; }
  100% { transform: translate(30px, -30px); opacity: 0; }
}
.wrinkle { animation: wrinkleOut 5s ease infinite; }
@keyframes wrinkleOut {
  0%, 38% { opacity: .8; }
  60%, 100% { opacity: 0; }
}
.smoothline { animation: smoothIn 5s ease infinite; }
@keyframes smoothIn {
  0%, 45% { opacity: 0; }
  68%, 100% { opacity: .9; }
}
.botox-spark { opacity: 0; animation: skinSpark 5s ease infinite; }
.botox-spark.b2 { animation-delay: .4s; }

/* ============================================================
   RESULTADOS
   ============================================================ */
.section-dark {
  background:
    radial-gradient(70% 50% at 85% 0%, rgba(194,154,116,.16), transparent 60%),
    linear-gradient(175deg, #241a12, #33261a);
  color: #e9dcc9;
}
.section-dark .section-title, .section-dark h3 { color: var(--ivory); }
.section-dark .eyebrow { color: var(--champagne); }
.section-dark .lead { color: rgba(246,240,231,.72); }

.result-grid {
  display: grid;
  grid-template-columns: min(440px, 100%);
  justify-content: center;
  gap: 22px;
  margin-top: 50px;
}
.result-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.55);
}
.result-item img {
  width: 100%;
  transition: transform 1.2s var(--ease-lux);
}
.result-item:hover img { transform: scale(1.05); }
.result-item figcaption {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  background: rgba(32,24,17,.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(217,195,169,.25);
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* depoimentos */
.quote-row { display: grid; gap: 18px; margin-top: 46px; }
.quote {
  border: 1px solid rgba(217,195,169,.22);
  border-radius: var(--radius);
  padding: 30px 28px;
  background: rgba(246,240,231,.04);
  position: relative;
}
.quote .stars { color: var(--gold); letter-spacing: .3em; font-size: .8rem; margin-bottom: 14px; }
.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: #f0e6d5;
  line-height: 1.5;
}
.quote footer {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(246,240,231,.5);
}
.gbadge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  border: 1px solid rgba(217,195,169,.3);
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--champagne);
}
.gbadge b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--ivory); }

/* ============================================================
   LOCALIZAÇÃO / CTA FINAL
   ============================================================ */
.local-grid { display: grid; gap: 40px; }
.local-card {
  border: 1px solid rgba(169,127,91,.3);
  border-radius: var(--radius);
  padding: 34px 30px;
  background: linear-gradient(160deg, rgba(243,235,222,.9), rgba(228,212,192,.55));
}
.local-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--espresso);
  margin-bottom: 8px;
}
.local-card p { font-size: .95rem; }
.local-card + .local-card { margin-top: 16px; }
.local-list div { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(169,127,91,.18); }
.local-list div:last-child { border-bottom: 0; }
.local-list svg { width: 20px; flex: none; margin-top: 4px; color: var(--bronze); }

.cta-final {
  text-align: center;
  padding: clamp(90px, 14vw, 160px) 0;
  background-image:
    radial-gradient(60% 70% at 50% 100%, rgba(194, 154, 116, .25), transparent 65%),
    linear-gradient(180deg, rgba(30, 20, 12, .9), rgba(22, 15, 9, .84)),
    url("../assets/erika-brown.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, center 18%;
  background-repeat: no-repeat;
  color: var(--ivory);
  overflow: hidden;
  position: relative;
}
.cta-final h2 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  max-width: 18ch;
  margin: 0 auto 18px;
}
.cta-final h2 em { color: var(--champagne); }
.cta-final p { color: rgba(246,240,231,.7); max-width: 46ch; margin: 0 auto 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-foot {
  background: #1c130c;
  color: rgba(246,240,231,.6);
  padding: 60px 0 110px;
  font-size: .85rem;
}
.foot-grid { display: grid; gap: 34px; }
.foot-logo img { height: 60px; width: auto; filter: brightness(1.2); }
.foot-title {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.foot-grid a { display: block; padding: 5px 0; transition: color .3s; }
.foot-grid a:hover { color: var(--champagne); }
.foot-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(217,195,169,.12);
  font-size: .75rem;
  letter-spacing: .08em;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: rgba(246,240,231,.35);
}

/* WhatsApp flutuante */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #57d163, #23b33a);
  box-shadow: 0 16px 34px -10px rgba(35, 179, 58, .55);
  transition: transform .4s var(--ease-lux);
}
.wa-float:hover { transform: scale(1.08) rotate(6deg); }
.wa-float svg { width: 28px; color: #fff; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(87, 209, 99, .5);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============================================================
   PÁGINAS DE PROCEDIMENTO
   ============================================================ */
.proc-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(60px, 10vw, 110px)) 0 clamp(60px, 9vw, 100px);
  background:
    radial-gradient(80% 70% at 85% 10%, rgba(194, 154, 116, .4), transparent 60%),
    linear-gradient(160deg, #211710, #3b2b1c 70%, #2a1e13);
  color: var(--ivory);
  overflow: hidden;
}
.proc-hero .wrap { text-align: center; }
.proc-hero .crumbs {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(246,240,231,.5);
  margin-bottom: 26px;
}
.proc-hero .crumbs a:hover { color: var(--champagne); }
.proc-hero .hero-kicker { justify-content: center; }
.proc-hero .hero-kicker::after { content: ""; width: 36px; height: 1px; background: var(--gold); }
.proc-hero h1 {
  color: var(--ivory);
  font-size: clamp(2.6rem, 9vw, 5rem);
  max-width: 14ch;
  margin-inline: auto;
  margin-bottom: 18px;
}
.proc-hero h1 em { color: var(--champagne); }
.proc-hero .lead { color: rgba(246,240,231,.75); margin-inline: auto; }
.proc-hero .hero-actions { margin-top: 34px; justify-content: center; }
.proc-word {
  position: absolute;
  right: -2%;
  bottom: -12%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(6rem, 22vw, 15rem);
  color: rgba(217,195,169,.07);
  white-space: nowrap;
  pointer-events: none;
}

.benefit-grid {
  display: grid;
  gap: 34px 44px;
  margin-top: 52px;
  counter-reset: benefit;
}
.benefit {
  position: relative;
  border-top: 1px solid rgba(169, 127, 91, .32);
  padding: 24px 4px 6px;
  background: transparent;
  transition: border-color .5s ease;
}
.benefit::before {
  counter-increment: benefit;
  content: counter(benefit, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .18em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.benefit:hover { border-top-color: var(--gold); }
.benefit svg {
  position: absolute;
  top: 24px;
  right: 4px;
  width: 24px;
  color: var(--bronze);
  opacity: .75;
  transition: opacity .4s, transform .5s var(--ease-lux);
}
.benefit:hover svg { opacity: 1; transform: rotate(8deg); }
.benefit h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--espresso);
  margin-bottom: 8px;
}
.benefit p { font-size: .92rem; }

/* passos */
.steps { margin-top: 46px; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(169,127,91,.2);
}
.step:last-child { border-bottom: 0; }
.step .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--espresso);
  margin-bottom: 6px;
}
.step p { font-size: .95rem; max-width: 60ch; }

/* FAQ */
.faq { margin-top: 46px; }
.faq details {
  border-bottom: 1px solid rgba(169,127,91,.22);
  padding: 6px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--espresso);
  transition: color .3s;
}
.faq summary:hover { color: var(--copper); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform .4s var(--ease-lux);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 0 22px;
  max-width: 64ch;
  font-size: .95rem;
}

/* próxima página */
.next-proc {
  display: block;
  text-align: center;
  padding: clamp(60px, 9vw, 90px) 0;
  background: var(--cream);
  transition: background .5s;
}
.next-proc:hover { background: var(--sand); }
.next-proc small {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--bronze);
}
.next-proc .big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.6rem);
  color: var(--espresso);
  display: block;
  margin-top: 10px;
}
.next-proc:hover .big { font-style: italic; color: var(--copper); }

/* ============================================================
   BREAKPOINTS (mobile-first)
   ============================================================ */
@media (min-width: 640px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-row { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 900px) {
  :root { --nav-h: 88px; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; padding: 13px 26px; }
  .nav-burger { display: none; }
  .menu { display: none; }
  .nav-logo img { height: 54px; }

  .hero { align-items: center; }
  .hero-content { padding-bottom: 0; }
  .hero h1 { max-width: 12ch; }
  .hero-figure {
    left: auto;
    right: 1%;
    transform: none;
    width: min(46vw, 640px);
  }
  @keyframes heroFig {
    from { opacity: 0; transform: translateY(60px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .hero-word { top: 10%; left: 54%; }

  .sobre-grid { grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
  .local-grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .proc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
}

@media (max-width: 899px) {
  .hero { min-height: 100svh; }
  .hero-figure {
    bottom: auto;
    top: calc(var(--nav-h) + 10px);
    height: 58svh;
    width: auto;
    max-width: 96vw;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(180deg, #000 68%, rgba(0,0,0,.45) 84%, transparent 99%);
    mask-image: linear-gradient(180deg, #000 68%, rgba(0,0,0,.45) 84%, transparent 99%);
  }
  .hero-content { text-align: center; }
  .hero-kicker { justify-content: center; font-size: 10px; letter-spacing: .3em; }
  .hero .hero-kicker::before, .hero .hero-kicker::after { content: none; }
  .hero h1 { margin-inline: auto; }
  .hero p.hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-cred { justify-content: center; gap: 10px 22px; }
  .hero-word {
    top: calc(var(--nav-h) + 4svh);
    font-size: clamp(4.6rem, 26vw, 8rem);
  }
  .hero-content {
    position: relative;
    padding-top: calc(var(--nav-h) + 53svh);
    padding-bottom: 44px;
  }
  .hero::after {
    background: linear-gradient(180deg, transparent 26%, rgba(24, 16, 10, .45) 44%, rgba(24, 16, 10, .94) 62%);
  }
  .hero h1 { font-size: clamp(2.3rem, 10vw, 3.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
