/* ==========================================================================
   Dra. Mariana Vieira Netto  |  Odontologia acolhedora em São Bernardo
   Mobile first. Paleta: vinho profundo + branco.
   ========================================================================== */

:root {
  --wine: #7a1424;
  --wine-deep: #57101b;
  --wine-ink: #3a0a12;
  --wine-soft: #a2283b;
  --wine-glow: #c9425a;
  --wine-tint: #f9eef0;
  --rose: #e9cdd2;
  --ivory: #fcf8f6;
  --white: #ffffff;
  --ink: #2b1a1e;
  --muted: #6f5459;
  --line: rgba(122, 20, 36, 0.14);
  --line-on-dark: rgba(255, 255, 255, 0.16);

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Figtree", "Avenir Next", "Helvetica Neue", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --shadow-card: 0 18px 50px -22px rgba(58, 10, 18, 0.35);
  --shadow-lift: 0 28px 70px -26px rgba(58, 10, 18, 0.45);

  --radius: 18px;
  --radius-lg: 26px;
  --header-h: 72px;
  --gutter: 20px;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: var(--wine); color: var(--white); }
:focus-visible { outline: 2px solid var(--wine-soft); outline-offset: 4px; border-radius: 6px; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 99px; border: 2px solid var(--ivory); }
::-webkit-scrollbar-thumb:hover { background: var(--wine-soft); }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container-narrow { max-width: 760px; }

/* ---------- type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 9.6vw, 5.4rem); }
h2 { font-size: clamp(2.3rem, 7.2vw, 3.9rem); }
h3 { font-size: clamp(1.55rem, 4.6vw, 2rem); line-height: 1.15; }
em, .accent { font-style: italic; font-weight: 500; color: var(--wine); }
.on-dark em, .on-dark .accent { color: #f2c7cf; }
.lead { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--muted); max-width: 42ch; margin-left: auto; margin-right: auto; text-wrap: pretty; }
.on-dark .lead { color: rgba(255, 255, 255, 0.78); }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.6; }
.on-dark .eyebrow { color: #f2c7cf; }

.section-head { max-width: 680px; margin: 0 auto 48px; }
.section-head .lead { margin-top: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em; line-height: 1;
  background: var(--wine); color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(122, 20, 36, 0.7);
  transition: transform 160ms var(--ease-out), background-color 200ms ease, box-shadow 200ms ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: scale(0.97); }
.btn-light { background: var(--white); color: var(--wine); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.5); }
.btn-ghost { background: transparent; color: var(--wine); box-shadow: inset 0 0 0 1.5px var(--line); }
.on-dark .btn-ghost { color: var(--white); box-shadow: inset 0 0 0 1.5px var(--line-on-dark); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -14px rgba(122, 20, 36, 0.75); }
  .btn:hover:active { transform: translateY(-2px) scale(0.97); }
  .btn-light:hover { box-shadow: 0 20px 36px -14px rgba(0, 0, 0, 0.55); }
  .btn-ghost:hover { background: var(--wine-tint); box-shadow: inset 0 0 0 1.5px var(--wine); }
  .on-dark .btn-ghost:hover { background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5); }
}
.btn-row { display: flex; flex-direction: column; align-items: center; gap: 12px; }
@media (min-width: 640px) { .btn-row { flex-direction: row; justify-content: center; gap: 14px; } }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.header.scrolled, .header.solid {
  background: rgba(252, 248, 246, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); transition: color 300ms ease; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--wine); color: var(--white); flex: none;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { text-align: left; line-height: 1.05; }
.brand-text strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: 0; }
.brand-text span { display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; margin-top: 3px; }
.header.scrolled .brand, .header.solid .brand { color: var(--wine-ink); }

.nav { display: none; }
.nav a { font-size: 0.86rem; font-weight: 500; letter-spacing: 0.04em; color: var(--white); opacity: 0.9; position: relative; padding: 6px 0; transition: color 300ms ease; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 260ms var(--ease-out); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header.scrolled .nav a, .header.solid .nav a { color: var(--wine-ink); }
.header-cta { display: none; }
.header .btn { padding: 12px 20px; font-size: 0.82rem; }

.burger {
  width: 44px; height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 12px;
  color: var(--white); transition: color 300ms ease, background-color 200ms ease;
}
.header.scrolled .burger, .header.solid .burger { color: var(--wine-ink); }
.burger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 260ms var(--ease-out), opacity 200ms ease; margin: 3px 0; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 55; background: var(--wine-ink);
  color: var(--white); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  padding: 90px 28px 40px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 280ms ease, transform 320ms var(--ease-out), visibility 0s 320ms;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; transition: opacity 240ms ease, transform 320ms var(--ease-out), visibility 0s; }
.drawer a { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; padding: 6px 0; opacity: 0; transform: translateY(12px); transition: opacity 320ms ease, transform 420ms var(--ease-out); }
.drawer.open a { opacity: 1; transform: none; }
.drawer.open a:nth-child(1) { transition-delay: 60ms; }
.drawer.open a:nth-child(2) { transition-delay: 110ms; }
.drawer.open a:nth-child(3) { transition-delay: 160ms; }
.drawer.open a:nth-child(4) { transition-delay: 210ms; }
.drawer.open a:nth-child(5) { transition-delay: 260ms; }
.drawer.open a:nth-child(6) { transition-delay: 310ms; }
.drawer .btn { font-family: var(--font-body); font-size: 0.95rem; margin-top: 22px; }
.drawer-foot { position: absolute; bottom: 32px; left: 0; right: 0; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55; }

@media (min-width: 960px) {
  :root { --header-h: 84px; }
  .nav { display: flex; gap: 30px; }
  .header-cta { display: inline-flex; }
  .burger, .drawer { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #6b1322 0%, var(--wine-deep) 45%, var(--wine-ink) 100%);
  color: var(--white);
  padding: calc(var(--header-h) + 36px) 0 0;
  min-height: 100svh;
  display: flex; flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55;
  animation: glowDrift 14s var(--ease-in-out) infinite alternate;
}
.hero-glow.g1 { width: 60vw; height: 60vw; max-width: 560px; max-height: 560px; left: -20vw; top: 10%; background: #a52a3e; }
.hero-glow.g2 { width: 50vw; height: 50vw; max-width: 480px; max-height: 480px; right: -18vw; bottom: 8%; background: #8b1a2c; animation-delay: -6s; }
@keyframes glowDrift { from { transform: translate(0, 0) scale(1); } to { transform: translate(6%, -8%) scale(1.15); } }

.hero-tooth {
  position: absolute; color: var(--white); opacity: 0;
  animation: toothFloat 16s ease-in-out infinite alternate, toothIn 1.4s var(--ease-out) forwards;
}
.hero-tooth path { fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 3.2s var(--ease-out) forwards; }
.hero-tooth.t1 { width: 62vw; max-width: 520px; left: 50%; top: 42%; transform: translateX(-50%); --o: 0.16; animation-delay: 0.4s, 0.4s; }
.hero-tooth.t1 path { animation-delay: 0.6s; }
.hero-tooth.t2 { width: 26vw; max-width: 200px; left: -4vw; top: 16%; --o: 0.08; animation-delay: -5s, 0.9s; }
.hero-tooth.t2 path { animation-delay: 1s; }
.hero-tooth.t3 { width: 20vw; max-width: 160px; right: -2vw; top: 22%; --o: 0.08; animation-delay: -9s, 1.2s; }
.hero-tooth.t3 path { animation-delay: 1.3s; }
@keyframes toothIn { to { opacity: var(--o); } }
@keyframes toothFloat { from { translate: 0 0; rotate: -2deg; } to { translate: 0 -22px; rotate: 3deg; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-sparkle { position: absolute; width: 14px; height: 14px; color: #f2c7cf; opacity: 0; animation: twinkle 4.5s ease-in-out infinite; }
.hero-sparkle.s1 { left: 12%; top: 30%; animation-delay: 0.8s; }
.hero-sparkle.s2 { right: 14%; top: 34%; animation-delay: 2.2s; width: 10px; height: 10px; }
.hero-sparkle.s3 { left: 22%; top: 68%; animation-delay: 3.4s; width: 9px; height: 9px; }
.hero-sparkle.s4 { right: 20%; top: 62%; animation-delay: 1.6s; }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); } 50% { opacity: 0.9; transform: scale(1) rotate(45deg); } }

.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; flex: 1; }
.hero-copy { max-width: 620px; }
.hero .eyebrow { color: #f2c7cf; }
.hero h1 { color: var(--white); }
.hero h1 em { color: #f2c7cf; }
.hero .lead { margin-top: 22px; color: rgba(255, 255, 255, 0.8); }
.hero .btn-row { margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; margin-top: 26px; }
.hero-badges li {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}
.hero-badges svg { width: 14px; height: 14px; color: #f2c7cf; }

.hero-photo {
  position: relative; width: min(84vw, 440px); margin: 26px auto 0; flex: none; z-index: 1;
}
.hero-photo img {
  position: relative; z-index: 2;
  width: 100%; aspect-ratio: 1297 / 1400; object-fit: contain; object-position: 50% 100%;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
}

/* efeitos atrás da foto */
.fx { position: absolute; inset: -8% -34% -6% -34%; z-index: 0; pointer-events: none; }
.fx > * { position: absolute; }
.fx-aurora {
  inset: 6% 4% 10% 4%; border-radius: 50%; opacity: 0.9;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 255, 255, 0.32) 40deg, transparent 95deg, rgba(212, 70, 96, 0.95) 150deg, transparent 215deg, rgba(242, 199, 207, 0.5) 275deg, transparent 335deg);
  filter: blur(34px); animation: fxSpin 22s linear infinite;
}
.fx-halo {
  left: 50%; top: 50%; width: 62%; aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -46%);
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.42), rgba(242, 199, 207, 0.16) 55%, transparent 72%);
  filter: blur(16px); animation: fxBreathe 6s ease-in-out infinite;
}
.fx-tooth { left: 50%; top: 36%; width: 70%; transform: translate(-50%, -50%); overflow: visible; animation: fxToothFloat 9s ease-in-out infinite; }
.fx-tooth-fill { fill: url(#fxToothGrad); opacity: 0; animation: fxFadeIn 2s ease-out 1.6s forwards; }
.fx-tooth-shine { fill: none; stroke: rgba(255, 255, 255, 0.9); stroke-width: 4; stroke-linecap: round; opacity: 0; animation: fxFadeIn 1.2s ease-out 2.6s forwards; filter: blur(0.6px); }
.fx-tooth-line { fill: none; stroke: rgba(255, 255, 255, 0.5); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 3.4s var(--ease-out) 0.5s forwards; filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45)); }
.fx-tooth-cusp { stroke-dasharray: 120; stroke-dashoffset: 120; animation-delay: 2.2s; animation-duration: 1.4s; }
.fx-orbit { left: 50%; top: 50%; width: 92%; aspect-ratio: 1; transform: translate(-50%, -50%) rotate(-14deg) scaleY(0.72); }
.fx-orbit-b { width: 66%; transform: translate(-50%, -48%) rotate(28deg) scaleY(0.8); }
.fx-orbit-ring { position: absolute; inset: 0; display: block; animation: fxSpin 26s linear infinite; }
.fx-orbit-b .fx-orbit-ring { animation-duration: 17s; animation-direction: reverse; }
.fx-star { position: absolute; width: 18px; height: 18px; color: #fff; filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9)); animation: fxTwinkle 3.2s ease-in-out infinite; }
.fx-star.k1 { left: 50%; top: -9px; margin-left: -9px; }
.fx-star.k2 { right: -9px; top: 50%; margin-top: -9px; width: 12px; height: 12px; animation-delay: -1s; }
.fx-star.k3 { left: 50%; bottom: -9px; margin-left: -9px; width: 14px; height: 14px; animation-delay: -2s; }
.fx-star.k4 { left: -8px; top: 50%; margin-top: -8px; width: 16px; height: 16px; animation-delay: -0.6s; }
.fx-star.k5 { left: 50%; top: -7px; margin-left: -7px; width: 13px; height: 13px; animation-delay: -1.8s; color: #f2c7cf; }
.fx-dust { inset: 0; }
.fx-dust i { position: absolute; bottom: 8%; width: 5px; height: 5px; border-radius: 50%; background: #fff; opacity: 0; box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.6); animation: fxRise var(--d, 8s) linear var(--dl, 0s) infinite; left: var(--x); }
.fx-dust i:nth-child(1) { --x: 8%; --d: 9s; --dl: -1s; }
.fx-dust i:nth-child(2) { --x: 18%; --d: 11s; --dl: -4s; width: 3px; height: 3px; }
.fx-dust i:nth-child(3) { --x: 27%; --d: 8s; --dl: -6s; }
.fx-dust i:nth-child(4) { --x: 36%; --d: 12s; --dl: -2s; width: 4px; height: 4px; }
.fx-dust i:nth-child(5) { --x: 45%; --d: 9.5s; --dl: -7s; width: 3px; height: 3px; }
.fx-dust i:nth-child(6) { --x: 54%; --d: 10s; --dl: -3s; }
.fx-dust i:nth-child(7) { --x: 62%; --d: 8.5s; --dl: -5s; width: 6px; height: 6px; }
.fx-dust i:nth-child(8) { --x: 70%; --d: 11.5s; --dl: -1.5s; width: 3px; height: 3px; }
.fx-dust i:nth-child(9) { --x: 78%; --d: 9s; --dl: -8s; }
.fx-dust i:nth-child(10) { --x: 86%; --d: 12.5s; --dl: -2.5s; width: 4px; height: 4px; }
.fx-dust i:nth-child(11) { --x: 93%; --d: 10.5s; --dl: -6.5s; width: 3px; height: 3px; }
.fx-dust i:nth-child(12) { --x: 14%; --d: 13s; --dl: -9s; width: 4px; height: 4px; }

/* dentes menores flutuando atrás da foto */
.fx-teeth { inset: 0; }
.fx-mini {
  position: absolute; width: var(--s); left: var(--x); top: var(--y); overflow: visible;
  opacity: 0; rotate: var(--r, 0deg);
  animation: fxMiniIn 1.4s var(--ease-out) var(--dl, 0s) forwards, fxMiniFloat var(--d, 7s) ease-in-out var(--dl2, 0s) infinite alternate;
}
.fx-mini path { fill: rgba(255, 255, 255, var(--f, 0.08)); stroke: rgba(255, 255, 255, var(--o, 0.55)); stroke-width: 3; stroke-linejoin: round; filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35)); }
.fx-mini.m1 { --s: 14%; --x: 12%; --y: 16%; --r: -18deg; --dl: 0.6s; --d: 8s; }
.fx-mini.m2 { --s: 9%; --x: 32%; --y: 14%; --r: 12deg; --dl: 0.9s; --d: 6.5s; --dl2: -2s; --f: 0.9; --o: 0; }
.fx-mini.m3 { --s: 12%; --x: 60%; --y: 12%; --r: 22deg; --dl: 1.1s; --d: 7.5s; --dl2: -4s; }
.fx-mini.m4 { --s: 17%; --x: 78%; --y: 20%; --r: -10deg; --dl: 0.7s; --d: 9s; --dl2: -1s; --f: 0.14; }
.fx-mini.m5 { --s: 8%; --x: 16%; --y: 34%; --r: 30deg; --dl: 1.3s; --d: 6s; --dl2: -3s; --f: 0.85; --o: 0; }
.fx-mini.m6 { --s: 11%; --x: 86%; --y: 46%; --r: -26deg; --dl: 1.5s; --d: 7s; --dl2: -5s; }
.fx-mini.m7 { --s: 7%; --x: 26%; --y: 72%; --r: 8deg; --dl: 1.7s; --d: 5.5s; --dl2: -2.5s; --f: 0.7; --o: 0.2; }
.fx-mini.m8 { --s: 10%; --x: 70%; --y: 64%; --r: 18deg; --dl: 1.2s; --d: 8.5s; --dl2: -6s; --f: 0.12; }
.fx-mini.m9 { --s: 6%; --x: 46%; --y: 6%; --r: -6deg; --dl: 1.9s; --d: 6.2s; --dl2: -1.5s; --f: 0.95; --o: 0; }
@keyframes fxMiniIn { to { opacity: 1; } }
@keyframes fxMiniFloat { from { translate: 0 0; rotate: var(--r, 0deg); } to { translate: 6px -18px; rotate: calc(var(--r, 0deg) + 10deg); } }
@keyframes fxSpin { to { transform: rotate(360deg); } }
@keyframes fxBreathe { 0%, 100% { transform: translate(-50%, -46%) scale(1); opacity: 0.8; } 50% { transform: translate(-50%, -46%) scale(1.12); opacity: 1; } }
@keyframes fxToothFloat { 0%, 100% { transform: translate(-50%, -50%) rotate(-8deg) scale(1); } 50% { transform: translate(-50%, -53%) rotate(-3deg) scale(1.04); } }
@keyframes fxFadeIn { to { opacity: 1; } }
@keyframes fxTwinkle { 0%, 100% { opacity: 0.35; transform: scale(0.7) rotate(0deg); } 50% { opacity: 1; transform: scale(1.15) rotate(45deg); } }
@keyframes fxRise { 0% { transform: translateY(0) translateX(0); opacity: 0; } 12% { opacity: 0.9; } 60% { opacity: 0.7; } 100% { transform: translateY(-520px) translateX(18px); opacity: 0; } }

/* hero load choreography */
.hero .rise { opacity: 0; transform: translateY(22px); animation: rise 1s var(--ease-out) forwards; }
.hero .rise:nth-child(1) { animation-delay: 0.15s; }
.hero .rise:nth-child(2) { animation-delay: 0.28s; }
.hero .rise:nth-child(3) { animation-delay: 0.42s; }
.hero .rise:nth-child(4) { animation-delay: 0.56s; }
.hero .rise:nth-child(5) { animation-delay: 0.7s; }
.hero-photo { opacity: 0; transform: translateY(30px) scale(0.98); animation: rise 1.3s var(--ease-out) 0.5s forwards; }
.hero-photo img { animation: none; }
@keyframes rise { to { opacity: 1; transform: none; } }

.hero-scroll { position: absolute; left: 50%; bottom: 52px; transform: translateX(-50%); z-index: 3; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.6; display: none; }
@media (min-width: 960px) and (min-height: 1000px) { .hero-scroll { display: block; } }
.hero-scroll::after { content: ""; display: block; width: 1px; height: 34px; margin: 10px auto 0; background: linear-gradient(to bottom, var(--white), transparent); animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

@media (min-width: 960px) {
  .hero { padding-top: calc(var(--header-h) + 20px); min-height: 100vh; }
  .hero-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
  .hero-copy { flex: 1 1 52%; max-width: 600px; text-align: center; }
  .hero-photo { flex: 0 0 44%; width: auto; max-width: 520px; margin: 0; align-self: flex-end; }
  .hero-photo img { -webkit-mask-image: none; mask-image: none; }
  .fx { inset: -30% -40% -6% -40%; }
  .hero-tooth.t1 { left: auto; right: 2%; top: 14%; width: 40vw; max-width: 600px; transform: none; }
  .hero-tooth.t2 { left: 4vw; top: 62%; }
  .hero-tooth.t3 { right: auto; left: 44%; top: 18%; }
  .hero { padding-bottom: 36px; }
  .hero-photo { margin-bottom: -36px; }
  .hero h1 { font-size: clamp(2.7rem, 4.3vw, 4.6rem); }
  .hero-copy { flex: 1 1 54%; }
}

/* ---------- ribbon (divisória marquee) ---------- */
.ribbon-wrap { position: relative; z-index: 4; margin-top: -30px; padding: 0 0 26px; overflow: hidden; background: transparent; }
.ribbon {
  display: flex; overflow: hidden; white-space: nowrap;
  background: var(--wine); color: var(--white); padding: 16px 0;
  transform: rotate(-2deg) scale(1.04); box-shadow: 0 18px 40px -22px rgba(58, 10, 18, 0.5);
}
.ribbon.ribbon-alt { position: absolute; left: 0; right: 0; top: 50%; translate: 0 -50%; transform: rotate(1.6deg) scale(1.04); background: var(--white); color: var(--wine); box-shadow: 0 1px 0 var(--line), 0 -1px 0 var(--line); z-index: -1; opacity: 0.9; }
.ribbon-wrap { isolation: isolate; }
.ribbon-track { display: flex; flex: none; gap: 0; animation: marquee 28s linear infinite; }
.ribbon.ribbon-alt .ribbon-track { animation-direction: reverse; animation-duration: 36s; }
.ribbon-track span { display: inline-flex; align-items: center; gap: 22px; padding: 0 22px; font-family: var(--font-display); font-size: 1.45rem; font-style: italic; font-weight: 500; letter-spacing: 0.01em; }
.ribbon-track span svg { width: 12px; height: 12px; opacity: 0.85; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ribbon-track { animation: none; } }

/* ---------- sections ---------- */
.section { padding: 84px 0; position: relative; }
.section-dark { background: var(--wine-deep); color: var(--white); }
.section-tint { background: var(--wine-tint); }
.section-white { background: var(--white); }
@media (min-width: 960px) { .section { padding: 120px 0; } }

/* divisor ornamental */
.ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 26px; color: var(--wine); }
.ornament::before, .ornament::after { content: ""; height: 1px; width: min(120px, 22vw); background: linear-gradient(to right, transparent, currentColor); opacity: 0.5; }
.ornament::after { background: linear-gradient(to left, transparent, currentColor); }
.ornament svg { width: 22px; height: 22px; }
.on-dark .ornament { color: #f2c7cf; }

/* ---------- manifesto (acolhimento) ---------- */
.manifesto-grid { display: grid; gap: 40px; align-items: center; }
.manifesto-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); width: min(100%, 460px); margin: 0 auto; }
.manifesto-photo img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%; transform: scale(1.04); transition: transform 1.2s var(--ease-out); }
.manifesto-photo.in img { transform: scale(1); }
.manifesto-copy h2 { max-width: 15ch; margin: 0 auto; }
.manifesto-copy .lead { margin-top: 22px; }
.manifesto-quote {
  margin: 30px auto 0; padding: 26px 26px 22px; max-width: 460px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-card);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; line-height: 1.35; font-style: italic; color: var(--wine-ink);
  position: relative;
}
.manifesto-quote::before { content: "\201C"; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 4rem; line-height: 1; color: var(--wine); font-style: normal; font-family: var(--font-display); }
.manifesto-quote small { display: block; margin-top: 14px; font-family: var(--font-body); font-style: normal; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wine); }
@media (min-width: 960px) {
  .manifesto-grid { grid-template-columns: 0.9fr 1.1fr; gap: 72px; }
  .manifesto-photo { margin: 0; width: 100%; }
}

/* ---------- stack (efeito empilhamento) ---------- */
.stack-section { padding: 84px 0 60px; }
.stack { display: grid; gap: 0; }
.stack-card {
  position: sticky; top: calc(var(--header-h) + 14px);
  margin-bottom: 22px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px 26px 36px; box-shadow: var(--shadow-lift);
  transform-origin: center top; transition: transform 200ms ease-out, filter 200ms ease-out;
  min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  overflow: hidden;
}
.stack-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--wine-tint), transparent 55%); opacity: 0.7; pointer-events: none; }
.stack-card > * { position: relative; }
.stack-card .num { font-family: var(--font-display); font-style: italic; font-size: 2.6rem; color: var(--wine); line-height: 1; opacity: 0.85; }
.stack-card h3 { max-width: 16ch; }
.stack-card p { color: var(--muted); max-width: 40ch; }
.stack-card.dark { background: var(--wine); color: var(--white); }
.stack-card.dark::before { background: radial-gradient(80% 80% at 100% 0%, rgba(255, 255, 255, 0.12), transparent 60%); }
.stack-card.dark .num { color: #f2c7cf; }
.stack-card.dark p { color: rgba(255, 255, 255, 0.78); }
.stack-card.dark h3 em { color: #f2c7cf; }
.stack-card .icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--wine-tint); color: var(--wine); }
.stack-card .icon svg { width: 26px; height: 26px; }
.stack-card.dark .icon { background: rgba(255, 255, 255, 0.12); color: var(--white); }
@media (min-width: 720px) {
  .stack-card { padding: 54px 48px; min-height: 360px; }
  .stack-card p { font-size: 1.08rem; }
}
@media (min-width: 960px) {
  .stack-section { padding: 120px 0 80px; }
  .stack { max-width: 880px; margin: 0 auto; }
  .stack-card { top: calc(var(--header-h) + 30px); margin-bottom: 30px; min-height: 400px; }
}

/* ---------- journey (linha com dente que desce no scroll) ---------- */
.journey { position: relative; }
.jline-wrap { position: relative; max-width: 960px; margin: 0 auto; padding: 10px 0 20px; }
.jline { position: absolute; top: 0; bottom: 0; left: 22px; width: 2px; }
.jline-track, .jline-fill { position: absolute; left: 0; top: 0; width: 100%; height: 100%; border-radius: 2px; }
.jline-track { background: rgba(255, 255, 255, 0.14); }
.jline-fill { background: linear-gradient(to bottom, #fff, #f2c7cf); transform: scaleY(0); transform-origin: top; box-shadow: 0 0 12px rgba(242, 199, 207, 0.6); }
.jline-marker {
  position: absolute; left: 50%; top: 0; width: 46px; height: 46px; margin-left: -23px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--white); color: var(--wine);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12), 0 10px 26px -8px rgba(0, 0, 0, 0.5), 0 0 24px rgba(242, 199, 207, 0.55);
  will-change: transform;
}
.jline-marker::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(242, 199, 207, 0.5); animation: markerPulse 2.4s ease-out infinite; }
.jline-marker svg { width: 24px; height: 24px; }
.jline-marker svg path { fill: currentColor; }
@keyframes markerPulse { 0% { transform: scale(0.8); opacity: 0.9; } 100% { transform: scale(1.5); opacity: 0; } }

.journey-steps { display: grid; gap: 22px; padding-left: 62px; }
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.05); border-radius: var(--radius); padding: 28px 22px;
  box-shadow: inset 0 0 0 1px var(--line-on-dark);
  opacity: 0.4; transform: translateY(14px) scale(0.985);
  transition: opacity 500ms var(--ease-out), transform 600ms var(--ease-out), background-color 500ms ease, box-shadow 500ms ease;
}
.step::before { content: ""; position: absolute; top: 50%; left: -40px; width: 40px; height: 1px; background: rgba(242, 199, 207, 0.35); transform: scaleX(0); transform-origin: right; transition: transform 500ms var(--ease-out); }
.step.active { opacity: 1; transform: none; background: rgba(255, 255, 255, 0.09); box-shadow: inset 0 0 0 1px rgba(242, 199, 207, 0.45); }
.step.active::before { transform: scaleX(1); }
.step .num { font-family: var(--font-display); font-style: italic; font-size: 1.9rem; color: #f2c7cf; line-height: 1; }
.step h3 { margin-top: 8px; }
.step p { margin-top: 10px; color: rgba(255, 255, 255, 0.76); max-width: 42ch; margin-left: auto; margin-right: auto; }
@media (min-width: 960px) {
  .jline-wrap { padding: 20px 0 40px; }
  .jline { left: 50%; margin-left: -1px; }
  .journey-steps { grid-template-columns: 1fr 1fr; column-gap: 120px; row-gap: 0; padding-left: 0; align-items: start; }
  .step { padding: 36px 34px; margin-bottom: 40px; }
  .step:nth-child(odd) { grid-column: 1; }
  .step:nth-child(even) { grid-column: 2; margin-top: 120px; }
  .step:nth-child(odd)::before { left: auto; right: -60px; width: 60px; transform-origin: left; }
  .step:nth-child(even)::before { left: -60px; width: 60px; transform-origin: right; }
}

/* ---------- procedures ---------- */
.procs { display: grid; gap: 18px; }
.proc {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-card); color: var(--ink);
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
.proc-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--wine-tint); position: relative; }
.proc-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.proc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(58, 10, 18, 0.45), transparent 50%); opacity: 0; transition: opacity 400ms ease; }
.proc-media .placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: var(--wine); opacity: 0.35; }
.proc-media .placeholder svg { width: 64px; height: 64px; }
.proc-body { padding: 24px 22px 26px; }
.proc-tag { display: inline-block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wine); margin-bottom: 10px; }
.proc h3 { font-size: 1.45rem; }
.proc p { margin-top: 10px; color: var(--muted); font-size: 0.95rem; }
.proc-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 600; font-size: 0.86rem; color: var(--wine); }
.proc-link svg { width: 16px; height: 16px; transition: transform 300ms var(--ease-out); }
.proc-kids { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: var(--white); color: var(--wine); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.4); }
.proc-kids svg { width: 12px; height: 12px; }
@media (hover: hover) and (pointer: fine) {
  .proc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
  .proc:hover .proc-media img { transform: scale(1.06); }
  .proc:hover .proc-media::after { opacity: 1; }
  .proc:hover .proc-link svg { transform: translateX(4px); }
}
@media (min-width: 640px) { .procs { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 960px) { .procs { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

/* ---------- kids ---------- */
.kids { overflow: hidden; }
.kids-grid { display: grid; gap: 40px; align-items: center; }
.kids-photo { position: relative; width: min(100%, 440px); margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.kids-photo img { aspect-ratio: 1; object-fit: cover; }
.kids-float { position: absolute; display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 999px; background: var(--white); color: var(--wine-ink); font-size: 0.8rem; font-weight: 600; box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.45); animation: floatY 5s ease-in-out infinite; }
.kids-float svg { width: 18px; height: 18px; color: var(--wine); }
.kids-float.f1 { left: 12px; bottom: 22px; }
.kids-float.f2 { right: 12px; top: 22px; animation-delay: -2.5s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.kids-copy .lead { margin-top: 20px; }
.kids-list { display: grid; gap: 14px; margin-top: 28px; text-align: center; max-width: 520px; margin-left: auto; margin-right: auto; }
.kids-list li { display: flex; flex-direction: column; gap: 8px; align-items: center; padding: 18px 18px; border-radius: 16px; background: rgba(255, 255, 255, 0.07); box-shadow: inset 0 0 0 1px var(--line-on-dark); }
.kids-list b { display: block; font-weight: 600; }
.kids-list span { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }
.kids-list svg { width: 22px; height: 22px; flex: none; color: #f2c7cf; }
.kids .btn-row { margin-top: 30px; }
@media (min-width: 960px) {
  .kids-grid { grid-template-columns: 1.05fr 0.95fr; gap: 70px; }
  .kids-copy { order: -1; }
  .kids-photo { width: 100%; }
}

/* ---------- about ---------- */
.about-grid { display: grid; gap: 36px; align-items: center; }
.about-photo { width: min(100%, 380px); margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.about-photo img { aspect-ratio: 1; object-fit: cover; }
.about-copy p + p { margin-top: 16px; }
.about-copy .lead { margin-top: 20px; }
.about-copy .body { color: var(--muted); max-width: 52ch; margin: 18px auto 0; }
.about-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.about-facts li { padding: 10px 16px; border-radius: 999px; background: var(--white); box-shadow: inset 0 0 0 1px var(--line); font-size: 0.82rem; font-weight: 500; color: var(--wine-ink); }
.about-sign { margin-top: 26px; font-family: var(--font-display); font-style: italic; font-size: 1.9rem; font-weight: 500; color: var(--wine); }
.about-sign small { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 0.8fr 1.2fr; gap: 72px; } .about-photo { width: 100%; margin: 0; } }

/* ---------- testimonials ---------- */
.testis { display: grid; gap: 18px; }
.testi {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.stars { display: inline-flex; gap: 3px; color: var(--wine); }
.stars svg { width: 15px; height: 15px; }
.testi p { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; line-height: 1.4; color: var(--wine-ink); font-style: italic; }
.testi footer { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.testi footer b { display: block; color: var(--wine); letter-spacing: 0.04em; text-transform: none; font-size: 0.95rem; margin-bottom: 2px; }
@media (min-width: 720px) { .testis { grid-template-columns: repeat(3, 1fr); gap: 24px; } .testi { padding: 36px 30px; } }

/* ---------- space gallery ---------- */
.space-grid { display: grid; gap: 16px; }
.space-item { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); position: relative; background: var(--wine-tint); }
.space-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 1.2s var(--ease-out); }
.space-item figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.92); color: var(--wine-ink); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
@media (hover: hover) { .space-item:hover img { transform: scale(1.05); } }
@media (min-width: 720px) { .space-grid { grid-template-columns: 1.3fr 1fr; gap: 22px; } .space-item:first-child { grid-row: span 2; } .space-item:first-child img { aspect-ratio: auto; height: 100%; } }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; text-align: center; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 22px 48px; text-align: center; position: relative; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--wine-ink); transition: color 200ms ease; }
.faq-q .plus { position: absolute; right: 4px; top: 50%; margin-top: -16px; width: 32px; height: 32px; flex: none; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line); color: var(--wine); transition: background-color 250ms ease, color 250ms ease, transform 350ms var(--ease-out); }
.faq-q .plus svg { width: 14px; height: 14px; }
.faq-item.open .faq-q .plus { background: var(--wine); color: var(--white); transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 380ms var(--ease-out); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 4px 24px; color: var(--muted); max-width: 62ch; margin: 0 auto; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
@media (hover: hover) { .faq-q:hover { color: var(--wine); } }

/* ---------- contact / cta ---------- */
.cta {
  position: relative; overflow: hidden; color: var(--white); text-align: center;
  background: var(--wine-ink);
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; opacity: 0.22; filter: saturate(0.5) blur(10px); transform: scale(1.1); }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(58, 10, 18, 0.75), rgba(58, 10, 18, 0.55) 45%, var(--wine-ink)); }
.cta .container { position: relative; z-index: 1; }
.cta h2 { max-width: 16ch; margin: 0 auto; }
.cta .lead { margin-top: 20px; }
.cta .btn-row { margin-top: 34px; }
.cta-note { margin-top: 26px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; }

.contact-grid { display: grid; gap: 16px; margin-top: 44px; }
.contact-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 26px 22px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.06); box-shadow: inset 0 0 0 1px var(--line-on-dark); transition: background-color 250ms ease, transform 400ms var(--ease-out); }
.contact-card svg { width: 26px; height: 26px; color: #f2c7cf; }
.contact-card b { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; font-weight: 600; }
.contact-card span { font-size: 1.02rem; }
@media (hover: hover) { a.contact-card:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-3px); } }
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.map { margin-top: 24px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--wine-deep); }
.map iframe { display: block; width: 100%; height: 300px; border: 0; filter: saturate(0.6) contrast(1.05); }
@media (min-width: 720px) { .map iframe { height: 380px; } }

/* ---------- footer ---------- */
.footer { background: var(--wine-ink); color: rgba(255, 255, 255, 0.8); padding: 60px 0 32px; border-top: 1px solid var(--line-on-dark); }
.footer-grid { display: grid; gap: 34px; }
.footer .brand { justify-content: center; color: var(--white); }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: #f2c7cf; margin-bottom: 14px; font-weight: 600; }
.footer-col li + li { margin-top: 8px; }
.footer-col a { font-size: 0.92rem; opacity: 0.85; transition: opacity 200ms ease; }
.footer-col a:hover { opacity: 1; }
.footer-desc { max-width: 34ch; margin: 14px auto 0; font-size: 0.9rem; opacity: 0.7; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-on-dark); font-size: 0.76rem; opacity: 0.6; display: flex; flex-direction: column; gap: 6px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; text-align: center; } .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.7);
  transition: transform 160ms var(--ease-out);
}
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; animation: waPulse 2.4s ease-out infinite; z-index: -1; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:active { transform: scale(0.94); }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.7); opacity: 0; } }

/* ---------- reveal on scroll ---------- */
.reveal, .reveal-up, .reveal-zoom, .reveal-clip { opacity: 0; transition: opacity 900ms var(--ease-out), transform 1000ms var(--ease-out), clip-path 1100ms var(--ease-out), filter 900ms var(--ease-out); will-change: opacity, transform; }
.reveal-up { transform: translateY(28px); }
.reveal-zoom { transform: scale(0.96); filter: blur(6px); }
.reveal-clip { clip-path: inset(12% 0 12% 0 round var(--radius-lg)); transform: translateY(16px); }
.in.reveal, .in.reveal-up, .in.reveal-zoom, .in.reveal-clip { opacity: 1; transform: none; clip-path: inset(0 0 0 0 round var(--radius-lg)); filter: none; }
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-up, .reveal-zoom, .reveal-clip, .hero .rise, .hero-photo { opacity: 1; transform: none; clip-path: none; filter: none; }
  .hero-tooth { opacity: 0.12; }
  .hero-tooth path { stroke-dashoffset: 0; }
  .fx-mini { opacity: 1; animation: none; }
  .fx-dust { display: none; }
}

/* ==========================================================================
   Páginas de procedimento
   ========================================================================== */
.phero {
  position: relative; overflow: hidden; color: var(--white);
  background: radial-gradient(120% 90% at 50% 0%, #6b1322 0%, var(--wine-deep) 50%, var(--wine-ink) 100%);
  padding: calc(var(--header-h) + 40px) 0 70px;
}
.phero .hero-tooth.t1 { width: 70vw; max-width: 460px; left: 50%; top: 8%; transform: translateX(-50%); --o: 0.1; }
.phero-inner { position: relative; z-index: 2; display: grid; gap: 34px; align-items: center; }
.phero-copy { max-width: 600px; margin: 0 auto; }
.phero .eyebrow { color: #f2c7cf; }
.phero h1 { font-size: clamp(2.7rem, 9vw, 4.6rem); }
.phero h1 em { color: #f2c7cf; }
.phero .lead { margin-top: 20px; color: rgba(255, 255, 255, 0.8); }
.phero .hero-badges { margin-top: 22px; }
.phero .btn-row { margin-top: 28px; }
.phero-media { position: relative; width: min(100%, 460px); margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); background: var(--wine); aspect-ratio: 4 / 3; }
.phero-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.phero-media .placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255, 255, 255, 0.35); }
.phero-media .placeholder svg { width: 90px; height: 90px; }
.phero .rise { opacity: 0; transform: translateY(22px); animation: rise 1s var(--ease-out) forwards; }
.phero .rise:nth-child(1) { animation-delay: 0.1s; }
.phero .rise:nth-child(2) { animation-delay: 0.22s; }
.phero .rise:nth-child(3) { animation-delay: 0.34s; }
.phero .rise:nth-child(4) { animation-delay: 0.46s; }
.phero .rise:nth-child(5) { animation-delay: 0.58s; }
.phero-media.rise { animation-delay: 0.4s; }
@media (min-width: 960px) {
  .phero { padding: calc(var(--header-h) + 60px) 0 100px; }
  .phero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 70px; }
  .phero-media { width: 100%; margin: 0; }
  .phero .hero-tooth.t1 { left: auto; right: -4%; top: -10%; width: 34vw; max-width: 520px; transform: none; }
}

.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; color: inherit; opacity: 0.85; }
.back-link svg { width: 16px; height: 16px; transition: transform 300ms var(--ease-out); }
.back-link:hover svg { transform: translateX(-3px); }

.pintro { max-width: 720px; margin: 0 auto; }
.pintro p { font-size: clamp(1.05rem, 2.3vw, 1.22rem); color: var(--muted); }
.pintro p + p { margin-top: 18px; }
.pintro p strong { color: var(--wine-ink); font-weight: 600; }

.benefits { display: grid; gap: 14px; max-width: 900px; margin: 0 auto; }
.benefit { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding: 26px 22px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-card); }
.benefit .icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--wine-tint); color: var(--wine); }
.benefit .icon svg { width: 22px; height: 22px; }
.benefit b { display: block; font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; line-height: 1.2; }
.benefit p { margin-top: 8px; color: var(--muted); font-size: 0.94rem; max-width: 36ch; margin-left: auto; margin-right: auto; }
@media (min-width: 720px) { .benefits { grid-template-columns: repeat(2, 1fr); gap: 20px; } .benefit { padding: 28px 26px; } }

.timeline { max-width: 640px; margin: 0 auto; display: grid; gap: 0; position: relative; text-align: center; }
.tl { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 0; }
.tl::after { content: ""; display: block; width: 1px; height: 34px; margin: 6px 0 10px; background: linear-gradient(to bottom, rgba(242, 199, 207, 0.7), rgba(242, 199, 207, 0.1)); }
.tl:last-child::after { display: none; }
.tl .dot { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--white); background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 0 0 1px rgba(242, 199, 207, 0.5); }
.tl h3 { font-size: 1.3rem; }
.tl p { margin-top: 6px; color: rgba(255, 255, 255, 0.75); max-width: 46ch; margin-left: auto; margin-right: auto; }

.kidsnote { max-width: 820px; margin: 0 auto; display: grid; gap: 22px; align-items: center; padding: 30px 26px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-card); }
.kidsnote img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto; box-shadow: 0 0 0 6px var(--wine-tint); }
.kidsnote h3 { font-size: 1.5rem; }
.kidsnote p { margin-top: 10px; color: var(--muted); }
@media (min-width: 720px) { .kidsnote { gap: 26px; padding: 44px 56px; } .kidsnote img { width: 140px; height: 140px; } .kidsnote p { max-width: 56ch; margin-left: auto; margin-right: auto; } }

.other-procs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.other-procs a { padding: 12px 18px; border-radius: 999px; background: var(--white); box-shadow: inset 0 0 0 1px var(--line); font-size: 0.86rem; font-weight: 500; color: var(--wine-ink); transition: background-color 200ms ease, color 200ms ease, transform 300ms var(--ease-out); }
.other-procs a:hover { background: var(--wine); color: var(--white); transform: translateY(-2px); }
