/* ==========================================================================
   Pablo Bárcena · Osteopatía en San Isidro — v2
   ========================================================================== */

:root {
  --ink: #152c3b;
  --ink-soft: #50646e;
  --teal: #24c4cc;
  --teal-dark: #159ba4;
  --mint: #dff7f7;
  --mist: #f3f7f7;
  --line: #dbe7e8;
  --white: #fff;
  --pain: #f2764b;
  --pain-soft: #fde5db;
  --fig-fill: #e9f3f3;
  --fig-line: #b3cdd0;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  margin: 0;
  font-family: Montserrat, "Avenir Next", Avenir, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--teal-dark); outline-offset: 3px; border-radius: 4px; }

/* ---------- Header ---------- */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1240px;
  height: 86px;
  margin: 0 auto;
  padding: 0 28px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.brand strong { letter-spacing: .12em; font-size: 14px; font-weight: 750; }
.brand small { letter-spacing: .16em; color: var(--ink-soft); font-size: 9px; font-weight: 600; }
.brand-logo { flex: none; width: 42px; height: 42px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 0 1px #152c3b14; }
.footer-brand .brand-logo { width: 48px; height: 48px; }

nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
nav a { color: #4b606a; font-size: 12px; font-weight: 650; transition: color .2s; }
nav a:hover { color: var(--teal-dark); }

.header-cta { flex: none; min-height: 42px; padding: 0 16px; font-size: 12px; }
.header-cta svg { width: 16px; height: 16px; }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { cursor: pointer; padding: 8px; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu > div {
  z-index: 20; display: flex; flex-direction: column; width: 250px; padding: 12px;
  position: absolute; top: 48px; right: 0; border: 1px solid var(--line); background: #fff;
  border-radius: 12px; box-shadow: 0 16px 40px #152c3b26;
}
.mobile-menu a { border-bottom: 1px solid var(--line); padding: 12px 10px; font-size: 14px; font-weight: 650; }
.mobile-menu a:last-child { border-bottom: 0; }

/* ---------- Buttons ---------- */

.button {
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  min-height: 52px; padding: 0 23px; border-radius: 8px; font-size: 14px; font-weight: 750;
  transition: transform .2s var(--ease-out), box-shadow .2s, background .2s;
}
.button-primary { background: var(--teal); color: #0e3440; box-shadow: 0 10px 24px #24c4cc2e; }
.button-primary:hover { background: #32d0d7; transform: translateY(-2px); box-shadow: 0 15px 30px #24c4cc3d; }
.button-dark { background: var(--ink); color: #fff; box-shadow: 0 12px 28px #152c3b29; }
.button-dark:hover { transform: translateY(-2px); box-shadow: 0 16px 32px #152c3b38; }
.button-ghost { background: transparent; color: var(--ink); border: 1px solid #c9d9db; box-shadow: none; }
.button-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.button-wa { background: #25d366; color: #063d1f; box-shadow: 0 10px 24px #25d36633; }
.button-wa:hover { background: #2fe173; transform: translateY(-2px); box-shadow: 0 15px 30px #25d36645; }

/* ---------- Common ---------- */

.eyebrow, .section-kicker { letter-spacing: .19em; color: var(--teal-dark); margin: 0 0 20px; font-size: 11px; font-weight: 750; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { background: var(--teal); width: 25px; height: 2px; }
.section-kicker.light { color: var(--teal); }

h2 { letter-spacing: -.035em; margin: 0; font-size: clamp(34px, 4vw, 52px); font-weight: 640; line-height: 1.12; }
h2 em { font-style: normal; font-weight: 300; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 7vw; max-width: 1160px; margin: 0 auto 52px; }
.section-heading .section-kicker { margin-bottom: 15px; }
.section-heading > p { max-width: 400px; margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.85; }
.large-copy { font-weight: 520; color: var(--ink); font-size: 19px; line-height: 1.7; margin: 0 0 20px; }
.copy { color: var(--ink-soft); margin: 0 0 20px; font-size: 15px; line-height: 1.85; }

/* ---------- Scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Hero ---------- */

.hero {
  display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 4vw;
  max-width: 1440px; min-height: 680px; margin: 0 auto; padding: 56px max(5vw, 36px) 80px;
  background: linear-gradient(135deg, #fbfdfd 0%, #f4fafa 55%, #eef8f8 100%);
  border-radius: 0 0 44px 44px; overflow: hidden; position: relative;
}
.hero h1 { letter-spacing: -.045em; max-width: 740px; margin: 0; font-size: clamp(45px, 5vw, 70px); font-weight: 680; line-height: 1.05; }
.hero h1 em { color: var(--teal-dark); font-style: normal; font-weight: 300; }
.hero-lead { max-width: 600px; color: var(--ink-soft); margin: 28px 0 0; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; color: #65767d; gap: 10px 22px; margin-top: 30px; font-size: 12px; font-weight: 600; }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--teal-dark); flex: none; }
.hero-trust .stars { color: #f5b301; letter-spacing: 1px; font-size: 12px; }
.hero-trust a:hover { color: var(--teal-dark); }

.hero-figure { position: relative; height: 560px; display: flex; justify-content: center; align-items: center; }
.hero-figure .figure { height: 100%; max-height: 100%; width: auto; max-width: 100%; flex: none; }
.hero-hint {
  position: absolute; left: 0; bottom: 0; display: grid; grid-template-columns: 36px 1fr; gap: 12px; width: 230px;
  color: #60767c; font-size: 11px; line-height: 1.6;
}
.hero-hint span { color: var(--teal-dark); border-top: 2px solid var(--teal); padding-top: 7px; font-size: 11px; font-weight: 700; }
.hero-hint p { margin: 0; }

/* ---------- Figura humana (SVG) ---------- */

.figure { overflow: visible; display: block; }
.figure .body { fill: var(--fig-fill); stroke: var(--fig-line); stroke-width: 1.4; stroke-linejoin: round; transition: fill .4s, stroke .4s; }
.figure .limb { fill: none; stroke: var(--fig-fill); stroke-linecap: round; stroke-linejoin: round; }
.figure .limb-edge { fill: none; stroke: var(--fig-line); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

.figure .spine-dot { fill: var(--teal-dark); opacity: 0; transform: scale(.4); transform-box: fill-box; transform-origin: center; transition: opacity .4s var(--ease-out), transform .5s var(--ease-out); }
.figure.spine-on .spine-dot { opacity: .9; transform: scale(1); }

.figure .zone { fill: var(--teal); opacity: 0; transition: opacity .35s var(--ease-out); pointer-events: none; }
.figure .zone-line { fill: none; stroke: var(--teal-dark); stroke-width: 1.2; stroke-dasharray: 4 5; opacity: 0; transition: opacity .35s; pointer-events: none; }
.figure .zone.is-active { opacity: .28; }
.figure .zone-line.is-active { opacity: .9; }
.figure.postura-active .body { stroke: var(--teal-dark); stroke-width: 2; }
.figure.postura-active .limb-edge { stroke: var(--teal-dark); stroke-width: 2; }

.figure .hotspot { cursor: pointer; }
.figure .hotspot .dot { fill: var(--pain); stroke: #fff; stroke-width: 2.5; transition: fill .3s, transform .3s var(--ease-out); transform-box: fill-box; transform-origin: center; }
.figure .hotspot .ring { fill: none; stroke: var(--pain); stroke-width: 1.5; opacity: 0; transform-box: fill-box; transform-origin: center; }
.figure .hotspot .lead { stroke: #9db6b9; stroke-width: 1; fill: none; }
.figure .hotspot .label { font-size: 10.5px; font-weight: 700; fill: var(--ink); letter-spacing: .02em; }
.figure .hotspot .label-bg { fill: #fff; stroke: #d4e8e8; rx: 12; filter: drop-shadow(0 6px 14px #152c3b14); }
.figure .hotspot:hover .dot, .figure .hotspot.is-active .dot { fill: var(--teal-dark); transform: scale(1.25); }
.figure .hotspot.is-active .label-bg { stroke: var(--teal-dark); }
.figure .hotspot.is-active .ring { stroke: var(--teal-dark); }

@keyframes pulse-ring { 0% { transform: scale(.6); opacity: .8; } 100% { transform: scale(2.6); opacity: 0; } }
.figure.animate .hotspot .ring { animation: pulse-ring 2.4s var(--ease-out) infinite; }
.figure.animate .hotspot:nth-of-type(2) .ring { animation-delay: .4s; }
.figure.animate .hotspot:nth-of-type(3) .ring { animation-delay: .8s; }
.figure.animate .hotspot:nth-of-type(4) .ring { animation-delay: 1.2s; }
.figure.animate .hotspot:nth-of-type(5) .ring { animation-delay: 1.6s; }

/* ---------- Divisor columna ---------- */

.spine-divider { display: flex; justify-content: center; padding: 0; height: 120px; }
.spine-divider svg { height: 100%; width: 24px; overflow: visible; }
.spine-divider circle { fill: var(--teal); opacity: 0; transform: translateY(-6px); transition: opacity .4s var(--ease-out), transform .4s var(--ease-out); }
.spine-divider.is-visible circle { opacity: 1; transform: none; }

/* ---------- Intro ---------- */

.intro { max-width: 1160px; margin: 0 auto; padding: 60px 28px 100px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; }
.intro-grid > div:last-child { border-left: 1px solid var(--line); padding-left: 45px; }
.intro-title span { display: block; letter-spacing: .17em; color: var(--teal-dark); margin-bottom: 20px; font-size: 11px; font-weight: 750; }

/* ---------- Explorador del cuerpo ---------- */

.explorer { background: var(--mist); padding: 105px max(5vw, 28px) 115px; }
.explorer-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 6vw; max-width: 1160px; margin: 0 auto; align-items: start; }
.explorer-figure { position: sticky; top: 40px; height: calc(100vh - 80px); max-height: 680px; display: flex; justify-content: center; align-items: center; }
.explorer-figure .figure { height: 100%; max-height: 640px; width: auto; max-width: 100%; flex: none; }
.explorer-legend { position: absolute; left: 0; top: 0; display: flex; align-items: center; gap: 8px; color: #60767c; font-size: 11px; font-weight: 600; }
.explorer-legend i { width: 9px; height: 9px; border-radius: 50%; background: var(--pain); box-shadow: 0 0 0 4px var(--pain-soft); }
.explorer-legend i.ok { background: var(--teal-dark); box-shadow: 0 0 0 4px var(--mint); }

.explorer-list { display: flex; flex-direction: column; gap: 14px; padding-top: 10px; }
.explorer-item {
  background: #fff; border: 1px solid #e5eeee; border-radius: 13px; padding: 28px 30px 28px 30px;
  display: grid; grid-template-columns: 52px 1fr; gap: 22px; align-items: start; position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s; scroll-margin-top: 120px;
}
.explorer-item .num { color: var(--teal-dark); border-top: 2px solid var(--teal); padding-top: 7px; font-size: 10px; font-weight: 700; }
.explorer-item h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -.015em; display: flex; align-items: center; gap: 10px; }
.explorer-item h3 i { width: 8px; height: 8px; border-radius: 50%; background: var(--pain); flex: none; transition: background .3s; }
.explorer-item .lead { color: #6b7e85; font-size: 13px; line-height: 1.55; margin: 0 0 14px; display: block; }
.explorer-item p { color: #536970; margin: 0; font-size: 14px; line-height: 1.75; }
.explorer-item .where { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: var(--teal-dark); letter-spacing: .06em; }
.explorer-item.is-active { border-color: var(--teal-dark); box-shadow: 0 18px 40px #152c3b14; transform: translateX(6px); }
.explorer-item.is-active h3 i { background: var(--teal-dark); }
.explorer-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.explorer-cta small { color: #7b8b91; font-size: 12px; }

/* ---------- Consulta ---------- */

.consultation { background: var(--ink); color: #fff; padding: 110px max(5vw, 28px) 110px; }
.consultation-title { display: grid; grid-template-columns: 1fr 1.1fr; align-items: end; gap: 3vw; max-width: 1160px; margin: 0 auto 65px; }
.consultation-title .section-kicker { grid-column: 1 / -1; margin-bottom: -30px; }
.consultation-title > p:last-child { color: #b7c8cc; max-width: 430px; margin: 0; font-size: 15px; line-height: 1.75; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 1160px; margin: 0 auto; background: #ffffff26; }
.steps article { background: var(--ink); min-height: 280px; padding: 38px 34px 35px; position: relative; }
.steps article > span { color: #779097; font-size: 10px; position: absolute; top: 18px; right: 22px; }
.step-icon { display: grid; place-items: center; width: 52px; height: 52px; color: var(--teal); background: #24c4cc26; border-radius: 50%; }
.steps h3 { margin: 42px 0 13px; font-size: 20px; }
.steps p { color: #afc0c5; margin: 0; font-size: 13px; line-height: 1.75; }

.before { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; max-width: 1160px; margin: 60px auto 0; }
.before article { border: 1px solid #ffffff26; border-radius: 13px; padding: 24px 26px; }
.before h4 { margin: 0 0 8px; font-size: 14px; display: flex; align-items: center; gap: 10px; color: #fff; }
.before h4 svg { color: var(--teal); }
.before p { margin: 0; color: #afc0c5; font-size: 13px; line-height: 1.7; }
.consult-cta { max-width: 1160px; margin: 44px auto 0; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.consult-cta small { color: #90a4aa; font-size: 12px; }

/* ---------- Sobre mí ---------- */

.about { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 8vw; max-width: 1160px; margin: 0 auto; padding: 125px 28px; }
.about-art { color: #fff; background: linear-gradient(145deg, #102735 0%, #173c4a 68%, #176c75 100%); border-radius: 3px 55% 3px 3px; height: 490px; position: relative; overflow: hidden; box-shadow: 0 24px 55px #152c3b24; }
.about-art::before { content: ""; pointer-events: none; position: absolute; inset: 0; background-image: linear-gradient(#ffffff0a 1px, #0000 1px), linear-gradient(90deg, #ffffff0a 1px, #0000 1px); background-size: 42px 42px; -webkit-mask-image: linear-gradient(to bottom right, #000, #0000 70%); mask-image: linear-gradient(to bottom right, #000, #0000 70%); }
.about-art::after { content: ""; pointer-events: none; position: absolute; bottom: -88px; right: -88px; width: 320px; height: 320px; border: 1px solid #4de1e673; border-radius: 50%; box-shadow: 0 0 0 38px #24c4cc09, 0 0 0 76px #24c4cc06; }
.about-emblem { z-index: 2; object-fit: cover; border-radius: 50%; width: 90px; height: 90px; position: absolute; top: 34px; left: 34px; box-shadow: 0 10px 30px #0003; }
.about-photo-frame { z-index: 3; aspect-ratio: 1; background: #ffffffeb; border-radius: 50%; width: min(72%, 335px); padding: 5px; position: absolute; top: 86px; right: 35px; overflow: hidden; box-shadow: 0 24px 48px #05151e59, 0 0 0 1px #24c4cc66; }
.about-photo { object-fit: cover; border-radius: 50%; width: 100%; height: 100%; }
.about-word { z-index: 1; letter-spacing: -.08em; color: #0000; -webkit-text-stroke: 1px #5fe0e533; font-size: 154px; font-weight: 750; line-height: 1; position: absolute; top: 133px; left: 22px; transform: rotate(-90deg); }
.about-line { z-index: 4; background: var(--teal); width: 1px; height: 92px; position: absolute; bottom: 36px; left: 40px; }
.about-art p { z-index: 4; letter-spacing: .2em; margin: 0; font-size: 9px; line-height: 1.7; position: absolute; bottom: 33px; left: 56px; }
.about-role { letter-spacing: .055em; font-weight: 700; color: var(--teal-dark); margin: 15px 0 28px; font-size: 12px; }
.creds { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 10px; }
.creds li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink); line-height: 1.5; }
.creds li svg { color: var(--teal-dark); flex: none; margin-top: 2px; }
.creds li small { display: block; color: var(--ink-soft); font-size: 12px; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); padding: 110px max(5vw, 28px); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; max-width: 1160px; margin: 0 auto; background: var(--line); border: 1px solid var(--line); }
.faq-item { background: #fff; }
.faq-item summary { cursor: pointer; display: grid; grid-template-columns: 1fr 24px; gap: 20px; align-items: center; padding: 26px 30px; list-style: none; font-size: 16px; font-weight: 650; letter-spacing: -.01em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { color: var(--teal-dark); transition: transform .25s var(--ease-out); }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item p { margin: -6px 30px 28px; padding-top: 16px; border-top: 1px solid var(--line); color: #536970; font-size: 14px; line-height: 1.75; }

/* ---------- Ficha Google + ubicación ---------- */

.place { background: var(--mist); padding: 110px max(5vw, 28px); }
.place-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 4vw; max-width: 1160px; margin: 0 auto; align-items: stretch; }

.gbp { background: #fff; border: 1px solid #e5eeee; border-radius: 16px; padding: 30px 32px; box-shadow: 0 18px 40px #152c3b0f; display: flex; flex-direction: column; gap: 18px; }
.gbp-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.gbp-head h3 { margin: 0 0 4px; font-size: 22px; letter-spacing: -.02em; }
.gbp-head small { color: var(--ink-soft); font-size: 12px; }
.g-mark { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: #5f6368; border: 1px solid #e3e3e3; border-radius: 20px; padding: 6px 12px; white-space: nowrap; }
.g-mark svg { width: 16px; height: 16px; }
.gbp-rating { display: flex; align-items: center; gap: 12px; }
.gbp-rating strong { font-size: 44px; letter-spacing: -.04em; line-height: 1; font-weight: 700; }
.gbp-rating .stars { display: flex; gap: 2px; color: #f5b301; }
.gbp-rating .stars svg { width: 20px; height: 20px; }
.gbp-rating small { display: block; color: var(--ink-soft); font-size: 12px; margin-top: 4px; }
.gbp-rows { display: grid; gap: 12px; margin: 4px 0 6px; }
.gbp-rows div { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--ink); }
.gbp-rows svg { color: var(--teal-dark); flex: none; margin-top: 2px; }
.gbp-rows small { display: block; color: var(--ink-soft); font-size: 12px; }
.gbp-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.gbp-actions .button { min-height: 44px; padding: 0 16px; font-size: 13px; }

.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid #e5eeee; background: #dfe9ea; position: relative; min-height: 380px; box-shadow: 0 18px 40px #152c3b0f; }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.85); }

.zones-strip { max-width: 1160px; margin: 40px auto 0; display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center; color: #60767c; font-size: 12px; }
.zones-strip span { border: 1px solid #cfe0e1; background: #fff; border-radius: 20px; padding: 6px 12px; font-weight: 600; color: var(--ink); }
.zones-strip b { font-weight: 700; margin-right: 6px; }

/* ---------- Contacto ---------- */

.contact { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 7vw; max-width: 1160px; margin: 0 auto; padding: 110px 28px; }
.contact > div > p:last-child { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.contact-actions .button { min-width: 280px; }
.contact-actions span { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); font-size: 13px; }
.contact-actions span svg { color: var(--teal-dark); }
.contact-actions small { color: #7b8b91; margin-top: -8px; font-size: 11px; }

/* ---------- Footer ---------- */

footer { display: flex; justify-content: space-between; align-items: center; gap: 25px; min-height: 125px; padding: 25px max(5vw, 28px); border-top: 1px solid var(--line); }
footer p, footer > a { color: #74878d; font-size: 11px; }
footer > a { display: flex; align-items: center; gap: 8px; }

/* ---------- WhatsApp flotante ---------- */

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  display: inline-flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 20px 0 16px;
  background: #25d366; color: #063d1f; border-radius: 30px; font-size: 13px; font-weight: 750;
  box-shadow: 0 14px 34px #25d36655; opacity: 0; transform: translateY(16px) scale(.96); pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), background .2s;
}
.wa-float.is-on { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { background: #2fe173; }
.wa-float svg { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-figure { height: 520px; }
  .explorer-grid { grid-template-columns: 1fr; }
  .explorer-figure { position: relative; top: 0; height: 460px; }
  .place-grid { grid-template-columns: 1fr; }
  .before { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 76px; padding: 0 18px; gap: 12px; }
  .mobile-menu { display: block; }
  .header-cta { padding: 0 12px; }
  .header-cta span { display: none; }
  .hero { border-radius: 0 0 26px 26px; gap: 30px; padding: 44px 22px 60px; }
  .hero h1 { font-size: 43px; }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-figure { height: 440px; }
  .hero-hint { display: none; }
  .intro { padding: 40px 22px 82px; }
  .intro-grid, .about, .contact, .section-heading, .consultation-title, .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .faq-grid { gap: 1px; }
  .intro-grid > div:last-child { border-left: 0; border-top: 1px solid var(--line); padding: 30px 0 0; }
  .explorer, .faq, .consultation, .place { padding: 80px 22px; }
  .explorer-figure { height: 400px; }
  .explorer-item { grid-template-columns: 1fr; gap: 10px; padding: 24px 22px; }
  .explorer-item.is-active { transform: none; }
  .about { padding: 82px 22px; }
  .about-art { order: 2; height: 390px; }
  .about-emblem { width: 70px; height: 70px; top: 25px; left: 25px; }
  .about-photo-frame { width: 265px; top: 62px; right: 22px; }
  .about-word { font-size: 120px; top: 118px; left: 5px; }
  .about-line { height: 72px; bottom: 28px; left: 28px; }
  .about-art p { bottom: 25px; left: 43px; }
  .steps { grid-template-columns: 1fr; }
  .consultation-title .section-kicker { grid-column: auto; margin-bottom: -12px; }
  .steps article { min-height: 0; }
  .gbp { padding: 24px 22px; }
  .contact { padding: 82px 22px; }
  .contact-actions .button { min-width: 0; width: 100%; }
  footer { flex-direction: column; align-items: flex-start; padding: 35px 22px; }
  .wa-float { right: 16px; bottom: 16px; }
  .wa-float span { display: none; }
  .wa-float { padding: 0 16px; }
}

@media (max-width: 420px) {
  .brand strong { font-size: 12px; }
  .brand small { font-size: 8px; }
  .hero h1 { font-size: 38px; }
  .hero-figure { height: 400px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, ::before, ::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .figure .spine-dot { opacity: .9; transform: none; }
  .spine-divider circle { opacity: 1; transform: none; }
}

/* ---------- Sprite de íconos ---------- */
.i { width: 18px; height: 18px; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.i-sm { width: 16px; height: 16px; }
.i-lg { width: 25px; height: 25px; stroke-width: 1.8; }
.star { width: 16px; height: 16px; fill: currentColor; }

/* ==========================================================================
   v2.1 — figura anatómica, panel, header pegajoso, motivos en grilla
   ========================================================================== */

.topbar { position: sticky; top: 0; z-index: 30; background: #ffffffe6; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.topbar.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px #152c3b0a; }
section, footer { scroll-margin-top: 90px; }
.motivo { scroll-margin-top: 110px; }

.button:active { transform: translateY(0) scale(.985); }
.button-ghost:active { transform: scale(.985); }

/* Hero: escenario con figura + panel */
.hero-stage { position: relative; height: 580px; }
.hero-figure { position: absolute; inset: 0; left: 0; right: 0; height: 100%; display: flex; justify-content: center; align-items: center; }
.hero-figure .figure { height: 100%; max-height: 100%; width: auto; max-width: 100%; flex: none; }

.figure .body { stroke: #a8c5c8; stroke-width: 1.4; stroke-linejoin: round; transition: stroke .4s, stroke-width .4s; }
.figure .detail path { fill: none; stroke: #9fbfc2; stroke-width: 1.2; stroke-linecap: round; opacity: .55; }
.figure .zone { opacity: 0; transition: opacity .4s var(--ease-out); pointer-events: none; }
.figure .zone.is-active { opacity: 1; }
.figure.postura-active .body { stroke: var(--teal-dark); stroke-width: 2.2; }

.hero-panel {
  position: absolute; left: 0; bottom: 8px; width: 250px; padding: 20px 22px 18px;
  background: #ffffffe8; border: 1px solid #d4e8e8; border-radius: 14px; box-shadow: 0 16px 40px #152c3b14;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.hero-panel.is-on { border-color: var(--teal-dark); }
.hp-kicker { display: block; letter-spacing: .18em; color: var(--teal-dark); font-size: 10px; font-weight: 750; margin-bottom: 8px; }
.hero-panel h3 { margin: 0 0 6px; font-size: 16px; letter-spacing: -.01em; line-height: 1.25; }
.hero-panel p { margin: 0; color: var(--ink-soft); font-size: 12.5px; line-height: 1.6; }
.hero-panel a { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; font-weight: 750; color: var(--ink); border-bottom: 1px solid #aabbbc; padding-bottom: 2px; }
.hero-panel a:hover { color: var(--teal-dark); border-color: var(--teal-dark); }

/* Motivos en grilla */
.motivos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 1160px; margin: 0 auto; }
.motivo {
  position: relative; background: #fff; border: 1px solid #e5eeee; border-radius: 14px; padding: 30px 32px 28px 92px;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.motivo:hover { transform: translateY(-4px); box-shadow: 0 18px 40px #152c3b12; border-color: #cfe3e4; }
.motivo .num { position: absolute; left: 32px; top: 34px; color: var(--teal-dark); border-top: 2px solid var(--teal); padding-top: 7px; font-size: 10px; font-weight: 700; }
.motivo h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -.015em; }
.motivo .lead { display: block; color: #6b7e85; font-size: 13px; line-height: 1.55; margin: 0 0 14px; }
.motivo p { color: #536970; margin: 0; font-size: 14px; line-height: 1.75; }
.motivo .where { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: var(--teal-dark); letter-spacing: .06em; }
.motivo:target { border-color: var(--teal-dark); box-shadow: 0 18px 40px #152c3b14; }
.explorer-cta { max-width: 1160px; margin: 30px auto 0; }

/* Footer */
footer { display: block; padding: 50px max(5vw, 28px) 30px; }
.foot-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; max-width: 1160px; margin: 0 auto 30px; align-items: start; }
.foot-nav { display: flex; flex-direction: column; gap: 10px; }
.foot-nav a { color: #4b606a; font-size: 13px; font-weight: 650; width: max-content; }
.foot-nav a:hover { color: var(--teal-dark); }
.foot-contact { display: flex; flex-direction: column; gap: 10px; }
.foot-contact a, .foot-contact span { display: inline-flex; align-items: center; gap: 8px; color: #4b606a; font-size: 13px; font-weight: 600; }
.foot-contact a:hover { color: var(--teal-dark); }
.foot-contact svg { color: var(--teal-dark); }
.foot-note { max-width: 1160px; margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--line); color: #74878d; font-size: 11px; }

@media (max-width: 1000px) {
  .hero-stage { height: 620px; max-width: 640px; margin: 0 auto; width: 100%; }
}
@media (max-width: 760px) {
  .hero-stage { height: auto; }
  .hero-figure { position: relative; height: 440px; }
  .hero-panel { position: relative; width: 100%; bottom: auto; margin-top: 10px; }
  .motivos-grid { grid-template-columns: 1fr; }
  .motivo { padding: 24px 22px 24px 22px; }
  .motivo .num { position: static; display: inline-block; margin-bottom: 12px; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Figura alineada a la derecha del escenario para dejar lugar al panel */
.hero-figure { justify-content: flex-end; padding-right: 14px; }
.hero-panel { width: 236px; }
@media (max-width: 1000px) { .hero-figure { justify-content: center; padding-right: 0; } }
.figure .zone { fill: url(#fig-glow); }

/* ==========================================================================
   v2.2 — zonas relacionadas, hero, hilo de pasos, casos, reseñas, llamar, páginas
   ========================================================================== */

.figure .zone.is-related { opacity: .45; }
.hp-rel { display: block; margin-top: 8px; color: var(--teal-dark); font-size: 11px; font-weight: 700; letter-spacing: .02em; }
.hp-rel:empty { display: none; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-tags span { border: 1px solid #cfe0e1; background: #ffffffb0; border-radius: 20px; padding: 6px 12px; font-size: 12px; font-weight: 650; color: var(--ink); }

/* Pasos con hilo */
.steps { position: relative; background: transparent; gap: 14px; }
.steps::before { content: ""; position: absolute; left: 60px; right: 60px; top: 64px; border-top: 1px dashed #ffffff40; }
.steps article { background: #1b3444; border: 1px solid #ffffff14; border-radius: 14px; }
.step-icon { position: relative; background: var(--ink); box-shadow: 0 0 0 1px #24c4cc80, 0 0 0 8px #1b3444; }
.steps article > span { color: var(--teal); font-weight: 700; }

/* Situaciones frecuentes */
.casos { padding: 110px max(5vw, 28px); }
.casos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1160px; margin: 0 auto; }
.caso { background: #fff; border: 1px solid #e5eeee; border-radius: 14px; padding: 30px 30px 26px; display: flex; flex-direction: column; gap: 14px; transition: transform .3s var(--ease-out), box-shadow .3s; }
.caso:hover { transform: translateY(-4px); box-shadow: 0 18px 40px #152c3b12; }
.caso .tag { letter-spacing: .16em; color: var(--teal-dark); font-size: 10px; font-weight: 750; }
.caso blockquote { margin: 0; font-size: 17px; font-weight: 520; line-height: 1.5; letter-spacing: -.01em; color: var(--ink); }
.caso dl { margin: 6px 0 0; padding-top: 14px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.caso dt { font-size: 10px; letter-spacing: .14em; color: #8ea2a7; font-weight: 700; }
.caso dd { margin: 3px 0 0; color: #536970; font-size: 13.5px; line-height: 1.65; }
.casos-note { max-width: 1160px; margin: 22px auto 0; color: #7b8b91; font-size: 12px; }

/* Reseñas */
.reviews { max-width: 1160px; margin: 44px auto 0; }
.reviews-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.reviews-head h3 { margin: 0; font-size: 20px; letter-spacing: -.02em; }
.reviews-head a { font-size: 12px; font-weight: 750; color: var(--teal-dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review { background: #fff; border: 1px solid #e5eeee; border-radius: 14px; padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; }
.review .stars { color: #f5b301; letter-spacing: 2px; font-size: 14px; }
.review p { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.65; }
.review footer { display: flex; flex-direction: column; gap: 2px; padding: 0; border: 0; min-height: 0; margin-top: auto; }
.review footer strong { font-size: 13px; }
.review footer small { color: #7b8b91; font-size: 11px; }

/* Llamar (solo mobile) */
.call-float { display: none; }

/* Motivos: link a página */
.motivo .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 12px; font-weight: 750; color: var(--ink); border-bottom: 1px solid #aabbbc; padding-bottom: 2px; }
.motivo .more:hover { color: var(--teal-dark); border-color: var(--teal-dark); }

/* Páginas por motivo */
.page-hero { max-width: 1160px; margin: 0 auto; padding: 60px 28px 50px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 5vw; align-items: end; }
.page-hero h1 { letter-spacing: -.04em; margin: 0; font-size: clamp(38px, 4.6vw, 62px); font-weight: 680; line-height: 1.05; }
.page-hero h1 em { color: var(--teal-dark); font-style: normal; font-weight: 300; }
.page-hero .lead { color: var(--ink-soft); margin: 22px 0 0; font-size: 17px; line-height: 1.7; max-width: 560px; }
.page-hero .hero-actions { margin-top: 28px; }
.page-aside { background: var(--mist); border-radius: 16px; padding: 26px 28px; display: grid; gap: 12px; }
.page-aside h4 { margin: 0; font-size: 11px; letter-spacing: .16em; color: var(--teal-dark); font-weight: 750; }
.page-aside ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.page-aside li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.page-aside li svg { color: var(--teal-dark); margin-top: 2px; }
.page-aside .mini { padding-top: 12px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }
.page-aside .mini b { color: var(--ink); }
.page-body { max-width: 1160px; margin: 0 auto; padding: 30px 28px 90px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 5vw; }
.page-body h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 18px; }
.page-body .copy { font-size: 16px; }
.page-related { background: var(--mist); padding: 80px max(5vw, 28px); }
.page-related .section-heading { margin-bottom: 30px; }
.related-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; max-width: 1160px; margin: 0 auto; }
.related-grid a { background: #fff; border: 1px solid #e5eeee; border-radius: 12px; padding: 18px 18px; font-size: 13px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 8px; transition: transform .25s var(--ease-out), box-shadow .25s; }
.related-grid a:hover { transform: translateY(-3px); box-shadow: 0 14px 30px #152c3b12; color: var(--teal-dark); }
.crumbs { max-width: 1160px; margin: 0 auto; padding: 18px 28px 0; font-size: 12px; color: #74878d; display: flex; gap: 8px; align-items: center; }
.crumbs a:hover { color: var(--teal-dark); }

@media (max-width: 1000px) {
  .casos-grid, .reviews-grid { grid-template-columns: 1fr; }
  .page-hero, .page-body { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .steps::before { display: none; }
  .casos, .page-related { padding: 80px 22px; }
  .page-hero { padding: 40px 22px 30px; }
  .page-body { padding: 10px 22px 70px; }
  .related-grid { grid-template-columns: 1fr; }
  .call-float {
    display: inline-flex; position: fixed; right: 16px; bottom: 82px; z-index: 50; width: 54px; height: 54px; border-radius: 50%;
    align-items: center; justify-content: center; background: #fff; color: var(--ink); border: 1px solid var(--line);
    box-shadow: 0 12px 30px #152c3b26; opacity: 0; transform: translateY(16px); pointer-events: none;
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  }
  .call-float.is-on { opacity: 1; transform: none; pointer-events: auto; }
}

/* Nueve motivos: tres columnas */
.motivos-grid { grid-template-columns: repeat(3, 1fr); }
.motivo { padding: 26px 26px 24px; }
.motivo .num { position: static; display: inline-block; margin-bottom: 14px; }
.motivo h3 { font-size: 18px; }
@media (max-width: 1000px) { .motivos-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .motivos-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Sobre mí — foto circular limpia, sin caja
   ========================================================================== */
.about { grid-template-columns: .95fr 1.05fr; gap: 6vw; align-items: center; }
.about-visual { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1; margin: 0 auto; }
.about-photo {
  position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block;
  box-shadow: 0 30px 70px #152c3b26, 0 0 0 8px #fff;
}
.about-ring {
  position: absolute; inset: -6%; border-radius: 50%; border: 1px dashed #159ba466; z-index: 1;
  transform: rotate(18deg);
}
.about-blob {
  position: absolute; z-index: 0; width: 62%; height: 62%; right: -12%; bottom: -8%; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #dff7f7 0%, #dff7f700 70%);
}
.about-badge {
  position: absolute; z-index: 3; left: -6%; bottom: 8%; background: #fff; border: 1px solid #d4e8e8; border-radius: 14px;
  padding: 12px 16px 12px; display: grid; gap: 2px; box-shadow: 0 16px 40px #152c3b1a;
}
.about-badge .stars { color: #f5b301; letter-spacing: 1px; font-size: 12px; }
.about-badge strong { font-size: 15px; letter-spacing: -.01em; }
.about-badge small { color: var(--ink-soft); font-size: 11px; }
.about-spine { position: absolute; z-index: 1; right: -9%; top: 6%; display: grid; gap: 10px; justify-items: center; }
.about-spine i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); opacity: .85; }
.about-spine i:nth-child(1), .about-spine i:nth-child(7) { width: 4px; height: 4px; opacity: .5; }
.about-copy .creds { margin-top: 26px; }

@media (max-width: 760px) {
  .about-visual { max-width: 300px; }
  .about-badge { left: -4%; bottom: 2%; padding: 10px 14px; }
  .about-spine { display: none; }
}

/* ---------- Zonas ---------- */
.zonas { background: var(--mist); padding: 90px max(5vw, 28px) 80px; }
.zonas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1160px; margin: 0 auto; }
.zona { background: #fff; border: 1px solid #e5eeee; border-radius: 14px; padding: 24px 26px; transition: transform .3s var(--ease-out), box-shadow .3s; }
.zona:hover { transform: translateY(-4px); box-shadow: 0 18px 40px #152c3b12; }
.zona h3 { margin: 0 0 4px; font-size: 18px; letter-spacing: -.015em; }
.zona span { display: block; color: var(--teal-dark); font-size: 11px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.zona p { margin: 0; color: #536970; font-size: 13.5px; line-height: 1.65; }
.zones-link { display: inline-flex; align-items: center; gap: 6px; margin-left: 6px; font-size: 12px; font-weight: 750; color: var(--teal-dark); }
.page-aside li span b { color: var(--ink); }
@media (max-width: 1000px) { .zonas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .zonas { padding: 70px 22px; } .zonas-grid { grid-template-columns: 1fr; } }
