/* ============================================================
   ESPAÇO LOLITA · Estética e Beleza
   Ribeirão Preto · desde 2015
   ============================================================ */

/* ---------- Tokens ---------- */
/* Paleta oficial da marca, extraída do logo:
   rosa #EBAFAF · verde #295838 · branco #FEFEFE */
:root {
  --ivory: #F3CBC8;
  --ivory-warm: #EBAFAF;
  --blush: #FBE9E6;
  --rose: #EBAFAF;
  --rose-deep: #D08F8F;
  --green: #295838;
  --green-deep: #1B3D26;
  --green-ink: #22402F;
  --gold: #7A5A2C;
  --gold-light: #DCC79B;
  --ink: #2C352E;
  --muted: #574E48;
  --line: rgba(122, 90, 44, 0.32);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Century Gothic", sans-serif;
  --font-script: "Pinyon Script", cursive;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--rose); color: var(--green-deep); }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--green-ink);
  line-height: 1.14;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 9vw, 5rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(2.1rem, 6vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 3.6vw, 1.65rem); }
p  { text-wrap: pretty; }

.script { font-family: var(--font-script); font-weight: 400; color: var(--gold); font-size: 1.2em; line-height: 0.9; }
.eyebrow {
  display: block;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold);
}
.lead { font-size: 1.08rem; color: var(--muted); }

/* ---------- Layout: tudo centralizado ---------- */
.container { width: min(100% - 2.5rem, 72rem); margin-inline: auto; }
.narrow { width: min(100%, 46rem); margin-inline: auto; }
.section { padding-block: clamp(4.5rem, 11vw, 8rem); text-align: center; }
.section-head { margin-inline: auto; margin-bottom: clamp(2.6rem, 6vw, 4.2rem); max-width: 46rem; }
.section-head h2 { margin-top: 1.1rem; }
.section-head .lead { margin-top: 1.2rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1.05rem 2.2rem;
  border-radius: 999px;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  transition: transform 180ms var(--ease-out), background-color 200ms ease,
              color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 1.05rem; height: 1.05rem; flex: none; }
.btn-primary { background: var(--green); color: #F4EDE1; }
.btn-primary:hover { background: var(--green-deep); }
.btn-gold { background: var(--gold); color: #FFF9F0; }
.btn-gold:hover { background: #9C7C46; }
.btn-ghost { border: 1px solid rgba(122, 90, 44, 0.45); color: var(--green-ink); background: rgba(255, 250, 248, 0.5); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(255, 252, 250, 0.92); }
.btn-light { background: #F6EEE2; color: var(--green-deep); }
.btn-light:hover { background: #fff; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
  .btn:hover:active { transform: translateY(-2px) scale(0.97); }
}

/* ---------- Barra de progresso de leitura ---------- */
.progress-bar {
  position: fixed; inset-inline: 0; top: 0; z-index: 90;
  height: 2px; transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--rose), var(--gold));
}
@supports (animation-timeline: scroll()) {
  .progress-bar {
    animation: progress-grow linear;
    animation-timeline: scroll(root block);
  }
  @keyframes progress-grow { to { transform: scaleX(1); } }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color 260ms ease, border-color 260ms ease;
}
.site-header.scrolled {
  background: rgba(243, 203, 200, 0.94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-seal {
  width: 36px; height: 42px; flex: none;
  background: url("../assets/logo-selo.png") center/contain no-repeat;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.brand-name { font-family: var(--font-display); font-size: 1.34rem; font-weight: 600; color: var(--green-ink); }
.brand-tag { font-size: 0.53rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-top: 0.34rem; }

.nav-desktop { display: none; align-items: center; gap: 2.2rem; }
.nav-desktop a:not(.btn) {
  position: relative; padding-block: 0.35rem;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green-ink);
}
.nav-desktop a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 300ms var(--ease-out);
}
.nav-desktop a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-desktop .btn { padding: 0.7rem 1.5rem; }

/* header claro sobre heros escuros (páginas de procedimento) */
body.dark-hero:not(.menu-open) .site-header:not(.scrolled) .brand-name,
body.dark-hero:not(.menu-open) .site-header:not(.scrolled) .nav-desktop a:not(.btn) { color: #F7F1E8; }
body.dark-hero:not(.menu-open) .site-header:not(.scrolled) .brand-seal { background-image: url("../assets/logo-selo-rosa.png"); }
body.dark-hero:not(.menu-open) .site-header:not(.scrolled) .brand-tag { color: var(--gold-light); }
body.dark-hero:not(.menu-open) .site-header:not(.scrolled) .nav-toggle { border-color: rgba(247, 241, 232, 0.45); }
body.dark-hero:not(.menu-open) .site-header:not(.scrolled) .nav-toggle .bars span { background: #F7F1E8; }
body.dark-hero:not(.menu-open) .site-header:not(.scrolled) .btn-primary { background: #F6EEE2; color: var(--green-deep); }
body.dark-hero:not(.menu-open) .site-header:not(.scrolled) .btn-primary:hover { background: #fff; }

.nav-toggle {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--line);
  transition: transform 160ms var(--ease-out), border-color 200ms ease;
}
.nav-toggle:active { transform: scale(0.94); }
.nav-toggle .bars { position: relative; width: 19px; height: 11px; }
.nav-toggle .bars span {
  position: absolute; left: 0; width: 100%; height: 1.4px; background: var(--green);
  transition: transform 280ms var(--ease-in-out), opacity 180ms ease, top 280ms var(--ease-in-out);
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 5px; }
.nav-toggle .bars span:nth-child(3) { top: 10px; }
body.menu-open .nav-toggle .bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
body.menu-open .nav-toggle .bars span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle .bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 70;
  display: flex; flex-direction: column; justify-content: center; text-align: center;
  padding: 6rem 2rem 3rem; background: var(--ivory);
  opacity: 0; visibility: hidden;
  transition: opacity 300ms var(--ease-out), visibility 0s linear 300ms;
}
body.menu-open .nav-mobile { opacity: 1; visibility: visible; transition-delay: 0s; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { z-index: 80; background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: transparent; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.2rem; }
.nav-mobile a.nav-link {
  display: block; padding-block: 0.6rem;
  font-family: var(--font-display); font-size: clamp(2rem, 8vw, 2.7rem); font-weight: 500; color: var(--green-ink);
  opacity: 0; transform: translateY(16px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}
body.menu-open .nav-mobile a.nav-link { opacity: 1; transform: translateY(0); }
body.menu-open .nav-mobile li:nth-child(1) a { transition-delay: 60ms; }
body.menu-open .nav-mobile li:nth-child(2) a { transition-delay: 110ms; }
body.menu-open .nav-mobile li:nth-child(3) a { transition-delay: 160ms; }
body.menu-open .nav-mobile li:nth-child(4) a { transition-delay: 210ms; }
body.menu-open .nav-mobile li:nth-child(5) a { transition-delay: 260ms; }
.nav-mobile .menu-foot {
  margin-top: 2.4rem; display: flex; flex-direction: column; gap: 0.9rem; align-items: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity 400ms var(--ease-out) 310ms, transform 400ms var(--ease-out) 310ms;
}
body.menu-open .nav-mobile .menu-foot { opacity: 1; transform: translateY(0); }
@media (min-width: 900px) {
  .nav-desktop { display: inline-flex; }
  .nav-toggle, .nav-mobile { display: none; }
}

/* ============================================================
   ANIMAÇÕES CONDUZIDAS PELO SCROLL
   ============================================================ */

/* fallback: IntersectionObserver adiciona .in-view */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 800ms var(--ease-out) var(--d, 0ms), transform 800ms var(--ease-out) var(--d, 0ms); }
.reveal.in-view { opacity: 1; transform: none; }

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0; transform: translateY(30px); transition: none;
    animation: reveal-scroll linear forwards;
    animation-timeline: view();
    animation-range: entry 8% cover 32%;
  }
  @keyframes reveal-scroll { to { opacity: 1; transform: translateY(0); } }

  /* fotos que deslizam devagar enquanto a página desce */
  .parallax-media img, .parallax-media picture {
    animation: media-drift linear;
    animation-timeline: view();
    animation-range: cover;
  }
  @keyframes media-drift {
    from { transform: translateY(-4%) scale(1.12); }
    to   { transform: translateY(4%) scale(1.12); }
  }

  /* hero se afasta conforme rola */
  .hero-copy {
    animation: hero-recede linear forwards;
    animation-timeline: scroll(root block);
    animation-range: 0 78vh;
  }
  @keyframes hero-recede { to { opacity: 0; transform: translateY(-40px); } }
  /* a figura cresce a partir da base, que nunca descola da faixa */
  .hero-portrait {
    transform-origin: 50% 100%;
    animation: portrait-rise linear forwards;
    animation-timeline: scroll(root block);
    animation-range: 0 90vh;
  }
  @keyframes portrait-rise { to { transform: scale(1.06); } }

  /* linha da divisória que se desenha */
  .ornament .line-draw {
    transform: scaleX(0); transform-origin: center;
    animation: line-draw linear forwards;
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
  }
  @keyframes line-draw { to { transform: scaleX(1); } }

  /* números que sobem */
  .stat-block { animation: stat-in linear forwards; animation-timeline: view(); animation-range: entry 10% cover 34%; }
  @keyframes stat-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

  /* faixa verde que abre */
  .band-reveal {
    clip-path: inset(0 0 100% 0);
    animation: band-open linear forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }
  @keyframes band-open { to { clip-path: inset(0 0 0% 0); } }

  /* cards de procedimento: cortina que sobe revelando a foto,
     com a imagem assentando da escala maior para a normal */
  .proc-card {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
    animation: card-curtain linear forwards;
    animation-timeline: view();
    animation-range: entry 4% cover 30%;
  }
  @keyframes card-curtain {
    from { clip-path: inset(100% 0 0 0); opacity: 0; }
    35%  { opacity: 1; }
    to   { clip-path: inset(0% 0 0 0); opacity: 1; }
  }
  .proc-card .card-media img {
    animation: card-settle linear forwards;
    animation-timeline: view();
    animation-range: entry 4% cover 42%;
  }
  @keyframes card-settle {
    from { transform: scale(1.35); }
    to   { transform: scale(1.06); }
  }
  /* o conteúdo sobe logo atrás da cortina */
  .proc-card .cat,
  .proc-card h3,
  .proc-card .desc,
  .proc-card .card-foot {
    opacity: 0;
    animation: card-text-rise linear forwards;
    animation-timeline: view();
  }
  .proc-card .cat       { animation-range: entry 8%  cover 30%; }
  .proc-card h3         { animation-range: entry 11% cover 33%; }
  .proc-card .desc      { animation-range: entry 14% cover 36%; }
  .proc-card .card-foot { animation-range: entry 17% cover 39%; }
  @keyframes card-text-rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* dentro de um card em animação, o parallax das fotos não se aplica */
  .proc-card .card-media.parallax-media img { animation-name: card-settle; }
}

/* entrada inicial do hero */
[data-animate] { opacity: 0; transform: translateY(22px); animation: rise-in 1000ms var(--ease-out) forwards; animation-delay: var(--d, 0ms); }
@keyframes rise-in { to { opacity: 1; transform: none; } }

/* ---------- Convite de rolagem: flor da marca ---------- */
.scroll-cue { display: inline-flex; flex-direction: column; align-items: center; gap: 0.7rem; color: var(--gold); }
.scroll-cue .cue-label { font-size: 0.6rem; letter-spacing: 0.36em; text-transform: uppercase; font-weight: 500; }
.scroll-cue .cue-line { position: relative; width: 1px; height: 2.6rem; background: linear-gradient(180deg, transparent, var(--line)); overflow: hidden; }
.scroll-cue .cue-line::after {
  content: ""; position: absolute; left: 0; top: -40%; width: 100%; height: 40%;
  background: var(--gold); animation: cue-drip 2.4s var(--ease-in-out) infinite;
}
.scroll-cue .bloom { width: 44px; height: 44px; animation: bloom-breathe 4s var(--ease-in-out) infinite; }
@keyframes bloom-breathe {
  0%, 100% { transform: scale(0.94) rotate(-6deg); opacity: 0.85; }
  50%      { transform: scale(1.06) rotate(6deg); opacity: 1; }
}
@keyframes cue-drip { 0% { top: -40%; } 70%, 100% { top: 110%; } }

/* a flor gira suavemente conforme a página desce */
@supports (animation-timeline: view()) {
  .scroll-cue .bloom {
    animation: bloom-breathe 4s var(--ease-in-out) infinite, bloom-descend linear;
    animation-timeline: auto, view();
    animation-range: normal, entry 0% cover 60%;
  }
  @keyframes bloom-descend { from { translate: 0 -14px; } to { translate: 0 8px; } }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2rem, 7vw, 4.5rem));
  text-align: center;
  overflow: clip;
}
.hero-copy { max-width: 54rem; margin-inline: auto; }
.hero-copy h1 { margin-top: 1.5rem; }
.hero-copy h1 .script { display: inline-block; font-size: 1.16em; }
.hero-copy .lead { margin: 1.5rem auto 0; max-width: 33rem; }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* retrato sem moldura: apenas a foto fundindo no fundo */
/* palco do hero: fundo quente com halo, a figura assenta na base */
.hero-stage {
  position: relative;
  margin-top: clamp(1.4rem, 4vw, 2.6rem);
  padding-top: clamp(2rem, 6vw, 3.5rem);
  overflow: hidden;
  /* creme em cima, verde da marca na base: a figura em rosa ganha
     contraste e o palco emenda na faixa verde seguinte */
  background:
    linear-gradient(180deg,
      transparent 0%,
      rgba(240, 196, 192, 0.95) 10%,
      rgba(229, 165, 164, 0.97) 30%,
      rgba(120, 145, 118, 0.94) 62%,
      rgba(52, 96, 65, 0.99) 86%,
      var(--green) 100%);
}
/* monograma da casa, discreto, atrás da figura */
/* selo da casa como marca d'água, respirando ao fundo */
.stage-seal {
  position: absolute; z-index: 0;
  left: 50%; top: 3%;
  width: min(80vw, 430px); height: auto;
  pointer-events: none;
  transform-origin: 50% 45%;
  animation: seal-drift 11s var(--ease-in-out) infinite;
}
@keyframes seal-drift {
  0%, 100% { transform: translateX(-50%) scale(0.98) rotate(-2.5deg); opacity: 0.55; }
  50%      { transform: translateX(-50%) scale(1.09) rotate(2.5deg); opacity: 0.92; }
}

/* aura de luz vertical que separa a figura do fundo rosa */
.stage-glow {
  position: absolute; z-index: 0;
  left: 50%; top: 2%;
  width: min(88vw, 620px); height: 94%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse 44% 34% at 50% 38%,
    rgba(255, 253, 251, 0.97) 0%,
    rgba(255, 248, 244, 0.7) 40%,
    rgba(253, 240, 236, 0.26) 62%,
    transparent 78%);
  /* a própria luz desvanece perto das bordas, nunca corta em linha reta */
  -webkit-mask-image: radial-gradient(ellipse 60% 56% at 50% 40%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 56% at 50% 40%, #000 55%, transparent 100%);
  animation: glow-breathe 6.5s var(--ease-in-out) infinite;
}
@keyframes glow-breathe {
  0%, 100% { transform: translateX(-50%) scale(0.97); opacity: 0.8; }
  50%      { transform: translateX(-50%) scale(1.08); opacity: 1; }
}
/* segunda aura, mais lenta e deslocada, para o fundo nunca ficar parado */
.hero-stage::after {
  content: ""; position: absolute; z-index: 0;
  left: 50%; top: 22%;
  width: min(70vw, 460px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 68%);
  pointer-events: none;
  animation: aura-float 9s var(--ease-in-out) infinite;
}
@keyframes aura-float {
  0%, 100% { transform: translate(-58%, 10px) scale(0.92); opacity: 0.35; }
  50%      { transform: translate(-42%, -46px) scale(1.18); opacity: 0.95; }
}

/* fio dourado com um brilho que o percorre */
.stage-arc {
  position: absolute; z-index: 0;
  left: 50%; bottom: 26%;
  width: min(90vw, 660px); height: 1px;
  transform: translateX(-50%);
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 82, 0.5), transparent);
}
.stage-arc::after {
  content: ""; position: absolute; top: 0; left: -35%;
  width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 225, 0.95), transparent);
  animation: arc-shine 4.5s var(--ease-in-out) infinite;
}
@keyframes arc-shine {
  0%      { left: -35%; }
  55%, 100% { left: 100%; }
}

/* pó de luz subindo suavemente pelo palco */
.stage-dust { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
/* facho de luz que atravessa o palco na diagonal */
.stage-dust::before {
  content: ""; position: absolute; top: -30%; left: -45%;
  width: 42%; height: 170%;
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: sweep-light 9s var(--ease-in-out) infinite;
}
@keyframes sweep-light {
  0%      { left: -45%; opacity: 0; }
  15%     { opacity: 0.9; }
  70%     { opacity: 0.9; }
  85%, 100% { left: 105%; opacity: 0; }
}
.stage-dust i {
  position: absolute; bottom: -6%;
  width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 252, 244, 0.95), rgba(220, 199, 155, 0.35) 60%, transparent 72%);
  opacity: 0;
  animation: dust-rise linear infinite;
}
.stage-dust i:nth-child(1) { left: 10%; animation-duration: 8s;  animation-delay: 0s;   }
.stage-dust i:nth-child(2) { left: 24%; animation-duration: 10s; animation-delay: 1.2s; width: 4px; height: 4px; }
.stage-dust i:nth-child(3) { left: 38%; animation-duration: 9s;  animation-delay: 2.6s; width: 7px; height: 7px; }
.stage-dust i:nth-child(4) { left: 55%; animation-duration: 11s; animation-delay: 0.7s; }
.stage-dust i:nth-child(5) { left: 68%; animation-duration: 8.5s; animation-delay: 3.4s; width: 5px; height: 5px; }
.stage-dust i:nth-child(6) { left: 80%; animation-duration: 12s; animation-delay: 1.9s; width: 8px; height: 8px; }
.stage-dust i:nth-child(7) { left: 92%; animation-duration: 9.5s; animation-delay: 4.2s; width: 6px; height: 6px; }
.stage-dust i:nth-child(8) { left: 47%; animation-duration: 13s; animation-delay: 5.5s; width: 4px; height: 4px; }
.stage-dust i:nth-child(9) { left: 17%; animation-duration: 10.5s; animation-delay: 6.3s; width: 7px; height: 7px; }
@keyframes dust-rise {
  0%   { transform: translateY(0) translateX(0) scale(0.5); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-30vh) translateX(22px) scale(1.15); opacity: 0.95; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-62vh) translateX(-18px) scale(0.45); opacity: 0; }
}
.hero-portrait {
  position: relative; z-index: 1;
  width: min(86vw, 400px);
  margin-inline: auto;
  will-change: transform;
}
.hero-portrait img { width: 100%; height: auto; }
.cue-wrap { margin-top: clamp(2.4rem, 6vw, 3.4rem); }

@media (min-width: 900px) {
  .hero-copy .lead { max-width: 38rem; }
  .hero-stage { padding-top: clamp(1.5rem, 3vw, 2.4rem); }
  .hero-portrait { width: min(30vw, 500px); }
  .stage-seal { width: min(34vw, 480px); top: 0; }
  .stage-glow { width: min(40vw, 680px); top: 0; }
}

/* ---------- Marquee ---------- */
.marquee { background: var(--green); color: #E8DCC6; overflow: hidden; padding-block: 0.9rem; }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 2.4rem; padding-right: 2.4rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem; letter-spacing: 0.06em; white-space: nowrap;
}
.marquee-track .dot { color: var(--gold-light); font-style: normal; font-size: 0.7rem; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ============================================================
   SOBRE
   ============================================================ */
.about { text-align: center; }
.about-photo {
  width: min(100%, 30rem); margin: 0 auto clamp(2.2rem, 5vw, 3rem);
  aspect-ratio: 4 / 4.4; overflow: hidden; border-radius: 2px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 6%; }
.about p + p { margin-top: 1.1rem; }
.about .about-quote {
  margin-top: 2.2rem; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 4vw, 1.7rem); color: var(--green); line-height: 1.4;
}

/* ---------- Divisória ornamental ---------- */
.ornament { display: flex; align-items: center; justify-content: center; gap: 1.2rem; padding-block: clamp(0.5rem, 3vw, 1.5rem); }
.ornament .line-draw { flex: 1; max-width: 14rem; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament .line-draw:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament-seal { width: auto; height: clamp(54px, 12vw, 68px); flex: none; }

/* ============================================================
   PROCEDIMENTOS · cards com foto
   ============================================================ */
.proc-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.proc-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 23rem; padding: 1.8rem 1.5rem 1.6rem;
  text-align: center; color: #F7F1E8;
  border-radius: 3px; isolation: isolate;
  transition: transform 320ms var(--ease-out);
}
.proc-card .card-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.proc-card .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 900ms var(--ease-out);
}
.proc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10, 45, 29, 0.18) 0%, rgba(10, 45, 29, 0.55) 45%, rgba(8, 38, 24, 0.9) 100%);
  transition: background 320ms ease;
}
.proc-card:hover { transform: translateY(-5px); }
.proc-card:hover .card-media img { transform: scale(1.13); }
.proc-card:hover::after { background: linear-gradient(180deg, rgba(10, 45, 29, 0.3) 0%, rgba(10, 45, 29, 0.66) 45%, rgba(8, 38, 24, 0.94) 100%); }
.proc-card:active { transform: translateY(-2px) scale(0.995); }
.proc-card .cat { font-size: 0.57rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }
.proc-card h3 { color: #FBF6EE; margin-top: 0.5rem; }
.proc-card .desc { margin-top: 0.7rem; font-size: 0.92rem; line-height: 1.65; color: rgba(247, 241, 232, 0.82); }
.proc-card .card-foot {
  margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid rgba(220, 199, 155, 0.3);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.proc-card .card-price { display: flex; flex-direction: column; line-height: 1.2; }
.proc-card .card-price em { font-style: normal; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
.proc-card .card-price strong { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: #FBF6EE; }
.proc-card .card-go {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light);
  transition: gap 240ms var(--ease-out);
}
.proc-card .card-go svg { width: 0.95rem; height: 0.95rem; }
.proc-card:hover .card-go { gap: 0.85rem; color: #FBF6EE; }
@media (min-width: 640px)  { .proc-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }
@media (min-width: 1024px) { .proc-grid { grid-template-columns: repeat(4, 1fr); } .proc-card { min-height: 26rem; } }

/* ============================================================
   PROTOCOLO ASSINATURA
   moldura dupla inspirada no selo do logo
   ============================================================ */
.signature { background: var(--green); padding-block: clamp(3.5rem, 9vw, 6rem); text-align: center; }
.signature-frame {
  position: relative;
  border: 1px solid rgba(235, 175, 175, 0.45);
  padding: clamp(2.6rem, 7vw, 4.5rem) clamp(1.3rem, 5vw, 4rem);
  color: #F6EFE7;
}
.signature-frame::before {
  content: ""; position: absolute; inset: 7px;
  border: 1px solid rgba(220, 199, 155, 0.28);
  pointer-events: none;
}
.signature-crest { display: block; width: auto; height: 76px; margin: 0 auto 1.5rem; }
.signature .eyebrow { color: var(--gold-light); }
.signature h2 { color: #FBF6EE; margin-top: 1rem; font-weight: 400; }
.signature h2 .script { color: var(--rose); }
.signature .sig-lede {
  margin: 1.3rem auto 0; max-width: 33rem;
  color: rgba(246, 239, 231, 0.8); font-size: 1.02rem;
}
/* inclusões em colunas separadas por filetes, sem pílulas */
.sig-steps {
  margin: clamp(2.2rem, 5vw, 3.2rem) auto 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  max-width: 52rem;
  border-top: 1px solid rgba(235, 175, 175, 0.22);
  border-bottom: 1px solid rgba(235, 175, 175, 0.22);
}
.sig-steps li {
  padding: 1.25rem 0.6rem;
}
.sig-steps li:nth-child(odd) { border-right: 1px solid rgba(235, 175, 175, 0.22); }
.sig-steps li:nth-child(-n+2) { border-bottom: 1px solid rgba(235, 175, 175, 0.22); }
.sig-steps .n {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: 0.95rem; color: var(--rose); letter-spacing: 0.05em;
}
.sig-steps strong {
  display: block; margin-top: 0.3rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.3rem; color: #FBF6EE; letter-spacing: 0.01em;
}
.sig-steps .qtd {
  display: block; margin-top: 0.2rem;
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(220, 199, 155, 0.85);
}
@media (min-width: 760px) {
  .sig-steps { grid-template-columns: repeat(4, 1fr); }
  .sig-steps li {
    border-bottom: 0; border-right: 0;
    border-left: 1px solid rgba(235, 175, 175, 0.22);
    padding-block: 1.6rem;
  }
  .sig-steps li:first-child { border-left: 0; }
}
.sig-price { margin-top: clamp(2.4rem, 6vw, 3.2rem); }
.sig-price .from { font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-light); }
.sig-price .value {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3.2rem, 11vw, 4.4rem); line-height: 1; color: #FBF6EE;
  margin-block: 0.55rem 0.35rem;
}
.sig-price .value sup { font-size: 0.34em; vertical-align: 0.9em; color: var(--rose); margin-right: 0.12em; }
.sig-price .split { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--rose); }
.sig-price .btn { margin-top: 1.9rem; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.why-grid { display: grid; gap: 2.4rem; }
.why-item { text-align: center; max-width: 24rem; margin-inline: auto; }
.why-item .num { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--rose-deep); }
.why-item h3 { margin-top: 0.5rem; }
.why-item p { margin-top: 0.6rem; font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
@media (min-width: 760px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2.5rem; } }
@media (min-width: 1100px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem 1.8rem; } }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.local-grid { display: grid; gap: 2.2rem; text-align: center; }
.local-list { display: grid; gap: 1.6rem; }
.local-list li strong {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem;
}
.local-list li span, .local-list li a { font-size: 0.98rem; color: var(--ink); }
.local-list li a:hover { color: var(--green); }
.local-map { position: relative; background: #FBE9E6; overflow: hidden; min-height: 340px; border: 1px solid var(--line); border-radius: 3px; }
.local-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.35) sepia(0.15); }
@media (min-width: 900px) { .local-grid { grid-template-columns: 0.85fr 1.15fr; align-items: center; text-align: center; gap: 3.5rem; } }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { text-align: center; padding-block: clamp(4rem, 10vw, 7rem); background: var(--ivory-warm); }
.cta-final h2 { margin-top: 1rem; }
.cta-final p { margin: 1.2rem auto 0; max-width: 31rem; color: var(--muted); }
.cta-final .hero-actions { margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(242, 234, 217, 0.75); padding-top: clamp(3.5rem, 8vw, 5rem); text-align: center; }
.footer-grid { display: grid; gap: 2.6rem; padding-bottom: 2.8rem; }
.footer-logo { display: inline-block; }
.footer-logo img { width: auto; height: 128px; margin-inline: auto; }
.footer-brand p { margin: 1.3rem auto 0; max-width: 22rem; font-size: 0.9rem; line-height: 1.75; }
.footer-col h4 { color: var(--gold-light); font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { font-size: 0.9rem; transition: color 160ms ease; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(242, 234, 217, 0.14); padding-block: 1.4rem;
  display: flex; flex-direction: column; gap: 0.4rem; align-items: center;
  font-size: 0.76rem; color: rgba(242, 234, 217, 0.5);
}
.footer-bottom .script { color: var(--rose); font-size: 1rem; }
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.3fr 0.8fr 1fr 1fr; text-align: center; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 55;
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; box-shadow: 0 12px 28px -10px rgba(18, 140, 70, 0.6);
  transition: transform 200ms var(--ease-out);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float:active { transform: scale(0.95); }

/* ============================================================
   PÁGINAS DE PROCEDIMENTO
   ============================================================ */
.page-hero {
  position: relative; text-align: center; color: #F7F1E8;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 10vw, 6.5rem));
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
}
.page-hero .card-media { position: absolute; inset: 0; z-index: -2; }
.page-hero .card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 32%; /* fotos verticais: privilegia a parte alta, mais informativa */
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9, 42, 27, 0.82), rgba(8, 36, 23, 0.9));
}
.page-hero .crumbs {
  display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center;
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(242, 234, 217, 0.6);
  margin-bottom: 1.6rem;
}
.page-hero .crumbs a { color: var(--gold-light); }
.page-hero .crumbs svg { width: 0.75rem; height: 0.75rem; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: #FBF6EE; margin-top: 1.2rem; max-width: 18ch; margin-inline: auto; }
.page-hero h1 .script { display: block; font-size: 0.6em; margin-top: 0.4rem; color: var(--rose); }
.page-hero .lead { margin: 1.4rem auto 0; max-width: 36rem; color: rgba(242, 234, 217, 0.85); }
.page-hero .hero-actions { margin-top: 2rem; }

/* card de investimento */
.price-block { text-align: center; padding-block: clamp(3rem, 8vw, 4.5rem); border-bottom: 1px solid var(--line); }
.price-block .from { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); }
.price-block .value { font-family: var(--font-display); font-weight: 600; font-size: clamp(3.2rem, 12vw, 4.4rem); line-height: 1; color: var(--green); margin-block: 0.5rem 0.3rem; }
.price-block .value sup { font-size: 0.36em; color: var(--gold); }
.price-block .split { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--rose-deep); }
.price-block .note { margin: 1rem auto 0; max-width: 30rem; font-size: 0.88rem; color: var(--muted); }
.price-block .btn { margin-top: 1.8rem; }

.price-table { margin: 1.4rem auto 0; display: grid; gap: 0.6rem; max-width: 26rem; }
.price-table li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 1.3rem; border: 1px solid var(--line); border-radius: 2px;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.price-table li:hover { border-color: var(--gold); }
.price-table .opt { font-size: 0.85rem; letter-spacing: 0.06em; color: var(--green-ink); text-align: left; }
.price-table .opt em { display: block; font-style: normal; font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.price-table .val { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--green); white-space: nowrap; }
.price-table li.best { background: var(--green); border-color: var(--green); }
.price-table li.best .opt { color: var(--rose); }
.price-table li.best .opt em { color: var(--gold-light); }
.price-table li.best .val { color: #F8F2E6; }

/* corpo do procedimento */
.proc-body { padding-block: clamp(3.5rem, 9vw, 6rem); text-align: center; }
.proc-body h2 { margin-top: 1.1rem; }
.proc-body .intro { margin-top: 1.6rem; }
.proc-body .intro p + p { margin-top: 1rem; }

.benefit-list { margin: clamp(2.4rem, 6vw, 3.4rem) auto 0; display: grid; gap: 0; max-width: 42rem; }
.benefit-list li { padding: 1.15rem 0.5rem; border-bottom: 1px solid var(--line); font-size: 0.99rem; color: var(--ink); }
.benefit-list li:first-child { border-top: 1px solid var(--line); }
.benefit-list li strong { font-weight: 500; color: var(--green-ink); }

.steps-list { margin: clamp(2.4rem, 6vw, 3.4rem) auto 0; display: grid; gap: 0; max-width: 42rem; counter-reset: step; }
.steps-list li { padding: 1.4rem 0.5rem; border-bottom: 1px solid var(--line); }
.steps-list li:first-child { border-top: 1px solid var(--line); }
.steps-list .step-num { counter-increment: step; display: block; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--rose-deep); }
.steps-list .step-num::before { content: counter(step, decimal-leading-zero); }
.steps-list strong { display: block; margin-top: 0.3rem; font-weight: 500; font-size: 1.08rem; color: var(--green-ink); }
.steps-list span.step-desc { display: block; margin-top: 0.25rem; font-size: 0.93rem; color: var(--muted); }

.note-panel { margin: clamp(2.6rem, 6vw, 3.6rem) auto 0; max-width: 40rem; padding: clamp(1.8rem, 5vw, 2.6rem); background: var(--blush); border-radius: 3px; }
.note-panel h3 { font-size: 1.3rem; }
.note-panel p { margin-top: 0.7rem; font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

/* CTA das páginas internas */
.proc-cta { background: var(--green); color: #EFE6D6; text-align: center; padding-block: clamp(3.5rem, 9vw, 5.5rem); }
.proc-cta .script { font-size: clamp(2.2rem, 8vw, 3rem); color: var(--rose); display: block; }
.proc-cta h2 { color: #F8F2E6; margin-top: 0.4rem; }
.proc-cta p { margin: 1.2rem auto 0; max-width: 30rem; color: rgba(239, 230, 214, 0.82); }
.proc-cta .btn { margin-top: 2rem; }

/* relacionados */
.related { padding-block: clamp(3.5rem, 9vw, 6rem); text-align: center; }
.related-grid { display: grid; gap: 1.1rem; }
@media (min-width: 760px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Motion reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, [data-animate] { opacity: 1 !important; transform: none !important; }
}
