/* ============================================================
   Studio Lilian Moreira — Pilates & Ballet Fitness · Curitiba
   Design: boutique de luxo · rosa magenta + verde menta
   Mobile first
   ============================================================ */

:root {
  --ivory: #FBF6F3;
  --ivory-2: #F7EEEA;
  --blush: #F8E4EF;
  --blush-2: #F3D3E5;
  --magenta: #B42A78;
  --magenta-deep: #8D1F5E;
  --magenta-ink: #5C1440;
  --mint: #3EC1B4;
  --mint-deep: #17897E;
  --mint-soft: #DDF3F0;
  --plum: #331222;
  --plum-soft: #6E4A5C;
  --white: #FFFFFF;
  --gold: #C9A26B;

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

  --shadow-soft: 0 20px 60px -20px rgba(140, 31, 94, .25);
  --shadow-card: 0 14px 44px -18px rgba(51, 18, 34, .28);
  --ease-lux: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--plum);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--magenta); color: #fff; }

/* ---------- grain / atmosphere ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ---------- typography helpers ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--mint-deep);
}
.kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
}

.title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 6.4vw, 3.6rem);
  line-height: 1.08;
  color: var(--magenta-ink);
  letter-spacing: -.01em;
}
.title em {
  font-style: italic;
  color: var(--magenta);
}
.title .script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
  color: var(--mint-deep);
  font-size: 1.18em;
  line-height: .6;
}

.lead {
  color: var(--plum-soft);
  font-size: 1.02rem;
  max-width: 56ch;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--magenta) 0%, var(--magenta-deep) 100%);
  box-shadow: 0 14px 34px -12px rgba(180, 42, 120, .55);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--mint-deep), var(--mint));
  opacity: 0;
  transition: opacity .5s var(--ease-lux);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(23, 137, 126, .5); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  color: var(--magenta-deep);
  border: 1px solid rgba(180, 42, 120, .35);
  background: transparent;
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--magenta);
  background: rgba(180, 42, 120, .06);
}

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .45s ease, box-shadow .45s ease, backdrop-filter .45s ease;
}
.header.scrolled,
.header.solid {
  background: rgba(251, 246, 243, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px -22px rgba(51, 18, 34, .35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .9rem;
}
.brand img { height: 46px; width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a:not(.btn) {
  position: relative;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--plum);
  padding-block: .3rem;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-lux);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { padding: .72rem 1.5rem; font-size: .7rem; }

.burger {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid rgba(180, 42, 120, .3);
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}
.burger span {
  position: relative;
  width: 18px; height: 1.5px;
  background: var(--magenta-deep);
  transition: background .3s;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 1.5px;
  background: var(--magenta-deep);
  transition: transform .4s var(--ease-lux);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: translateY(6px) rotate(45deg); }
.burger.open span::after { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--blush) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2.2rem 3rem;
  clip-path: circle(0% at calc(100% - 46px) 46px);
  transition: clip-path .8s var(--ease-lux);
  visibility: hidden;
}
.drawer.open {
  clip-path: circle(150% at calc(100% - 46px) 46px);
  visibility: visible;
}
.drawer a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--magenta-ink);
  padding-block: .7rem;
  border-bottom: 1px solid rgba(180, 42, 120, .14);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s var(--ease-lux);
}
.drawer.open a { opacity: 1; transform: none; }
.drawer.open a:nth-child(1) { transition-delay: .18s; }
.drawer.open a:nth-child(2) { transition-delay: .26s; }
.drawer.open a:nth-child(3) { transition-delay: .34s; }
.drawer.open a:nth-child(4) { transition-delay: .42s; }
.drawer.open a:nth-child(5) { transition-delay: .5s; }
.drawer.open a:nth-child(6) { transition-delay: .58s; }
.drawer a small {
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--mint-deep);
}
.drawer a.drawer-cta {
  margin-top: 2rem;
  border: 0;
  font-family: var(--font-body);
  font-size: .8rem;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  gap: .6rem;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(58% 42% at 12% 8%, rgba(62, 193, 180, .16) 0%, transparent 70%),
    radial-gradient(70% 55% at 88% 18%, rgba(180, 42, 120, .12) 0%, transparent 70%),
    linear-gradient(175deg, #FDF9F7 0%, var(--ivory) 45%, var(--blush) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  align-content: end;
  gap: 0;
  padding-top: 6.2rem;
}

.hero-copy {
  order: 2;
  text-align: center;
  padding-bottom: 3.4rem;
}
.hero-copy .kicker { justify-content: center; }
.hero-copy .kicker::before { display: none; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 9.4vw, 5.2rem);
  line-height: 1.02;
  color: var(--magenta-ink);
  margin-block: .9rem .4rem;
}
.hero-title .script {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: .92em;
  color: var(--magenta);
  transform: rotate(-3deg);
}
.hero-sub {
  color: var(--plum-soft);
  max-width: 46ch;
  margin-inline: auto;
  font-size: 1rem;
}
.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

/* avaliação inline, sem caixa */
.hero-rating {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem .8rem;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--plum-soft);
}
.hero-rating .stars {
  display: inline-flex;
  gap: .15rem;
  color: var(--gold);
}
.hero-rating .stars svg { width: 14px; height: 14px; }
.hero-rating b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--magenta-deep);
}

/* ---- palco da bailarina (fundo do retrato) ---- */
.hero-figure {
  order: 1;
  position: relative;
  margin-inline: auto;
  width: min(82vw, 400px);
  padding-top: 1.6rem;
  padding-bottom: 4rem;
}

.hero-stage {
  position: absolute;
  left: 50%;
  top: 2%;
  width: 104%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}
.hero-stage i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: block;
}
.stage-halo {
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,.95) 0%, rgba(255,255,255,.7) 26%, rgba(248,228,239,.7) 48%, rgba(221,243,240,.42) 66%, transparent 76%);
}
.stage-ring-solid {
  inset: 9% !important;
  border: 1px solid rgba(180, 42, 120, .16);
}
.stage-ring-dash {
  inset: 16% !important;
  border: 1px dashed rgba(23, 137, 126, .3);
  animation: spin 60s linear infinite;
}
.stage-sweep {
  inset: 3% !important;
  background: conic-gradient(from 200deg,
    transparent 0 42%,
    rgba(62, 193, 180, .55) 62%,
    rgba(180, 42, 120, .5) 78%,
    transparent 92%);
  -webkit-mask: radial-gradient(circle, transparent 66%, #000 67%);
  mask: radial-gradient(circle, transparent 66%, #000 67%);
  animation: spin 24s linear infinite;
}
.stage-sweep-2 {
  inset: 11% !important;
  background: conic-gradient(from 40deg,
    transparent 0 55%,
    rgba(201, 162, 107, .45) 74%,
    transparent 88%);
  -webkit-mask: radial-gradient(circle, transparent 78%, #000 79%);
  mask: radial-gradient(circle, transparent 78%, #000 79%);
  animation: spin 34s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* faíscas subindo */
.spark {
  position: absolute;
  z-index: 1;
  font-size: .85rem;
  line-height: 1;
  color: var(--mint);
  opacity: 0;
  pointer-events: none;
  animation: rise 11s ease-in-out infinite;
}
.spark:nth-of-type(1) { left: 6%;  bottom: 22%; animation-delay: 0s; }
.spark:nth-of-type(2) { left: 26%; bottom: 8%;  animation-delay: 2.4s; color: var(--magenta); }
.spark:nth-of-type(3) { left: 52%; bottom: 16%; animation-delay: 4.8s; font-size: .65rem; }
.spark:nth-of-type(4) { left: 78%; bottom: 6%;  animation-delay: 1.4s; color: var(--gold); }
.spark:nth-of-type(5) { left: 90%; bottom: 26%; animation-delay: 6.2s; font-size: .7rem; }
.spark:nth-of-type(6) { left: 40%; bottom: 30%; animation-delay: 8.4s; color: var(--magenta); font-size: .6rem; }
@keyframes rise {
  0%   { transform: translateY(0) scale(.6) rotate(0deg); opacity: 0; }
  12%  { opacity: .9; }
  60%  { opacity: .75; }
  100% { transform: translateY(-190px) scale(1.05) rotate(120deg); opacity: 0; }
}

/* caixa que acompanha exatamente o retrato */
.portrait-box {
  position: relative;
  z-index: 2;
}
.hero-portrait {
  width: 100%;
  filter: drop-shadow(0 26px 34px rgba(92, 20, 64, .26));
}
/* linha reta na cintura, para o recorte parecer proposital */
.portrait-line {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 128%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(180, 42, 120, .5) 22%, rgba(23, 137, 126, .55) 78%, transparent);
}
.portrait-line::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 62%;
  height: 26px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(92, 20, 64, .16));
  filter: blur(6px);
}

/* quadro da bailarina flutuando sobre a mão dela */
.art-float {
  position: absolute;
  z-index: 3;
  left: 23%;
  top: 15%;
  width: 20%;
  margin-left: -10%;
  animation: floaty 6s ease-in-out infinite;
  filter: drop-shadow(0 18px 22px rgba(92, 20, 64, .32));
}
.art-float svg { width: 100%; height: auto; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-13px) rotate(2.5deg); }
}

/* selo circular com texto girando */
.seal {
  position: absolute;
  z-index: 3;
  left: -2%;
  bottom: 4%;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
}
.seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 26s linear infinite;
}
.seal svg text {
  font-family: var(--font-body);
  font-size: 7.2px;
  letter-spacing: .18em;
  fill: var(--magenta-deep);
  text-transform: uppercase;
}
.seal-core {
  position: relative;
  width: 66px; height: 66px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(150deg, #fff, var(--blush));
  box-shadow: 0 10px 26px -12px rgba(92, 20, 64, .5), inset 0 0 0 1px rgba(180, 42, 120, .18);
}
.seal-core b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--magenta-deep);
}
.seal-core small {
  display: block;
  font-size: .52rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-top: .12rem;
}

/* ---------- sapatilha descendo a tela (divisor) ---------- */
.shoe-scroll {
  display: flex;
  justify-content: center;
  padding-block: .5rem 2.6rem;
}
.shoe-scroll .rail {
  position: relative;
  width: 1px;
  height: 122px;
  background: linear-gradient(180deg, transparent 0%, rgba(180, 42, 120, .3) 35%, rgba(62, 193, 180, .55) 100%);
}
.shoe-scroll .rail::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 5px; height: 5px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--mint);
}
.shoe-scroll .shoe {
  position: absolute;
  left: 50%;
  top: 0;
  width: 48px;
  height: auto;
  animation: shoe-descend 3.4s var(--ease-lux) infinite;
}
@keyframes shoe-descend {
  0%   { top: -10px; opacity: 0; transform: translateX(-50%) rotate(-12deg); }
  18%  { opacity: 1; }
  76%  { opacity: 1; }
  100% { top: 78px; opacity: 0; transform: translateX(-50%) rotate(6deg); }
}
.shoe-scroll.on-dark .rail {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.35) 40%, var(--mint) 100%);
}

/* ---------- section scaffolding ---------- */
.section { position: relative; padding-block: 5.4rem; }
.section-head { margin-bottom: 3rem; }
.section-head .title { margin-block: .8rem .9rem; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-52px); }
.reveal-right { transform: translateX(52px); }
.reveal-left.in, .reveal-right.in { transform: none; }
.reveal-zoom { transform: scale(.92); }
.reveal-zoom.in { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-zoom { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001s !important; }
}

/* ---------- sobre ---------- */
.sobre-grid {
  display: grid;
  gap: 3.4rem;
}
.sobre-figure {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
}
.sobre-figure .frame {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 34px 70px -34px rgba(92, 20, 64, .5);
}
.sobre-figure .frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.6s var(--ease-lux);
}
.sobre-figure:hover .frame img { transform: scale(1.05); }
/* moldura fina deslocada, estilo editorial */
.sobre-figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 22px -20px -20px 22px;
  border: 1px solid rgba(180, 42, 120, .32);
  border-radius: 6px;
}
.sobre-figure::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 34px -32px -32px 34px;
  border-right: 1px solid rgba(62, 193, 180, .45);
  border-bottom: 1px solid rgba(62, 193, 180, .45);
  border-radius: 6px;
}
.sobre-signature {
  position: relative;
  z-index: 2;
  font-family: var(--font-script);
  font-size: 2.7rem;
  color: var(--magenta);
  margin-top: 2rem;
  line-height: 1;
}
.sobre-role {
  position: relative;
  z-index: 2;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-top: .35rem;
}
.sobre-copy p + p { margin-top: 1rem; }
.sobre-copy { color: var(--plum-soft); }
.sobre-copy strong { color: var(--magenta-ink); font-weight: 500; }

.sobre-marks {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.6rem;
}
.mark {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--plum-soft);
}
.mark svg { width: 20px; height: 20px; flex: none; color: var(--mint-deep); margin-top: .15rem; }
.mark b { display: block; color: var(--magenta-ink); font-weight: 500; }

/* ---------- marquee divider (a divisória) ---------- */
.divider {
  position: relative;
  padding-block: 0;
  overflow: hidden;
}
.divider-band {
  background: linear-gradient(100deg, var(--magenta-deep) 0%, var(--magenta) 55%, var(--mint-deep) 130%);
  transform: rotate(-2deg) scale(1.06);
  padding-block: 1.15rem;
  box-shadow: 0 22px 50px -24px rgba(141, 31, 94, .6);
}
.divider-band.reverse {
  background: linear-gradient(100deg, var(--mint-soft), var(--blush));
  transform: rotate(1.4deg) scale(1.06);
  margin-top: -0.4rem;
  box-shadow: none;
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.divider-band.reverse .marquee { animation-direction: reverse; animation-duration: 38s; }
.marquee-track {
  display: flex;
  align-items: center;
  flex: none;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  white-space: nowrap;
  padding-inline: 1.6rem;
  letter-spacing: .04em;
}
.divider-band.reverse .marquee-track span {
  color: var(--magenta-deep);
  font-size: 1.1rem;
}
.marquee-track i {
  font-style: normal;
  color: rgba(255,255,255,.75);
  font-size: 1rem;
}
.divider-band.reverse .marquee-track i { color: var(--mint-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- procedimentos ---------- */
.proc-grid {
  display: grid;
  gap: 1.6rem;
}
.proc-card {
  position: relative;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  isolation: isolate;
  min-height: 430px;
}
.proc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-lux);
  z-index: -2;
}
.proc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(200deg, transparent 30%, rgba(51, 18, 34, .88) 88%);
  transition: opacity .6s;
}
.proc-card:hover img { transform: scale(1.08) rotate(1deg); }
.proc-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.8rem 1.6rem;
  color: #fff;
}
.proc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--mint);
  letter-spacing: .12em;
}
.proc-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.1;
  margin-block: .4rem .5rem;
}
.proc-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  max-width: 40ch;
  margin-bottom: 1rem;
}
.proc-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: .3rem;
  transition: gap .4s var(--ease-lux), border-color .4s;
}
.proc-card:hover .proc-link { gap: 1rem; border-color: var(--mint); }
.proc-link svg { width: 15px; height: 15px; }

/* ---------- números ---------- */
.numbers {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  padding: 3.6rem 1.6rem 3.2rem;
  background:
    radial-gradient(90% 120% at 50% -20%, rgba(62, 193, 180, .16), transparent 62%),
    linear-gradient(165deg, #6B1747 0%, var(--magenta-ink) 45%, #3A0C27 100%);
  color: #fff;
}
/* moldura dupla dourada com cantos abertos */
.numbers::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 162, 107, .38);
  pointer-events: none;
}
.numbers::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  pointer-events: none;
}
.numbers-head {
  position: relative;
  text-align: center;
  margin-bottom: 2.6rem;
}
.numbers-head .script {
  font-family: var(--font-script);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--mint);
}
.numbers-head span.rule {
  display: block;
  width: 54px;
  height: 1px;
  margin: .9rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.numbers-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.6rem 1rem;
  text-align: center;
}
.number-item { position: relative; }
.number-item .val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 8vw, 3.9rem);
  line-height: 1;
  background: linear-gradient(120deg, #fff 26%, var(--mint) 118%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.number-item .val sup { font-size: .42em; color: var(--mint); }
.number-item .lbl {
  margin-top: .6rem;
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.number-item .lbl::before {
  content: "✦";
  display: block;
  font-size: .6rem;
  letter-spacing: 0;
  color: var(--gold);
  margin-bottom: .55rem;
  opacity: .75;
}

/* ---------- espaço / galeria ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.gallery figure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 1.4s var(--ease-lux), filter 1.4s;
}
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem .9rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(51,18,34,.75));
  color: #fff;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s, transform .5s var(--ease-lux);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }
.gallery .tall { grid-row: span 2; }
.gallery .tall img { aspect-ratio: auto; }

/* ---------- depoimentos ---------- */
.depo-grid {
  display: grid;
  gap: 1.4rem;
}
.depo-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform .6s var(--ease-lux);
}
.depo-card:hover { transform: translateY(-6px); }
.depo-card::before {
  content: "“";
  position: absolute;
  top: -1.2rem;
  left: 1.4rem;
  font-family: var(--font-display);
  font-size: 5.4rem;
  line-height: 1;
  color: var(--blush-2);
  z-index: 0;
}
.depo-stars {
  display: flex;
  gap: .2rem;
  color: var(--gold);
  margin-bottom: .9rem;
  position: relative;
}
.depo-stars svg { width: 15px; height: 15px; }
.depo-card p {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--plum);
  line-height: 1.5;
}
.depo-card footer {
  margin-top: 1.2rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

/* ---------- CTA final ---------- */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  padding: 4rem 1.6rem 3.6rem;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(62, 193, 180, .2), transparent 60%),
    linear-gradient(160deg, #7A1B52 0%, var(--magenta-deep) 42%, #4B1036 100%);
}
/* moldura dupla */
.cta::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 162, 107, .4);
  pointer-events: none;
}
/* brilho que atravessa devagar */
.cta::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -30%;
  width: 40%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.09), transparent);
  transform: rotate(18deg);
  animation: sheen 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%   { left: -40%; }
  55%  { left: 115%; }
  100% { left: 115%; }
}
.cta-inner { position: relative; z-index: 2; }
.cta-orn {
  width: 84px;
  margin: 0 auto 1rem;
  opacity: .95;
  animation: floaty 6s ease-in-out infinite;
}
.cta .script {
  font-family: var(--font-script);
  font-size: clamp(2.3rem, 8vw, 3.4rem);
  color: var(--mint);
  display: block;
  line-height: 1.05;
  margin-bottom: .5rem;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 6vw, 3rem);
  line-height: 1.15;
  max-width: 22ch;
  margin-inline: auto;
}
.cta .rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: 130px;
  margin: 1.5rem auto;
  color: var(--gold);
  font-size: .62rem;
  line-height: 1;
}
.cta .rule::before,
.cta .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 107, .85));
}
.cta .rule::after { background: linear-gradient(90deg, rgba(201, 162, 107, .85), transparent); }
.cta p {
  margin: 0 auto 1.9rem;
  max-width: 44ch;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
}
.cta .btn-primary {
  background: #fff;
  color: var(--magenta-deep);
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.45);
}
.cta .btn-primary::after { background: linear-gradient(120deg, var(--mint), var(--mint-deep)); }
.cta .btn-primary:hover { color: #fff; }
.cta-note {
  margin-top: 1.4rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ---------- footer ---------- */
.footer {
  margin-top: 0;
  background: linear-gradient(180deg, var(--magenta-ink), #2A0B1D);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--ivory);
  clip-path: ellipse(60% 100% at 50% 0%);
}
.footer-grid {
  display: grid;
  gap: 2.6rem;
  padding-top: 3rem;
}
.footer .brand-foot img { height: 54px; filter: brightness(0) invert(1); opacity: .95; }
.footer .brand-foot p {
  margin-top: 1rem;
  font-size: .9rem;
  max-width: 34ch;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
}
.footer ul li { margin-bottom: .6rem; font-size: .9rem; }
.footer ul a { transition: color .3s; }
.footer ul a:hover { color: var(--mint); }
.footer .contact-line {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.footer .contact-line svg { width: 17px; height: 17px; flex: none; color: var(--mint); margin-top: .25rem; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: center;
  font-size: .74rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  text-align: center;
}
.footer-bottom .heart { color: var(--magenta); }

/* whatsapp flutuante */
.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #2BB673, #12805C);
  color: #fff;
  box-shadow: 0 16px 34px -10px rgba(18, 128, 92, .6);
  transition: transform .4s var(--ease-lux);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(43, 182, 115, .5);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- página de procedimento ---------- */
.page-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
}
.page-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transform: scale(1.06);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(46, 14, 30, .82) 0%, rgba(46, 14, 30, .45) 46%, transparent 76%),
    linear-gradient(200deg, rgba(46, 14, 30, .35) 12%, rgba(40, 11, 26, .9) 92%);
}
.page-hero-body {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-block: 3.2rem 4.6rem;
  text-shadow: 0 2px 18px rgba(35, 8, 22, .5);
}
.page-hero-body .crumb {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.1rem;
}
.page-hero-body .crumb i { font-style: normal; color: var(--mint); }
.page-hero-body .crumb a { color: rgba(255,255,255,.85); transition: color .3s; }
.page-hero-body .crumb a:hover { color: var(--mint); }
.page-hero-body h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  line-height: 1.04;
}
.page-hero-body h1 .script {
  display: block;
  font-family: var(--font-script);
  color: var(--mint);
  font-size: .82em;
  line-height: 1.24;
  margin-top: .1em;
}
.page-hero-body p {
  margin-top: 1.1rem;
  max-width: 52ch;
  color: rgba(255,255,255,.92);
}

/* benefícios */
.bene-grid {
  display: grid;
  gap: 1.2rem;
}
.bene-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--blush-2);
  transition: transform .5s var(--ease-lux), border-color .5s;
}
.bene-card:hover { transform: translateY(-6px); border-color: var(--mint); }
.bene-card .ico {
  width: 48px; height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--blush), var(--mint-soft));
  color: var(--magenta-deep);
  margin-bottom: 1rem;
}
.bene-card .ico svg { width: 22px; height: 22px; }
.bene-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--magenta-ink);
  margin-bottom: .4rem;
}
.bene-card p { font-size: .88rem; color: var(--plum-soft); }

/* etapas */
.steps {
  position: relative;
  display: grid;
  gap: 2.2rem;
  padding-left: 2.2rem;
}
.steps::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--magenta), var(--mint));
}
.step {
  position: relative;
}
.step::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 6px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--magenta);
  box-shadow: 0 0 0 5px rgba(180, 42, 120, .12);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--magenta-ink);
}
.step .step-num {
  font-family: var(--font-script);
  color: var(--mint-deep);
  font-size: 1.5rem;
  margin-right: .5rem;
}
.step p { font-size: .92rem; color: var(--plum-soft); max-width: 58ch; }

/* faixa "para quem é" */
.forwho {
  background: linear-gradient(160deg, var(--blush) 0%, var(--mint-soft) 120%);
  border-radius: 6px;
  padding: 2.4rem 1.7rem;
  position: relative;
  overflow: hidden;
}
.forwho::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 4px;
  pointer-events: none;
}
.forwho ul { display: grid; gap: .9rem; margin-top: 1.4rem; position: relative; }
.forwho li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  color: var(--plum);
  font-size: .95rem;
}
.forwho li svg { width: 20px; height: 20px; flex: none; color: var(--magenta); margin-top: .2rem; }

/* outras páginas nav */
.other-procs {
  display: grid;
  gap: 1rem;
}
.other-procs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--magenta-ink);
  transition: transform .4s var(--ease-lux), color .4s;
}
.other-procs a:hover { transform: translateX(8px); color: var(--magenta); }
.other-procs a svg { width: 18px; height: 18px; color: var(--mint-deep); }

/* ---------- desktop ---------- */
@media (min-width: 768px) {
  .brand img { height: 54px; }
  .proc-grid { grid-template-columns: repeat(3, 1fr); }
  .numbers-grid { grid-template-columns: repeat(4, 1fr); }
  .number-item + .number-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 107, .45), transparent);
  }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .depo-grid { grid-template-columns: repeat(3, 1fr); }
  .bene-grid { grid-template-columns: repeat(3, 1fr); }
  .sobre-marks { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .burger, .drawer { display: none; }

  .hero-grid {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    align-content: stretch;
  }
  .hero-copy {
    order: 1;
    text-align: left;
    align-self: center;
    padding-bottom: 3rem;
  }
  .hero-copy .kicker { justify-content: flex-start; }
  .hero-copy .kicker::before {
    display: inline-block;
    content: "";
    width: 34px; height: 1px;
    background: linear-gradient(90deg, var(--mint), transparent);
  }
  .hero-sub { margin-inline: 0; }
  .hero-actions, .hero-rating { justify-content: flex-start; }
  .hero-figure {
    order: 2;
    width: min(38vw, 460px);
    align-self: center;
    padding-bottom: 0;
  }
  .hero-stage { width: 116%; }
  .seal { width: 124px; height: 124px; }
  .seal-core { width: 76px; height: 76px; }
  .seal-core b { font-size: 1.75rem; }

  .sobre-grid {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 5.5rem;
  }
  .section { padding-block: 7.5rem; }
  .cta { padding: 5.6rem 3rem 5rem; }
  .numbers { padding: 4.6rem 3rem 4rem; }
  .page-hero-body { padding-bottom: 5.4rem; }
  .steps { padding-left: 2.8rem; }
  .steps::before { left: 10px; }
  .step::before { left: -2.8rem; }
  .other-procs { grid-template-columns: repeat(2, 1fr); }
  .shoe-scroll { padding-block: 1rem 3.4rem; }
}
