/* ============================================================
   DRA. ALEANA — Reskin do DS (claro & arejado)
   Componentes base + utilities visuais (tema claro)
   ============================================================ */

/* Tipografia e cor base do app — fundo marfim quente, acolhedor */
body {
  font-family: 'Inter', sans-serif;
  background-color: #F7F2EA; /* marfim quente — "branco, mas nem tanto" */
  color: #5C6670;           /* corpo (cinza chumbo suave) */
}

/* Grão de papel — textura sutil por cima de tudo (tira o clima "flat/clínico") */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 95;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Kicker — overline editorial numerado das dobras
   ( 01 ) — BOAS-VINDAS · DM Mono, linhas nougat nas pontas
   ============================================================ */
.kicker {
  display: inline-flex; align-items: center; gap: .85rem;
  font-family: 'DM Mono', monospace;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(53, 61, 68, .52);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .kicker { font-size: .62rem; letter-spacing: .15em; gap: .55rem; }
  .kicker::before, .kicker::after { width: 22px; }
}
.kicker em { font-style: normal; color: #A77E4E; letter-spacing: .1em; }
.kicker::before, .kicker::after {
  content: ""; width: 36px; height: 1px; flex-shrink: 0;
  background: linear-gradient(to right, transparent, rgba(194, 160, 121, .9));
}
.kicker::after { background: linear-gradient(to left, transparent, rgba(194, 160, 121, .9)); }
/* variante alinhada à esquerda (hero / bento): sem a linha inicial */
.kicker--left::before { display: none; }
/* variante pra dobra escura */
.section-dark .kicker { color: rgba(255, 255, 255, .5); }
.section-dark .kicker em { color: #C2A079; }

/* Continuidade entre dobras — sobreposição de 2px pra esconder o subpixel
   gap entre gradients tocando (Safari mobile precisa de mais que 1px).
   Aplicado em qualquer <section> que segue outra section ou o <main>. */
main + section,
section + section {
  margin-top: -2px;
  position: relative;
  z-index: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.font-heading { font-family: 'Fraunces', serif !important; }
.font-display { font-family: 'Fraunces', serif !important; }
.font-mono    { font-family: 'DM Mono', monospace !important; }

/* Lettering outline transparente — eco do DS (agora em tema claro) */
.text-outline {
  -webkit-text-stroke: 1px rgba(53, 61, 68, 0.45);
  color: transparent;
}
.text-outline-thin {
  -webkit-text-stroke: 1px rgba(53, 61, 68, 0.22);
  color: transparent;
}
.text-outline-brand {
  -webkit-text-stroke: 1.5px #5FA8C9;
  color: transparent;
}

/* Padrão de grade decorativo (bem sutil no claro) */
.grid-bg {
  background-image:
    linear-gradient(to right, rgba(47, 107, 133, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47, 107, 133, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 45%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 45%, transparent 80%);
}

/* Grade contínua: hero → boas-vindas → consciência (fim da dobra do checklist)
   start: nasce suave no topo do hero e segue até a borda de baixo
   mid:   atravessa a dobra inteira sem fade
   end:   se despede em fade no final da dobra do checklist */
.grid-bg--flow-start {
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 100%);
}
.grid-bg--flow-mid {
  mask-image: none;
  -webkit-mask-image: none;
}
.grid-bg--flow-end {
  mask-image: linear-gradient(to bottom, black 0%, black 68%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 68%, transparent 100%);
}

/* Vinheta suave azul/nougat — fundo das seções (clima de paz) */
.bg-noise-vignette {
  background-image:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(95, 168, 201, 0.10) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 100% 100%,
      rgba(194, 160, 121, 0.10) 0%,
      transparent 55%
    );
}

/* Brilho/halo radial bem suave (decorativo de fundo) */
.bg-soft-glow {
  background-image:
    radial-gradient(ellipse 50% 50% at 20% 20%, rgba(95, 168, 201, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(194, 160, 121, 0.12) 0%, transparent 60%);
}

/* Beams decorativos (azul) */
.beam-border-v {
  position: absolute; top: 0; bottom: 0; left: 0; width: 1px;
  background: rgba(53, 61, 68, 0.06); overflow: hidden; z-index: 10;
}
.beam-border-v::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, #5FA8C9, transparent);
  transform: translateY(-100%);
  animation: beam-drop 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0.7;
}
.beam-border-h {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(53, 61, 68, 0.06); overflow: hidden; z-index: 10;
}
.beam-border-h::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent, #5FA8C9, transparent);
  transform: translateX(-100%);
  animation: beam-slide 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 2.5s;
  opacity: 0.7;
}

/* ============================================================
   Beam frame — borda azulada + brilho + linhas varrendo (top/bottom)
   Extraído do .check-panel de consciência pra usar em pontos estratégicos
   (FAQ list, contato bento, cards importantes)
   ============================================================ */
.beam-frame {
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(95, 168, 201, .22);
  background: linear-gradient(160deg, rgba(255, 255, 255, .55), rgba(234, 243, 247, .30));
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 34px 70px -42px rgba(47, 107, 133, .40), inset 0 0 60px rgba(95, 168, 201, .08);
  overflow: hidden;
}
.beam-sweeps, .beam-strong { position: relative; }
.beam-frame::before, .beam-frame::after,
.beam-sweeps::before, .beam-sweeps::after,
.beam-strong::before, .beam-strong::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1px; z-index: 4; pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(95, 168, 201, .7), transparent);
}
.beam-frame::before, .beam-sweeps::before, .beam-strong::before { top: 0; animation: check-sweep 5s cubic-bezier(.6, .6, 0, 1) infinite; }
.beam-frame::after,  .beam-sweeps::after,  .beam-strong::after  { bottom: 0; animation: check-sweep-rev 5s cubic-bezier(.6, .6, 0, 1) infinite; }

/* variante mais perceptível — feixe grosso + brilho + intensidade */
.beam-strong::before, .beam-strong::after {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(95, 168, 201, .95) 45%, rgba(120, 200, 232, .95) 55%, transparent);
  filter: drop-shadow(0 0 6px rgba(95, 168, 201, .6));
}

/* Cartões flutuantes com 3D + hover (eco do DS, glow azul) */
.floating-card {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.6s ease,
              border-color 0.4s ease;
  will-change: transform;
}
.floating-card:hover {
  transform: scale(1.06) translateY(-12px) !important;
  z-index: 50;
  box-shadow:
    0 30px 60px -18px rgba(53, 61, 68, 0.28),
    0 0 40px -10px rgba(95, 168, 201, 0.45);
  border-color: rgba(95, 168, 201, 0.5);
}

/* Flutuação contínua suave (aplicar junto com floating-card se quiser) */
.floaty { animation: floaty 6s ease-in-out infinite; }

/* Botão custom com swap de cores no hover */
.btn-wrapper:hover .btn {
  background-color: #5FA8C9;
  color: #FFFFFF;
  border-color: #5FA8C9;
}
.btn { transition: all 0.3s ease; }

/* Glow utilities (azul brand + nougat) */
.glow-blue     { box-shadow: 0 0 24px -4px rgba(95, 168, 201, 0.45); }
.glow-blue-lg  { box-shadow: 0 0 40px -8px rgba(95, 168, 201, 0.5); }
.glow-nougat   { box-shadow: 0 0 24px -4px rgba(194, 160, 121, 0.45); }

/* Brand gradient (azul → nougat) */
.brand-gradient {
  background-image: linear-gradient(90deg, #5FA8C9 0%, #9FC7D6 45%, #C2A079 100%);
}
.brand-gradient-text {
  background-image: linear-gradient(90deg, #2F6B85 0%, #5FA8C9 50%, #C2A079 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Selection */
::selection {
  background-color: #5FA8C9;
  color: #FFFFFF;
}

/* Scrollbar (webkit) — claro */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #F1EDE6; }
::-webkit-scrollbar-thumb {
  background: rgba(53, 61, 68, 0.18);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(95, 168, 201, 0.6); }

/* Scrollbar hide (para carrosséis) */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* Marquee container */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 4rem;
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 4rem;
  min-width: 100%;
  animation: marquee 30s linear infinite;
}

/* Pill / badge / chip helpers */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Botão "shimmer" giratório (azul) */
.shimmer-btn {
  --spread: 90deg;
  --shimmer-color: #5FA8C9;
  --speed: 3s;
  --cut: 1px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.shimmer-btn:hover {
  box-shadow: 0 0 30px -5px rgba(95, 168, 201, 0.35);
}

/* Antes & Depois — slider "arrasta pra revelar" (wipe) */
.ba {
  position: relative;
  --p: 50%;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
/* camada "antes" por cima, recortada até a alça */
.ba-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--p)) 0 0); }
/* linha da alça */
.ba-line {
  position: absolute; top: 0; bottom: 0; left: var(--p);
  width: 2px; background: rgba(255, 255, 255, .92);
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(95, 168, 201, .7);
  pointer-events: none;
}
/* botão circular da alça */
.ba-knob {
  position: absolute; top: 50%; left: var(--p);
  width: 46px; height: 46px; border-radius: 9999px;
  background: rgba(255, 255, 255, .95);
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  color: #2F6B85;
  box-shadow: 0 8px 22px rgba(53, 61, 68, .32), 0 0 0 6px rgba(255,255,255,.18);
  pointer-events: none;
  transition: transform .25s ease;
}
.ba:hover .ba-knob, .ba.is-dragging .ba-knob { transform: translate(-50%, -50%) scale(1.08); }
/* selos antes/depois */
.ba-tag {
  position: absolute; top: .75rem;
  padding: .28rem .8rem; border-radius: 9999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-tag-antes  { left: .75rem;  background: rgba(53, 61, 68, .72); color: #fff; }
.ba-tag-depois { right: .75rem; background: rgba(95, 168, 201, .92); color: #fff; }

/* ============================================================
   Checklist de consciência — círculo pulsa → checkmark se desenha
   (inspirado num checkbox FPPRO, reskin pro DS claro)
   ============================================================ */
.check-stage { position: relative; }

/* PAINEL rico: vidro + glow interno + linhas varrendo as bordas */
.check-panel {
  position: relative;
  padding: 2.5rem 1.75rem 2.75rem;
  border-radius: 2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, .92), rgba(234, 243, 247, .72));
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(95, 168, 201, .22);
  box-shadow: 0 34px 70px -42px rgba(47, 107, 133, .55), inset 0 0 60px rgba(95, 168, 201, .1);
  overflow: hidden;
  transition: box-shadow .6s ease, transform .5s ease;
}
.check-panel:hover {
  box-shadow: 0 42px 84px -40px rgba(47, 107, 133, .62), inset 0 0 76px rgba(95, 168, 201, .17);
}
/* linhas de luz varrendo as bordas do painel */
.check-panel::before, .check-panel::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1px; z-index: 4; pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(95, 168, 201, .7), transparent);
}
.check-panel::before { top: 0; animation: check-sweep 5s cubic-bezier(.6, .6, 0, 1) infinite; }
.check-panel::after  { bottom: 0; animation: check-sweep-rev 5s cubic-bezier(.6, .6, 0, 1) infinite; }
@keyframes check-sweep     { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }
@keyframes check-sweep-rev { 0% { transform: translateX(100%); }  55%, 100% { transform: translateX(-100%); } }

/* glow radial que "respira" atrás dos itens */
.check-glow-radial {
  position: absolute; top: 32%; left: 50%; width: 62%; height: 56%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(95, 168, 201, .3), rgba(194, 160, 121, .14) 52%, transparent 72%);
  filter: blur(42px); z-index: 0; pointer-events: none;
  animation: check-breathe 6s ease-in-out infinite;
}
@keyframes check-breathe { 0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); } }

.check-grid { position: relative; z-index: 1; }

/* selo flutuante "toque pra marcar" — encavalado na borda do painel */
.check-hint {
  display: flex; align-items: center; gap: 8px; width: max-content; margin: 0 auto -16px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(95, 168, 201, .3);
  box-shadow: 0 12px 28px -12px rgba(47, 107, 133, .45);
  font-size: 12.5px; font-weight: 600; color: #2F6B85; position: relative; z-index: 6;
}
.check-hint .iconify { color: #5FA8C9; animation: check-float 2.4s ease-in-out infinite; }
@keyframes check-float { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(2px); } }

.check-item {
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.check-item:hover { border-color: rgba(95, 168, 201, .45); transform: translateY(-1px); }

/* caixa = círculo com checkmark que se desenha */
.check-box {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(53, 61, 68, .22);
  position: relative; display: flex; align-items: center; justify-content: center;
  transition: border-color .4s ease, background-color .4s ease;
}
.check-draw {
  width: 16px; height: 16px; fill: none; stroke: #5FA8C9;
  stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 24; stroke-dashoffset: 24;
  transition: stroke-dashoffset .5s ease .12s;
}
.check-input:checked ~ .check-box { border-color: #5FA8C9; background: rgba(95, 168, 201, .14); }
.check-input:checked ~ .check-box .check-draw { stroke-dashoffset: 0; }
/* dica pulsante só no primeiro item (some ao marcar) */
.check-item:first-child .check-box::after {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid #5FA8C9; opacity: .55; pointer-events: none;
  animation: check-pulse 2.8s ease infinite;
}
.check-item:first-child:has(.check-input:checked) .check-box::after { animation: none; opacity: 0; }
@keyframes check-pulse { 0%, 100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.4); opacity: 0; } }

/* item marcado destaca */
.check-item:has(.check-input:checked) {
  border-color: #5FA8C9; background: #EAF3F7;
  box-shadow: 0 12px 30px -16px rgba(95, 168, 201, .6);
}
.check-item:has(.check-input:checked) .check-label { color: #2C343B; }

/* CTA do painel ganha destaque quando há marcações */
[data-cta] { transition: box-shadow .35s ease, transform .35s ease; }
[data-cta].is-active { box-shadow: 0 0 42px -8px rgba(95, 168, 201, .55); transform: translateY(-2px); }

/* Vídeo de apresentação — frame + overlay de play */
.video-frame video { display: block; }
[data-video-wrap].is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   Boas-vindas — "carta da Dra." (bilhete de papel + assinatura)
   + chips de acolhimento + anel girando atrás do vídeo
   ============================================================ */
.letter-card {
  position: relative;
  background: linear-gradient(180deg, #FFFEFB, #FBF6ED);
  border: 1px solid rgba(53, 61, 68, .09);
  border-radius: 1.25rem;
  padding: 2rem 1.9rem 1.5rem;
  box-shadow: 0 26px 50px -30px rgba(53, 61, 68, .38);
  transform: rotate(-1.4deg);
  max-width: 480px;
  text-align: left;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
}
.letter-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 32px 62px -32px rgba(53, 61, 68, .45);
}
/* fita adesiva nougat no topo */
.letter-tape {
  position: absolute; top: -13px; left: 50%;
  width: 112px; height: 27px;
  transform: translateX(-50%) rotate(-2.5deg);
  background: rgba(194, 160, 121, .38);
  border-left: 1px dashed rgba(255, 255, 255, .75);
  border-right: 1px dashed rgba(255, 255, 255, .75);
  border-radius: 2px;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.letter-hi {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 1.3rem; color: #353D44; margin-bottom: .55rem;
}
.letter-body { color: rgba(53, 61, 68, .72); line-height: 1.65; }
.letter-sign {
  display: flex; flex-direction: column;
  margin-top: 1.15rem; padding-top: .95rem;
  border-top: 1px dashed rgba(194, 160, 121, .5);
}
.letter-name {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  font-size: 1.55rem; line-height: 1; color: #2F6B85;
}
.letter-cro {
  font-family: 'DM Mono', monospace;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(53, 61, 68, .45); margin-top: .5rem;
}

/* "o que você encontra aqui" — leque de polaroids com pacientes reais,
   fita adesiva e selo nougat (mesma linguagem scrapbook da carta) */
.wel-points { max-width: 500px; text-align: left; }
.wel-points-kicker {
  display: flex; align-items: center; gap: .8rem;
  font-family: 'DM Mono', monospace;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(53, 61, 68, .48);
  margin-bottom: 1.15rem;
}
.wel-points-kicker::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(194, 160, 121, .8), transparent);
}
.wel-polas {
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
  gap: .55rem;
  padding: 2.6rem .25rem .5rem;   /* espaço pro varal */
}
/* varal: fio com barriga (border-radius curva o border-bottom) + fixações */
.wel-cord {
  position: absolute; top: 12px; left: -4px; right: -4px;
  height: 28px;
  border-bottom: 2px solid rgba(143, 106, 66, .55);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  pointer-events: none;
}
.wel-cord::before, .wel-cord::after {
  content: ""; position: absolute; top: -3px;
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #C2A079, #8F6A42);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .25);
}
.wel-cord::before { left: -2px; }
.wel-cord::after { right: -2px; }
.wel-pola {
  position: relative;
  width: 32%;
  background: linear-gradient(180deg, #FFFEFB, #FBF6ED);
  border: 1px solid rgba(53, 61, 68, .08);
  border-radius: .45rem;
  padding: .45rem .45rem .5rem;
  box-shadow: 0 18px 34px -18px rgba(53, 61, 68, .5);
  transform-origin: 50% -14px;    /* pivô no prendedor: balança pendurada */
  animation: wel-sway 5s ease-in-out infinite;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
}
.wel-pola:nth-of-type(1) { --sw: -3.5deg; animation-duration: 4.8s; animation-delay: -1.3s; }
.wel-pola:nth-of-type(2) { --sw: 2deg;    animation-duration: 5.7s; animation-delay: -3.1s; margin-top: 12px; z-index: 2; }
.wel-pola:nth-of-type(3) { --sw: 3.5deg;  animation-duration: 5.2s; animation-delay: -.7s;  margin-top: 4px; }
@keyframes wel-sway {
  0%, 100% { transform: rotate(calc(var(--sw, 0deg) - 2.4deg)); }
  50%      { transform: rotate(calc(var(--sw, 0deg) + 2.4deg)); }
}
.wel-pola:hover {
  animation: none;
  transform: rotate(0) translateY(-8px) scale(1.05);
  z-index: 5;
  box-shadow: 0 28px 48px -20px rgba(53, 61, 68, .6);
}
@media (prefers-reduced-motion: reduce) {
  .wel-pola { animation: none; transform: rotate(var(--sw, 0deg)); }
}
.wel-pola img {
  display: block; width: 100%;
  aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: .3rem;
}
.wel-pola figcaption {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: .78rem; line-height: 1.2;
  color: rgba(53, 61, 68, .72);
  text-align: center; padding: .5rem .1rem .15rem;
}
.wel-pola figcaption em { font-weight: 600; color: #2F6B85; }
/* prendedor de roupa de madeira segurando a foto no varal */
.wel-pin {
  position: absolute; top: -16px; left: 50%;
  width: 13px; height: 27px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #D9BC94 0%, #C2A079 45%, #9E7B4F 100%);
  border-radius: 6px 6px 4px 4px / 9px 9px 3px 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .4);
  z-index: 3;
}
.wel-pin::before { /* fenda da madeira */
  content: ""; position: absolute; left: 50%; top: 10px; bottom: 2px;
  width: 1.5px; transform: translateX(-50%);
  background: rgba(90, 62, 32, .55);
  border-radius: 2px;
}
.wel-pin::after { /* mola metálica */
  content: ""; position: absolute; left: 50%; top: 7px;
  width: 9px; height: 3.5px; transform: translateX(-50%);
  background: linear-gradient(180deg, #EDEDED, #9BA3A8);
  border-radius: 2px;
}
/* selo "100% reais" por cima do leque */
.wel-polas-sticker {
  position: absolute; top: -4px; right: -6px; z-index: 6;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .42rem .75rem; border-radius: 999px;
  background: linear-gradient(135deg, #C2A079, #A77E4E);
  color: #fff;
  font-family: 'DM Mono', monospace; font-size: .58rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
  transform: rotate(6deg);
  box-shadow: 0 12px 22px -10px rgba(167, 126, 78, .75);
}

/* anel tracejado nougat girando atrás do vídeo */
.wel-ringwrap {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.wel-ring {
  width: 430px; height: 430px; border-radius: 50%;
  border: 1.5px dashed rgba(194, 160, 121, .6);
  animation: wel-spin 30s linear infinite;
}
.wel-ring::after { /* pontinho de brilho no anel */
  content: ""; position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: #C2A079; box-shadow: 0 0 12px rgba(194, 160, 121, .9);
}
@keyframes wel-spin { to { transform: rotate(360deg); } }
@media (max-width: 640px) {
  .letter-card { padding: 1.7rem 1.4rem 1.3rem; }
  .wel-ring { width: 330px; height: 330px; }
  .wel-pola figcaption { font-size: .7rem; }
  .wel-polas-sticker { right: 0; font-size: .54rem; padding: .38rem .65rem; }
}

/* ============================================================
   Depoimentos — "expand card" de vídeos verticais (9:16)
   Inspirado no efeito expand-card, reskinnado 100% pro DS.
   Desktop: passar o mouse / clicar abre · Mobile: tocar abre.
   ============================================================ */
.depo-expand {
  display: flex;
  flex-direction: row;
  gap: 1.1rem;
  width: 100%;
  height: 540px;
  -webkit-tap-highlight-color: transparent;
}
.depo-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(95, 168, 201, .22);
  border-radius: 2rem;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: inset 0 0 40px 5px transparent;
  transition: flex-grow .55s cubic-bezier(.4, 0, .2, 1),
              box-shadow .55s ease, border-color .55s ease, background-color .55s ease;
}
.depo-card.is-open {
  flex-grow: 4.4;
  border-color: rgba(95, 168, 201, .5);
  background: rgba(255, 255, 255, .8);
  box-shadow: inset 0 0 54px 6px rgba(95, 168, 201, .13);
}

.depo-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex: 1 1 auto;
  min-width: 0;
}
.depo-card.is-open .depo-main { align-items: flex-start; padding: .25rem .25rem .25rem .5rem; }

.depo-num {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5FA8C9, #2F6B85);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 22px -8px rgba(95, 168, 201, .75);
}

.depo-vlabel {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: #353D44;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: opacity .35s ease;
}
.depo-card.is-open .depo-vlabel { display: none; }

.depo-text {
  display: none;
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition: opacity .5s ease .15s, transform .6s ease .15s, filter .6s ease .15s;
}
.depo-card.is-open .depo-text {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  opacity: 1;
  transform: none;
  filter: none;
}

.depo-media {
  flex-shrink: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  transition: width .55s cubic-bezier(.4, 0, .2, 1), opacity .45s ease;
}
.depo-card.is-open .depo-media { width: 286px; opacity: 1; }
.depo-frame {
  position: relative;
  height: 100%;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #232A30;
  box-shadow: 0 18px 40px -18px rgba(35, 42, 48, .6);
}
.depo-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Celular: MESMO acordeão do desktop — texto AO LADO do vídeo.
   Só os tamanhos são reduzidos p/ caber na largura do celular. */
@media (max-width: 640px) {
  /* ganha largura: reduz a margem lateral da dobra no celular */
  .depo-expand { height: auto; align-items: stretch; gap: .35rem; padding-left: .75rem !important; padding-right: .75rem !important; }
  .depo-card { padding: .8rem .25rem; gap: .5rem; }
  .depo-card.is-open { flex-grow: 8; }

  .depo-num { width: 26px; height: 26px; font-size: .72rem; }
  .depo-vlabel { font-size: .78rem; }

  /* texto à esquerda + vídeo 9:16 cheio à direita (uncropped, igual desktop) */
  .depo-card.is-open .depo-main { padding: .1rem 0 .1rem .12rem; gap: .4rem; }
  .depo-card.is-open .depo-text { gap: .38rem; }
  .depo-card.is-open .depo-text h3 { font-size: 1.08rem; line-height: 1.1; }
  .depo-card.is-open .depo-text p { font-size: .68rem; line-height: 1.28; }
  .depo-card.is-open .depo-text .pill { display: none; }

  .depo-media { transition: width .5s cubic-bezier(.4, 0, .2, 1), opacity .45s ease; }
  .depo-card.is-open .depo-media { width: 165px; align-self: center; }
  .depo-frame { width: 165px; height: auto; aspect-ratio: 9 / 16; margin: 0; }
}

/* ============================================================
   Como funciona — fluxo editorial vertical (trilho + brilho no scroll)
   Inspirado no "editorial-flow", reskinnado pro DS (claro/acolhedor).
   ============================================================ */
.como-flow { position: relative; max-width: 800px; margin: 0 auto; padding-left: 92px; }

/* trilho base (linha fininha que esmaece nas pontas) */
.como-rail {
  position: absolute; left: 34px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(95,168,201,.28) 12%, rgba(194,160,121,.32) 86%, transparent);
}
/* trilho "preenchido" que cresce com o scroll */
.como-rail-fill {
  position: absolute; left: 34px; top: 8px; width: 2px; height: 0;
  background: linear-gradient(to bottom, rgba(95,168,201,.7), rgba(194,160,121,.75));
  border-radius: 2px; will-change: height;
}
/* brilho viajante na ponta do preenchimento */
.como-glow {
  position: absolute; left: 30px; top: 0; width: 10px; height: 120px;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, transparent, #5FA8C9, transparent);
  box-shadow: 0 0 16px 3px rgba(95,168,201,.55);
  border-radius: 9999px; opacity: 0; transition: opacity .4s ease;
  pointer-events: none; will-change: top;
}

/* cada etapa */
.como-step {
  position: relative;
  display: grid; grid-template-columns: 76px 1fr; gap: 2.25rem;
  padding: 2.7rem 0;
}
.como-step + .como-step { border-top: 1px solid rgba(53,61,68,.07); }

/* nó luminoso sobre o trilho */
.como-step::before {
  content: ""; position: absolute; left: -58px; top: 3.35rem;
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(95,168,201,.32);
  transition: background .5s ease, box-shadow .5s ease;
}
.como-step.is-active::before {
  background: #5FA8C9;
  box-shadow: 0 0 0 5px rgba(95,168,201,.12), 0 0 14px rgba(95,168,201,.7);
}

/* número grande editorial (Fraunces leve em itálico) */
.como-num {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 3.1rem; line-height: 1; color: rgba(47,107,133,.32);
  transition: color .5s ease;
}
.como-step.is-active .como-num { color: #2F6B85; }

.como-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.como-head .iconify { color: #C2A079; flex-shrink: 0; }
.como-step h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.5rem; color: #353D44; line-height: 1.15; }
.como-step p { color: rgba(53,61,68,.66); font-size: 1rem; line-height: 1.55; max-width: 46ch; }

@media (max-width: 640px) {
  .como-flow { padding-left: 50px; }
  .como-rail, .como-rail-fill { left: 17px; }
  .como-glow { left: 13px; }
  .como-step { grid-template-columns: 1fr; gap: .55rem; padding: 2.1rem 0; }
  .como-step::before { left: -33px; top: 2.2rem; }
  .como-num { font-size: 2.3rem; }
  .como-step h3 { font-size: 1.3rem; }
  .como-step p { font-size: .92rem; }
}

/* ============================================================
   Facetas (a solução) — grid de benefícios com ícone animado
   Inspirado no componente "benefits cards", reskin pro DS claro:
   badge com anel girando, cantos de precisão, foco no hover.
   ============================================================ */
.fac-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 4 cards: 2x2, sem órfão */
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  -webkit-tap-highlight-color: transparent;
}
.fac-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 0 0 1px rgba(53, 61, 68, .08);
  transition: opacity .6s ease, background-color .4s ease, box-shadow .4s ease, transform .4s ease;
  box-sizing: border-box;
  user-select: none;
}
/* foco: ao passar o mouse no grid, os outros cards recuam
   (só em dispositivo com mouse; no touch o tap emula hover e prenderia o fade) */
@media (hover: hover) {
  .fac-grid:hover .fac-card:not(:hover) { opacity: .4; }
}
.fac-card:hover {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(95, 168, 201, .35), 0 22px 44px -26px rgba(95, 168, 201, .45);
  z-index: 2;
}

/* topo: ícone + linhas decorativas */
.fac-iconwrap {
  position: relative; display: flex; align-items: center;
  width: 100%; padding: 34px 0 0 40px; box-sizing: border-box;
}
.fac-iconwrap::before { /* linha horizontal */
  content: ""; position: absolute; top: 65%; left: 50%; width: 100%; height: 1px;
  background: linear-gradient(to right, transparent -20%, rgba(53, 61, 68, .1) 20%, transparent 95%);
  transform: translate(-50%, -50%);
}
.fac-iconwrap::after { /* linha vertical */
  content: ""; position: absolute; top: 25px; left: 79px; width: 1px; height: 50%;
  background: linear-gradient(to bottom, transparent 5%, rgba(53, 61, 68, .1) 50%);
  transform: translate(-50%, -50%);
}

/* badge do ícone com anel girando */
.fac-badge {
  width: 78px; height: 78px; border-radius: 50%;
  background: #fff; border: 3px solid rgba(95, 168, 201, .18);
  box-shadow: inset 0 0 18px rgba(95, 168, 201, .12);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 5;
}
.fac-badge-inner {
  width: 58px; height: 58px; border-radius: 50%; overflow: hidden;
  background: #EAF3F7; display: flex; align-items: center; justify-content: center; position: relative;
}
.fac-badge-inner::before { /* anel conic girando */
  content: ""; position: absolute; top: 50%; left: 45%; width: 61px; height: 61px;
  transform: translate(-50%, -50%);
  background:
    conic-gradient(from 0deg at 50.12% 50%, transparent 0deg, #5FA8C9 60deg, transparent 60.1deg),
    conic-gradient(from 0deg at 50.12% 50%, transparent 190deg, #C2A079 250deg, transparent 250.1deg);
  animation: fac-spin 3.2s linear infinite;
}
.fac-card:hover .fac-badge-inner::before { animation-duration: .5s !important; }
/* Touch (sem hover): o foco do card acende via scroll (JS adiciona .is-hot) */
.fac-card.is-hot {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(95, 168, 201, .35), 0 22px 44px -26px rgba(95, 168, 201, .45);
  z-index: 2;
}
.fac-card.is-hot .fac-badge-inner::before { animation-duration: .5s !important; }
.fac-badge-core {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(to top, #F4F9FB, #ffffff);
  display: flex; align-items: center; justify-content: center; z-index: 1;
  color: #2F6B85;
}
.fac-badge-core .iconify { font-size: 24px; }
@keyframes fac-spin {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* conteúdo */
.fac-content { display: flex; flex-direction: column; gap: 12px; padding: 28px 30px 36px; box-sizing: border-box; }
.fac-content h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.35rem; color: #353D44; margin: 0; line-height: 1.2; }
.fac-content p { font-family: 'Inter', sans-serif; font-size: .95rem; line-height: 1.5; color: rgba(53, 61, 68, .62); margin: 0; }

/* marcadores de canto (crosshair sutil de precisão) */
.fac-corner { position: absolute; width: 1px; height: 1px; z-index: 3; }
.fac-corner.tl { top: 0; left: 0; } .fac-corner.tr { top: 0; right: 0; }
.fac-corner.bl { bottom: 0; left: 0; } .fac-corner.br { bottom: 0; right: 0; }
.fac-corner::before, .fac-corner::after { content: ""; position: absolute; background: rgba(95, 168, 201, .45); }
.fac-corner::before { width: 2px; height: 11px; top: -5px; left: -1px; }
.fac-corner::after  { width: 11px; height: 2px; top: -1px; left: -5px; }
.fac-corner i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: rgba(194, 160, 121, .7); top: -2px; left: -2px; }

@media (max-width: 1024px) { .fac-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .fac-grid { grid-template-columns: 1fr; }
  .fac-card { background: #fff; box-shadow: 0 0 0 1px rgba(53, 61, 68, .18); }
  .fac-corner::before { height: 14px; top: -7px; }
  .fac-corner::after  { width: 14px;  left: -7px; }
  .fac-iconwrap { justify-content: center; padding: 34px 0 0 0; }
  .fac-iconwrap::before,
  .fac-iconwrap::after { display: none; }
  /* anel do ícone visível no celular: miolo menor abre 6px de anel
     + brilho desfocado acompanhando os arcos */
  .fac-badge-core { width: 46px; height: 46px; }
  .fac-badge-inner::before {
    animation-duration: 2.2s;
    filter: drop-shadow(0 0 4px rgba(95, 168, 201, .8)) drop-shadow(0 0 10px rgba(194, 160, 121, .55));
  }
  .fac-content { padding: 24px 24px 32px; text-align: center; align-items: center; }
  .fac-content p { max-width: 34ch; }
}

/* ============================================================
   Fechamento — bento com "celular" 3D que sobe + tags flutuantes
   Inspirado no bento "notebook que abre", reskin pro DS claro:
   o retrato da Dra. num phone que se levanta no scroll/hover,
   brilho varrendo a tela e tags de sentimento flutuando.
   ============================================================ */
.fech-bento {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #F4F9FB 55%, #EAF3F7 100%);
  border: 1px solid rgba(95, 168, 201, .18);
  box-shadow: 0 44px 90px -52px rgba(47, 107, 133, .55);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.fech-text { padding: 3.25rem clamp(1.5rem, 4vw, 3.5rem); }

.fech-stage {
  position: relative;
  align-self: stretch;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* glow de fundo que acende no reveal/hover */
.fech-glow {
  position: absolute; top: 44%; left: 50%;
  width: 360px; height: 360px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(95, 168, 201, .5), rgba(194, 160, 121, .28) 55%, transparent 70%);
  filter: blur(55px); opacity: .25; transition: opacity 1s ease; pointer-events: none;
}
.fech-bento:hover .fech-glow, .fech-stage.is-open .fech-glow { opacity: .9; }

/* perspectiva: o celular sobe */
.fech-phone-wrap {
  position: relative; z-index: 5; margin-bottom: -8px;
  transform: perspective(1400px) rotateX(-55deg) translateY(14px);
  transform-origin: 50% 100%;
  transition: transform 1.25s cubic-bezier(.2, .85, .25, 1);
  will-change: transform;
}
.fech-stage.is-open .fech-phone-wrap, .fech-bento:hover .fech-phone-wrap {
  transform: perspective(1400px) rotateX(0deg) translateY(0);
}

.fech-phone {
  position: relative;
  width: 212px; height: 424px;
  border-radius: 2.1rem;
  background: #232A30;
  border: 6px solid #2b333b;
  box-shadow: 0 32px 60px -22px rgba(35, 42, 48, .7), inset 0 0 0 2px rgba(255, 255, 255, .04);
  overflow: hidden;
}
.fech-phone > img { width: 100%; height: 100%; object-fit: cover; object-position: 66% 26%; display: block; }
.fech-phone::before { /* notch */
  content: ""; position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 17px; border-radius: 999px; background: #1b2127; z-index: 6;
}
.fech-screen-pill {
  position: absolute; left: 11px; bottom: 12px; z-index: 6;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, .88); backdrop-filter: blur(6px);
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: #353D44;
}
.fech-screen-pill .iconify { color: #5FA8C9; font-size: 13px; }

/* brilho varrendo a tela */
.fech-shine { position: absolute; inset: 0; z-index: 5; overflow: hidden; border-radius: 2.1rem; pointer-events: none; }
.fech-shine::after {
  content: ""; position: absolute; top: -25%; left: 0; width: 55%; height: 150%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, .5), transparent);
  transform: skewX(-18deg) translateX(-240%);
  transition: transform 1.6s ease;
}
.fech-stage.is-open .fech-shine::after, .fech-bento:hover .fech-shine::after {
  transform: skewX(-18deg) translateX(340%);
}

/* tags flutuantes (reskin dos "cursors") */
.fech-tag {
  position: absolute; z-index: 8;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(6px);
  box-shadow: 0 12px 26px -12px rgba(47, 107, 133, .55);
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600;
  transition: filter .9s ease;
}
.fech-tag .iconify { font-size: 15px; }
.fech-tag-1 { top: 13%; left: 4%;  color: #2F6B85; animation: fech-float-a 5s ease-in-out infinite; }
.fech-tag-2 { bottom: 17%; right: 3%; color: #A77E4E; animation: fech-float-b 5.6s ease-in-out infinite; }
.fech-bento:hover .fech-tag { filter: blur(7px); }
@keyframes fech-float-a { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(10px, -14px); } }
@keyframes fech-float-b { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-12px, 12px); } }

@media (max-width: 880px) {
  .fech-bento { grid-template-columns: 1fr; }
  .fech-text { padding: 2.6rem 1.6rem 0.5rem; text-align: center; }
  .fech-stage { min-height: 430px; }
  .fech-tag-1 { left: 8%; }
  .fech-tag-2 { right: 7%; }
}
@media (max-width: 400px) {
  .fech-phone { width: 188px; height: 376px; }
  .fech-tag { font-size: 11.5px; padding: 7px 11px; }
}

/* ============================================================
   Fechamento v2 — bento ESCURO + conversa de WhatsApp ao vivo
   O celular sobe (mecânica original) e as mensagens chegam
   em sequência quando a dobra entra na tela.
   ============================================================ */
.fech-dark {
  background: linear-gradient(150deg, #2E363E 0%, #232A30 55%, #2A323A 100%);
  border-color: rgba(255, 255, 255, .09);
  box-shadow: 0 44px 90px -48px rgba(0, 0, 0, .8);
}
.fech-dark .kicker { color: rgba(255, 255, 255, .5); }
.fech-dark .kicker em { color: #C2A079; }
.fech-dark .fech-phone {
  border-color: #3A444E;
  box-shadow: 0 32px 60px -22px rgba(0, 0, 0, .8),
              0 0 0 1px rgba(255, 255, 255, .06),
              0 0 90px -24px rgba(95, 168, 201, .4);
}

/* o celular inteiro é um link pro WhatsApp */
.fech-phone-link { display: block; cursor: pointer; -webkit-tap-highlight-color: transparent; }

/* UI do chat dentro do celular */
.chat-ui { position: absolute; inset: 0; display: flex; flex-direction: column; background: #EFE8DB; }
.chat-head {
  display: flex; align-items: center; gap: .55rem;
  padding: 1.85rem .85rem .65rem;
  background: #2B333B;
}
.chat-ava {
  width: 30px; height: 30px; border-radius: 50%;
  object-fit: cover; object-position: 66% 26%;
  border: 1.5px solid rgba(95, 168, 201, .6);
}
.chat-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.chat-name { font-size: .74rem; font-weight: 600; color: #fff; line-height: 1.1; }
.chat-status { display: flex; align-items: center; gap: 4px; font-size: .58rem; color: rgba(255, 255, 255, .55); }
.chat-status i {
  width: 6px; height: 6px; border-radius: 50%; background: #7BC97B;
  box-shadow: 0 0 7px rgba(123, 201, 123, .95);
  animation: chat-pulse 2.2s ease-in-out infinite;
}
@keyframes chat-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }

.chat-body {
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: .35rem;
  padding: .6rem .65rem .35rem; overflow: hidden;
  background-image: radial-gradient(rgba(194, 160, 121, .16) 1px, transparent 1.3px);
  background-size: 14px 14px;
  /* como num chat real: o conteúdo ancora embaixo e o excesso
     esmaece por baixo do cabeçalho (em vez de cortar seco) */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 26px);
          mask-image: linear-gradient(to bottom, transparent 0, #000 26px);
}
.chat-day {
  align-self: center;
  font-family: 'DM Mono', monospace; font-size: .54rem; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(53, 61, 68, .09); color: rgba(53, 61, 68, .55);
  padding: .22rem .65rem; border-radius: 999px;
}
.msg {
  max-width: 84%;
  padding: .5rem .6rem .3rem;
  border-radius: .8rem;
  font-size: .7rem; line-height: 1.4; color: #39424A;
  box-shadow: 0 1px 2px rgba(35, 42, 48, .1);
}
.msg-out { align-self: flex-end; background: #D9EBF3; border-bottom-right-radius: .2rem; }
.msg-in  { align-self: flex-start; background: #fff; border-bottom-left-radius: .2rem; }
.msg-time {
  display: block; text-align: right;
  font-size: .53rem; color: rgba(53, 61, 68, .42); margin-top: .12rem;
}
/* indicador "digitando…" */
.msg-typing { display: inline-flex; gap: 4px; padding: .62rem .7rem; }
.msg-typing i {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(53, 61, 68, .38);
  animation: chat-typing 1.2s ease-in-out infinite;
}
.msg-typing i:nth-child(2) { animation-delay: .15s; }
.msg-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes chat-typing {
  0%, 60%, 100% { transform: none; opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.chat-input {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  margin: .35rem .55rem .55rem; padding: .4rem .5rem .4rem .85rem;
  background: #fff; border-radius: 999px;
  font-size: .64rem; color: rgba(53, 61, 68, .45);
  box-shadow: 0 4px 14px -8px rgba(53, 61, 68, .35);
  white-space: nowrap; overflow: hidden;
}
.chat-send {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: #5FA8C9; color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* mensagens chegam em sequência quando o palco abre */
.chat-body .chat-day, .chat-body .msg {
  opacity: 0; transform: translateY(12px) scale(.97);
  transition: opacity .5s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
}
.fech-stage.is-open .chat-day, .fech-stage.is-open .msg { opacity: 1; transform: none; }
.fech-stage.is-open .chat-day { transition-delay: .75s; }
.fech-stage.is-open .msg:nth-of-type(1) { transition-delay: 1.05s; }
.fech-stage.is-open .msg:nth-of-type(2) { transition-delay: 1.65s; }
.fech-stage.is-open .msg:nth-of-type(3) { transition-delay: 2.25s; }
.fech-stage.is-open .msg:nth-of-type(4) { transition-delay: 2.9s; }

/* ============================================================
   Fechamento v3 — "O Convite": papel marfim sobre a dobra escura,
   fecha o arco narrativo aberto pela carta de boas-vindas.
   Entrada: o convite sobe e o lacre de cera "carimba" (bounce);
   hover no bento endireita o papel e acende o glow.
   ============================================================ */
.fech-stage--conv { align-items: center; padding: 3rem 1.25rem; }
.conv-link { display: block; position: relative; z-index: 5; -webkit-tap-highlight-color: transparent; }

.conv-card {
  position: relative;
  width: min(330px, 82vw);
  padding: 2.4rem 2rem 2rem;
  background: linear-gradient(180deg, #FFFEFB 0%, #F6EFE2 100%);
  border-radius: .65rem;
  box-shadow: 0 42px 80px -34px rgba(0, 0, 0, .85),
              0 0 70px -18px rgba(95, 168, 201, .3);
  text-align: center;
  transform: rotate(-2.2deg) translateY(26px);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(.2, .85, .25, 1), opacity .9s ease, box-shadow .6s ease;
}
.fech-stage.is-open .conv-card { transform: rotate(-2.2deg) translateY(0); opacity: 1; }
.fech-bento:hover .conv-card {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 52px 95px -36px rgba(0, 0, 0, .9),
              0 0 90px -16px rgba(95, 168, 201, .45);
}
/* filetes internos de convite clássico */
.conv-card::before {
  content: ""; position: absolute; inset: 9px;
  border: 1px solid rgba(194, 160, 121, .55);
  border-radius: .4rem;
  pointer-events: none;
}
.conv-card::after {
  content: ""; position: absolute; inset: 13px;
  border: 1px dashed rgba(194, 160, 121, .3);
  border-radius: .3rem;
  pointer-events: none;
}

.conv-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: 'DM Mono', monospace; font-size: .6rem; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  color: #A77E4E; margin-bottom: 1.3rem;
}
.conv-eyebrow::before, .conv-eyebrow::after {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(167, 126, 78, .8));
}
.conv-eyebrow::after { background: linear-gradient(to left, transparent, rgba(167, 126, 78, .8)); }

.conv-line { font-size: .82rem; color: rgba(53, 61, 68, .62); letter-spacing: .02em; }
.conv-you {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  font-size: 3rem; line-height: 1.05;
  margin: .35rem 0 .45rem;
  background-image: linear-gradient(90deg, #2F6B85 0%, #5FA8C9 55%, #C2A079 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.conv-details {
  margin: 1.5rem 0 1.4rem;
  padding: 1.1rem .35rem 1.15rem;
  border-top: 1px dashed rgba(194, 160, 121, .5);
  border-bottom: 1px dashed rgba(194, 160, 121, .5);
  display: flex; flex-direction: column; gap: .55rem;
}
.conv-details > div { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.conv-details dt {
  font-family: 'DM Mono', monospace; font-size: .58rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(167, 126, 78, .9); white-space: nowrap;
}
.conv-details dd {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: .88rem; color: #353D44; text-align: right;
}

.conv-rsvp { display: flex; align-items: center; justify-content: center; gap: .9rem; }
/* lacre de cera nougat — borda orgânica + respingo */
.conv-seal {
  position: relative;
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-style: italic;
  font-size: 1.5rem; color: rgba(255, 255, 255, .92);
  background: radial-gradient(circle at 32% 28%, #D4B48D 0%, #C2A079 35%, #8F6A42 100%);
  border-radius: 47% 53% 50% 50% / 52% 46% 54% 48%;
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .55),
              inset 0 2px 4px rgba(255, 255, 255, .35),
              inset 0 -3px 6px rgba(0, 0, 0, .25);
  transform: scale(1.7) rotate(-14deg); opacity: 0;
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), opacity .35s ease;
}
.fech-stage.is-open .conv-seal { transform: scale(1) rotate(-6deg); opacity: 1; transition-delay: .85s; }
.conv-seal::after {
  content: ""; position: absolute; right: -7px; bottom: 4px;
  width: 12px; height: 12px;
  background: radial-gradient(circle at 35% 30%, #C2A079, #8F6A42);
  border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
}
.conv-rsvp-txt {
  text-align: left;
  font-family: 'DM Mono', monospace; font-size: .62rem; line-height: 1.55;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(53, 61, 68, .6);
}
.conv-rsvp-txt em {
  display: block; font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.05rem; letter-spacing: .04em; text-transform: none;
  color: #2F6B85;
}

/* carimbo postal tracejado no canto do convite */
.conv-post {
  position: absolute; top: -16px; right: -18px; z-index: 3;
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px dashed rgba(194, 160, 121, .8);
  border-radius: 50%;
  font-family: 'DM Mono', monospace; font-size: .52rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; text-align: center;
  color: #C2A079; line-height: 1.7;
  transform: rotate(11deg);
}

/* CTAs do convite — botão-medalhão com brilho varrendo + par em vidro */
.conv-cta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .9rem; margin-bottom: 1.9rem;
}
.conv-cta-main {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .55rem 1.9rem .55rem .55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5FA8C9 0%, #2F6B85 78%);
  color: #fff; font-weight: 600; letter-spacing: .01em;
  box-shadow: 0 18px 40px -16px rgba(95, 168, 201, .7),
              inset 0 1px 0 rgba(255, 255, 255, .28);
  transition: transform .35s ease, box-shadow .35s ease;
}
.conv-cta-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 52px -16px rgba(95, 168, 201, .95),
              inset 0 1px 0 rgba(255, 255, 255, .28);
}
.conv-cta-main::after { /* brilho varrendo em loop */
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%;
  width: 45%; transform: skewX(-18deg);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
  animation: conv-shine 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes conv-shine { 0%, 58% { left: -60%; } 88%, 100% { left: 140%; } }
.conv-cta-ico {
  width: 44px; height: 44px; border-radius: 999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: #25D366;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, .45);
}
.conv-cta-sec {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1.02rem 1.6rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .85); font-weight: 500; font-size: .95rem;
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease, color .3s ease;
}
.conv-cta-sec:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 168, 201, .6);
  background: rgba(95, 168, 201, .14);
  color: #fff;
}
/* linha editorial de confiança (fio nougat → item · item ← fio) */
.conv-proof {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .55rem .8rem;
  font-family: 'DM Mono', monospace; font-size: .7rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.conv-proof::before, .conv-proof::after {
  content: ""; width: 30px; height: 1px; flex-shrink: 0;
  background: linear-gradient(to right, transparent, rgba(194, 160, 121, .75));
}
.conv-proof::after { background: linear-gradient(to left, transparent, rgba(194, 160, 121, .75)); }
.conv-proof-item { display: inline-flex; align-items: center; gap: .45rem; }
.conv-proof-item .iconify { color: #C2A079; }
.conv-proof-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(194, 160, 121, .7); }

@media (max-width: 880px) {
  .conv-cta, .conv-proof { justify-content: center; }
}
@media (max-width: 400px) {
  .conv-card { padding: 2rem 1.4rem 1.7rem; }
  .conv-you { font-size: 2.5rem; }
  .conv-post { right: -8px; width: 74px; height: 74px; }
  .conv-cta-main { padding-right: 1.5rem; }
}

/* ============================================================
   Fechamento v4 — full-bleed escuro: esteira infinita de sorrisos
   (mini-polaroids em marquee, inclinada) + botão com ondas de
   sonar pulsando. Headline gigante "começa com um oi".
   ============================================================ */
.fv4 { background: linear-gradient(150deg, #2E363E 0%, #232A30 55%, #2A323A 100%); }
.fv4-light { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.fv4-light-a { top: -120px; left: -80px; width: 420px; height: 420px; background: rgba(95, 168, 201, .22); }
.fv4-light-b { bottom: -140px; right: -100px; width: 460px; height: 460px; background: rgba(194, 160, 121, .16); }

.fv4-oi {
  font-style: italic; font-weight: 600;
  background-image: linear-gradient(90deg, #5FA8C9 0%, #9FC7D6 45%, #C2A079 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* esteira: wrapper anima entrada, tilt inclina, track rola */
.fv4-strip { position: relative; margin: 3.6rem 0 3.2rem; }
.fv4-tilt { transform: rotate(-2deg); }
.fv4-track {
  display: flex; width: max-content;
  padding: 1.4rem 0;
  animation: fv4-scroll 38s linear infinite;
  will-change: transform;
}
.fv4-strip:hover .fv4-track { animation-play-state: paused; }
@keyframes fv4-scroll { to { transform: translateX(-50%); } }
.fv4-card {
  width: 132px; flex-shrink: 0; margin-right: 1.1rem;
  background: linear-gradient(180deg, #FFFEFB, #FBF6ED);
  padding: .38rem .38rem .95rem;
  border-radius: .4rem;
  box-shadow: 0 16px 30px -16px rgba(0, 0, 0, .65);
  transform: rotate(-2.2deg);
  transition: transform .35s ease;
}
.fv4-card:nth-child(2n) { transform: rotate(2.2deg) translateY(-4px); }
.fv4-card:nth-child(4n+3) { transform: rotate(-1deg) translateY(6px); }
.fv4-card:hover { transform: rotate(0) scale(1.08); }
.fv4-card img {
  display: block; width: 100%;
  aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: .25rem;
}
/* fade nas bordas da esteira */
.fv4-fade { position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none; }
.fv4-fade-l { left: 0; background: linear-gradient(to right, rgba(38, 45, 52, .95), rgba(38, 45, 52, 0)); }
.fv4-fade-r { right: 0; background: linear-gradient(to left, rgba(38, 45, 52, .95), rgba(38, 45, 52, 0)); }

/* botão-sonar: medalhão WhatsApp + anéis expandindo */
.fv4-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .9rem;
  padding: .65rem 2.3rem .65rem .65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5FA8C9 0%, #2F6B85 78%);
  color: #fff; font-weight: 600; font-size: 1.08rem; letter-spacing: .01em;
  box-shadow: 0 22px 48px -18px rgba(95, 168, 201, .8),
              inset 0 1px 0 rgba(255, 255, 255, .28);
  transition: transform .35s ease, box-shadow .35s ease;
}
.fv4-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 28px 60px -18px rgba(95, 168, 201, 1),
              inset 0 1px 0 rgba(255, 255, 255, .28);
}
.fv4-btn::after { /* brilho varrendo, contido no raio do botão */
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(100deg, transparent 32%, rgba(255, 255, 255, .45) 50%, transparent 68%);
  background-size: 240% 100%;
  background-position: 100% 0;
  animation: fv4-shine 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes fv4-shine {
  0%, 55%   { background-position: 100% 0; }
  90%, 100% { background-position: 0% 0; }
}
.fv4-btn-ico {
  width: 52px; height: 52px; border-radius: 999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: #25D366;
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, .5);
}
.fv4-ring {
  position: absolute; inset: -3px; border-radius: 999px;
  border: 1.5px solid rgba(95, 168, 201, .6);
  animation: fv4-sonar 2.8s ease-out infinite;
  pointer-events: none;
}
.fv4-ring:nth-of-type(2) { animation-delay: .9s; }
.fv4-ring:nth-of-type(3) { animation-delay: 1.8s; }
@keyframes fv4-sonar {
  0%   { transform: scale(1); opacity: .85; }
  70%  { opacity: .18; }
  100% { transform: scale(1.45); opacity: 0; }
}
.fv4-proof { justify-content: center; margin-top: 1.8rem; }

@media (max-width: 640px) {
  .fv4-card { width: 106px; margin-right: .85rem; }
  .fv4-btn { font-size: .98rem; padding-right: 1.7rem; }
  .fv4-btn-ico { width: 46px; height: 46px; }
}
@media (prefers-reduced-motion: reduce) {
  .fv4-track, .fv4-ring, .fv4-btn::after { animation: none; }
  .fv4-ring { display: none; }
}

/* ============================================================
   Fechamento v5 — "varal final": payoff do varal de boas-vindas.
   Fotos reais penduradas balançando + polaroid VAZIA reservada
   no centro (glow respirando, etiqueta "reservado", link wa.me).
   Fundo claro/acolhedor; botão-sonar reaproveitado (.fv4-btn).
   ============================================================ */
.vf-stage {
  position: relative;
  max-width: 980px;
  margin: 3.4rem auto 3.2rem;
  padding: 2.8rem 1rem .6rem;
}
.vf-cord {
  position: absolute; top: 10px; left: -60px; right: -60px;
  height: 30px;
  border-bottom: 2px solid rgba(143, 106, 66, .55);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  pointer-events: none;
}
.vf-cord::before, .vf-cord::after {
  content: ""; position: absolute; top: -3px;
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #C2A079, #8F6A42);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .25);
}
.vf-cord::before { left: 4px; }
.vf-cord::after { right: 4px; }

.vf-row {
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(.6rem, 2.2vw, 1.5rem);
}
/* dessincroniza o balanço de cada peça do varal */
.vf-row > :nth-child(1) { --sw: -3.5deg; --dur: 4.9s; --del: -1.4s; }
.vf-row > :nth-child(2) { --sw: 2.4deg;  --dur: 5.6s; --del: -3s;   margin-top: 10px; }
.vf-row > :nth-child(3) { --sw: -1.6deg; --dur: 6.2s; --del: -2s;   margin-top: 18px; }
.vf-row > :nth-child(4) { --sw: 3deg;    --dur: 5.1s; --del: -.8s;  margin-top: 8px; }
.vf-row > :nth-child(5) { --sw: -2.6deg; --dur: 4.7s; --del: -2.6s; }

.vf-pola {
  position: relative;
  width: clamp(96px, 15vw, 150px);
  background: linear-gradient(180deg, #FFFEFB, #FBF6ED);
  border: 1px solid rgba(53, 61, 68, .08);
  border-radius: .45rem;
  padding: .45rem .45rem 1.35rem;
  box-shadow: 0 18px 34px -18px rgba(53, 61, 68, .5);
  transform-origin: 50% -14px;
  animation: wel-sway var(--dur, 5.2s) ease-in-out var(--del, 0s) infinite;
}
.vf-pola img {
  display: block; width: 100%;
  aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: .3rem;
}

/* a moldura reservada, no centro e maior */
.vf-voce-link { display: block; -webkit-tap-highlight-color: transparent; }
.vf-pola--voce {
  width: clamp(150px, 22vw, 212px);
  z-index: 3;
  padding-bottom: .55rem;
  animation: wel-sway var(--dur, 6.2s) ease-in-out var(--del, 0s) infinite,
             vf-breathe 3.2s ease-in-out infinite;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
}
@keyframes vf-breathe {
  0%, 100% { box-shadow: 0 20px 40px -20px rgba(53, 61, 68, .45), 0 0 0 0 rgba(95, 168, 201, 0); }
  50%      { box-shadow: 0 24px 46px -20px rgba(53, 61, 68, .5), 0 0 46px -6px rgba(95, 168, 201, .6); }
}
.vf-voce-link:hover .vf-pola--voce {
  animation: none;
  transform: rotate(0) translateY(-8px) scale(1.04);
  box-shadow: 0 30px 54px -22px rgba(53, 61, 68, .55),
              0 0 60px -8px rgba(95, 168, 201, .75);
}
.vf-blank {
  aspect-ratio: 4 / 5;
  border-radius: .3rem;
  border: 1.5px dashed rgba(95, 168, 201, .55);
  background: radial-gradient(120% 120% at 50% 18%, #F2F9FC 0%, #E8F3F8 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .35rem; text-align: center;
  transition: border-color .4s ease;
}
.vf-voce-link:hover .vf-blank { border-color: rgba(95, 168, 201, .95); }
.vf-blank-voce {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.15rem); line-height: 1;
  background-image: linear-gradient(90deg, #2F6B85 0%, #5FA8C9 55%, #C2A079 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vf-blank-sub {
  font-family: 'DM Mono', monospace; font-size: .55rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(47, 107, 133, .6);
  padding: 0 .6rem;
}
.vf-pola--voce figcaption {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: .8rem; text-align: center;
  color: rgba(53, 61, 68, .65);
  padding-top: .45rem;
}
.vf-pola--voce figcaption em { font-weight: 600; color: #2F6B85; }
/* etiqueta "reservado" */
.vf-tag {
  position: absolute; top: -11px; right: -14px; z-index: 4;
  padding: .32rem .62rem; border-radius: 999px;
  background: linear-gradient(135deg, #C2A079, #A77E4E);
  color: #fff;
  font-family: 'DM Mono', monospace; font-size: .55rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  transform: rotate(8deg);
  box-shadow: 0 10px 20px -10px rgba(167, 126, 78, .75);
}

/* linha de confiança na versão clara */
.vf-proof { justify-content: center; margin-top: 1.8rem; } /* cor herda do .conv-proof (fechamento agora é escuro) */

@media (max-width: 560px) {
  .vf-row > :nth-child(1), .vf-row > :nth-child(5) { display: none; }
  .vf-pola { width: clamp(104px, 26vw, 130px); }
  .vf-pola--voce { width: clamp(160px, 44vw, 190px); }
  .vf-cord { left: -20px; right: -20px; }
}
@media (prefers-reduced-motion: reduce) {
  .vf-pola, .vf-pola--voce { animation: none; transform: rotate(var(--sw, 0deg)); }
}

/* ============================================================
   Fechamento v6 — "medidor de sorriso": rosto minimalista em SVG
   que sorri conforme o slider (0→100%). Olhos fecham de alegria,
   bochechas coram, glow cresce e faíscas explodem nos 100%.
   ============================================================ */
.sm-panel {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 2.2rem 2rem 2.4rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 40px 80px -44px rgba(47, 107, 133, .55);
}
/* glow interno que acende com o valor (--glow: 0..1 via JS) */
.sm-panel::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 38%, rgba(95, 168, 201, .3), rgba(194, 160, 121, .12) 60%, transparent 75%);
  opacity: var(--glow, .2);
  transition: opacity .3s ease;
}
.smx-stagewrap { position: relative; text-align: center; }
.smx-val-wrap {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  font-size: clamp(2.7rem, 6vw, 3.7rem); line-height: 1;
  background-image: linear-gradient(90deg, #2F6B85 0%, #5FA8C9 55%, #C2A079 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .2rem;
}
.smx-val-wrap i { font-size: .55em; font-style: italic; }
.smx-face { display: block; width: min(340px, 78%); margin: 0 auto; }
#smx-mouth, #smx-eye-l, #smx-eye-r, #smx-blush-l, #smx-blush-r { transition: opacity .3s ease; }

.smx-controls { position: relative; margin-top: 1.2rem; text-align: center; }
.smx-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 12px; border-radius: 999px;
  background:
    linear-gradient(90deg, #C2A079, #5FA8C9) 0 0 / var(--fill, 20%) 100% no-repeat,
    rgba(53, 61, 68, .12);
  outline: none; cursor: pointer;
  position: relative; z-index: 2;
}
.smx-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 3px solid #2F6B85;
  box-shadow: 0 8px 18px -6px rgba(47, 107, 133, .75);
  cursor: grab; transition: transform .2s ease;
}
.smx-range::-webkit-slider-thumb:hover { transform: scale(1.12); }
.smx-range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.18); }
.smx-range::-moz-range-thumb {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 3px solid #2F6B85;
  box-shadow: 0 8px 18px -6px rgba(47, 107, 133, .75);
  cursor: grab;
}
.smx-hint {
  margin-top: .7rem;
  font-family: 'DM Mono', monospace; font-size: .68rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(167, 126, 78, .85);
  animation: smx-nudge 1.5s ease-in-out infinite;
  transition: opacity .4s ease;
}
@keyframes smx-nudge {
  0%, 100% { transform: translateX(-7px); }
  50%      { transform: translateX(7px); }
}
.sm-panel.used .smx-hint { opacity: 0; }
.smx-state {
  margin-top: .55rem; min-height: 1.6em;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.05rem; color: rgba(53, 61, 68, .7);
  transition: color .3s ease;
}
.sm-panel.is-max { box-shadow: 0 44px 90px -44px rgba(47, 107, 133, .8), 0 0 70px -14px rgba(95, 168, 201, .55); }
.sm-panel.is-max .smx-state { color: #2F6B85; font-weight: 600; }
/* faíscas dos 100% */
.smx-spark {
  position: absolute; left: 50%; top: 42%;
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--h, #5FA8C9);
  pointer-events: none; z-index: 5;
  animation: smx-pop .85s ease-out forwards;
}
@keyframes smx-pop {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
  100% { transform: translate(calc(var(--dx, .5) * 150px), calc(var(--dy, -.6) * 140px)) scale(.2) rotate(220deg); opacity: 0; }
}
@media (max-width: 640px) {
  .sm-panel { padding: 1.8rem 1.2rem 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .smx-hint { animation: none; }
  .smx-spark { display: none; }
}

/* ============================================================
   FAQ — acordeão (foco no hover, glow, ícone gira, shimmer)
   Inspirado no "FAQ Fusion", reskin pro DS claro/acolhedor.
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 760px; margin: 0 auto; }
.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(53, 61, 68, .09);
  border-radius: 1.25rem;
  transition: opacity .5s ease, filter .5s ease, box-shadow .5s ease, border-color .5s ease;
}
/* foco: ao passar o mouse na lista, os outros recuam */
.faq-list:hover .faq-item:not(:hover) { opacity: .55; filter: blur(1px); }
.faq-item:hover { border-color: rgba(95, 168, 201, .3); }
.faq-item.open {
  border-color: rgba(95, 168, 201, .4);
  box-shadow: 0 26px 52px -30px rgba(95, 168, 201, .6);
}

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left;
  padding: 1.35rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.18rem; line-height: 1.4;
  color: #353D44;
  -webkit-tap-highlight-color: transparent;
}
.faq-q-text { transition: color .3s ease; }
/* shimmer varrendo o texto da pergunta aberta */
.faq-item.open .faq-q-text {
  background: linear-gradient(90deg, #353D44 35%, #5FA8C9 50%, #353D44 65%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: faq-shimmer 3.5s linear infinite;
}
@keyframes faq-shimmer { from { background-position: 200% center; } to { background-position: -200% center; } }

.faq-ico {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #EAF3F7; color: #2F6B85; border: 1px solid rgba(95, 168, 201, .25);
  transition: transform .5s ease, background-color .4s ease, color .4s ease, border-color .4s ease;
}
.faq-item.open .faq-ico { transform: rotate(180deg); background: #5FA8C9; color: #fff; border-color: transparent; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.4, 0, .2, 1); }
.faq-a-inner {
  padding: 0 1.5rem 1.4rem;
  color: rgba(53, 61, 68, .66);
  font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.6;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease .08s, transform .5s ease .08s;
}
.faq-item.open .faq-a-inner { opacity: 1; transform: none; }

@media (max-width: 640px) {
  .faq-q { font-size: 1.02rem; padding: 1.15rem 1.15rem; }
  .faq-a-inner { padding: 0 1.15rem 1.2rem; font-size: .94rem; }
}

/* ============================================================
   Headlines cinéticas — letras sobem/desfocam ao entrar na tela
   (inspirado num texto cinético FPPRO; versão leve, sem GSAP/pin)
   ============================================================ */
.kinetic-head .kword { display: inline-block; }
.kinetic-head .kchar {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(3deg);
  filter: blur(6px);
  transition: opacity .55s ease, transform .7s cubic-bezier(.2, .8, .2, 1), filter .55s ease;
}
.kinetic-head.is-in .kchar { opacity: 1; transform: none; filter: none; }

/* ============================================================
   Destaque de palavra — moldura com quadradinhos nos cantos
   (inspirado num badge FPPRO; em-based pra escalar com o texto)
   ============================================================ */
.frame-word {
  position: relative; display: inline-block; white-space: nowrap; font-style: normal;
  padding: 0.02em 0.24em; border: 0.055em solid #5FA8C9; border-radius: 0.08em;
}
.frame-word i {
  position: absolute; width: 0.2em; height: 0.2em;
  background: #F7F2EA; border: 0.055em solid #5FA8C9; border-radius: 0.04em;
}
.frame-word .c1 { top: -0.12em; left: -0.12em; }
.frame-word .c2 { top: -0.12em; right: -0.12em; }
.frame-word .c3 { bottom: -0.12em; left: -0.12em; }
.frame-word .c4 { bottom: -0.12em; right: -0.12em; }

/* 2ª dobra (Boas-vindas) — sem override de bg no active
   (usa gradient vertical marfim→creme com blobs em cons-lights) */

/* ============================================================
   Consciência — luzes desfocadas que "morpham" no fundo
   (inspirado nas luzes FPPRO; reskin: verde-neon/preto → azul/nougat suaves)
   ============================================================ */
.cons-lights {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
  /* mask forte nas pontas — blobs invisíveis nos primeiros/últimos 30% da dobra */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.cons-lights .blob::before, .cons-lights .blob::after,
.cons-lights .blob2::before, .cons-lights .blob2::after,
.cons-lights .blob3::before, .cons-lights .blob3::after {
  content: ""; position: absolute; border-radius: 50%;
  transform-origin: center;
}
/* blob principal — grande e macio, ancorado no MEIO da dobra à esquerda */
.cons-lights .blob::before {
  background: rgba(95, 168, 201, 0.34);
  width: 460px; height: 460px; filter: blur(70px);
  top: 42%; left: -12%;
  animation: cons-morph 13s infinite ease-in-out; z-index: 2;
}
.cons-lights .blob::after {
  background: rgba(150, 205, 230, 0.22);
  width: 420px; height: 420px; filter: blur(80px);
  top: 48%; left: -6%;
  animation: cons-morph 15s infinite ease-in-out; animation-delay: -2s; z-index: 3;
}
/* blob2 — mesmo tratamento espelhado à direita, no meio da dobra */
.cons-lights .blob2::before {
  background: rgba(95, 168, 201, 0.34);
  width: 460px; height: 460px; filter: blur(70px);
  top: 42%; right: -12%;
  animation: cons-morph 13s infinite ease-in-out; animation-delay: -4s; z-index: 2;
}
.cons-lights .blob2::after {
  background: rgba(150, 205, 230, 0.22);
  width: 420px; height: 420px; filter: blur(80px);
  top: 48%; right: -6%;
  animation: cons-morph 15s infinite ease-in-out; animation-delay: -6s; z-index: 3;
}
/* highlight central — brilho concentrado bem no miolo pra dar peso à composição */
.cons-lights .blob3::before {
  background: rgba(180, 220, 240, 0.38);
  width: 340px; height: 340px; filter: blur(60px);
  top: 50%; left: 50%;
  animation: cons-morph-center 14s infinite ease-in-out; animation-delay: -1s; z-index: 4;
}
.cons-lights .blob3::after {
  background: rgba(210, 235, 250, 0.22);
  width: 300px; height: 300px; filter: blur(70px);
  top: 50%; left: 50%;
  animation: cons-morph-center 16s infinite ease-in-out; animation-delay: -3s; z-index: 5;
}
/* animação mais elegante — morph suave, escala 0.85↔1.35 (menos agressiva que a original) */
@keyframes cons-morph {
  0%, 100% { transform: scale(1.15) translate(0, 0); }
  25%     { transform: scale(1.30, 0.90) translate(2%, -3%); }
  50%     { transform: scale(0.90, 1.25) translate(-2%, 4%); }
  75%     { transform: scale(1.10, 1.10) translate(3%, 1%); }
}
/* variante pra blob3 (centralizado — mantém translate(-50%,-50%) intacto) */
@keyframes cons-morph-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1.10); }
  33%     { transform: translate(-50%, -50%) scale(1.28, 0.92); }
  66%     { transform: translate(-50%, -50%) scale(0.92, 1.22); }
}
@media (max-width: 767px) {
  .cons-lights {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 75%, transparent 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 75%, transparent 100%);
  }
  .cons-lights .blob::before, .cons-lights .blob2::before { width: 320px; height: 320px; filter: blur(60px); }
  .cons-lights .blob::after,  .cons-lights .blob2::after  { width: 290px; height: 290px; filter: blur(65px); }
  .cons-lights .blob::before,  .cons-lights .blob::after  { top: 42%; left: -25%; }
  .cons-lights .blob2::before, .cons-lights .blob2::after { top: 42%; right: -25%; }
  .cons-lights .blob3::before { width: 240px; height: 240px; filter: blur(52px); }
  .cons-lights .blob3::after  { width: 210px; height: 210px; filter: blur(58px); }
}

/* Fade mais discreto em boas-vindas e como-funciona
   (essas seções já têm outros elementos visuais, o cons-lights ficava pesado) */
#boas-vindas .cons-lights,
#como-funciona .cons-lights { opacity: .55; }
@media (max-width: 767px) {
  #boas-vindas .cons-lights,
  #como-funciona .cons-lights { opacity: .32; }
}

/* ============================================================
   Dobra escura (depoimentos) — intervalo editorial em chumbo
   Reaproveita todos os componentes claros com pele para o escuro.
   ============================================================ */
.section-dark { background: linear-gradient(180deg, #2A323A 0%, #232A30 60%, #262E35 100%); }

/* luzes desfocadas viram brilho de verdade no escuro */
.section-dark .cons-lights { opacity: .5; }
@media (max-width: 767px) { .section-dark .cons-lights { opacity: .38; } }

/* grade decorativa legível no escuro */
.section-dark .grid-bg {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

/* cards de depoimento: vidro escuro */
.section-dark .depo-card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
}
.section-dark .depo-card.is-open {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(95, 168, 201, .55);
  box-shadow: inset 0 0 54px 6px rgba(95, 168, 201, .12);
}
.section-dark .depo-vlabel { color: #E8E3DA; }
.section-dark .depo-frame { box-shadow: 0 18px 44px -16px rgba(0, 0, 0, .65); }

/* ============================================================
   Scroll reveal — sistema de entrada/saída de elementos
   Dispara pela classe .ativo7 (adicionada via JS quando o elemento
   passa dos 85% do viewport)
   ============================================================ */
.scroll-txt {
  letter-spacing: -1.2em !important;
  filter: blur(5px);
  opacity: 0;
  transition: 1.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) !important;
}
.ativo7.scroll-txt {
  letter-spacing: 0em !important;
  filter: blur(0px);
  opacity: 1;
  transition: 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) !important;
  transition-delay: 0s !important;
}

.perspectivax {
  transition: 5s !important;
  transform: perspective(100rem) translate3d(0, 0, -5rem) rotateX(-90deg) scale(1, 1);
}
.ativo7.perspectivax {
  transition: 5s !important;
  transform: perspective(100rem) translate3d(0, 0, -5rem) rotateX(0deg) scale(1, 1);
}

.scroll-left  { opacity: 0; transition: 1s !important;   filter: blur(10px); transform: translate(-30px, 0); }
.scroll-left2 { opacity: 0; transition: 0.3s !important; transform: translate(-30px, 0); }
.scroll-right { opacity: 0; transition: 1s !important;   filter: blur(10px); transform: translate(30px, 0); }
.scroll-right2{ opacity: 0; transition: 0.3s !important; transform: translate(30px, 0); }
.scroll-bottom{ opacity: 0; transition: 1s !important;   filter: blur(10px); transform: translate(0, -30px); }
.scroll-bottom2{opacity: 0; transition: 0.3s !important; transform: translate(0, -30px); }
.scroll-top   { opacity: 0; transition: 1s !important;   filter: blur(5px);  transform: translate(0, 30px); }
.scroll-top2  { opacity: 0; transition: 0.3s !important; transform: translate(0, 30px); }
.scroll-escala{ opacity: 0; transition: 1s !important;   filter: blur(10px); transform: scale(2); }

.ativo7 {
  opacity: 1;
  transition: 1s;
  filter: blur(0px);
  transform: translate(0, 0px) scale(1);
  transition-delay: 0s !important;
}

/* ============================================================
   TÍTULO DA HERO — hierarquia em degrau
   Linha 1 sóbria · deck itálico nougat recuado com fio · palavra-
   conceito grande em azul, com traço desenhado à mão embaixo e
   ponto final em nougat. Sem contorno vazado (lavava a leitura).
   ============================================================ */
.hh {
  font-family: 'Fraunces', serif;
  margin: 0 0 2.2rem;
  line-height: .98;
  letter-spacing: -.022em;
}
.hh > span { display: block; }

/* 1 — "Seu sorriso," */
.hh-1 {
  font-weight: 300; color: #353D44;
  font-size: clamp(2.6rem, 6.6vw, 4.15rem);
}

/* 2 — deck itálico, recuado e com fio de abertura */
.hh-2 {
  position: relative;
  font-weight: 300; font-style: italic; color: #A77E4E;
  font-size: clamp(1.75rem, 4.3vw, 2.6rem);
  letter-spacing: -.01em;
  margin: .28em 0 .16em;
  padding-left: 4.2rem;
}
.hh-2::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 3.1rem; height: 1px;
  background: linear-gradient(to right, rgba(194, 160, 121, .12), rgba(194, 160, 121, .95));
}

/* 3 — a palavra-conceito */
.hh-3 {
  display: inline-block !important; position: relative;
  font-weight: 600; color: #2F6B85;
  font-size: clamp(3.05rem, 8vw, 5.1rem);
  padding-bottom: .12em;
}
.hh-dot { font-style: normal; color: #C2A079; }
/* traço à mão que se desenha ao carregar */
.hh-swash {
  position: absolute; left: -.5%; bottom: 0;
  width: 101%; height: .2em; overflow: visible;
}
.hh-swash path {
  fill: none; stroke: #C2A079; stroke-width: 2.5;
  stroke-linecap: round; vector-effect: non-scaling-stroke;
  stroke-dasharray: 320; stroke-dashoffset: 320;
  animation: hh-traco 1.15s cubic-bezier(.6, .1, .25, 1) .55s forwards;
}
@keyframes hh-traco { to { stroke-dashoffset: 0; } }

@media (max-width: 640px) {
  .hh { margin-bottom: 1.9rem; }
  .hh-2 { padding-left: 3rem; }
  .hh-2::before { width: 2.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hh-swash path { animation: none; stroke-dashoffset: 0; }
}

/* ============================================================
   HERO · CTAs — primário com gradiente e brilho varrendo,
   secundário no estilo "espiar" (wel-peek), e o card de dúvidas
   como mensagem recebida da Dra. (avatar real + balão de chat).
   ============================================================ */
.hero-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  white-space: nowrap;
  border-radius: 9999px; padding: .85rem 1.7rem .85rem .85rem;
  background: linear-gradient(135deg, #5FA8C9 0%, #2F6B85 100%);
  color: #fff; font-weight: 500;
  box-shadow: 0 14px 30px -12px rgba(47, 107, 133, .55);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(47, 107, 133, .6), 0 0 40px -8px rgba(95, 168, 201, .5);
}
.hero-btn::after { /* brilho varrendo, contido no raio */
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: skewX(-18deg);
  animation: hero-shine 4.5s ease-in-out infinite;
}
@keyframes hero-shine { 0%, 55% { left: -60%; } 85%, 100% { left: 130%; } }
.hero-btn-ico {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 9999px;
  background: rgba(255, 255, 255, .16);
}
/* variante do link "espiar" sem o respiro superior (pra linha da hero) */
.wel-peek--flush { margin-top: 0; padding: .85rem .5rem; }

/* variante compacta do hero-btn (CTA do nav) */
.hero-btn--sm {
  padding: .35rem 1.05rem .35rem .4rem;
  font-size: .875rem;
  box-shadow: 0 10px 22px -10px rgba(47, 107, 133, .5);
}
.hero-btn--sm .hero-btn-ico { width: 30px; height: 30px; }

/* mensagem recebida da Dra. (substitui o card "Tem dúvidas?") */
.hero-msg { display: flex; align-items: flex-start; gap: .6rem; text-decoration: none; }
.hero-msg-ava { position: relative; flex-shrink: 0; width: 42px; height: 42px; }
.hero-msg-ava img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 9999px; border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(53, 61, 68, .3);
}
.hero-msg-dot {
  position: absolute; right: -1px; bottom: -1px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #5FA8C9; border: 2px solid #fff;
  animation: qs-rec 1.6s ease-in-out infinite;
}
.hero-msg-bubble {
  display: block;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(53, 61, 68, .1);
  border-radius: 1rem; border-top-left-radius: .3rem;
  padding: .65rem .85rem;
  box-shadow: 0 16px 32px -18px rgba(53, 61, 68, .45);
  transition: transform .3s ease, border-color .3s ease;
}
.hero-msg:hover .hero-msg-bubble { transform: translateY(-2px); border-color: rgba(95, 168, 201, .45); }
.hero-msg-name { display: block; font-size: .68rem; font-weight: 600; color: #2F6B85; margin-bottom: .15rem; }
.hero-msg-text { display: block; font-size: .75rem; line-height: 1.45; color: rgba(53, 61, 68, .72); }

/* ============================================================
   BOAS-VINDAS · CTA de conversa — balão estilo WhatsApp com a
   mensagem que o link realmente pré-preenche + botão de enviar.
   Substitui os dois botões genéricos que ficavam sob o varal.
   ============================================================ */
.wel-chat { display: inline-block; max-width: 30rem; text-decoration: none; }
.wel-chat-label {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'DM Mono', monospace; font-size: .62rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(53, 61, 68, .5);
  margin-bottom: .6rem;
}
.wel-chat-label::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #5FA8C9;
  animation: qs-rec 1.6s ease-in-out infinite;
}
.wel-chat-row { display: flex; align-items: flex-end; gap: .8rem; }
.wel-bubble {
  position: relative; display: block; text-align: left;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(53, 61, 68, .1);
  border-radius: 1.15rem; border-bottom-left-radius: .3rem;
  padding: .95rem 1.15rem;
  font-size: .95rem; line-height: 1.5; color: rgba(53, 61, 68, .8);
  box-shadow: 0 16px 34px -20px rgba(53, 61, 68, .35);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.wel-send {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 9999px;
  background: #5FA8C9; color: #fff;
  box-shadow: 0 0 24px -4px rgba(95, 168, 201, .45);
  transition: transform .3s ease, background .3s ease;
}
.wel-chat:hover .wel-bubble {
  transform: translateY(-2px);
  border-color: rgba(95, 168, 201, .4);
  box-shadow: 0 20px 40px -20px rgba(47, 107, 133, .45);
}
.wel-chat:hover .wel-send { transform: scale(1.1) rotate(8deg); background: #2F6B85; }
/* espiar as transformações — link discreto abaixo do balão */
.wel-peek {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.1rem;
  font-size: .875rem; font-weight: 500; color: rgba(53, 61, 68, .55);
  transition: color .3s ease, gap .3s ease;
}
.wel-peek:hover { color: #2F6B85; gap: .75rem; }
.wel-peek .iconify { color: #C2A079; }

/* ============================================================
   QUEM SOU EU — perfil editorial da Dra.
   Foto com moldura de "foco de câmera" (paixão dela por fotografia:
   cantos de viewfinder + selo REC "registro real") + capítulos da
   história + faixa de números com contagem no scroll.
   ============================================================ */
.qs-photo { position: relative; max-width: 420px; margin: 0 auto; }
.qs-photo img {
  display: block; width: 100%;
  border-radius: 1.4rem;
  box-shadow: 0 34px 64px -30px rgba(53, 61, 68, .5);
}
/* moldura viewfinder — 4 cantos azuis que "focam" quando a dobra entra */
.qs-frame { position: absolute; inset: -14px; pointer-events: none;
  opacity: 0; transform: scale(1.12);
  transition: opacity .9s ease, transform 1.1s cubic-bezier(.2, .8, .2, 1);
}
.qs-photo.is-focus .qs-frame { opacity: 1; transform: scale(1); }
.qs-c { position: absolute; width: 30px; height: 30px; border: 2px solid rgba(95, 168, 201, .85); }
.qs-c.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-top-left-radius: 12px; }
.qs-c.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-top-right-radius: 12px; }
.qs-c.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-bottom-left-radius: 12px; }
.qs-c.br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-bottom-right-radius: 12px; }
/* selo EXIF — linha mono com ponto REC pulsando (nougat) */
.qs-exif {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: 1rem;
  font-family: 'DM Mono', monospace; font-size: .64rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(53, 61, 68, .55);
}
.qs-exif::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: #C2A079;
  animation: qs-rec 1.6s ease-in-out infinite;
}
@keyframes qs-rec { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* capítulos da história — títulos Fraunces itálicos, fio nougat tracejado */
.qs-chap + .qs-chap { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px dashed rgba(194, 160, 121, .45); }
.qs-chap h3 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 500;
  font-size: 1.3rem; line-height: 1.2; color: #2F6B85; margin: 0 0 .5rem;
}
.qs-chap:nth-of-type(2) h3 { color: #A77E4E; }
.qs-chap p { color: rgba(53, 61, 68, .7); font-size: 1rem; line-height: 1.65; margin: 0; }

/* faixa de números — Fraunces gigante + label mono, contagem via JS */
.qs-stats {
  display: flex; justify-content: center; align-items: stretch;
  flex-wrap: wrap; gap: 2.2rem 0;
  margin-top: 4.2rem; text-align: center;
}
.qs-stat { padding: 0 clamp(1.6rem, 4.5vw, 4rem); }
.qs-stat + .qs-stat { border-left: 1px solid rgba(53, 61, 68, .12); }
.qs-num {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: #353D44;
}
.qs-num i { font-style: italic; font-size: .6em; color: #A77E4E; }
.qs-stat-label {
  margin-top: .5rem;
  font-family: 'DM Mono', monospace; font-size: .62rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(53, 61, 68, .5);
}
.qs-stat-sub { margin-top: .3rem; font-size: .8rem; color: rgba(53, 61, 68, .55); }

@media (max-width: 767px) {
  .qs-photo { max-width: 320px; }
  /* números lado a lado também no mobile (3 colunas compactas) */
  .qs-stats { flex-wrap: nowrap; gap: 0; margin-top: 3rem; }
  .qs-stat { flex: 1 1 0; min-width: 0; padding: 0 .7rem; }
  .qs-num { font-size: 1.85rem; }
  .qs-num i { font-size: .62em; }
  .qs-stat-label { font-size: .52rem; letter-spacing: .1em; margin-top: .4rem; }
  .qs-stat-sub { font-size: .66rem; line-height: 1.35; }
}

/* ============================================================
   PORTAL — transição claro → escuro (Screen Portal FPPRO, reskin DS)
   Celular nas mãos com a "tela" chumbo; o scroll (GSAP pin+scrub)
   deita o celular e mergulha pra dentro da tela, revelando o lado
   escuro do site. A partir daqui, tudo é section-dark até o footer.
   ============================================================ */
.portal {
  width: 100%; height: 100vh;
  display: flex; justify-content: center; align-items: center; flex-direction: column;
  background: #EAF1F5; /* emenda com o fim do #facetas */
  position: relative; overflow: hidden;
  box-sizing: border-box;
  transition: none !important;
}

/* selo "continua rolando" — fixo na base durante o pin */
.portal-badge {
  position: absolute; bottom: 44px; z-index: 99;
  display: flex; align-items: center; gap: 10px;
  padding: 5px 18px 5px 5px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(95, 168, 201, .45);
  border-radius: 100px;
  box-shadow: 0 14px 34px -16px rgba(47, 107, 133, .5);
}
.portal-badge-ico {
  display: flex; justify-content: center; align-items: center;
  width: 40px; height: 40px; border-radius: 100px;
  background: linear-gradient(135deg, #5FA8C9, #2F6B85);
  filter: drop-shadow(0 0 10px rgba(95, 168, 201, .55));
}
.portal-badge-ico svg { width: 24px; fill: #fff; animation: portal-downx ease-in-out 1s infinite; }
@keyframes portal-downx {
  0% { transform: translateY(-2px); } 50% { transform: translateY(2px); } 100% { transform: translateY(-2px); }
}
.portal-badge-txt {
  font-family: 'DM Mono', monospace; font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(53, 61, 68, .75); line-height: 1;
}

/* palco claro (some no zoom): headline + celular */
.portal-stage {
  width: 100%; height: 100vh;
  display: flex; justify-content: center; align-items: center; flex-direction: column;
  gap: 18px; padding: 0 24px;
  background: #EAF1F5;
  position: relative; overflow: hidden;
  opacity: 1; visibility: visible; z-index: 10;
}
/* halo azul suave atrás do celular */
.portal-stage::before {
  content: ""; position: absolute; top: 55%; left: 50%;
  width: 420px; height: 420px;
  transform: translate(-50%, -50%);
  background: rgba(95, 168, 201, .5);
  border-radius: 100%;
  filter: blur(120px); will-change: filter;
}
.portal-head {
  position: relative; width: 100%; pointer-events: none;
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.08;
  text-align: center; color: #353D44; margin: 0;
}
.portal-head em { font-style: italic; font-weight: 600; color: #2F6B85; }
.portal-desc {
  position: relative;
  color: rgba(53, 61, 68, .66);
  font-family: 'Inter', sans-serif; font-size: 1.1rem; line-height: 1.55;
  text-align: center; max-width: 540px; margin: 0 0 14px;
}

/* celular: entra tombado em 3D, o GSAP endireita e mergulha */
.portal-phone {
  transform: perspective(100rem) translate3d(0, 0, -5rem) rotateX(25deg) translateY(-50px) scale(1.2);
  width: fit-content; position: relative;
}
.portal-phone-img { display: block; width: 1100px; max-width: none; z-index: 5; position: relative; }
/* a "tela" do celular — o chumbo pro qual o site mergulha */
.portal-phone::before {
  content: ""; position: absolute;
  top: 40px; left: 50%;
  width: 580px; height: 280px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #2A323A, #232A30);
  border-radius: 30px;
  z-index: 1;
}

/* tela revelada — o lado escuro dá as boas-vindas */
.portal-reveal {
  width: 100%; height: 100vh;
  display: flex; justify-content: center; align-items: center; flex-direction: column;
  gap: 22px; padding: 0 200px;
  background: #2A323A; /* emenda com o topo do #antes-depois */
  box-sizing: border-box;
  position: absolute; top: 0; z-index: 1;
  overflow: hidden;
  transition: none !important;
}
/* luzes desfocadas no escuro (eco do fv4) */
.portal-reveal::before {
  content: ""; position: absolute; top: -120px; left: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: rgba(95, 168, 201, .2); filter: blur(80px); pointer-events: none;
}
.portal-reveal::after {
  content: ""; position: absolute; bottom: -140px; right: -100px;
  width: 460px; height: 460px; border-radius: 50%;
  background: rgba(194, 160, 121, .15); filter: blur(80px); pointer-events: none;
}
.portal-reveal-head {
  position: relative; width: 100%; pointer-events: none;
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(2.3rem, 5.5vw, 4rem); line-height: 1.15;
  text-align: center; color: #fff; margin: 0;
}
.portal-reveal-head em {
  font-style: italic; font-weight: 600;
  background-image: linear-gradient(90deg, #5FA8C9 0%, #9FC7D6 45%, #C2A079 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.portal-reveal-sub {
  position: relative;
  display: flex; align-items: center; gap: .8rem;
  font-family: 'DM Mono', monospace; font-size: .66rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5); margin: 0;
}
.portal-reveal-sub::before, .portal-reveal-sub::after {
  content: ""; width: 34px; height: 1px; flex-shrink: 0;
  background: linear-gradient(to right, transparent, rgba(194, 160, 121, .8));
}
.portal-reveal-sub::after { background: linear-gradient(to left, transparent, rgba(194, 160, 121, .8)); }

/* pin-spacer do GSAP quebra a regra section+section; recoloca a
   sobreposição anti-gap na seção que vem depois do portal */
.pin-spacer + section { margin-top: -2px; position: relative; z-index: 1; }

@media (max-width: 1024px) {
  .portal-phone-img { content: url("../imagens/transicao/mockup-mobile.webp"); width: 460px; min-width: 460px; transition: 0s !important; }
  .portal-phone { transition: 0s !important; }
  .portal-phone::before { top: 4px; width: 180px; height: 380px; border-radius: 30px; }
  .portal-desc { font-size: .98rem; max-width: 82%; }
  .portal-stage::before { width: 300px; height: 300px; filter: blur(80px); }
  .portal-reveal { padding: 0 40px; }
}

/* ============================================================
   ZONA ESCURA — do portal até o footer, o site veste chumbo.
   Gradientes emendados na corrente:
   reveal #2A323A → antes-depois → depoimentos (.section-dark padrão)
   → como #262E35→#232A30 → faq #232A30→#262E35 → contato → footer #232A30
   ============================================================ */
.section-dark--ad      { background: linear-gradient(180deg, #2A323A 0%, #262E35 55%, #2A323A 100%); }

/* continuidade portal → antes-depois: a luz nougat do reveal atravessa
   a emenda — a metade de cima é pintada pelo .portal-reveal::after e a
   metade de baixo por este ::before (mesmo centro, mesma cor), então a
   borda entre as seções some dentro do brilho */
.section-dark--ad::before {
  content: ""; position: absolute; top: -320px; right: -100px;
  width: 460px; height: 460px; border-radius: 50%;
  background: rgba(194, 160, 121, .15); filter: blur(80px);
  pointer-events: none;
}
/* a grade decorativa nasce em fade, sem começar seca na emenda */
#antes-depois .grid-bg,
#planejamento .grid-bg,
#ser-humana .grid-bg {
  mask-image: linear-gradient(to bottom, transparent 0%, black 26%, black 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 26%, black 78%, transparent 100%);
}
.section-dark--como    { background: linear-gradient(180deg, #262E35 0%, #232A30 100%); }
.section-dark--faq     { background: linear-gradient(180deg, #232A30 0%, #262E35 100%); }
.section-dark--contato { background: linear-gradient(180deg, #262E35 0%, #232A30 100%); }

/* antes & depois no escuro */
.section-dark .ba-knob { box-shadow: 0 8px 22px rgba(0, 0, 0, .5), 0 0 0 6px rgba(255, 255, 255, .14); }

/* como funciona no escuro */
.section-dark .como-step + .como-step { border-top-color: rgba(255, 255, 255, .08); }
.section-dark .como-step h3 { color: #fff; }
.section-dark .como-step p { color: rgba(255, 255, 255, .6); }
.section-dark .como-num { color: rgba(159, 199, 214, .3); }
.section-dark .como-step.is-active .como-num { color: #9FC7D6; }

/* FAQ no escuro: vidro chumbo + shimmer claro */
.section-dark .beam-frame {
  border-color: rgba(95, 168, 201, .25);
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(35, 42, 48, .35));
  box-shadow: 0 34px 70px -42px rgba(0, 0, 0, .65), inset 0 0 60px rgba(95, 168, 201, .06);
}
.section-dark .faq-item { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); }
.section-dark .faq-item:hover { border-color: rgba(95, 168, 201, .4); }
.section-dark .faq-item.open {
  border-color: rgba(95, 168, 201, .5);
  box-shadow: 0 26px 52px -30px rgba(0, 0, 0, .8), inset 0 0 40px rgba(95, 168, 201, .07);
}
.section-dark .faq-q { color: #fff; }
.section-dark .faq-item.open .faq-q-text {
  background: linear-gradient(90deg, #fff 35%, #9FC7D6 50%, #fff 65%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-dark .faq-ico { background: rgba(95, 168, 201, .14); color: #9FC7D6; border-color: rgba(95, 168, 201, .3); }
.section-dark .faq-item.open .faq-ico { background: #5FA8C9; color: #fff; }
.section-dark .faq-a-inner { color: rgba(255, 255, 255, .6); }

/* ============================================================
   PLANEJAMENTO — prancheta de projeto (1ª dobra do lado escuro)
   Vídeo vertical emoldurado como projeto técnico: régua de ticks,
   cota "sob medida" no topo e etiquetas mono apontando pro vídeo.
   ============================================================ */
.section-dark--plan { background: linear-gradient(180deg, #2A323A 0%, #262E35 55%, #2A323A 100%); }
/* a luz nougat atravessa as DUAS emendas (reveal→plan e plan→antes-depois),
   nos mesmos centros dos brilhos vizinhos */
.section-dark--plan::before {
  content: ""; position: absolute; top: -320px; right: -100px;
  width: 460px; height: 460px; border-radius: 50%;
  background: rgba(194, 160, 121, .15); filter: blur(80px); pointer-events: none;
}
.section-dark--plan::after {
  content: ""; position: absolute; bottom: -140px; right: -100px;
  width: 460px; height: 460px; border-radius: 50%;
  background: rgba(194, 160, 121, .15); filter: blur(80px); pointer-events: none;
}

.plan-stage { position: relative; width: min(300px, 76vw); margin: 2.6rem auto 0; }
.plan-frame {
  position: relative; overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 1.5rem;
  background: #232A30;
  box-shadow: 0 18px 44px -16px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 255, 255, .08);
}
.plan-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* cota do topo: |—— sob medida ——| */
.plan-cota {
  position: absolute; left: 4px; right: 4px; top: -32px;
  display: flex; align-items: center; gap: .7rem;
  font-family: 'DM Mono', monospace; font-size: .58rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .45); white-space: nowrap;
}
.plan-cota::before, .plan-cota::after { content: ""; flex: 1; height: 1px; background: rgba(159, 199, 214, .35); }
.plan-cota-end {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 1px; height: 10px; background: rgba(159, 199, 214, .55);
}
.plan-cota-end.l { left: 0; } .plan-cota-end.r { right: 0; }

/* régua lateral (ticks menores + maiores) */
.plan-ruler {
  position: absolute; left: -18px; top: 7%; bottom: 7%; width: 10px;
  background:
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, .22) 0 1px, transparent 1px 12px) right 0 top 0 / 5px 100% no-repeat,
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, .38) 0 1px, transparent 1px 60px) right 0 top 0 / 10px 100% no-repeat;
  pointer-events: none;
}

/* etiquetas: ponto nougat + fio + label mono */
.plan-tag {
  position: absolute; left: calc(100% - 3px);
  display: flex; align-items: center; gap: .55rem;
  font-family: 'DM Mono', monospace; font-size: .58rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5); white-space: nowrap;
  pointer-events: none;
}
.plan-tag i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #C2A079; flex-shrink: 0;
  box-shadow: 0 0 10px rgba(194, 160, 121, .6);
}
.plan-tag::before {
  content: ""; position: absolute; left: 3px; top: 50%;
  width: 30px; height: 1px;
  background: linear-gradient(to right, rgba(194, 160, 121, .8), rgba(194, 160, 121, .15));
  z-index: -1;
}
.plan-tag span { padding-left: 26px; }

/* pergunta que chegou (quote de projeto) */
.plan-ask {
  display: inline-block; text-align: left;
  margin-bottom: 1.6rem; padding: 1rem 1.3rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-left: 3px solid #C2A079;
  border-radius: .9rem;
}
.plan-ask-label {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'DM Mono', monospace; font-size: .58rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .4); margin-bottom: .45rem;
}
.plan-ask-label::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: #5FA8C9; animation: qs-rec 1.6s ease-in-out infinite;
}
.plan-ask-text {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 1.15rem; line-height: 1.45; color: rgba(255, 255, 255, .85); margin: 0;
}

/* link "espiar" na zona escura */
.section-dark .wel-peek { color: rgba(255, 255, 255, .55); }
.section-dark .wel-peek:hover { color: #9FC7D6; }

@media (max-width: 1023px) {
  /* etiquetas viram fileira embaixo do vídeo */
  .plan-tags { display: flex; justify-content: center; gap: 1.3rem; margin-top: 1.4rem; }
  .plan-tag { position: static; }
  .plan-tag::before { display: none; }
  .plan-tag span { padding-left: 0; }
  .plan-ruler { left: -14px; }
}
@media (min-width: 1024px) {
  .plan-tags { position: absolute; inset: 0; pointer-events: none; }
}

/* ============================================================
   SER HUMANA — manifesto da Dra. (depois dos depoimentos)
   Dobra pinada (ScrollTrigger, mecânica do "video zoom" FPPRO):
   o vídeo dá zoom enquanto o scroll revela o manifesto em 3 atos
   (o científico → o sistema límbico → as mãos) e assenta no fim.
   ============================================================ */
.section-dark--sh { background: linear-gradient(180deg, #262E35 0%, #232A30 50%, #262E35 100%); }

/* vídeo: nasce arredondado, dá zoom no pin (só desktop) e assenta */
.sh-videowrap {
  position: relative;
  width: min(310px, 68vw); margin: 0 auto;
  transition: transform 1s ease;
}
/* aura viva: gradiente azul→nougat girando atrás do vídeo (pulso humano) */
@property --sh-ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.sh-videowrap::before {
  content: ""; position: absolute; inset: -12px;
  border-radius: 30px;
  background: conic-gradient(from var(--sh-ang, 0deg),
    rgba(95, 168, 201, .55), rgba(194, 160, 121, .4),
    rgba(95, 168, 201, .08), rgba(194, 160, 121, .45), rgba(95, 168, 201, .55));
  filter: blur(16px);
  opacity: .55;
  animation: sh-gira 7s linear infinite;
  pointer-events: none;
}
@keyframes sh-gira { to { --sh-ang: 360deg; } }
/* fio de borda gradiente cristalino por cima da aura */
.sh-videowrap::after {
  content: ""; position: absolute; inset: -2px;
  border-radius: 22px; padding: 2px;
  background: linear-gradient(150deg, rgba(95, 168, 201, .8), rgba(194, 160, 121, .55), rgba(95, 168, 201, .25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: border-radius 1s ease;
}
.sh-frame {
  position: relative; overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  background: #232A30;
  box-shadow: 0 18px 44px -16px rgba(0, 0, 0, .65);
  transition: border-radius 1s ease;
}
.sh-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-videowrap.is-zoom { transform: scale(1.22); }
.sh-videowrap.is-zoom .sh-frame { border-radius: 5px; }
.sh-videowrap.is-zoom::after { border-radius: 7px; }
.sh-videowrap.is-settle { transform: scale(1); }
.sh-videowrap.is-settle .sh-frame { border-radius: 20px; }
.sh-videowrap.is-settle::after { border-radius: 22px; }

/* batimento: traço de ECG correndo sob o vídeo */
.sh-ecg { position: relative; width: min(310px, 68vw); margin: 1.1rem auto 0; }
.sh-ecg svg { display: block; width: 100%; height: 34px; overflow: visible; }
.sh-ecg .ecg-base { stroke: rgba(255, 255, 255, .14); stroke-width: 1.5; fill: none; }
.sh-ecg .ecg-run {
  stroke: #9FC7D6; stroke-width: 1.5; fill: none; stroke-linecap: round;
  stroke-dasharray: 70 530;
  stroke-dashoffset: 600;
  animation: sh-ecg 3.4s linear infinite;
  filter: drop-shadow(0 0 6px rgba(95, 168, 201, .7));
}
@keyframes sh-ecg { to { stroke-dashoffset: 0; } }

/* manifesto em 3 atos: cartões que se revezam no mesmo palco */
.sh-beats { position: relative; margin-top: 2.2rem; min-height: 8.5rem; }
.sh-beat {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 1rem 1.25rem; text-align: left;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-left: 3px solid #5FA8C9;
  border-radius: .9rem;
  opacity: 0; transform: translateY(50px);
  transition: 1s; pointer-events: none;
}
.sh-beat:nth-child(2) { border-left-color: #C2A079; }
.sh-beat.is-on { opacity: 1; transform: translateY(0); transition-delay: .2s; }
.sh-beat-label {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'DM Mono', monospace; font-size: .58rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .4); margin: 0 0 .45rem;
}
.sh-beat-text {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 1.2rem; line-height: 1.4; color: rgba(255, 255, 255, .85); margin: 0;
}
/* mobile: sem pin — os 3 atos ficam empilhados e sempre visíveis */
@media (max-width: 799px) {
  .sh-beats { min-height: 0; display: flex; flex-direction: column; gap: .9rem; margin-top: 1.8rem; }
  .sh-beat { position: static; opacity: 1; transform: none; pointer-events: auto; }
}

/* anti-gap também na emenda que ANTECEDE um pin-spacer */
section + .pin-spacer { margin-top: -2px; position: relative; }

/* fechamento (medidor de sorriso) no escuro: painel de vidro chumbo */
.section-dark .sm-panel {
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 40px 80px -44px rgba(0, 0, 0, .75);
}
.section-dark .sm-panel.is-max { box-shadow: 0 44px 90px -44px rgba(0, 0, 0, .8), 0 0 70px -14px rgba(95, 168, 201, .5); }
.section-dark .smx-val-wrap { background-image: linear-gradient(90deg, #9FC7D6 0%, #5FA8C9 55%, #C2A079 100%); }
.section-dark .smx-face ellipse { fill: #EAF1F5; } /* olhos legíveis no chumbo */
.section-dark .smx-range {
  background:
    linear-gradient(90deg, #C2A079, #5FA8C9) 0 0 / var(--fill, 20%) 100% no-repeat,
    rgba(255, 255, 255, .14);
}
.section-dark .smx-hint { color: rgba(194, 160, 121, .95); }
.section-dark .smx-state { color: rgba(255, 255, 255, .7); }
.section-dark .sm-panel.is-max .smx-state { color: #9FC7D6; }

/* mobile: fadeSlideIn sem blur — celulares às vezes não limpam o
   rasterizado do filter animado em texto (fica borrado pra sempre),
   e blur animado pesa na GPU. Sobrescreve o keyframe do animations.css. */
@media (max-width: 799px) {
  @keyframes fadeSlideIn {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
  }
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
