/* =========================================================
   Dra. Marianny — Sistema visual "Couture Clínico"
   Restraint, whitespace, hairlines, tipografia editorial.
   Paleta refinada a partir do logo (petróleo + ouro suave).
   ========================================================= */

:root {
  /* base */
  --ivory:      #f7f3ec;   /* papel quente */
  --ivory-deep: #efe8dc;
  --teal-900:   #102826;
  --teal-800:   #163533;
  --teal-700:   #1f4744;
  --teal-500:   #2f615c;
  --teal-300:   #6f928d;
  --gold:       #b08a4f;   /* ouro fosco, sofisticado (não laranja) */
  --gold-soft:  #c9a978;
  --gold-pale:  #e7d9bf;
  --ink:        #1b2422;
  --muted:      #5d6e6a;
  --line:       rgba(16, 40, 38, .14);
  --line-soft:  rgba(16, 40, 38, .08);

  /* acento por mood — sempre dentro do bom gosto */
  --accent: var(--gold);
  --accent-tint: rgba(176, 138, 79, .10);

  --serif: "Cormorant Garamond", "Fraunces", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-soft: cubic-bezier(.33, 1, .68, 1);

  --maxw: 1180px;
}

/* moods: deslocam só o acento e um leve ambiente — nunca berrante */
body[data-mood="welcome"]  { --accent: #6f928d; --accent-tint: rgba(111,146,141,.10); }
body[data-mood="recovery"] { --accent: #b08a4f; --accent-tint: rgba(176,138,79,.10); }
body[data-mood="urgent"]   { --accent: #a8623f; --accent-tint: rgba(168,98,63,.10); }
body[data-mood="calm"]     { --accent: #5f8a82; --accent-tint: rgba(95,138,130,.10); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  min-height: 100dvh;
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* textura sutil de papel + vinheta — estática, discreta */
.aurora { position: fixed; inset: 0; z-index: -1; pointer-events: none; background:
  radial-gradient(120% 90% at 50% 0%, #fbf8f2 0%, var(--ivory) 46%, var(--ivory-deep) 100%); }
.aurora .grain {
  position: absolute; inset: 0; opacity: .035;
  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='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* fio de ouro decorativo no topo */
.aurora::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft) 30%, var(--gold) 50%, var(--gold-soft) 70%, transparent);
  opacity: .6;
}
.aurora-blob, .blob-1, .blob-2, .blob-3 { display: none !important; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

::selection { background: var(--gold-pale); color: var(--teal-900); }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(22px, 5vw, 64px);
  background: linear-gradient(var(--ivory), rgba(247,243,236,0));
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; color: var(--teal-800); }
.brand-mark { width: 38px; height: 38px; object-fit: contain; }
.brand-name {
  font-family: var(--serif); font-weight: 500; font-size: 21px; letter-spacing: .4px;
  color: var(--teal-800);
}
.ghost-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: none; cursor: pointer;
  color: var(--teal-600, var(--teal-500)); padding: 8px 4px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  position: relative; transition: color .3s var(--ease);
}
.ghost-link::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.ghost-link:hover { color: var(--teal-800); }
.ghost-link:hover::after { transform: scaleX(1); }
.ghost-link svg { opacity: .7; }

/* ---------- Stage / Scenes ---------- */
.stage { position: relative; }
.scene {
  min-height: calc(100dvh - 84px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px clamp(22px, 5vw, 64px) 80px;
}
.scene[hidden] { display: none; }
.scene.is-active .reveal,
.scene.is-active.reveal { animation: rise 1s var(--ease-soft) both; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ============ ETAPA 1: ACOLHIMENTO ============ */
.ask-wrap { max-width: 720px; width: 100%; text-align: center; }

.hero-emblem { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-bottom: 34px; }
.hero-emblem img { width: 96px; height: 96px; object-fit: contain;
  animation: rise 1.1s var(--ease-soft) both; }
.emblem-rule { display: flex; align-items: center; gap: 14px; animation: rise 1.1s .1s var(--ease-soft) both; }
.emblem-rule span { height: 1px; width: 46px; background: linear-gradient(90deg, transparent, var(--gold)); }
.emblem-rule span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.emblem-rule small {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

.ask-eyebrow {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; animation: rise 1s .15s var(--ease-soft) both;
}
.ask-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 7vw, 74px); line-height: 1.02;
  color: var(--teal-800); letter-spacing: -.01em;
  animation: rise 1s .2s var(--ease-soft) both;
}
.ask-title em { font-style: italic; font-weight: 400; color: var(--gold); }
.ask-sub {
  margin: 26px auto 40px; max-width: 460px;
  font-size: 15.5px; line-height: 1.7; color: var(--muted);
  animation: rise 1s .28s var(--ease-soft) both;
}

.ask-form { animation: rise 1s .36s var(--ease-soft) both; }
.ask-input-shell {
  display: flex; align-items: flex-end; gap: 6px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 2px;                       /* cantos quase retos = sério/elegante */
  padding: 8px 8px 8px 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 18px 50px -34px rgba(16,40,38,.5);
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.ask-input-shell:focus-within {
  border-color: var(--gold);
  box-shadow: 0 18px 50px -30px rgba(16,40,38,.55), 0 0 0 1px var(--gold);
}
.ask-input {
  flex: 1; border: none; background: transparent; resize: none;
  font-family: var(--sans); font-size: 16.5px; line-height: 1.5;
  color: var(--teal-900); padding: 14px 0; max-height: 168px;
}
.ask-input:focus { outline: none; }
.ask-input::placeholder { color: #9aa9a5; }

.mic-btn, .send-btn {
  flex: none; cursor: pointer; display: grid; place-items: center;
  transition: .35s var(--ease); border: none;
}
.mic-btn { width: 46px; height: 46px; background: transparent; color: var(--teal-500); border-radius: 2px; }
.mic-btn:hover { color: var(--teal-800); background: var(--accent-tint); }
.mic-btn.is-listening { background: var(--accent); color: #fff; }
.send-btn {
  width: 50px; height: 50px; border-radius: 2px;
  background: var(--teal-800); color: var(--ivory);
}
.send-btn:hover { background: var(--teal-900); }
.send-btn:active { transform: scale(.95); }
.send-btn svg { transition: transform .35s var(--ease); }
.send-btn:hover svg { transform: translateX(3px); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 26px 0 28px; }
.chip {
  background: transparent; border: 1px solid var(--line);
  color: var(--teal-700); padding: 9px 17px; border-radius: 999px;
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .02em; cursor: pointer;
  transition: .32s var(--ease);
}
.chip:hover { border-color: var(--teal-700); background: var(--teal-800); color: var(--ivory); }

.privacy-note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: .04em; color: var(--muted);
}
.privacy-note svg { color: var(--gold); flex: none; }

/* ============ ETAPA 2: RESPOSTA ============ */
.answer-grid {
  width: 100%; max-width: var(--maxw);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start;
}
.answer-main { animation: rise 1s var(--ease-soft) both; }

.reflect { margin-bottom: 26px; }
.reflect-quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(19px, 2.4vw, 25px); line-height: 1.45; color: var(--teal-700);
  position: relative; display: block; padding-left: 22px;
}
.reflect-quote::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: var(--gold);
}

.topic-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.topic-badge::before { content: ""; width: 24px; height: 1px; background: var(--gold); display: inline-block; }

.answer-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(30px, 4.4vw, 50px); line-height: 1.08;
  color: var(--teal-800); letter-spacing: -.01em; margin-bottom: 22px;
}
.answer-body { font-size: 16px; line-height: 1.78; color: var(--muted); max-width: 56ch; }
.answer-body p { margin-bottom: 14px; }
.answer-body strong { color: var(--teal-700); font-weight: 600; }

/* passos do cuidado — editorial, com numerais serifados */
.care-steps { margin: 34px 0 38px; border-top: 1px solid var(--line-soft); }
.care-step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid var(--line-soft);
  opacity: 0; transform: translateY(10px);
  animation: rise .7s var(--ease-soft) forwards;
}
.care-step:nth-child(1){animation-delay:.12s}.care-step:nth-child(2){animation-delay:.22s}
.care-step:nth-child(3){animation-delay:.32s}.care-step:nth-child(4){animation-delay:.42s}
.care-step-num {
  font-family: var(--serif); font-style: italic; font-size: 30px; font-weight: 400;
  color: var(--gold); line-height: 1; min-width: 42px;
}
.care-step-tit { font-family: var(--sans); font-weight: 600; color: var(--teal-800); font-size: 15px; letter-spacing: .01em; margin-bottom: 4px; }
.care-step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

.cta-row { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }

/* botão primário couture */
.cta-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--teal-800); color: var(--ivory); border: none; cursor: pointer;
  padding: 17px 30px; border-radius: 2px;
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  position: relative; overflow: hidden; transition: .4s var(--ease);
}
.cta-primary::after {
  content: ""; position: absolute; inset: 0; background: var(--teal-900);
  transform: translateY(101%); transition: transform .45s var(--ease); z-index: 0;
}
.cta-primary:hover::after { transform: translateY(0); }
.cta-primary > * { position: relative; z-index: 1; }
.cta-primary svg { transition: transform .4s var(--ease); }
.cta-primary:hover svg { transform: translateX(4px); }

/* botão fantasma com revelação de sublinhado dourado */
.cta-ghost {
  background: transparent; border: none; cursor: pointer; color: var(--teal-700);
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 2px; position: relative;
}
.cta-ghost::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.cta-ghost:hover::after { transform: scaleX(1); }

/* ---------- corpo elegante (FOTO real, duotone + pontos de ouro) ---------- */
.answer-aside { animation: rise 1s .18s var(--ease-soft) both; }
.bodymap-card {
  background: linear-gradient(180deg, #fffdf9, #faf5ec);
  border: 1px solid var(--line);
  border-radius: 3px; padding: 26px 24px 24px; position: sticky; top: 104px;
  box-shadow: 0 40px 90px -55px rgba(16,40,38,.7);
  overflow: hidden;
}
.bodymap-card::before {
  content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .7;
}
.bodymap-title {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
  text-align: center; margin-bottom: 18px; font-weight: 600;
}
.bodymap-frame { display: grid; place-items: center; position: relative; }

/* carta corporal: duas vistas lado a lado (anterior + posterior) */
.bodychart { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; }
.bodyview { display: flex; flex-direction: column; align-items: center; margin: 0; }
.bodyview-cap {
  margin-top: 10px; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

.body-photo-wrap {
  position: relative; width: 100%; aspect-ratio: 2 / 3;
  animation: bodyIn 1.1s var(--ease-soft) both;
}
@keyframes bodyIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.body-photo {
  width: 100%; height: 100%; object-fit: contain; object-position: center top; display: block;
  filter: grayscale(.35) contrast(1.02) brightness(1.02) sepia(.12) saturate(.85);
  -webkit-user-select: none; user-select: none;
}
.body-tone {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--teal-800) 42%, transparent) 0%,
    color-mix(in srgb, var(--teal-700) 22%, transparent) 45%,
    color-mix(in srgb, var(--gold) 26%, transparent) 100%);
  mix-blend-mode: multiply; opacity: .5;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-position: center top; mask-position: center top;
}

/* pontos anatômicos — elegantes, em camadas */
.bm-point {
  position: absolute; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border: none; background: transparent; padding: 0; cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; animation: ptIn .6s var(--ease-soft) forwards; animation-delay: var(--d, 0s);
}
@keyframes ptIn { from { opacity: 0; transform: translate(-50%, -50%) scale(.4); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.bm-point > span { position: absolute; border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }

/* ponto de referência (queixa não-relacionada): discreto, fino, "constelação" */
.bm-point.is-dim .bm-dot {
  width: 4px; height: 4px;
  background: #fff; box-shadow: 0 0 0 1px color-mix(in srgb, var(--teal-700) 55%, transparent);
}
.bm-point.is-dim .bm-halo,
.bm-point.is-dim .bm-ring,
.bm-point.is-dim .bm-pulse { opacity: 0; }
.bm-point.is-dim:hover .bm-dot { background: var(--gold); box-shadow: 0 0 0 2px rgba(255,255,255,.7); }

/* ponto ATIVO: joia de ouro com halo e anel de pulso */
.bm-point.is-active .bm-dot {
  width: 8px; height: 8px;
  background: radial-gradient(circle at 35% 30%, #f0dcb4, var(--gold) 70%);
  box-shadow: 0 0 0 2px rgba(255,255,255,.85), 0 2px 6px -1px rgba(120,86,38,.6);
}
.bm-point.is-active .bm-halo {
  width: 16px; height: 16px; background: var(--gold); opacity: .26;
}
.bm-point.is-active .bm-ring {
  width: 22px; height: 22px; border: 1px solid color-mix(in srgb, var(--gold) 70%, transparent); opacity: .5;
}
/* anel que expande suavemente (efeito de "respiração" de luz) */
.bm-point.is-active .bm-pulse {
  width: 12px; height: 12px; background: transparent;
  border: 1px solid var(--gold);
  animation: ripple 3.2s var(--ease-soft) infinite; animation-delay: var(--d, 0s);
}
@keyframes ripple {
  0%   { width: 10px; height: 10px; opacity: .55; }
  70%  { width: 30px; height: 30px; opacity: 0; }
  100% { width: 30px; height: 30px; opacity: 0; }
}

/* hover / selecionado */
.bm-point:hover { z-index: 6; }
.bm-point.is-active:hover .bm-halo { opacity: .4; width: 20px; height: 20px; }
.bm-point.is-sel .bm-dot {
  width: 10px; height: 10px;
  background: radial-gradient(circle at 35% 30%, #f5e6c8, var(--gold) 72%);
}
.bm-point.is-sel .bm-halo { opacity: .5; width: 24px; height: 24px; }
.bm-point.is-sel .bm-ring { opacity: .9; width: 28px; height: 28px; border-style: dashed; animation: spin 16s linear infinite; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* etiqueta flutuante */
.bm-tip {
  left: 50% !important; top: auto !important; bottom: 24px; transform: translateX(-50%) !important;
  white-space: nowrap; background: var(--teal-800); color: var(--ivory);
  font-size: 9px; letter-spacing: .07em; text-transform: uppercase; font-weight: 600;
  padding: 4px 9px; border-radius: 3px;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), bottom .3s var(--ease); z-index: 8;
  box-shadow: 0 8px 20px -10px rgba(16,40,38,.8);
}
.bm-tip::after { content: ""; position: absolute; left: 50%; bottom: -4px; transform: translateX(-50%); border: 4px solid transparent; border-top-color: var(--teal-800); }
.bm-point:hover .bm-tip, .bm-point.is-sel .bm-tip { opacity: 1; bottom: 28px; }

.bodymap-hint {
  font-size: 12px; color: var(--muted); text-align: center; margin-top: 20px;
  line-height: 1.6; min-height: 34px; letter-spacing: .01em;
  padding-top: 16px; border-top: 1px solid var(--line-soft);
}
.bodymap-hint strong { color: var(--teal-700); }

/* ============ ETAPA 3: JORNADA ============ */
.journey-wrap { width: 100%; max-width: 760px; text-align: center; }
.journey-h { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 5.4vw, 54px); color: var(--teal-800); letter-spacing: -.01em; }
.journey-sub { color: var(--muted); margin: 16px auto 40px; font-size: 15.5px; max-width: 440px; }
.journey-form {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: flex-end;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 30px 0; margin-bottom: 8px;
}
.jf-field { display: flex; flex-direction: column; gap: 9px; text-align: left; }
.jf-field label { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.jf-control {
  border: none; border-bottom: 1px solid var(--line); background: transparent; border-radius: 0;
  padding: 11px 2px; font-size: 15px; font-family: var(--sans); color: var(--teal-900); min-width: 210px;
  transition: border-color .35s var(--ease);
}
.jf-control:focus { outline: none; border-bottom-color: var(--gold); }
.jf-submit { margin-top: 6px; }

.timeline { margin-top: 48px; text-align: left; position: relative; max-width: 600px; margin-left: auto; margin-right: auto; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.tl-intro { font-size: 15px; color: var(--teal-700); margin-bottom: 30px; font-family: var(--serif); font-style: italic; font-size: 19px; }
.tl-node { position: relative; padding: 0 0 30px 44px; opacity: 0; transform: translateY(10px); animation: rise .7s var(--ease-soft) forwards; }
.tl-dot { position: absolute; left: 0; top: 4px; width: 15px; height: 15px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--gold); }
.tl-node.is-now .tl-dot { background: var(--gold); box-shadow: 0 0 0 5px var(--accent-tint); }
.tl-phase { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 12px; }
.tl-now-tag { font-size: 9.5px; background: var(--gold); color: #fff; padding: 3px 9px; border-radius: 999px; letter-spacing: .12em; }
.tl-title { font-family: var(--serif); font-weight: 400; font-size: 23px; color: var(--teal-800); margin: 7px 0 7px; }
.tl-text { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ============ MODAL ============ */
.modal-veil {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(16, 40, 38, .42); backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: 24px;
  animation: fade .5s var(--ease);
}
.modal-veil[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative; width: 100%; max-width: 460px;
  background: var(--ivory); border-radius: 3px; padding: 48px 42px 40px;
  border: 1px solid var(--line);
  box-shadow: 0 50px 120px -40px rgba(0,0,0,.5);
  animation: rise .6s var(--ease-soft);
}
.modal-glow { display: none; }
.modal-card::before {
  content: ""; position: absolute; left: 42px; right: 42px; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.modal-close { position: absolute; top: 18px; right: 20px; background: none; border: none; font-size: 24px; color: var(--muted); cursor: pointer; line-height: 1; transition: color .3s; }
.modal-close:hover { color: var(--teal-800); }
.modal-eyebrow { font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.modal-title { font-family: var(--serif); font-weight: 300; font-size: 30px; color: var(--teal-800); margin: 14px 0 14px; line-height: 1.16; }
.modal-text { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 26px; }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.lead-input {
  border: none; border-bottom: 1px solid var(--line); background: transparent; border-radius: 0;
  padding: 13px 2px; font-size: 17px; font-family: var(--serif); color: var(--teal-900);
  transition: border-color .35s var(--ease);
}
.lead-input::placeholder { color: #9aa9a5; font-family: var(--sans); font-size: 15px; }
.lead-input:focus { outline: none; border-bottom-color: var(--gold); }
.lead-submit { justify-content: center; background: #128a45; margin-top: 6px; }
.lead-submit::after { background: #0f7a3c; }
.modal-preview {
  margin-top: 22px; font-size: 12px; color: var(--muted); line-height: 1.6;
  background: var(--accent-tint); border-radius: 2px; padding: 14px 16px;
}
.modal-preview strong { color: var(--teal-700); }

/* ---------- Footer ---------- */
.site-foot {
  text-align: center; padding: 40px 24px 48px; font-size: 11px; letter-spacing: .04em; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center;
  border-top: 1px solid var(--line-soft); max-width: var(--maxw); margin: 0 auto;
}
.foot-dot { color: var(--gold); }

/* ---------- Responsivo ---------- */
@media (max-width: 880px) {
  .answer-grid { grid-template-columns: 1fr; gap: 44px; }
  .answer-aside { order: -1; }
  .bodymap-card { position: static; max-width: 300px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .scene { padding: 24px 20px 56px; }
  .journey-form { flex-direction: column; align-items: stretch; }
  .jf-control { min-width: 0; width: 100%; }
  .cta-row { gap: 18px; }
}
