/* ============================================================
   FLOR DA PELE · Estética Avançada
   Design: luxo editorial, dourado champagne sobre creme e noir
   Mobile first
   ============================================================ */

:root {
  --noir: #14100a;
  --noir-soft: #1e1810;
  --espresso: #2c2417;
  --cream: #f6efe2;
  --ivory: #fbf7ee;
  --sand: #efe5d2;
  --gold: #b8934e;
  --gold-light: #d9bc82;
  --gold-pale: #ecd9ae;
  --gold-deep: #8a6a33;
  --rose: #d8a291;
  --rose-deep: #b97f6d;
  --text: #3b3226;
  --text-soft: #6d604d;
  --line: rgba(184, 147, 78, .28);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Avenir Next", "Helvetica Neue", sans-serif;

  --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;
  color: var(--text);
  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, ol { list-style: none; }

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

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

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

.label {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-size: .68rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
}
.label::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 6.4vw, 3.6rem);
  line-height: 1.12;
  color: var(--espresso);
  letter-spacing: .01em;
}
.title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

.lede {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 34rem;
}

/* botões */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .45s var(--ease-lux), border-color .45s var(--ease-lux), background .45s var(--ease-lux), transform .45s var(--ease-lux);
}
.btn span { position: relative; z-index: 1; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--gold-deep), var(--gold), var(--gold-light));
  transform: translateY(102%);
  transition: transform .55s var(--ease-lux);
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(105deg, var(--gold-deep), var(--gold) 55%, var(--gold-light));
  color: #fff;
  box-shadow: 0 14px 34px -14px rgba(138, 106, 51, .65);
}
.btn-gold::after { background: var(--noir); }
.btn-gold:hover { color: var(--gold-light); }

.btn-ghost {
  border-color: var(--line);
  color: var(--espresso);
  background: transparent;
}
.btn-ghost:hover { color: #fff; border-color: var(--gold); }

.btn-light {
  border-color: rgba(236, 217, 174, .4);
  color: var(--gold-pale);
  background: transparent;
}
.btn-light:hover { color: var(--noir); border-color: var(--gold-light); }
.btn-light::after { background: linear-gradient(105deg, var(--gold-light), var(--gold-pale)); }

/* revelação ao rolar */

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

.reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity 1.1s var(--ease-lux), transform 1.1s var(--ease-lux);
  transition-delay: var(--d, 0s);
}
.reveal-scale.is-in { opacity: 1; transform: none; }

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

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .5s ease, box-shadow .5s ease, padding .5s ease;
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.15rem;
  transition: padding .5s ease;
}
.header.is-solid {
  background: rgba(20, 16, 10, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, .6);
}
.header.is-solid .wrap { padding-block: .8rem; }

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  line-height: 1.1;
  z-index: 60;
}
.brand-mark {
  width: 42px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: transform .5s var(--ease-lux);
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.06); }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.brand-sub {
  font-size: .52rem;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: rgba(236, 217, 174, .65);
}

.nav {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--noir), var(--noir-soft));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2.4rem;
  gap: .4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease-lux), visibility .5s;
}
.nav.is-open { opacity: 1; visibility: visible; }
.nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  padding-block: .55rem;
  border-bottom: 1px solid rgba(236, 217, 174, .12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease-lux), transform .6s var(--ease-lux), color .3s;
}
.nav.is-open a { opacity: 1; transform: none; }
.nav.is-open a:nth-child(1) { transition-delay: .1s; }
.nav.is-open a:nth-child(2) { transition-delay: .17s; }
.nav.is-open a:nth-child(3) { transition-delay: .24s; }
.nav.is-open a:nth-child(4) { transition-delay: .31s; }
.nav.is-open a:nth-child(5) { transition-delay: .38s; }
.nav a:hover { color: var(--gold-light); }
.nav a i {
  font-style: normal;
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .3em;
  color: var(--gold);
}

.nav-toggle {
  z-index: 60;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.nav-toggle span {
  position: relative;
  width: 26px;
  height: 1.5px;
  background: var(--gold-light);
  transition: background .3s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  transition: transform .45s var(--ease-lux);
}
.nav-toggle span::before { transform: translateY(-8px); }
.nav-toggle span::after { transform: translateY(8px); }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg); }
.nav-toggle.is-open span::after { transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(120% 68% at 50% 88%, rgba(184, 147, 78, .5), transparent 62%),
    radial-gradient(90% 55% at 50% 108%, rgba(236, 217, 174, .32), transparent 60%),
    linear-gradient(180deg, #0d0a06 0%, #16110a 55%, #241b0f 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-grain::before {
  content: "";
  position: absolute;
  inset: 0;
  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='.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 3;
}

.hero-inner {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 5.4rem;
}

.hero-copy {
  position: relative;
  z-index: 4;
  text-align: center;
  padding-inline: 1.5rem;
  margin-top: 1.6rem;
}

.hero-eyebrow {
  font-size: .62rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  animation: heroFade 1.4s var(--ease-lux) both .2s;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after { transform: scaleX(-1); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 11.5vw, 6.2rem);
  line-height: 1.02;
  margin-top: 1.1rem;
  letter-spacing: .01em;
  color: #f4ead6;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: block;
  transform: translateY(110%);
  animation: heroRise 1.3s var(--ease-lux) forwards;
}
.hero-title .line:nth-child(2) > span { animation-delay: .15s; }
.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, var(--gold-light), var(--gold-pale) 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin: 1.3rem auto 0;
  max-width: 30rem;
  font-size: .95rem;
  color: rgba(246, 239, 226, .78);
  animation: heroFade 1.4s var(--ease-lux) both .55s;
}

.hero-actions {
  margin-top: 1.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  animation: heroFade 1.4s var(--ease-lux) both .75s;
}

.hero-figure {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -.6rem;
}
.hero-figure img {
  width: min(86vw, 460px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .55));
  animation: heroPortrait 1.6s var(--ease-lux) both .35s;
  position: relative;
  z-index: 2;
}

.hero-halo {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(120vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 188, 130, .34) 0%, rgba(184, 147, 78, .14) 42%, transparent 68%);
  animation: haloPulse 7s ease-in-out infinite;
}

.hero-arc {
  position: absolute;
  bottom: -22%;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(217, 188, 130, .35);
}
.hero-arc::before {
  content: "";
  position: absolute;
  inset: -2.2rem;
  border-radius: 50%;
  border: 1px dashed rgba(217, 188, 130, .18);
  animation: slowSpin 60s linear infinite;
}

.hero-word {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 21vw, 13rem);
  font-style: italic;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 188, 130, .16);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

@keyframes heroRise { to { transform: translateY(0); } }
@keyframes heroFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes heroPortrait {
  from { opacity: 0; transform: translateY(40px) scale(.97); }
  to { opacity: 1; transform: none; }
}
@keyframes haloPulse {
  0%, 100% { opacity: .8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

/* sapatilha de balé, indicador de rolagem */

.scroll-cue {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: var(--gold-light);
  animation: heroFade 1.4s var(--ease-lux) both 1.15s;
}
.scroll-cue small {
  font-size: .52rem;
  letter-spacing: .42em;
  text-transform: uppercase;
}
.scroll-cue .shoe {
  animation: shoeFloat 2.6s ease-in-out infinite;
}
.scroll-cue .shoe svg { display: block; }

.scroll-cue-dark { color: var(--gold-deep); }

@keyframes shoeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(10px) rotate(-4deg); }
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  background: linear-gradient(100deg, var(--gold-deep), var(--gold) 45%, var(--gold-light) 75%, var(--gold-deep));
  color: #fdf9ef;
  overflow: hidden;
  padding-block: .95rem;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .08em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.marquee span::after {
  content: "✦";
  font-size: .6rem;
  opacity: .8;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SOBRE
   ============================================================ */

.sobre {
  background: var(--ivory);
  padding-block: 5.5rem;
  position: relative;
  overflow: hidden;
}
.sobre::before {
  content: "";
  position: absolute;
  top: -8rem;
  right: -10rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 162, 145, .16), transparent 65%);
}

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

.sobre-media {
  position: relative;
  margin-inline: 1rem;
}
.sobre-media::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1rem -1.4rem 1rem;
  border: 1px solid var(--line);
  z-index: 0;
  transition: transform .8s var(--ease-lux);
}
.sobre-media:hover::before { transform: translate(.5rem, .5rem); }
.sobre-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 30px 60px -30px rgba(44, 36, 23, .45);
}
.sobre-badge {
  position: absolute;
  z-index: 2;
  right: -.4rem;
  bottom: 2rem;
  background: var(--noir);
  color: var(--gold-pale);
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .6);
}
.sobre-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
}
.sobre-badge small {
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .75;
}

.sobre-copy .title { margin-top: 1.1rem; }
.sobre-copy p { margin-top: 1.2rem; color: var(--text-soft); }
.sobre-copy .assinatura {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-deep);
}
.sobre-copy .assinatura small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .6rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: .3rem;
}

.stats {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.stats li {
  padding: 1.2rem .4rem 0;
  text-align: center;
}
.stats li + li { border-left: 1px solid var(--line); }
.stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5.5vw, 2.6rem);
  font-weight: 500;
  color: var(--espresso);
  display: block;
  line-height: 1;
}
.stats small {
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: block;
  margin-top: .45rem;
}

/* ============================================================
   DIVISÓRIA ORNAMENTAL
   ============================================================ */

.divider {
  background: var(--ivory);
  padding-block: 1rem 0;
  overflow: hidden;
}
.divider-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: min(100% - 3rem, 900px);
  margin-inline: auto;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 60%, var(--gold));
  position: relative;
}
.divider-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}
.divider-line.flip { transform: scaleX(-1); }
.divider-motif { flex-shrink: 0; }
.divider-motif svg {
  display: block;
  animation: motifBreath 6s ease-in-out infinite;
}
@keyframes motifBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ============================================================
   PROCEDIMENTOS
   ============================================================ */

.procedimentos {
  background: var(--ivory);
  padding-block: 4.5rem 5.5rem;
}
.procedimentos-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.6rem;
}
.procedimentos-head .lede { margin-top: .4rem; }

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

.proc-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: 1.9rem 1.6rem 1.7rem;
  background: linear-gradient(160deg, #fffdf8, var(--cream));
  border: 1px solid rgba(184, 147, 78, .18);
  overflow: hidden;
  transition: transform .6s var(--ease-lux), box-shadow .6s var(--ease-lux), border-color .6s;
}
.proc-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.proc-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(.8);
  transition: transform 1.2s var(--ease-lux), filter .6s;
}
.proc-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(150deg, rgba(255, 253, 248, .97) 36%, rgba(253, 250, 242, .88) 62%, rgba(246, 239, 226, .55) 100%);
  transition: opacity .65s var(--ease-lux);
}
.proc-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 10, 6, .68), rgba(13, 10, 6, .88));
  opacity: 0;
  transition: opacity .65s var(--ease-lux);
}
.proc-card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -28px rgba(44, 36, 23, .5); border-color: rgba(184, 147, 78, .4); }
.proc-card:hover .proc-bg img { transform: scale(1.12); filter: saturate(1); }
.proc-card:hover .proc-bg::before { opacity: 0; }
.proc-card:hover .proc-bg::after { opacity: 1; }

.proc-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold-deep);
  transition: color .5s;
}
.proc-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--espresso);
  transition: color .5s;
}
.proc-card p {
  position: relative;
  z-index: 1;
  font-size: .88rem;
  color: var(--text-soft);
  transition: color .5s;
}
.proc-more {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: .6rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: color .5s, gap .4s var(--ease-lux);
}
.proc-more::after { content: "→"; font-size: .8rem; }
.proc-card:hover .proc-num { color: var(--gold-light); }
.proc-card:hover h3 { color: var(--gold-pale); }
.proc-card:hover p { color: rgba(246, 239, 226, .7); }
.proc-card:hover .proc-more { color: var(--gold-light); gap: 1rem; }

/* ============================================================
   MÉTODO
   ============================================================ */

.metodo {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(184, 147, 78, .16), transparent 60%),
    linear-gradient(180deg, var(--noir) 0%, var(--noir-soft) 100%);
  color: var(--cream);
  padding-block: 5.5rem;
  position: relative;
  overflow: hidden;
}
.metodo .label { color: var(--gold-light); }
.metodo .title { color: #f4ead6; }
.metodo .title em { color: var(--gold-light); }
.metodo .lede { color: rgba(246, 239, 226, .65); }

.metodo-flow {
  position: relative;
  margin-top: 3rem;
  padding-left: 2.4rem;
}
.flow-rail {
  position: absolute;
  left: 0;
  top: .6rem;
  bottom: .6rem;
  width: 1px;
  background: rgba(236, 217, 174, .14);
}
.flow-rail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--fill, 0px);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 14px rgba(217, 188, 130, .55);
  transition: height .25s ease-out;
}
.flow-shoe {
  position: absolute;
  left: .5px;
  top: var(--y, 0px);
  transform: translate(-50%, -50%) rotate(var(--tilt, 0deg));
  color: var(--gold-light);
  filter: drop-shadow(0 0 10px rgba(217, 188, 130, .5));
  transition: top .25s ease-out, transform .25s ease-out;
  pointer-events: none;
}
.flow-shoe svg { display: block; }

.metodo-steps {
  display: grid;
  gap: 0;
  counter-reset: passo;
}
.metodo-step {
  position: relative;
  padding: 1.7rem 0 1.7rem 4.4rem;
  border-top: 1px solid rgba(236, 217, 174, .14);
  opacity: .35;
  transition: background .5s, padding-left .5s var(--ease-lux), opacity .7s var(--ease-lux);
}
.metodo-step.is-active { opacity: 1; }
.metodo-step.is-active::before { color: var(--gold-light); }
.metodo-step.is-active h3 { color: var(--gold-pale); }
.metodo-step:last-child { border-bottom: 1px solid rgba(236, 217, 174, .14); }
.metodo-step::before {
  counter-increment: passo;
  content: "0" counter(passo);
  position: absolute;
  left: 0;
  top: 1.9rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}
.metodo-step:hover { background: rgba(236, 217, 174, .04); padding-left: 4.9rem; }
.metodo-step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-pale);
}
.metodo-step p {
  margin-top: .4rem;
  font-size: .9rem;
  color: rgba(246, 239, 226, .6);
  max-width: 34rem;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

.depoimentos {
  background: var(--cream);
  padding-block: 5.5rem;
  position: relative;
  overflow: hidden;
}
.depoimentos::before {
  content: "“";
  position: absolute;
  top: -4rem;
  left: -1rem;
  font-family: var(--font-display);
  font-size: 24rem;
  color: rgba(184, 147, 78, .09);
  line-height: 1;
  pointer-events: none;
}

.depo-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.depo-grid {
  display: grid;
  gap: 1.1rem;
}
.depo-card {
  background: #fffdf8;
  border: 1px solid rgba(184, 147, 78, .16);
  padding: 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .6s var(--ease-lux), box-shadow .6s var(--ease-lux);
}
.depo-card:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -30px rgba(44, 36, 23, .4); }
.depo-stars { color: var(--gold); letter-spacing: .2em; font-size: .8rem; }
.depo-card blockquote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--espresso);
}
.depo-card figcaption {
  margin-top: auto;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.depo-selo {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.depo-selo strong { color: var(--gold-deep); font-weight: 500; }

/* ============================================================
   VISITE / LOCAL
   ============================================================ */

.local {
  background: var(--ivory);
  padding-block: 5.5rem;
}
.local-grid { display: grid; gap: 2.6rem; }

.local-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: .4rem;
}
.local-item { padding-block: 1.2rem; border-top: 1px solid var(--line); }
.local-item:first-child { border-top: 0; padding-top: 0; }
.local-item p { color: var(--text-soft); font-size: .95rem; }
.local-item a { color: var(--gold-deep); border-bottom: 1px solid transparent; transition: border-color .3s; }
.local-item a:hover { border-color: var(--gold); }

.local-cta {
  background:
    radial-gradient(120% 90% at 80% 110%, rgba(184, 147, 78, .4), transparent 60%),
    linear-gradient(165deg, var(--noir), var(--noir-soft));
  color: var(--cream);
  padding: 2.6rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}
.local-cta::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 1px solid rgba(217, 188, 130, .25);
}
.local-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: #f4ead6;
}
.local-cta h3 em { font-style: italic; color: var(--gold-light); }
.local-cta p { color: rgba(246, 239, 226, .7); font-size: .93rem; }
.local-cta .btn { align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #0d0a06;
  color: rgba(246, 239, 226, .6);
  padding: 3.6rem 0 2.2rem;
  text-align: center;
}
.footer img {
  width: 200px;
  margin-inline: auto;
  opacity: .95;
}
.footer-links {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.footer-links a { color: var(--gold-light); transition: color .3s; }
.footer-links a:hover { color: var(--gold-pale); }
.footer small {
  display: block;
  margin-top: 2rem;
  font-size: .62rem;
  letter-spacing: .12em;
  opacity: .55;
}

/* ============================================================
   PÁGINA DE PROCEDIMENTO
   ============================================================ */

.proc-hero {
  position: relative;
  background:
    radial-gradient(110% 70% at 50% 115%, rgba(184, 147, 78, .42), transparent 62%),
    linear-gradient(180deg, #0d0a06, #1d160d);
  color: var(--cream);
  padding: 9rem 0 5rem;
  overflow: hidden;
  text-align: center;
}
.proc-hero .hero-word { bottom: -18%; font-size: clamp(5rem, 20vw, 11rem); }
.proc-hero .wrap { position: relative; z-index: 2; }
.proc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.proc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: saturate(.75);
  animation: heroKen 10s var(--ease-lux) both;
}
.proc-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 10, 6, .78) 0%, rgba(13, 10, 6, .38) 55%, #14100a 100%);
}
@keyframes heroKen { from { transform: scale(1.14); } to { transform: scale(1); } }
.proc-hero .label { color: var(--gold-light); justify-content: center; }
.proc-hero .label::before { background: linear-gradient(90deg, transparent, var(--gold-light)); }
.proc-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 9vw, 4.6rem);
  line-height: 1.08;
  margin-top: 1rem;
  color: #f4ead6;
}
.proc-hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.proc-hero p {
  margin: 1.2rem auto 0;
  max-width: 36rem;
  color: rgba(246, 239, 226, .75);
  font-size: .97rem;
}
.proc-hero .scroll-cue { position: relative; left: auto; bottom: auto; transform: none; margin-top: 2.6rem; }

.proc-body { background: var(--ivory); padding-block: 4.6rem; }

.proc-section { margin-bottom: 3.6rem; }
.proc-section:last-child { margin-bottom: 0; }
.proc-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5.6vw, 2.4rem);
  font-weight: 500;
  color: var(--espresso);
  margin-top: 1rem;
}
.proc-section h2 em { font-style: italic; color: var(--gold-deep); }
.proc-section > p { margin-top: 1rem; color: var(--text-soft); max-width: 42rem; }

.beneficios {
  margin-top: 1.8rem;
  display: grid;
  gap: .8rem;
}
.beneficios li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fffdf8;
  border: 1px solid rgba(184, 147, 78, .16);
  padding: 1.1rem 1.2rem;
  transition: transform .5s var(--ease-lux), border-color .5s;
}
.beneficios li:hover { transform: translateX(6px); border-color: rgba(184, 147, 78, .45); }
.beneficios li::before {
  content: "✦";
  color: var(--gold);
  font-size: .75rem;
  margin-top: .35rem;
  flex-shrink: 0;
}
.beneficios strong { display: block; font-weight: 500; color: var(--espresso); font-size: .95rem; }
.beneficios span { font-size: .85rem; color: var(--text-soft); }

.etapas { margin-top: 1.8rem; counter-reset: et; display: grid; gap: 0; }
.etapas li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 1.3rem 0 1.3rem 3.6rem;
}
.etapas li:last-child { border-bottom: 1px solid var(--line); }
.etapas li::before {
  counter-increment: et;
  content: "0" counter(et);
  position: absolute;
  left: 0;
  top: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-deep);
}
.etapas strong { font-weight: 500; color: var(--espresso); display: block; font-size: .98rem; }
.etapas span { font-size: .88rem; color: var(--text-soft); }

.proc-nota {
  margin-top: 2rem;
  border-left: 2px solid var(--gold);
  background: var(--cream);
  padding: 1.2rem 1.4rem;
  font-size: .88rem;
  color: var(--text-soft);
  max-width: 42rem;
}

.proc-cta {
  background:
    radial-gradient(120% 90% at 15% 120%, rgba(184, 147, 78, .4), transparent 60%),
    linear-gradient(165deg, var(--noir), var(--noir-soft));
  color: var(--cream);
  text-align: center;
  padding: 4.6rem 0;
}
.proc-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.4vw, 3.2rem);
  font-weight: 500;
  color: #f4ead6;
  line-height: 1.12;
}
.proc-cta h2 em { font-style: italic; color: var(--gold-light); }
.proc-cta p { margin: 1rem auto 1.8rem; max-width: 30rem; color: rgba(246, 239, 226, .7); font-size: .95rem; }

.proc-outros { background: var(--ivory); padding-block: 4.2rem; }
.proc-outros h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 1.6rem;
}
.proc-outros h2 em { font-style: italic; color: var(--gold-deep); }
.outros-list { display: grid; gap: .7rem; }
.outros-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--espresso);
  transition: background .4s, color .4s, padding-left .4s var(--ease-lux);
}
.outros-list a::after { content: "→"; color: var(--gold-deep); transition: transform .4s var(--ease-lux); }
.outros-list a:hover { background: var(--noir); color: var(--gold-pale); padding-left: 1.6rem; }
.outros-list a:hover::after { transform: translateX(6px); color: var(--gold-light); }

.crumb {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(236, 217, 174, .6);
  margin-bottom: 1.2rem;
  display: inline-flex;
  gap: .8rem;
  align-items: center;
}
.crumb a { color: var(--gold-light); }
.crumb a:hover { color: var(--gold-pale); }

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

@media (min-width: 640px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: repeat(2, 1fr); }
  .beneficios { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: row; justify-content: center; }
  .outros-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .wrap { width: min(100% - 5rem, 1180px); }

  .hero-inner {
    grid-template-rows: none;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    width: min(100% - 5rem, 1180px);
    margin-inline: auto;
    padding-top: 4rem;
  }
  .hero-copy { text-align: left; padding-inline: 0; margin-top: 0; }
  .hero-eyebrow::after { display: none; }
  .hero-sub { margin-inline: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-figure { margin-top: 0; align-self: end; }
  .hero-figure img { width: min(40vw, 520px); }
  .hero-word { left: auto; right: -4rem; transform: none; }

  .sobre { padding-block: 7.5rem; }
  .sobre-grid { grid-template-columns: .92fr 1.08fr; gap: 5rem; align-items: center; }
  .sobre-media { margin-inline: 0 1.5rem; }

  .procedimentos { padding-block: 6rem 7.5rem; }
  .procedimentos-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .proc-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .proc-card { padding: 2.3rem 1.9rem 2rem; min-height: 16rem; }
  .proc-bg::before { background: linear-gradient(150deg, rgba(255, 253, 248, .97) 30%, rgba(253, 250, 242, .8) 58%, rgba(246, 239, 226, .38) 100%); }

  .metodo { padding-block: 7.5rem; }
  .metodo-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; }
  .metodo-flow { margin-top: 0; padding-left: 3rem; }

  .depoimentos { padding-block: 7.5rem; }
  .depo-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .depo-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }

  .local { padding-block: 7.5rem; }
  .local-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
  .local-cta { padding: 3.4rem 3rem; }

  .proc-body { padding-block: 6rem; }
  .proc-section { margin-bottom: 4.6rem; }

  .nav {
    position: static;
    inset: auto;
    background: none;
    flex-direction: row;
    padding: 0;
    gap: 2.2rem;
    opacity: 1;
    visibility: visible;
  }
  .nav a {
    font-family: var(--font-body);
    font-size: .68rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(246, 239, 226, .85);
    border: 0;
    padding: 0;
    opacity: 1;
    transform: none;
    position: relative;
  }
  .nav a i { display: none; }
  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease-lux);
  }
  .nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-toggle { display: none; }
}

@media (min-width: 1280px) {
  .hero-figure img { width: 520px; }
}
