/* ============================================================
   Dra. Laís Simas · Odontologia estética e Harmonização facial
   Paleta da marca: azul-marinho, blush e nude · mobile first
   ============================================================ */

:root {
  --navy: #1C2D42;
  --navy-ink: #011B35;
  --navy-soft: #2F4A6B;
  --navy-mist: #E8ECF2;
  --blush: #E5CECD;
  --blush-2: #F3E6E5;
  --blush-3: #FAF2F1;
  --nude: #D4BAAE;
  --nude-deep: #B08A76;
  --nude-ink: #8E6A57;
  --ivory: #FBF8F6;
  --white: #FFFFFF;
  --ink: #1F2A38;
  --ink-soft: #5F6B7A;
  --ink-mute: #98A2AE;
  --line: rgba(28, 45, 66, .14);

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-script: "Parisienne", cursive;
  --font-body: "Figtree", "Avenir Next", system-ui, sans-serif;

  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);

  --shadow-soft: 0 24px 60px -24px rgba(1, 27, 53, .28);
  --shadow-card: 0 16px 44px -20px rgba(1, 27, 53, .18);
  --radius: 22px;
  --header-h: 72px;
}

*, *::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: 400; font-size: 1rem; line-height: 1.7;
  color: var(--ink); background: var(--ivory); overflow-x: hidden; text-align: center;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--navy); color: #fff; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 4px; border-radius: 6px; }

body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 60; opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ---------- tipografia ---------- */
.kicker {
  display: inline-flex; align-items: center; justify-content: center; gap: .9rem;
  font-size: .7rem; letter-spacing: .32em; text-transform: uppercase; font-weight: 500; color: var(--nude-ink);
}
.kicker::before, .kicker::after { content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--nude-deep)); }
.kicker::after { background: linear-gradient(90deg, var(--nude-deep), transparent); }
.on-dark .kicker { color: var(--nude); }
.on-dark .kicker::before { background: linear-gradient(90deg, transparent, var(--nude)); }
.on-dark .kicker::after { background: linear-gradient(90deg, var(--nude), transparent); }

.title {
  font-family: var(--font-display); font-weight: 500; font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(2.05rem, 6.6vw, 3.5rem); line-height: 1.08; letter-spacing: -.015em;
  color: var(--navy-ink); margin: 1rem auto 1.1rem; max-width: 18ch; text-wrap: balance;
}
.title em { font-style: italic; font-weight: 400; color: var(--nude-ink); }
.title .script { font-family: var(--font-script); font-weight: 400; font-style: normal; font-size: 1.25em; line-height: .7; color: var(--nude-ink); }
.on-dark .title { color: var(--white); }
.on-dark .title em, .on-dark .title .script { color: var(--nude); }

.lead { color: var(--ink-soft); font-size: 1.02rem; max-width: 52ch; margin-inline: auto; }
.on-dark .lead { color: rgba(255, 255, 255, .8); }

/* ---------- botões ---------- */
.btn {
  position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.7rem; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap;
  transition: transform 180ms var(--ease-out), box-shadow 260ms var(--ease-out), background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { transform: scale(.97); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--navy-soft), var(--navy-ink)); box-shadow: 0 14px 34px -14px rgba(1, 27, 53, .7); }
.btn-outline { color: var(--navy); border: 1.5px solid rgba(28, 45, 66, .4); background: rgba(255, 255, 255, .5); }
.btn-white { color: var(--navy-ink); background: #fff; box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .4); }
.btn-ghost-white { color: #fff; border: 1.5px solid rgba(255, 255, 255, .55); }
.btn-nude { color: var(--navy-ink); background: linear-gradient(135deg, var(--blush), var(--nude)); box-shadow: 0 14px 34px -14px rgba(176, 138, 118, .7); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
  .btn-primary:hover { box-shadow: 0 20px 40px -14px rgba(1, 27, 53, .8); }
  .btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
  .btn-ghost-white:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
}

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: var(--navy); }
.link-arrow svg { width: 15px; height: 15px; transition: transform 200ms var(--ease-out); }
@media (hover: hover) { .link-arrow:hover svg { transform: translateX(4px); } }

/* ---------- header ---------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h); display: flex; align-items: center; transition: background-color 300ms ease, box-shadow 300ms ease, height 300ms ease; }
.header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; }
.logo-mark {
  width: 118px; height: 52px; background-color: var(--navy-ink);
  -webkit-mask: url("../assets/img/logo.webp") no-repeat center / contain; mask: url("../assets/img/logo.webp") no-repeat center / contain;
  transition: background-color 300ms ease;
}
.header.on-dark .logo-mark { background-color: #fff; }
.header.scrolled { background: rgba(251, 248, 246, .88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); height: 64px; }
.header.scrolled .logo-mark { background-color: var(--navy-ink); }
.nav-desktop { display: none; }

.burger { width: 46px; height: 46px; border-radius: 999px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid rgba(28, 45, 66, .3); transition: border-color 300ms ease, transform 160ms var(--ease-out); }
.burger span { width: 18px; height: 1.5px; background: var(--navy-ink); transition: transform 260ms var(--ease-out), opacity 200ms ease, background-color 300ms ease; }
.header.on-dark:not(.scrolled) .burger { border-color: rgba(255, 255, 255, .45); }
.header.on-dark:not(.scrolled) .burger span { background: #fff; }
.burger:active { transform: scale(.94); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.burger.open span { background: #fff !important; }
.burger.open { border-color: rgba(255,255,255,.45) !important; }

.drawer {
  position: fixed; inset: 0; z-index: 45; color: #fff;
  background: radial-gradient(120% 90% at 50% 0%, var(--navy-soft) 0%, var(--navy) 55%, var(--navy-ink) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem; padding: 6rem 2rem 3rem;
  opacity: 0; visibility: hidden; transform: translateY(-2%);
  transition: opacity 320ms var(--ease-out), transform 420ms var(--ease-out), visibility 0s linear 320ms;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.drawer a.nav-link { font-family: var(--font-display); font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 400; line-height: 1.2; opacity: 0; transform: translateY(12px); transition: opacity 320ms var(--ease-out), transform 420ms var(--ease-out); }
.drawer.open a.nav-link { opacity: 1; transform: none; }
.drawer.open a.nav-link:nth-child(1) { transition-delay: 60ms } .drawer.open a.nav-link:nth-child(2) { transition-delay: 110ms } .drawer.open a.nav-link:nth-child(3) { transition-delay: 160ms } .drawer.open a.nav-link:nth-child(4) { transition-delay: 210ms } .drawer.open a.nav-link:nth-child(5) { transition-delay: 260ms } .drawer.open a.nav-link:nth-child(6) { transition-delay: 310ms }
.drawer .drawer-foot { margin-top: 1.6rem; font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--nude); }
.drawer .btn { margin-top: 1rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-top: calc(var(--header-h) + 1.4rem);
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--blush-3) 52%, var(--blush-2) 100%);
}

/* fundo animado */
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

/* massas orgânicas que respiram e derivam */
.blob { position: absolute; border-radius: 50%; filter: blur(38px); will-change: transform, border-radius; }
.blob-1 {
  left: -22%; top: 2%; width: 78%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(229,206,205,.95), rgba(229,206,205,.15) 72%, transparent 78%);
  animation: morphA 16s ease-in-out infinite alternate, driftA 22s ease-in-out infinite alternate;
}
.blob-2 {
  right: -26%; top: 16%; width: 86%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(212,186,174,.9), rgba(212,186,174,.12) 70%, transparent 78%);
  animation: morphB 19s ease-in-out infinite alternate, driftB 26s ease-in-out infinite alternate;
}
.blob-3 {
  left: 8%; bottom: -18%; width: 92%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(28,45,66,.16), rgba(28,45,66,.04) 65%, transparent 76%);
  animation: morphA 21s ease-in-out infinite alternate-reverse, driftC 24s ease-in-out infinite alternate;
}
@keyframes morphA {
  0%   { border-radius: 46% 54% 62% 38% / 44% 42% 58% 56%; }
  50%  { border-radius: 62% 38% 42% 58% / 56% 62% 38% 44%; }
  100% { border-radius: 38% 62% 55% 45% / 60% 40% 60% 40%; }
}
@keyframes morphB {
  0%   { border-radius: 60% 40% 38% 62% / 48% 58% 42% 52%; }
  50%  { border-radius: 40% 60% 65% 35% / 62% 38% 62% 38%; }
  100% { border-radius: 52% 48% 44% 56% / 38% 56% 44% 62%; }
}
@keyframes driftA { from { transform: translate(0, 0) scale(1); } to { transform: translate(9%, 6%) scale(1.12); } }
@keyframes driftB { from { transform: translate(0, 0) scale(1.06); } to { transform: translate(-11%, 8%) scale(.94); } }
@keyframes driftC { from { transform: translate(0, 0) scale(.96); } to { transform: translate(-7%, -7%) scale(1.1); } }

/* fitas em fluxo contínuo */
.hero-ribbons { position: absolute; left: 50%; top: 0; width: 210%; height: 100%; transform: translateX(-50%); }
.hero-ribbons path { fill: none; stroke-linecap: round; }
.hero-ribbons .r1 { stroke: url(#ribA); stroke-width: 120; opacity: .5; filter: blur(26px); stroke-dasharray: 700 380; animation: flow1 22s linear infinite; }
.hero-ribbons .r2 { stroke: url(#ribB); stroke-width: 22; opacity: .5; filter: blur(7px); stroke-dasharray: 240 220; animation: flow2 15s linear infinite; }
.hero-ribbons .r3 { stroke: #fff; stroke-width: 2.2; stroke-dasharray: 170 240; animation: flow3 12s linear infinite; }
@keyframes flow1 { to { stroke-dashoffset: -2160; } }
@keyframes flow2 { to { stroke-dashoffset: -920; } }
@keyframes flow3 { to { stroke-dashoffset: -820; } }

/* anel lento atrás da doutora */
.hero-ring {
  position: absolute; left: 50%; bottom: 6%; width: 92%; max-width: 520px; aspect-ratio: 1; transform: translateX(-50%);
  border: 1px solid rgba(176,138,118,.35); border-radius: 50%;
  animation: ringSpin 34s linear infinite;
}
.hero-ring::before, .hero-ring::after {
  content: ""; position: absolute; border-radius: 50%; background: var(--nude-deep);
}
.hero-ring::before { width: 7px; height: 7px; top: -3.5px; left: 50%; margin-left: -3.5px; }
.hero-ring::after { width: 5px; height: 5px; bottom: 6%; right: 8%; opacity: .7; }
@keyframes ringSpin { to { transform: translateX(-50%) rotate(360deg); } }

.sparkle {
  position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #fff; opacity: 0;
  box-shadow: 0 0 14px 3px rgba(212,186,174,.9); animation: twinkle var(--t, 4s) ease-in-out var(--d, 0s) infinite;
}
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(.4); } 50% { opacity: .95; transform: scale(1); } }

/* texto */
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; padding: .6rem 1.25rem 0; }
.hero-content > * { opacity: 0; transform: translateY(16px); animation: riseUp 900ms var(--ease-out) forwards; }
.hero-content > *:nth-child(1) { animation-delay: .1s } .hero-content > *:nth-child(2) { animation-delay: .22s } .hero-content > *:nth-child(3) { animation-delay: .34s } .hero-content > *:nth-child(4) { animation-delay: .46s } .hero-content > *:nth-child(5) { animation-delay: .58s }
@keyframes riseUp { to { opacity: 1; transform: none; } }
.hero-title {
  font-family: var(--font-display); font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(2.4rem, 10vw, 4.8rem); line-height: 1.02; letter-spacing: -.02em; margin: .7rem 0 .8rem; max-width: 12ch; text-wrap: balance; color: var(--navy-ink);
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--nude-ink); }
.hero-title .script { font-family: var(--font-script); font-size: 1.15em; line-height: .6; color: var(--nude-ink); font-weight: 400; }
.hero-sub { color: var(--ink-soft); max-width: 34ch; font-size: 1rem; }
.hero-ctas { display: flex; flex-direction: column; gap: .8rem; width: 100%; max-width: 360px; margin-top: 1.2rem; }
.hero-trust { margin-top: 1rem; display: inline-flex; align-items: center; gap: .6rem; max-width: 300px; line-height: 1.6; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--nude-ink); }
.hero-trust svg { width: 14px; height: 14px; flex: none; }

/* retrato com monograma atrás */
.hero-visual { position: relative; z-index: 1; width: min(100%, 430px); margin: 1rem auto 0; }
.hero-monogram {
  position: absolute; left: 50%; top: -10%; width: 150%; aspect-ratio: 876 / 390;
  background-color: var(--nude-deep); opacity: 0;
  -webkit-mask: url("../assets/img/monograma.webp") no-repeat center / contain;
  mask: url("../assets/img/monograma.webp") no-repeat center / contain;
  animation: monoIn 1.4s var(--ease-out) .35s forwards, monoSway 14s ease-in-out 1.8s infinite alternate;
}
@keyframes monoIn {
  from { opacity: 0; transform: translateX(-50%) rotate(-22deg) scale(.86); }
  to   { opacity: .62; transform: translateX(-50%) rotate(-17deg) scale(1); }
}
@keyframes monoSway {
  from { transform: translate(-50%, 0) rotate(-17deg) scale(1); }
  to   { transform: translate(-50%, -16px) rotate(-11deg) scale(1.05); }
}
.hero-halo {
  position: absolute; left: 50%; top: 20%; width: 88%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.85), rgba(255,255,255,0) 72%);
}
.hero-portrait { position: relative; z-index: 2; width: 100%; opacity: 0; animation: rise 1.2s var(--ease-out) .4s forwards; }
.hero-portrait img {
  width: 100%; filter: drop-shadow(0 26px 34px rgba(1, 27, 53, .26));
  -webkit-mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
}
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero-spark {
  position: absolute; left: 0; top: 46%; z-index: 3; width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-ink)); color: #fff; display: grid; place-items: center;
  box-shadow: 0 16px 30px -12px rgba(1, 27, 53, .55); opacity: 0;
  animation: popIn 700ms var(--ease-out) 1.3s forwards, floatY 5s ease-in-out 2s infinite;
}
.hero-spark svg { width: 21px; height: 21px; }
@keyframes popIn { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: none; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-tag {
  position: absolute; right: 0; bottom: 24%; z-index: 3; display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-radius: 999px; padding: .4rem 1rem .4rem .45rem;
  box-shadow: 0 14px 30px -14px rgba(1, 27, 53, .4); text-align: left; line-height: 1.15;
  opacity: 0; animation: slideIn 800ms var(--ease-out) 1.6s forwards;
}
.hero-tag img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }
.hero-tag b { display: block; font-size: .78rem; font-weight: 600; color: var(--navy-ink); }
.hero-tag span { font-size: .66rem; color: var(--ink-mute); }
@keyframes slideIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

/* ---------- MARQUEE ---------- */
.marquee {
  position: relative; z-index: 2; background: var(--navy-ink); color: var(--blush); overflow: hidden; padding: .95rem 0;
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
}
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 1.4rem; padding-right: 1.4rem; white-space: nowrap; }
.marquee-track svg { width: 10px; height: 10px; color: var(--nude); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- SEÇÕES ---------- */
.section { position: relative; padding: 5rem 0; }
.section-white { background: var(--white); }
.section-blush { background: linear-gradient(180deg, var(--blush-3) 0%, var(--ivory) 100%); }
.section-dark { background: radial-gradient(90% 60% at 50% 0%, rgba(47,74,107,.6), transparent 70%), linear-gradient(180deg, var(--navy), var(--navy-ink)); color: #fff; }
.section-head { max-width: 640px; margin: 0 auto 2.6rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease-out), transform 800ms var(--ease-out); transition-delay: var(--d, 0s); }
.reveal-zoom { opacity: 0; transform: scale(.95); transition: opacity 700ms var(--ease-out), transform 900ms var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.in, .reveal-zoom.in { opacity: 1; transform: none; }

/* ---------- DIVISÓRIA PENDENTE: dente e seringa ---------- */
.pendant { position: relative; height: 150px; display: flex; justify-content: center; gap: 56px; pointer-events: none; margin-top: -1px; }
.pendant-wire { position: relative; top: 0; width: 1px; height: 92px; background: linear-gradient(180deg, var(--navy), var(--nude)); transform-origin: top center; animation: sway 5s ease-in-out infinite; }
.pendant-wire.syringe { height: 74px; animation-delay: -2.5s; }
.pendant-wire::after {
  content: ""; position: absolute; left: 50%; top: 100%; width: 32px; height: 32px; transform: translateX(-50%); background-color: var(--navy);
  -webkit-mask: var(--icon) no-repeat center / contain; mask: var(--icon) no-repeat center / contain;
}
.pendant-wire.tooth { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5.3c1.7-1.9 4.9-2.3 6.7-.4 2 2 1.7 5.4.8 8.1-.9 2.8-1.7 6.2-3.2 8.2-.9 1.2-2 .8-2.4-.5-.4-1.4-.6-3.6-1.9-3.6s-1.5 2.2-1.9 3.6c-.4 1.3-1.5 1.7-2.4.5-1.5-2-2.3-5.4-3.2-8.2-.9-2.7-1.2-6.1.8-8.1 1.8-1.9 5-1.5 6.7.4z' fill='%23000'/%3E%3C/svg%3E"); }
.pendant-wire.syringe { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32'%3E%3Cpath fill='%23000' d='M9 1h6v2h-1.5v2H16a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-1v2.5h-1.5V24l-1.5 7-1.5-7v-1.5H9V20H8a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h2.5V3H9z'/%3E%3Cpath fill='%23fff' d='M9 8h6v2H9zM9 12h6v1H9z'/%3E%3C/svg%3E"); height: 74px; width: 1px; }
.pendant-wire.syringe::after { width: 26px; height: 34px; }
.pendant.on-dark .pendant-wire { background: linear-gradient(180deg, rgba(255,255,255,.7), var(--nude)); }
.pendant.on-dark .pendant-wire::after { background-color: #fff; }
.pendant.only-syringe .tooth { display: none; }
.pendant.only-tooth .syringe { display: none; }
@keyframes sway { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

/* ---------- SOBRE ---------- */
.about-figure { position: relative; width: min(100%, 360px); margin: 0 auto 2rem; }
.about-figure::before { content: ""; position: absolute; left: 50%; top: 55%; width: 110%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(212,186,174,.5), rgba(212,186,174,0) 72%); filter: blur(18px); z-index: 0; }
.about-figure img { position: relative; z-index: 1; width: 92%; margin: 0 auto; filter: drop-shadow(0 24px 30px rgba(1,27,53,.22)); -webkit-mask-image: linear-gradient(180deg, #000 86%, transparent 100%); mask-image: linear-gradient(180deg, #000 86%, transparent 100%); }
.about-badge {
  position: absolute; z-index: 2; right: 0; bottom: 10%; background: #fff; border-radius: 14px; padding: .5rem .8rem;
  box-shadow: var(--shadow-card); text-align: center; line-height: 1.1; animation: floatY 5s ease-in-out infinite;
}
.about-badge b { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--navy-ink); font-weight: 500; }
.about-badge span { font-size: .5rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); }
.about-name { font-family: var(--font-script); font-size: clamp(2.6rem, 10vw, 3.6rem); color: var(--navy-ink); line-height: 1; margin-bottom: .3rem; }
.about-role { font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--nude-ink); margin-bottom: 1.4rem; }
.about-text p + p { margin-top: 1rem; }
.about-text strong { color: var(--navy-ink); font-weight: 600; }
.creds { display: grid; gap: .55rem; margin: 1.6rem auto 1.8rem; max-width: 420px; text-align: left; }
.creds li { display: flex; gap: .8rem; align-items: flex-start; font-size: .95rem; }
.creds svg { width: 18px; height: 18px; flex: none; color: var(--nude-deep); margin-top: .2rem; }
.press { margin-top: 3rem; }
.press-label { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.1rem; }
.press-logos { display: flex; justify-content: center; align-items: center; gap: 2.2rem; flex-wrap: wrap; }
.press-logos span { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--ink-mute); opacity: .8; }
.press-logos span i { font-style: normal; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- ACOLHIMENTO (compacto) ---------- */
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.care {
  background: #fff; border-radius: 18px; padding: 1.4rem .9rem 1.2rem; box-shadow: 0 1px 0 var(--line), var(--shadow-card);
  display: grid; justify-items: center; gap: .35rem;
}
.care svg { width: 30px; height: 30px; color: var(--nude-deep); fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin-bottom: .2rem; }
.care h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; line-height: 1.2; color: var(--navy-ink); }
.care p { font-size: .82rem; line-height: 1.5; color: var(--ink-soft); }
.care-quote { margin: 2rem auto 0; max-width: 34ch; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; line-height: 1.4; color: var(--navy); }
.care-quote span { display: block; font-family: var(--font-script); font-style: normal; font-size: 1.4rem; color: var(--nude-ink); margin-top: .4rem; }

/* ---------- CRIANÇAS ---------- */
.kids { overflow: hidden; }
.kids-photo { position: relative; width: min(100%, 400px); margin: 0 auto 1.4rem; }
.kids-photo img { border-radius: 28px; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow-soft); }
.kids-note { display: block; margin-top: 1rem; font-family: var(--font-script); font-size: 1.9rem; color: var(--nude-ink); line-height: 1; white-space: nowrap; }
.kids-list { display: grid; gap: 1rem; max-width: 560px; margin: 1.8rem auto 0; }
.kids-list li { display: grid; gap: .2rem; }
.kids-list b { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--navy-ink); }
.kids-list span { color: var(--ink-soft); font-size: .93rem; }
.kids-doodle { position: absolute; width: 90px; opacity: .35; color: var(--nude-deep); pointer-events: none; }
.kids-doodle.a { top: 2rem; left: -1rem; transform: rotate(-16deg); }
.kids-doodle.b { bottom: 3rem; right: -1.4rem; transform: rotate(14deg); width: 70px; }

/* ---------- TRATAMENTOS + alternador ---------- */
.switch {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0 auto 2rem; width: min(100%, 420px);
  padding: 5px; border-radius: 999px; background: var(--navy-mist); border: 1px solid var(--line);
}
.switch::before {
  content: ""; position: absolute; top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); border-radius: 999px;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-ink)); box-shadow: 0 8px 20px -10px rgba(1,27,53,.7);
  transition: transform 340ms var(--ease-out);
}
.switch[data-active="odonto"]::before { transform: translateX(100%); }
.switch button { position: relative; z-index: 1; padding: .8rem .5rem; border-radius: 999px; font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); transition: color 240ms ease; white-space: nowrap; }
@media (min-width: 768px) { .switch button { font-size: .72rem; letter-spacing: .16em; padding: .85rem 1.2rem; } }
.switch button.active { color: #fff; }
.switch button:active { transform: scale(.98); }
[data-panel] { opacity: 0; transform: translateY(12px); transition: opacity 420ms var(--ease-out), transform 520ms var(--ease-out); }
[data-panel].show { opacity: 1; transform: none; }
.panel-intro { max-width: 46ch; margin: 0 auto 1.6rem; color: var(--ink-soft); }

.cards { display: grid; gap: 1rem; }
.card {
  position: relative; overflow: hidden; background: #fff; border-radius: var(--radius); padding: 1.8rem 1.4rem 1.5rem;
  box-shadow: 0 1px 0 var(--line), var(--shadow-card); display: grid; justify-items: center; gap: .5rem;
  transition: transform 260ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.card::before { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: linear-gradient(90deg, transparent, var(--nude-deep), transparent); transform: scaleX(0); transition: transform 400ms var(--ease-out); }
.card-icon { width: 44px; height: 44px; color: var(--navy); margin-bottom: .2rem; }
.card-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; line-height: 1.2; color: var(--navy-ink); }
.card p { font-size: .92rem; color: var(--ink-soft); }
.card .link-arrow { margin-top: .4rem; color: var(--nude-ink); }
.card-link { position: absolute; inset: 0; z-index: 2; }
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-6px); box-shadow: 0 1px 0 var(--line), 0 30px 50px -24px rgba(1,27,53,.3); }
  .card:hover::before { transform: scaleX(1); }
  .card:hover .link-arrow svg { transform: translateX(4px); }
}

/* ---------- EMPILHAMENTO ---------- */
.stack { position: relative; }
.stack-item {
  position: sticky; top: calc(var(--header-h) + 8px); margin-bottom: 1.2rem; border-radius: 26px; overflow: hidden; min-height: 60svh;
  display: grid; align-content: center; justify-items: center; gap: .6rem; padding: 2.6rem 1.6rem;
  box-shadow: 0 -10px 40px -20px rgba(1,27,53,.4), 0 30px 60px -30px rgba(1,27,53,.45); transform-origin: center top; transition: transform 500ms var(--ease-out);
}
.stack-item:nth-child(2) { top: calc(var(--header-h) + 24px); } .stack-item:nth-child(3) { top: calc(var(--header-h) + 40px); } .stack-item:nth-child(4) { top: calc(var(--header-h) + 56px); }
.stack-item.is-under { transform: scale(.96) translateY(-6px); }
.stack-item.on-white { background: #fff; color: var(--ink); }
.stack-item.on-blush { background: linear-gradient(160deg, var(--blush-3), var(--blush)); color: var(--ink); }
.stack-item.on-navy { background: radial-gradient(90% 70% at 50% 0%, rgba(47,74,107,.7), transparent 70%), linear-gradient(160deg, var(--navy), var(--navy-ink)); color: #fff; }
.stack-item.on-nude { background: linear-gradient(160deg, var(--nude), var(--nude-deep)); color: #fff; }
.stack-num { font-family: var(--font-display); font-style: italic; font-size: 3.6rem; line-height: 1; font-weight: 300; opacity: .45; }
.stack-item h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 6.4vw, 2.6rem); line-height: 1.1; max-width: 16ch; }
.stack-item p { max-width: 44ch; opacity: .85; }
.stack-item .stack-art { position: absolute; right: -6%; bottom: -10%; width: 42%; opacity: .12; pointer-events: none; }
.stack-item .stack-art path { fill: none; stroke: currentColor; stroke-width: 2; }

/* ---------- DENTE QUE SE DESENHA COM O SCROLL (curto) ---------- */
.scroll-tooth { position: relative; height: 150svh; }
.scroll-tooth-pin { position: sticky; top: 0; height: 100svh; display: grid; place-items: center; overflow: hidden; }
.tooth-stage { position: relative; width: min(56vw, 250px); margin: 0 auto 1.4rem; }
.tooth-stage svg { width: 100%; height: auto; overflow: visible; }
.tooth-base { fill: none; stroke: var(--nude); stroke-width: 1; stroke-dasharray: 3 6; stroke-linecap: round; opacity: .8; }
.tooth-outline { fill: none; stroke: var(--navy); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 2400; stroke-dashoffset: 2400; }
.tooth-fill { fill: url(#toothGrad); clip-path: inset(100% 0 0 0); }
.tooth-shine { fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; opacity: 0; stroke-dasharray: 200; stroke-dashoffset: 200; }
.tooth-glow { position: absolute; inset: -30%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, rgba(212,186,174,.5), transparent 70%); filter: blur(20px); opacity: var(--g, 0); }
.tooth-words { display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap; font-family: var(--font-display); font-size: clamp(1.3rem, 5vw, 2rem); color: var(--ink-mute); }
.tooth-words span { position: relative; transition: color 300ms ease; }
.tooth-words span + span::before { content: "·"; margin-right: .9rem; color: var(--nude); }
.tooth-words span.lit { color: var(--navy-ink); font-style: italic; }
.tooth-caption { margin-top: .8rem; color: var(--ink-soft); font-size: .95rem; max-width: 36ch; margin-inline: auto; }

/* ---------- RESULTADOS ---------- */
.compare-grid { display: grid; gap: 1.4rem; }
.compare { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--blush-2); box-shadow: var(--shadow-card); user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.compare .after { clip-path: inset(0 0 0 var(--x, 50%)); }
.compare-handle { position: absolute; top: 0; bottom: 0; left: var(--x, 50%); width: 2px; background: #fff; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.compare-handle::after { content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--navy); display: grid; place-items: center; font-size: 1.1rem; box-shadow: 0 10px 24px -8px rgba(0,0,0,.4); }
.compare input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; -webkit-appearance: none; appearance: none; }
.compare .tag { position: absolute; top: .9rem; font-size: .6rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; color: var(--navy-ink); background: rgba(255,255,255,.9); padding: .35rem .7rem; border-radius: 4px; pointer-events: none; }
.compare .tag.l { left: .9rem; } .compare .tag.r { right: .9rem; }
.compare-caption { margin-top: .8rem; font-family: var(--font-display); font-size: 1.1rem; color: var(--navy-ink); }
.compare-note { margin-top: 1.6rem; font-size: .78rem; color: var(--ink-mute); }

/* ---------- DEPOIMENTOS ---------- */
.testis { display: grid; gap: 1rem; }
.testi { background: #fff; border-radius: var(--radius); padding: 2rem 1.5rem 1.6rem; box-shadow: 0 1px 0 var(--line), var(--shadow-card); display: grid; gap: .8rem; justify-items: center; }
.testi .stars { color: var(--nude-deep); letter-spacing: .15em; font-size: .85rem; }
.testi p { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; line-height: 1.45; color: var(--navy-ink); }
.testi b { font-weight: 600; font-size: .85rem; }
.testi b small { display: block; font-weight: 400; color: var(--ink-mute); font-size: .74rem; letter-spacing: .08em; margin-top: .15rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; text-align: left; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 0; font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; line-height: 1.3; color: var(--navy-ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: background-color 200ms ease; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; background: var(--navy); width: 11px; height: 1.5px; }
.faq summary i::after { transform: rotate(90deg); transition: transform 300ms var(--ease-out); }
.faq details[open] summary i { background: var(--navy); border-color: var(--navy); }
.faq details[open] summary i::before, .faq details[open] summary i::after { background: #fff; }
.faq details[open] summary i::after { transform: rotate(0deg); }
.faq-body { padding: 0 0 1.4rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- CONTATO ---------- */
.contact-card {
  position: relative; overflow: hidden; border-radius: 30px; padding: 3rem 1.5rem 2.4rem; color: #fff; box-shadow: var(--shadow-soft);
  background: radial-gradient(90% 60% at 50% 0%, rgba(47,74,107,.7), transparent 70%), linear-gradient(170deg, var(--navy) 0%, var(--navy-ink) 100%);
}
.contact-card::before { content: ""; position: absolute; inset: 10px; border-radius: 22px; border: 1px solid rgba(255,255,255,.12); pointer-events: none; }
.contact-art { position: absolute; right: -6%; top: 4%; width: 46%; opacity: .1; pointer-events: none; }
@media (min-width: 768px) { .contact-art { width: 22%; right: 2%; top: 6%; } }
.contact-art path { fill: none; stroke: #fff; stroke-width: 1.2; }
.contact-card > * { position: relative; }
.contact-list { display: grid; gap: .9rem; margin: 1.8rem auto 2rem; max-width: 460px; text-align: left; }
.contact-list li { display: flex; gap: .9rem; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: .9rem 1rem; }
.contact-list svg { width: 20px; height: 20px; flex: none; color: var(--nude); }
.contact-list small { display: block; font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--nude); }
.contact-list span { font-size: .95rem; }
.contact-ctas { display: grid; gap: .8rem; max-width: 380px; margin: 0 auto; }

/* ---------- FOOTER ---------- */
.footer { position: relative; overflow: hidden; background: var(--navy-ink); color: rgba(255,255,255,.78); padding: 8.5rem 0 2rem; margin-top: 4rem; }
.footer::before { content: ""; position: absolute; left: 50%; top: -1px; transform: translateX(-50%); width: 140%; height: 90px; background: var(--ivory); border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.footer .logo-mark { width: 150px; height: 66px; background-color: #fff; margin: 0 auto 1rem; }
.footer-tag { font-family: var(--font-script); font-size: 1.6rem; color: var(--nude); line-height: 1; margin-bottom: 2.4rem; }
.footer-cols { display: grid; gap: 2rem; }
.footer h5 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: #fff; margin-bottom: .8rem; }
.footer ul { display: grid; gap: .45rem; font-size: .92rem; }
.footer a { transition: color 200ms ease; }
@media (hover: hover) { .footer a:hover { color: #fff; } }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; letter-spacing: .08em; color: rgba(255,255,255,.5); }
.footer-bottom p + p { margin-top: .3rem; }

/* ---------- WHATSAPP ---------- */
.wa-float { position: fixed; right: 1rem; bottom: 1rem; z-index: 48; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #25D366; box-shadow: 0 14px 30px -10px rgba(37,211,102,.7); transition: transform 180ms var(--ease-out); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .8 } 100% { transform: scale(1.7); opacity: 0 } }
.wa-float:active { transform: scale(.94); }

/* ---------- PÁGINAS DE PROCEDIMENTO ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden; color: #fff; padding: calc(var(--header-h) + 3.2rem) 0 4rem;
  background: radial-gradient(90% 60% at 50% 0%, rgba(47,74,107,.7), transparent 70%), linear-gradient(180deg, var(--navy) 0%, var(--navy-ink) 100%);
}
.page-hero.hof { background: radial-gradient(80% 60% at 50% 0%, rgba(212,186,174,.45), transparent 70%), linear-gradient(180deg, var(--nude-deep) 0%, var(--navy-ink) 100%); }
.page-art { position: absolute; z-index: -1; left: 50%; top: 50%; width: min(120vw, 520px); transform: translate(-50%, -50%); opacity: .14; pointer-events: none; }
.page-art path { fill: none; stroke: #fff; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 2400; stroke-dashoffset: 2400; animation: artDraw 3.2s var(--ease-in-out) .3s forwards; }
.page-art path + path { animation-delay: 1.2s; }
@keyframes artDraw { to { stroke-dashoffset: 0; } }
.page-hero .kicker { color: var(--nude); }
.page-hero .kicker::before { background: linear-gradient(90deg, transparent, var(--nude)); }
.page-hero .kicker::after { background: linear-gradient(90deg, var(--nude), transparent); }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 60; font-size: clamp(2.3rem, 9vw, 4.4rem); line-height: 1.04; letter-spacing: -.02em; margin: 1rem auto .9rem; max-width: 14ch; text-wrap: balance; }
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--blush); }
.page-hero .lead { color: rgba(255,255,255,.84); }
.page-hero .hero-content { padding: 0; }
.page-hero .hero-ctas { margin: 1.6rem auto 0; }
.page-hero .crumbs { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 1.2rem; }
.page-hero .crumbs a { color: var(--nude); }

.benefits { display: grid; gap: 1rem; }
.benefit { background: #fff; border-radius: 18px; padding: 1.5rem 1.3rem; box-shadow: 0 1px 0 var(--line), var(--shadow-card); display: grid; justify-items: center; gap: .4rem; }
.benefit svg { width: 34px; height: 34px; color: var(--nude-deep); fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; line-height: 1.25; color: var(--navy-ink); }
.benefit p { font-size: .9rem; color: var(--ink-soft); }

.steps { max-width: 640px; margin: 0 auto; display: grid; position: relative; }
.steps::before { content: ""; position: absolute; left: 50%; top: 20px; bottom: 20px; width: 1px; background: linear-gradient(180deg, var(--navy), var(--nude)); }
.step { position: relative; padding: 1.4rem 0; display: grid; justify-items: center; gap: .3rem; }
.step-num { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--navy); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; position: relative; z-index: 1; margin-bottom: .5rem; box-shadow: 0 8px 20px -10px rgba(1,27,53,.35); }
.step h3 { position: relative; display: inline-block; background: var(--ivory); padding: 0 .8rem; font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--navy-ink); }
.step p { position: relative; display: inline-block; background: var(--ivory); padding: 0 .8rem; color: var(--ink-soft); max-width: 46ch; font-size: .95rem; }

.for-who { max-width: 640px; margin: 0 auto; display: grid; gap: .7rem; }
.for-who li { display: flex; gap: .8rem; align-items: flex-start; text-align: left; background: #fff; border-radius: 14px; padding: .9rem 1rem; box-shadow: 0 1px 0 var(--line); }
.for-who svg { width: 18px; height: 18px; flex: none; color: var(--nude-deep); margin-top: .25rem; }

.related { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.2rem; margin-top: 1.2rem; }
.related a { position: relative; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--navy-ink); padding-bottom: .1rem; transition: color 200ms ease; }
.related a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--nude-deep); transform: scaleX(.35); transform-origin: left; opacity: .7; transition: transform 300ms var(--ease-out), opacity 200ms ease; }
@media (hover: hover) { .related a:hover { color: var(--nude-ink); } .related a:hover::after { transform: scaleX(1); opacity: 1; } }

/* ---------- DESKTOP ---------- */
@media (min-width: 768px) {
  .section { padding: 6.5rem 0; }
  .hero-ctas { flex-direction: row; max-width: none; width: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
  .care-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .care { padding: 1.8rem 1.2rem 1.5rem; }
  .care p { font-size: .88rem; }
  .compare-grid { grid-template-columns: repeat(3, 1fr); }
  .testis { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .contact-card { padding: 4rem 3rem 3rem; }
  .contact-list { grid-template-columns: 1fr 1fr; max-width: 720px; }
  .contact-ctas { grid-template-columns: 1fr 1fr; max-width: 560px; }
  .stack-item { min-height: 68vh; padding: 3rem; }
  .pendant { height: 180px; }
  .pendant-wire { height: 120px; }
  .pendant-wire.syringe { height: 100px; }
}

@media (min-width: 1024px) {
  :root { --header-h: 84px; }
  .burger { display: none; }
  .nav-desktop { display: flex; align-items: center; gap: 2rem; }
  .nav-desktop a { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: var(--navy-ink); position: relative; transition: color 300ms ease; }
  .header.on-dark:not(.scrolled) .nav-desktop a { color: #fff; }
  .nav-desktop a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 300ms var(--ease-out); }
  .nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-desktop .btn { padding: .8rem 1.4rem; font-size: .68rem; }
  .nav-desktop .btn-outline { border-color: rgba(28,45,66,.4); }
  .header.on-dark:not(.scrolled) .nav-desktop .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }
  .logo-mark { width: 140px; height: 62px; }

  .hero { min-height: 100vh; padding-top: calc(var(--header-h) + 2rem); justify-content: flex-start; }
  .hero-content { padding-top: 1rem; }
  .hero-visual { width: min(100%, 480px); margin-top: 1.2rem; }
  .hero-title { font-size: clamp(3.4rem, 5vw, 4.8rem); max-width: 15ch; }
  .hero-sub { font-size: 1.1rem; max-width: 46ch; }
  .hero-ctas { flex-direction: row; width: auto; max-width: none; }
  .hero-tag { right: -14%; }
  .hero-spark { left: -10%; width: 58px; height: 58px; }
  .hero-spark svg { width: 24px; height: 24px; }

  .about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: center; }
  .about-figure { margin: 0; width: 100%; max-width: 400px; justify-self: end; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .kids-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .kids-photo { margin: 0; }
  .kids-list { grid-template-columns: 1fr 1fr; }
  .scroll-tooth-pin .wrap { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
  .tooth-stage { width: 300px; margin: 0 auto; }
  .tooth-words { font-size: 2.2rem; justify-content: center; }
  .steps { max-width: 760px; }
  .page-hero { padding: calc(var(--header-h) + 5rem) 0 5.5rem; }
  .page-art { left: 72%; width: 620px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-zoom { opacity: 1; transform: none; }
  .hero-ribbons path, .page-art path { stroke-dashoffset: 0; opacity: 1; }
}
