/* PUENTES V34 · CSS CANÓNICO SITE
   Consolidado en el mismo orden de cascada de v33. */

/* ===== ORIGEN HISTÓRICO: styles.css ===== */
:root {
  --ink: #29232f;
  --muted: #706879;
  --plum: #755c91;
  --plum-dark: #4d3a62;
  --lavender: #e9e0f2;
  --lavender-light: #f7f3fa;
  --sage: #b7cbb7;
  --sage-light: #edf3eb;
  --cream: #fcfaf6;
  --white: #fff;
  --line: rgba(61, 47, 70, .13);
  --shadow: 0 25px 60px rgba(64, 47, 76, .12);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, .menu-button:focus-visible {
  outline: 3px solid rgba(143, 117, 171, .38);
  outline-offset: 4px;
}
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mobile-only { display: none; }

.demo-bar {
  min-height: 31px;
  background: linear-gradient(90deg, #332a3a, #5b466d 50%, #332a3a);
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 6px 20px;
  font-size: 11px;
  letter-spacing: .02em;
  text-align: center;
}
.demo-bar span { color: white; text-transform: uppercase; letter-spacing: .13em; font-weight: 700; }
.demo-bar p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(70,54,80,.08);
}
.nav-shell { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 25px; font-weight: 400; letter-spacing: -.035em; }
.brand-mark { position: relative; display: inline-block; width: 35px; height: 26px; }
.brand-mark::after { content: ""; position: absolute; left: 2px; right: 2px; bottom: 2px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--plum), var(--sage)); }
.brand-mark i { position: absolute; bottom: 4px; width: 20px; height: 16px; border: 2px solid var(--plum); border-bottom: 0; border-radius: 22px 22px 0 0; }
.brand-mark i:first-child { left: 0; }
.brand-mark i:last-child { right: 0; border-color: var(--sage); }
.main-nav { display: flex; align-items: center; gap: 31px; font-size: 13px; font-weight: 600; }
.main-nav > a { position: relative; }
.main-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--plum); transition: right .25s ease; }
.main-nav > a:hover::after { right: 0; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button > span:not(.sr-only) { width: 24px; height: 2px; display: block; background: var(--ink); margin: 5px; }

.button {
  border: 0;
  border-radius: 999px;
  background: var(--plum);
  color: white;
  padding: 15px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 13px 30px rgba(92,70,111,.24);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--plum-dark); box-shadow: 0 14px 30px rgba(92,70,111,.26); }
.button:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.button-small { padding: 11px 18px; font-size: 12px; box-shadow: none; }
.button-light { color: var(--plum-dark); background: white; }
.button-light:hover { color: var(--ink); background: var(--lavender-light); }
.text-link, .link-button {
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--plum-dark);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px solid rgba(91,69,111,.3);
  padding-bottom: 4px;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link.dark { color: var(--ink); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(193, 173, 216, .23), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(183, 203, 183, .13), transparent 28%),
    linear-gradient(135deg, #302638 0%, #493858 54%, #5f4771 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -12%;
  top: 5%;
  width: 40%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, black, transparent 65%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background: radial-gradient(circle at center, transparent 0, rgba(20,13,25,.14) 100%);
}
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; padding-top: 50px; padding-bottom: 100px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--plum); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 24px; height: 1px; background: currentColor; }
.eyebrow-line { flex: 0 0 auto; }
.eyebrow-label {
  width: auto;
  height: auto;
  min-width: 0;
  background: none;
  line-height: 1.35;
}
.hero .eyebrow { color: #d9cbe7; }
.hero h1 { max-width: 720px; margin: 22px 0 23px; font-family: var(--serif); font-size: clamp(52px, 5.2vw, 76px); font-weight: 400; line-height: .96; letter-spacing: -.05em; }
.hero h1 strong { color: #dcd0e7; font-weight: 400; font-style: italic; }
.hero-lead { max-width: 610px; margin: 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 29px; margin-top: 30px; }
.button-hero { color: var(--plum-dark); background: white; box-shadow: 0 16px 38px rgba(20,13,25,.22); }
.button-hero:hover { color: var(--ink); background: #f1ebf5; }
.hero-link { color: white; border-color: rgba(255,255,255,.35); }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 38px; color: rgba(255,255,255,.7); font-size: 10px; }
.trust-row span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.trust-row b { color: #c7dbc5; margin-right: 7px; letter-spacing: .08em; }

.hero-visual { position: relative; min-height: 500px; }
.scene-orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; pointer-events: none; }
.orbit-wide { inset: 8px -20px 23px 12px; }
.orbit-small { inset: 70px 35px 86px -30px; border-color: rgba(190,211,189,.23); }
.bridge-stage { position: absolute; z-index: 2; inset: 30px 2px 22px; color: white; }
.bridge-stage::before { content: ""; position: absolute; left: 14%; right: 14%; top: 21%; height: 47%; border: 1px solid rgba(222,210,234,.22); border-bottom: 0; border-radius: 50% 50% 0 0; filter: drop-shadow(0 20px 35px rgba(20,12,25,.18)); }
.bridge-stage-top { position: relative; z-index: 2; width: max-content; margin: 0 auto; display: flex; align-items: center; gap: 15px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.bridge-stage-top span { color: rgba(255,255,255,.7); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.bridge-stage-top i { color: #d7c8e4; font-family: var(--serif); font-size: 20px; font-style: normal; line-height: 1; }
.disciplines { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 76px 1fr; align-items: center; padding: 30px 0 23px; }
.discipline { width: min(100%, 196px); aspect-ratio: 1; min-width: 0; padding: 24px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; text-align: center; background: radial-gradient(circle at 32% 24%, rgba(255,255,255,.18), rgba(255,255,255,.055) 68%); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 25px 55px rgba(21,13,27,.2); backdrop-filter: blur(13px); }
.discipline-psychology { justify-self: end; }
.discipline-nutrition { justify-self: start; border-color: rgba(201,224,200,.25); background: radial-gradient(circle at 32% 24%, rgba(211,231,210,.18), rgba(255,255,255,.045) 68%); }
.discipline-number { display: block; margin-bottom: 9px; color: rgba(255,255,255,.5); font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.discipline-icon { width: 56px; height: 56px; margin: 0 auto 12px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.08); color: #e0d1ec; font-family: var(--serif); font-size: 25px; }
.discipline-nutrition .discipline-icon { background: rgba(192,216,190,.09); color: #d4e7d2; }
.discipline h3 { margin: 0 0 5px; color: white; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.discipline p { margin: 0; color: rgba(255,255,255,.55); font-size: 8px; }
.bridge-connection { position: relative; height: 70px; display: flex; align-items: center; justify-content: space-between; }
.bridge-connection i { position: absolute; left: 7px; right: 7px; top: 11px; height: 40px; border: 2px solid #cbb8dc; border-bottom: 0; border-radius: 50px 50px 0 0; opacity: .75; }
.bridge-connection span { z-index: 1; width: 9px; height: 9px; border: 2px solid #59436a; border-radius: 50%; background: #e2d5ed; box-shadow: 0 0 0 4px rgba(226,213,237,.14); }
.bridge-promise { position: relative; z-index: 2; width: 84%; margin: 0 auto; display: flex; align-items: center; gap: 13px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(31,24,36,.64); color: white; box-shadow: 0 18px 45px rgba(20,12,25,.22); backdrop-filter: blur(14px); }
.promise-mark { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(186,208,184,.16); color: #c8ddc7; font-size: 11px; }
.bridge-promise div { display: flex; flex-direction: column; }
.bridge-promise b { font-family: var(--serif); font-size: 14px; font-weight: 400; }
.bridge-promise small { margin-top: 3px; color: rgba(255,255,255,.55); font-size: 8px; }
.floating-proof { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(45,34,53,.68); color: white; font-size: 9px; font-weight: 700; letter-spacing: .04em; backdrop-filter: blur(12px); box-shadow: 0 12px 30px rgba(23,15,29,.2); }
.floating-proof > span { color: #cfe2cd; }
.proof-online { top: 11px; right: -5px; }
.proof-online > span { width: 7px; height: 7px; border-radius: 50%; background: #b9d5b7; box-shadow: 0 0 0 4px rgba(185,213,183,.12); }
.proof-human { left: -2px; bottom: 4px; }
.professional-image::before { content: ""; position: absolute; width: 150px; height: 170px; bottom: -48px; border-radius: 48% 48% 0 0; background: rgba(255,255,255,.5); }
.professional-image::after { content: ""; position: absolute; width: 92px; height: 92px; top: 52px; border-radius: 50%; background: rgba(255,255,255,.43); }
.hero-ribbon { position: absolute; bottom: 0; left: 0; right: 0; height: 46px; padding: 0 5vw; display: flex; justify-content: space-around; align-items: center; background: rgba(35,27,41,.58); border-top: 1px solid rgba(255,255,255,.1); color: white; font-family: var(--serif); font-size: 13px; font-style: italic; white-space: nowrap; backdrop-filter: blur(10px); }
.hero-ribbon i { color: #bad0b8; font-style: normal; }

.section { padding: 110px 0; }
.section-heading h2, .process h2, .for-you h2, .faq h2 { margin: 17px 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 55px); font-weight: 400; line-height: 1.08; letter-spacing: -.035em; }
.section-heading h2 em, .process h2 em, .for-you h2 em, .faq h2 em { color: var(--plum); font-weight: 400; }
.section-heading.centered { max-width: 760px; margin: 0 auto 65px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p, .section-heading.centered > p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.section-heading.centered > p { max-width: 640px; margin: 24px auto 0; }
.section-heading.split { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 80px; margin-bottom: 55px; }
.section-heading.split p { margin-bottom: 19px; }

.intro { position: relative; background: white; }
.intro::before { content: ""; position: absolute; width: 330px; height: 330px; right: -150px; top: 40px; border-radius: 50%; background: radial-gradient(circle, rgba(231,223,240,.55), transparent 68%); pointer-events: none; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pillar { position: relative; min-height: 330px; padding: 38px 38px 32px; border-right: 1px solid var(--line); transition: transform .25s ease, background .25s ease; }
.pillar:last-child { border-right: 0; }
.pillar-featured { background: var(--lavender-light); }
.pillar:hover { z-index: 2; transform: translateY(-5px); background: #fbf9fd; box-shadow: 0 18px 45px rgba(75,59,86,.1); }
.pillar-number { color: #a89fad; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.pillar-icon { width: 58px; height: 58px; margin: 37px 0 27px; border-radius: 50%; display: grid; place-items: center; background: var(--sage-light); color: var(--plum); font-family: var(--serif); font-size: 29px; }
.pillar-featured .pillar-icon { background: white; }
.pillar h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.pillar p { color: var(--muted); font-size: 13px; line-height: 1.75; }
.fine-line { position: absolute; left: 38px; bottom: 28px; width: 36px; height: 1px; background: var(--plum); }

.process { position: relative; overflow: hidden; background: linear-gradient(135deg, #684f7e, #80649a); color: white; }
.process::after { content: "04"; position: absolute; right: 1vw; bottom: -70px; color: rgba(255,255,255,.05); font-family: var(--serif); font-size: 310px; line-height: 1; }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; }
.eyebrow.light { color: var(--lavender); }
.process h2 { margin-top: 20px; }
.process h2 em { color: #d9cce7; }
.process-copy > p { max-width: 420px; color: rgba(255,255,255,.7); line-height: 1.8; font-size: 14px; margin-bottom: 30px; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.23); }
.steps li { display: grid; grid-template-columns: 65px 1fr; gap: 27px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.23); }
.step-index { color: #d7c9e4; font-family: var(--serif); font-style: italic; font-size: 16px; }
.steps h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.steps p { margin: 0; max-width: 520px; color: rgba(255,255,255,.63); font-size: 12px; line-height: 1.7; }

.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 420px; padding: 38px 34px 31px; background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 22px; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-primary { background: var(--plum); color: white; border-color: var(--plum); }
.recommended { position: absolute; top: 20px; right: 20px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.14); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-symbol { width: 50px; height: 50px; display: grid; place-items: center; background: var(--lavender-light); color: var(--plum); border-radius: 50%; font-family: var(--serif); font-size: 25px; }
.service-primary .service-symbol { background: rgba(255,255,255,.13); color: white; margin-top: 22px; }
.service-card h3 { margin: 25px 0 13px; font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.08; }
.service-card > p { min-height: 67px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-primary > p { color: rgba(255,255,255,.7); }
.service-card ul { margin: 24px 0 26px; padding: 21px 0 0; list-style: none; border-top: 1px solid var(--line); }
.service-primary ul { border-color: rgba(255,255,255,.17); }
.service-card li { position: relative; margin: 8px 0; padding-left: 17px; font-size: 11px; color: var(--muted); }
.service-card li::before { content: "·"; position: absolute; left: 2px; color: var(--plum); font-size: 18px; line-height: 9px; }
.service-primary li { color: rgba(255,255,255,.74); }
.service-primary li::before { color: white; }
.service-link { margin-top: auto; border: 0; border-top: 1px solid var(--line); background: transparent; padding: 20px 0 0; display: flex; justify-content: space-between; color: var(--plum); font-size: 12px; font-weight: 800; cursor: pointer; }
.service-primary .service-link { color: white; border-color: rgba(255,255,255,.17); }

.for-you { background: #eef2ec; }
.for-you-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 105px; }
.for-you-art { position: relative; height: 470px; border-radius: 50% 50% 8px 8px; background: linear-gradient(160deg, #c9d4c7, #91a68f); overflow: hidden; }
.for-you-art::before { content: ""; position: absolute; width: 230px; height: 270px; left: calc(50% - 115px); bottom: -38px; background: rgba(255,255,255,.31); border-radius: 48% 48% 0 0; }
.for-you-art::after { content: ""; position: absolute; width: 125px; height: 125px; left: calc(50% - 62px); top: 85px; background: rgba(255,255,255,.34); border-radius: 50%; }
.quote-card { position: absolute; z-index: 2; right: -1px; bottom: 35px; width: 235px; padding: 22px; background: white; color: var(--ink); border-radius: 14px 0 0 14px; font-family: var(--serif); font-size: 18px; font-style: italic; line-height: 1.35; box-shadow: var(--shadow); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
.orbit-a { inset: 25px 48px; }.orbit-b { inset: 65px 12px 0 82px; }
.leaf { position: absolute; color: rgba(255,255,255,.6); font-size: 90px; transform: rotate(35deg); }
.leaf-a { left: 20px; bottom: -15px; }.leaf-b { right: 25px; top: 20px; transform: rotate(-140deg); }
.check-list { list-style: none; padding: 0; margin: 30px 0; border-top: 1px solid rgba(70,70,70,.13); }
.check-list li { display: flex; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(70,70,70,.13); color: #5f5a62; font-size: 13px; line-height: 1.5; }
.check-list li span { flex: 0 0 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: white; color: var(--plum); font-size: 10px; }

.professionals { background: white; }
.professional-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.professional { display: grid; grid-template-columns: 44% 56%; min-height: 360px; background: var(--cream); border-radius: 22px; overflow: hidden; border: 1px solid var(--line); }
.professional-image { position: relative; min-height: 360px; display: grid; place-items: center; overflow: hidden; }
.image-one { background: linear-gradient(145deg, #cbd7c8, #839a84); }
.image-two { background: linear-gradient(145deg, #d5cae0, #88759b); }
.professional-image > span { z-index: 1; color: white; font-family: var(--serif); font-size: 45px; }
.professional-image small { position: absolute; z-index: 2; bottom: 16px; left: 16px; right: 16px; color: rgba(255,255,255,.78); font-size: 8px; text-align: center; text-transform: uppercase; letter-spacing: .08em; }
.professional-copy { padding: 42px 32px; display: flex; flex-direction: column; justify-content: center; }
.role { color: var(--plum); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.professional h3 { margin: 11px 0 16px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.professional p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.pending { margin-top: 24px; padding-top: 17px; border-top: 1px solid var(--line); color: #928a96; font-size: 9px; line-height: 1.5; text-transform: uppercase; letter-spacing: .06em; }
.disclaimer { margin: 26px auto 0; text-align: center; color: #988f9b; font-size: 10px; }

.faq { background: var(--lavender-light); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-intro p { color: var(--muted); font-size: 13px; line-height: 1.7; margin: 0 0 25px; }
.accordion details { border-top: 1px solid rgba(73,57,82,.17); }
.accordion details:last-child { border-bottom: 1px solid rgba(73,57,82,.17); }
.accordion summary { list-style: none; padding: 23px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; font-family: var(--serif); font-size: 19px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-family: var(--sans); font-size: 19px; font-weight: 300; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 640px; margin: -5px 40px 25px 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.cta-section { background: var(--ink); color: white; padding: 70px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.cta-kicker { color: var(--sage); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.cta-inner h2 { margin: 12px 0 7px; font-family: var(--serif); font-size: 42px; font-weight: 400; letter-spacing: -.03em; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }

.footer { background: #211d25; color: white; padding: 70px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr .7fr; gap: 70px; }
.footer-brand { color: white; margin-bottom: 18px; }
.footer-grid > div:first-child p { max-width: 260px; color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.7; }
.footer h3 { margin: 5px 0 19px; color: rgba(255,255,255,.38); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 11px; }
.footer-grid a, .footer-grid span, .footer .link-button { color: rgba(255,255,255,.64); font-size: 11px; }
.footer .link-button { width: max-content; color: white; border-color: rgba(255,255,255,.25); margin-top: 7px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.32); font-size: 9px; }
.mobile-booking-bar { display: none; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(31,25,35,.65); backdrop-filter: blur(7px); animation: fade .2s ease; }
.booking-panel { position: absolute; top: 0; right: 0; width: min(690px, 100%); height: 100%; height: 100dvh; overflow-y: auto; overscroll-behavior: contain; background: var(--cream); padding: 43px 48px; box-shadow: -20px 0 70px rgba(20,14,24,.22); animation: slide .35s ease; }
.close-modal { position: absolute; right: 24px; top: 22px; width: 37px; height: 37px; border: 1px solid var(--line); background: white; border-radius: 50%; font-size: 23px; font-weight: 200; cursor: pointer; }
.booking-head { display: flex; align-items: end; justify-content: space-between; padding-right: 50px; margin-bottom: 35px; }
.mini-label { color: var(--plum); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.booking-head h2 { margin: 8px 0 0; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.booking-progress { display: flex; gap: 5px; }
.booking-progress span { width: 32px; height: 3px; background: var(--lavender); border-radius: 4px; }
.booking-progress span.active { background: var(--plum); }
.booking-step { display: none; }
.booking-step.active { display: block; animation: fade .25s ease; }
.step-question { margin: 0 0 18px; font-family: var(--serif); font-size: 19px; }
.booking-services { display: grid; gap: 10px; }
.booking-service { width: 100%; padding: 17px 18px; border: 1px solid var(--line); border-radius: 14px; background: white; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; text-align: left; cursor: pointer; }
.booking-service:hover, .booking-service.selected { border-color: var(--plum); box-shadow: 0 9px 24px rgba(78,58,91,.08); }
.booking-service.selected { background: var(--lavender-light); }
.booking-service-icon { width: 42px; height: 42px; display: grid; place-items: center; background: var(--sage-light); color: var(--plum); border-radius: 50%; font-family: var(--serif); font-size: 21px; }
.booking-service b { display: block; font-family: var(--serif); font-size: 16px; font-weight: 400; }
.booking-service small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; }
.booking-service > small:last-child { margin: 0; }
.modal-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; }
.modal-actions.right { justify-content: flex-end; }
.back-step { border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 12px; }
.booking-lead-notice { display: flex; align-items: center; gap: 13px; margin: -3px 0 17px; padding: 12px 14px; border: 1px solid #dfe8dd; border-radius: 13px; background: var(--sage-light); }
.booking-lead-notice > span { flex: 0 0 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: white; color: #6a8069; font-size: 19px; }
.booking-lead-notice p { margin: 0; color: #647064; font-size: 10px; line-height: 1.45; }
.booking-lead-notice b { display: block; color: var(--ink); font-size: 11px; }
.calendar-shell { padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 12px 32px rgba(61,45,73,.06); }
.calendar-head { min-height: 40px; display: grid; grid-template-columns: 40px 1fr 40px; align-items: center; margin-bottom: 11px; }
.calendar-head strong { text-align: center; font-family: var(--serif); font-size: 18px; font-weight: 400; text-transform: capitalize; }
.calendar-head button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: var(--cream); color: var(--plum); cursor: pointer; }
.calendar-head button:last-child { justify-self: end; }
.calendar-head button:hover:not(:disabled) { border-color: var(--plum); background: var(--lavender-light); }
.calendar-head button:disabled { opacity: .25; cursor: not-allowed; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; }
.calendar-weekdays { margin-bottom: 5px; }
.calendar-weekdays span { padding: 5px 0; color: #9a919e; text-align: center; font-size: 8px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.calendar-day { aspect-ratio: 1; min-width: 0; border: 1px solid transparent; border-radius: 10px; background: var(--lavender-light); color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 700; transition: color .18s ease, background .18s ease, transform .18s ease; }
.calendar-day:hover:not(:disabled) { transform: translateY(-1px); border-color: var(--plum); background: white; color: var(--plum); }
.calendar-day.selected { border-color: var(--plum); background: var(--plum); color: white; box-shadow: 0 7px 16px rgba(103,79,125,.25); }
.calendar-day:disabled { background: #f5f3f2; color: #c5bfc6; cursor: not-allowed; text-decoration: line-through; }
.calendar-day.empty { display: block; background: transparent; pointer-events: none; }
.calendar-day.today { border-color: #c7b8d5; }
.calendar-legend { display: flex; gap: 17px; margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--line); color: #938b96; font-size: 8px; }
.calendar-legend span { display: flex; align-items: center; gap: 6px; }
.calendar-legend i { width: 8px; height: 8px; border-radius: 3px; background: var(--lavender-light); }
.calendar-legend span:last-child i { background: #f1eeee; }
.time-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 15px; margin: 22px 0 10px; }
.time-heading .field-label { margin: 0; }
.time-heading > span { color: var(--plum); font-family: var(--serif); font-size: 12px; text-transform: capitalize; }
.field-label { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.time-option { border: 1px solid var(--line); border-radius: 10px; background: white; padding: 11px; cursor: pointer; font-size: 12px; }
.time-option:hover, .time-option.selected { border-color: var(--plum); color: white; background: var(--plum); }
.booking-summary { padding: 16px 18px; background: var(--lavender-light); border-radius: 13px; margin-bottom: 27px; display: flex; justify-content: space-between; gap: 20px; }
.booking-summary b { font-family: var(--serif); font-weight: 400; }
.booking-summary span { color: var(--muted); font-size: 10px; }
.notification-hint { display: flex; align-items: flex-start; gap: 12px; margin-top: 18px; padding: 14px 15px; border: 1px solid #ddd3e6; border-radius: 13px; background: var(--lavender-light); }
.notification-hint > span { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--plum); }
.notification-hint p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.notification-hint b { display: block; color: var(--ink); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { color: var(--muted); font-size: 10px; font-weight: 700; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid input { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; background: white; outline: none; font-size: 13px; }
.form-grid input:focus { border-color: var(--plum); box-shadow: 0 0 0 3px rgba(111,91,136,.1); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.consent input { accent-color: var(--plum); }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-error { display: none; margin-top: 15px; padding: 11px 13px; border: 1px solid #e8c7c7; border-radius: 10px; background: #fff2f2; color: #854c4c; font-size: 10px; line-height: 1.5; }
.form-error.visible { display: block; }
.success-step { text-align: center; padding: 70px 20px 20px; }
.success-mark { width: 72px; height: 72px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; background: var(--sage-light); color: #6e876e; font-size: 26px; }
.success-step h2 { max-width: 450px; margin: 13px auto 15px; font-family: var(--serif); font-size: 37px; font-weight: 400; }
.success-step p { max-width: 440px; margin: 0 auto; color: var(--muted); font-size: 13px; line-height: 1.7; }
.notification-preview { max-width: 500px; margin: 27px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; text-align: left; }
.notification-preview > div { padding: 18px 15px; border-right: 1px solid var(--line); }
.notification-preview > div:last-child { border-right: 0; }
.notification-preview span { width: 25px; height: 25px; display: grid; place-items: center; margin-bottom: 11px; border-radius: 50%; background: var(--sage-light); color: #698069; font-size: 9px; font-weight: 800; }
.notification-preview p { margin: 0; font-size: 9px; line-height: 1.5; }
.notification-preview b { display: block; margin-bottom: 3px; color: var(--ink); font-size: 10px; }
.success-actions { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 28px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide { from { transform: translateX(100%); } to { transform: translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 36px, 720px); }
  .main-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; background: rgba(252,250,246,.98); padding: 12px max(22px, calc((100vw - 720px) / 2)) 24px; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(35,27,42,.12); }
  .main-nav.open { display: flex; }
  .main-nav > a { min-height: 48px; padding: 15px 3px; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 10px; }
  .menu-button { display: block; cursor: pointer; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 22px; padding-top: 75px; padding-bottom: 100px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 455px; max-width: 560px; width: 100%; margin: 22px auto 0; }
  .bridge-stage { inset: 21px 8px 18px; }
  .hero-ribbon span:nth-of-type(even), .hero-ribbon i:nth-of-type(even) { display: none; }
  .section { padding: 85px 0; }
  .pillars, .service-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: 0; }
  .process-grid, .for-you-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 10px; }
  .service-card { min-height: 390px; }
  .for-you-art { max-width: 560px; width: 100%; margin: 0 auto; }
  .professional-grid { grid-template-columns: 1fr; }
  .professional { max-width: 650px; margin: 0 auto; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1.3fr 1fr; gap: 45px; }
}

@media (max-width: 590px) {
  body { padding-bottom: calc(79px + env(safe-area-inset-bottom)); }
  .container { width: min(100% - 28px, 500px); }
  .demo-bar { min-height: 27px; padding: 5px 12px; }
  .demo-bar p { display: none; }
  .demo-bar span { font-size: 8px; letter-spacing: .16em; }
  .nav-shell { height: 67px; }
  .brand { font-size: 20px; }
  .brand-mark { transform: scale(.9); transform-origin: left center; }
  .main-nav { top: 67px; }
  .hero-grid { gap: 22px; padding-top: 39px; padding-bottom: 76px; }
  .hero-copy { text-align: left; }
  .hero .eyebrow { font-size: 9px; }
  .hero h1 { margin-top: 16px; margin-bottom: 18px; font-size: clamp(40px, 11.7vw, 49px); line-height: .98; }
  .hero-lead { font-size: 14px; line-height: 1.68; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 15px; margin-top: 24px; }
  .hero-actions .button { width: 100%; min-height: 52px; }
  .hero-actions .text-link { width: max-content; align-self: center; color: rgba(255,255,255,.82); }
  .trust-row { justify-content: flex-start; gap: 6px; margin-top: 23px; }
  .trust-row span { padding: 7px 9px; font-size: 8px; }
  .hero-visual { min-height: 303px; margin-top: 0; }
  .orbit-wide { inset: 0 -40px 2px 30px; }
  .orbit-small { inset: 48px 80px 22px -45px; }
  .bridge-stage { inset: 3px 0 9px; }
  .bridge-stage::before { left: 9%; right: 9%; top: 22%; height: 44%; }
  .bridge-stage-top { gap: 10px; padding: 6px 10px; }
  .bridge-stage-top span { font-size: 6px; }
  .bridge-stage-top i { font-size: 18px; }
  .disciplines { grid-template-columns: 1fr 40px 1fr; padding: 13px 0 12px; }
  .discipline { padding: 10px 7px; }
  .discipline-number { margin-bottom: 7px; font-size: 7px; }
  .discipline-icon { width: 44px; height: 44px; margin-bottom: 7px; font-size: 21px; }
  .discipline h3 { margin-bottom: 3px; font-size: 17px; }
  .discipline p { font-size: 7px; }
  .bridge-connection { height: 51px; }
  .bridge-connection i { left: 5px; right: 5px; top: 7px; height: 29px; }
  .bridge-connection span { width: 7px; height: 7px; }
  .bridge-promise { width: 88%; gap: 9px; padding: 9px 10px; border-radius: 12px; }
  .promise-mark { flex-basis: 28px; height: 28px; }
  .bridge-promise b { font-size: 12px; }
  .bridge-promise small { font-size: 7px; }
  .floating-proof { padding: 7px 9px; font-size: 7px; }
  .proof-online { top: 0; right: -2px; }
  .proof-human { left: 9px; bottom: 2px; }
  .hero-ribbon { overflow: hidden; justify-content: center; gap: 22px; }
  .hero-ribbon span { font-size: 12px; }
  .section { padding: 68px 0; }
  .section-heading.centered { margin-bottom: 42px; }
  .section-heading h2, .process h2, .for-you h2, .faq h2 { font-size: 38px; }
  .section-heading > p, .section-heading.centered > p { font-size: 14px; line-height: 1.7; }
  .pillars { border-radius: 20px; }
  .pillar { min-height: 245px; padding: 29px 25px; }
  .pillar-icon { margin: 27px 0 21px; }
  .fine-line { left: 25px; bottom: 22px; }
  .process-grid { gap: 43px; }
  .process-copy .button { width: 100%; min-height: 51px; }
  .steps li { grid-template-columns: 45px 1fr; gap: 12px; }
  .steps h3 { font-size: 20px; }
  .section-heading.split { margin-bottom: 36px; }
  .service-grid { gap: 14px; }
  .service-card { min-height: 370px; padding: 31px 26px 27px; }
  .service-card h3 { font-size: 27px; }
  .recommended { top: 15px; right: 15px; max-width: 150px; text-align: center; }
  .for-you-grid { gap: 40px; }
  .for-you-art { height: 360px; border-radius: 160px 160px 10px 10px; }
  .quote-card { width: 215px; padding: 18px; font-size: 16px; }
  .check-list li { font-size: 12px; }
  .professional { grid-template-columns: 1fr; }
  .professional-image { min-height: 280px; }
  .professional-copy { padding: 32px 28px; }
  .faq-grid { gap: 37px; }
  .accordion summary { min-height: 62px; align-items: center; font-size: 17px; line-height: 1.25; }
  .cta-inner h2 { font-size: 36px; }
  .cta-inner .button { width: 100%; min-height: 52px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer { padding-bottom: 28px; }
  .mobile-booking-bar {
    position: fixed;
    z-index: 80;
    left: 9px;
    right: 9px;
    bottom: max(8px, env(safe-area-inset-bottom));
    min-height: 68px;
    padding: 8px 8px 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    background: rgba(39,32,44,.95);
    color: white;
    box-shadow: 0 18px 45px rgba(22,16,26,.32);
    backdrop-filter: blur(16px);
  }
  .mobile-booking-bar div { min-width: 0; display: flex; flex-direction: column; }
  .mobile-booking-bar div span { font-family: var(--serif); font-size: 14px; }
  .mobile-booking-bar div small { margin-top: 2px; overflow: hidden; color: rgba(255,255,255,.5); font-size: 8px; white-space: nowrap; text-overflow: ellipsis; }
  .mobile-booking-bar .button { flex: 0 0 auto; min-height: 46px; padding: 11px 15px; box-shadow: none; font-size: 11px; }
  body.modal-open .mobile-booking-bar { display: none; }
  .booking-panel { padding: calc(60px + env(safe-area-inset-top)) 17px calc(26px + env(safe-area-inset-bottom)); }
  .close-modal { position: fixed; z-index: 2; top: calc(14px + env(safe-area-inset-top)); right: 16px; width: 42px; height: 42px; }
  .booking-head { padding-right: 0; align-items: flex-start; }
  .booking-head h2 { font-size: 31px; }
  .booking-progress { display: none; }
  .booking-service { min-height: 77px; padding: 14px; grid-template-columns: 39px 1fr; }
  .booking-service > small:last-child { grid-column: 2; }
  .booking-lead-notice { margin-bottom: 13px; padding: 10px 11px; }
  .calendar-shell { padding: 11px 9px; border-radius: 15px; }
  .calendar-head { margin-bottom: 7px; }
  .calendar-head strong { font-size: 17px; }
  .calendar-weekdays, .calendar-grid { gap: 3px; }
  .calendar-weekdays span { font-size: 7px; }
  .calendar-day { min-height: 39px; border-radius: 8px; }
  .calendar-legend { gap: 11px; }
  .time-heading { align-items: flex-start; flex-direction: column; gap: 4px; margin-top: 18px; }
  .time-heading > span { font-size: 11px; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .time-option { min-height: 46px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .form-grid input { min-height: 49px; font-size: 16px; }
  .booking-summary { flex-direction: column; gap: 7px; }
  .notification-hint { padding: 12px; }
  .modal-actions { align-items: stretch; }
  .modal-actions .button { min-height: 50px; padding-inline: 16px; }
  .modal-actions .back-step { min-height: 45px; }
  .success-step { padding: 38px 5px 20px; }
  .success-step h2 { font-size: 32px; }
  .notification-preview { grid-template-columns: 1fr; }
  .notification-preview > div { display: grid; grid-template-columns: 29px 1fr; gap: 10px; padding: 13px 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .notification-preview > div:last-child { border-bottom: 0; }
  .notification-preview span { margin: 0; }
  .success-actions { flex-direction: column; }
}

@media (max-width: 370px) {
  .container { width: min(100% - 22px, 350px); }
  .hero h1 { font-size: 38px; }
  .hero-visual { min-height: 286px; }
  .bridge-stage { inset-inline: 0; }
  .discipline-icon { width: 40px; height: 40px; }
  .discipline h3 { font-size: 16px; }
  .bridge-promise small { display: none; }
  .trust-row span { padding-inline: 7px; }
  .section-heading h2, .process h2, .for-you h2, .faq h2 { font-size: 35px; }
  .calendar-day { min-height: 37px; }
  .mobile-booking-bar div { display: none; }
  .mobile-booking-bar .button { width: 100%; }
}

/*
  Experiencia móvil v6
  Estos estilos se aplican solamente en teléfonos. La composición de escritorio
  conserva su estructura original, mientras que el celular muestra menos
  información por pantalla y prioriza lectura, respiración y acciones táctiles.
*/
@media (max-width: 620px) {
  :root {
    --mobile-gutter: 16px;
    --mobile-radius: 22px;
  }

  html { scroll-padding-top: 70px; }
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    background: #fbfaf7;
  }
  .mobile-only { display: flex; }
  .container { width: min(calc(100% - 32px), 520px); }

  .demo-bar {
    min-height: 25px;
    padding: 5px 12px;
    background: #352a3e;
  }

  .demo-bar span { font-size: 7px; letter-spacing: .19em; }

  .site-header {
    background: rgba(255,255,255,.94);
    border-color: rgba(73,56,84,.09);
  }
  .nav-shell { height: 64px; }
  .brand { gap: 9px; font-size: 22px; }
  .brand-mark { width: 32px; transform: scale(.88); transform-origin: left center; }
  .menu-button {
    width: 42px;
    height: 42px;
    padding: 8px 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
  }
  .menu-button > span:not(.sr-only) {
    width: 19px;
    height: 1.5px;
    margin: 5px auto;
    transition: transform .2s ease, opacity .2s ease;
  }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .main-nav {
    top: 64px;
    max-height: calc(100dvh - 89px);
    overflow-y: auto;
    padding: 8px 20px 20px;
    background: rgba(255,255,255,.98);
  }
  .main-nav > a {
    min-height: 53px;
    padding: 17px 2px;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
  }
  .main-nav .button { min-height: 50px; margin-top: 12px; font-size: 13px; }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 94% 9%, rgba(208,190,226,.24), transparent 28%),
      radial-gradient(circle at 0 86%, rgba(187,213,185,.14), transparent 32%),
      linear-gradient(155deg, #302538 0%, #4a3858 54%, #624a72 100%);
  }
  .hero::before {
    left: auto;
    right: -45%;
    top: 18%;
    width: 105%;
    border-color: rgba(255,255,255,.065);
  }
  .hero::after {
    background-size: 56px 56px;
    opacity: .42;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
  }
  .hero-grid {
    display: block;
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .hero-copy { text-align: left; }
  .hero .eyebrow {
    gap: 8px;
    color: #d9cce5;
    font-size: 8px;
    letter-spacing: .16em;
  }
  .hero .eyebrow > span:first-child { width: 18px; }
  .hero h1 {
    max-width: 390px;
    margin: 15px 0 17px;
    font-size: clamp(41px, 12vw, 52px);
    line-height: .98;
    letter-spacing: -.048em;
  }
  .hero h1 strong { color: #e0d5e9; }
  .hero-lead-desktop { display: none; }
  .hero-lead-mobile {
    display: block;
    max-width: 360px;
    margin: 0;
    color: rgba(255,255,255,.73);
    font-size: 14px;
    line-height: 1.58;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 53px;
    padding-inline: 22px;
    justify-content: space-between;
    font-size: 13px;
    box-shadow: 0 15px 34px rgba(21,14,27,.22);
  }
  .hero-actions .hero-link { display: none; }
  .trust-row, .hero-visual, .hero-ribbon { display: none; }

  .mobile-bridge-card {
    margin-top: 18px;
    padding: 15px;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(255,255,255,.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
  }
  .mobile-bridge-disciplines {
    display: grid;
    grid-template-columns: 1fr 34px 1fr;
    align-items: center;
    gap: 7px;
  }
  .mobile-bridge-disciplines > div {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    column-gap: 9px;
    align-items: center;
  }
  .mobile-bridge-disciplines > div > span {
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: #e0d4e9;
    background: rgba(255,255,255,.07);
    font-family: var(--serif);
    font-size: 17px;
  }
  .mobile-bridge-disciplines b {
    align-self: end;
    color: white;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 400;
  }
  .mobile-bridge-disciplines small {
    align-self: start;
    margin-top: 1px;
    color: rgba(255,255,255,.48);
    font-size: 8px;
  }
  .mobile-bridge-disciplines > i {
    color: #d3c2e1;
    text-align: center;
    font-family: var(--serif);
    font-size: 21px;
    font-style: normal;
  }
  .mobile-bridge-card > p {
    margin: 0;
    padding-top: 11px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.73);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .02em;
  }
  .mobile-bridge-card > p span {
    margin-right: 7px;
    color: #c9dec7;
  }

  .section { padding: 62px 0; }
  .section-heading.centered {
    margin: 0 0 30px;
    text-align: left;
  }
  .section-heading.centered .eyebrow { justify-content: flex-start; }
  .section-heading h2,
  .process h2,
  .for-you h2,
  .faq h2 {
    margin: 13px 0 15px;
    font-size: clamp(34px, 10vw, 41px);
    line-height: 1.04;
  }
  .section-heading h2 br,
  .for-you h2 br,
  .professionals h2 br { display: none; }
  .section-heading > p,
  .section-heading.centered > p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
  }
  .eyebrow { font-size: 8px; }

  .intro { overflow: hidden; }
  .intro::before { width: 230px; height: 230px; right: -130px; top: 100px; }
  .mobile-swipe-hint {
    margin: 0 0 13px;
    align-items: center;
    gap: 7px;
    color: #968c9b;
    font-size: 9px;
    font-weight: 700;
  }
  .mobile-swipe-hint span { color: var(--plum); font-size: 14px; }
  .pillars {
    width: calc(100vw - var(--mobile-gutter));
    margin-right: calc((100vw - min(calc(100vw - 32px), 520px)) / -2);
    padding: 0 var(--mobile-gutter) 9px 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .pillars::-webkit-scrollbar,
  .service-grid::-webkit-scrollbar { display: none; }
  .pillar {
    flex: 0 0 min(82vw, 330px);
    min-height: 250px;
    padding: 25px 23px 23px;
    border: 1px solid var(--line);
    border-radius: var(--mobile-radius);
    background: white;
    scroll-snap-align: start;
    box-shadow: 0 12px 34px rgba(64,47,76,.06);
  }
  .pillar:last-child { border: 1px solid var(--line); }
  .pillar-featured { background: var(--lavender-light); }
  .pillar-icon {
    width: 49px;
    height: 49px;
    margin: 24px 0 18px;
    font-size: 24px;
  }
  .pillar h3 { margin-bottom: 9px; font-size: 24px; }
  .pillar p { margin-bottom: 0; font-size: 12px; line-height: 1.65; }
  .fine-line { display: none; }

  .process { padding: 61px 0 55px; }
  .process::after { right: -25px; bottom: -15px; font-size: 150px; }
  .process-grid { display: block; }
  .process-copy > p {
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.65;
  }
  .process-copy .button { width: 100%; min-height: 51px; }
  .steps { margin-top: 34px; }
  .steps li {
    grid-template-columns: 34px 1fr;
    gap: 11px;
    padding: 18px 0;
  }
  .step-index { padding-top: 3px; font-size: 13px; }
  .steps h3 { margin-bottom: 5px; font-size: 19px; }
  .steps p { font-size: 11px; line-height: 1.58; }

  .services { overflow: hidden; }
  .section-heading.split {
    display: block;
    margin-bottom: 22px;
  }
  .section-heading.split p {
    margin: 16px 0 0;
    font-size: 13px;
    line-height: 1.65;
  }
  .service-grid {
    width: calc(100vw - var(--mobile-gutter));
    margin-right: calc((100vw - min(calc(100vw - 32px), 520px)) / -2);
    padding: 0 var(--mobile-gutter) 12px 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .service-card {
    flex: 0 0 min(84vw, 345px);
    min-height: 360px;
    padding: 27px 24px 24px;
    border-radius: var(--mobile-radius);
    scroll-snap-align: start;
  }
  .service-primary .service-symbol { margin-top: 20px; }
  .recommended {
    top: 16px;
    right: 15px;
    max-width: 145px;
    padding: 6px 8px;
  }
  .service-symbol { width: 46px; height: 46px; font-size: 23px; }
  .service-card h3 { margin: 21px 0 11px; font-size: 26px; }
  .service-card > p { min-height: auto; font-size: 12px; line-height: 1.6; }
  .service-card ul { margin: 19px 0 21px; padding-top: 17px; }
  .service-card li { margin: 7px 0; font-size: 10px; }

  .for-you { padding: 61px 0; }
  .for-you-grid { display: block; }
  .for-you-art { display: none; }
  .check-list { margin: 24px 0 27px; }
  .check-list li {
    min-height: 46px;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(65,76,64,.12);
    font-size: 12px;
    line-height: 1.5;
  }
  .check-list li:first-child { border-top: 1px solid rgba(65,76,64,.12); }
  .check-list span { flex: 0 0 26px; height: 26px; }

  .professionals { padding-bottom: 56px; }
  .professional-grid { gap: 14px; }
  .professional {
    overflow: hidden;
    grid-template-columns: 112px 1fr;
    border-radius: var(--mobile-radius);
  }
  .professional-image { min-height: 230px; }
  .professional-image::before { width: 95px; height: 120px; bottom: -30px; }
  .professional-image::after { width: 64px; height: 64px; top: 52px; }
  .professional-image span { font-size: 31px; }
  .professional-image small {
    bottom: 14px;
    max-width: 85px;
    font-size: 7px;
  }
  .professional-copy { padding: 24px 18px; }

  .professional-copy h3 { margin: 9px 0 10px; font-size: 23px; }
  .professional-copy p { font-size: 10px; line-height: 1.6; }
  .pending { margin-top: 14px; padding-top: 12px; font-size: 8px; line-height: 1.45; }
  .disclaimer { margin-top: 18px; font-size: 8px; line-height: 1.5; }

  .faq { padding-top: 58px; }
  .faq-grid { display: block; }

  .faq-intro p { margin-bottom: 17px; }
  .accordion summary {
    min-height: auto;
    padding: 19px 0;
    align-items: center;
    font-size: 17px;
    line-height: 1.24;
  }
  .accordion summary span { flex: 0 0 auto; }
  .accordion details p {
    margin: -2px 30px 21px 0;
    font-size: 11px;
    line-height: 1.65;
  }

  .cta-section { padding: 51px 0 48px; }
  .cta-inner { display: block; }
  .cta-inner h2 { margin: 11px 0 9px; font-size: 35px; line-height: 1.04; }
  .cta-inner p { font-size: 12px; line-height: 1.55; }
  .cta-inner .button { width: 100%; min-height: 51px; margin-top: 23px; }

  .footer { padding: 49px 0 25px; }
  .footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(4) { display: none; }
  .footer-grid > div:first-child p { margin-bottom: 0; }
  .footer-grid > div:nth-child(3) { gap: 9px; }
  .footer h3 { margin-bottom: 10px; }
  .footer-bottom {
    margin-top: 29px;
    padding-top: 16px;
    gap: 5px;
    font-size: 8px;
  }

  .mobile-booking-bar {
    left: 10px;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    min-height: 62px;
    padding: 7px 7px 7px 14px;
    gap: 9px;
    border-radius: 17px;
    background: rgba(41,35,47,.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity .25s ease, transform .3s ease;
  }
  .mobile-booking-bar.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-booking-bar div span { font-size: 13px; }
  .mobile-booking-bar div small { max-width: 170px; font-size: 7px; }
  .mobile-booking-bar .button {
    min-height: 46px;
    padding: 11px 15px;
    font-size: 11px;
  }

  .booking-panel {
    width: 100%;
    padding: calc(70px + env(safe-area-inset-top)) 16px calc(26px + env(safe-area-inset-bottom));
    background: #fbfaf7;
  }
  .close-modal {
    position: fixed;
    top: calc(14px + env(safe-area-inset-top));
    right: 14px;
    width: 42px;
    height: 42px;
    background: white;
    box-shadow: 0 8px 25px rgba(50,38,59,.09);
  }
  .booking-head {
    margin-bottom: 27px;
    padding-right: 0;
  }
  .booking-head h2 { margin-top: 6px; font-size: 31px; }
  .booking-progress { display: none; }

  .booking-services { gap: 9px; }
  .booking-service {
    min-height: 72px;
    padding: 13px;
    grid-template-columns: 39px 1fr;
    gap: 11px;
    border-radius: 14px;
  }
  .booking-service-icon { width: 39px; height: 39px; }
  .booking-service > small:last-child { grid-column: 2; margin-top: -7px; }
  .modal-actions {
    margin-top: 22px;
    align-items: stretch;
    gap: 10px;
  }
  .modal-actions .button { min-height: 50px; padding-inline: 16px; }
  .modal-actions.right .button { width: 100%; }
  .back-step { min-height: 48px; padding: 0 9px; }
  .booking-lead-notice {
    margin-bottom: 13px;
    padding: 10px 11px;
  }
  .booking-lead-notice > span { flex-basis: 34px; height: 34px; }
  .calendar-shell { padding: 12px 9px 11px; border-radius: 16px; }
  .calendar-head { margin-bottom: 7px; }
  .calendar-head strong { font-size: 17px; }
  .calendar-weekdays,
  .calendar-grid { gap: 3px; }
  .calendar-weekdays span { font-size: 7px; }
  .calendar-day {
    min-height: 40px;
    border-radius: 9px;
    font-size: 11px;
  }
  .calendar-legend { gap: 12px; margin-top: 10px; padding-top: 10px; }
  .time-heading {
    margin-top: 19px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .time-option { min-height: 46px; }
  .booking-summary { margin-bottom: 22px; padding: 14px; flex-direction: column; gap: 8px; }
  .form-grid { grid-template-columns: 1fr; gap: 13px; }
  .form-grid label.full { grid-column: auto; }
  .form-grid input { min-height: 50px; font-size: 16px; }
  .notification-hint { padding: 12px; }
  .consent { font-size: 9px; }
  .success-step { padding: 34px 3px 18px; }
  .success-mark { width: 64px; height: 64px; margin-bottom: 20px; }
  .success-step h2 { font-size: 31px; }
  .notification-preview { grid-template-columns: 1fr; }
  .notification-preview > div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding: 12px 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .notification-preview > div:last-child { border-bottom: 0; }
  .notification-preview span { margin: 0; }
  .success-actions { flex-direction: column; gap: 16px; }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 26px); }
  .hero h1 { font-size: 39px; }
  .mobile-bridge-disciplines > div {
    grid-template-columns: 30px 1fr;
    column-gap: 7px;
  }
  .mobile-bridge-disciplines > div > span { width: 30px; height: 30px; }
  .mobile-bridge-disciplines b { font-size: 13px; }
  .professional { grid-template-columns: 96px 1fr; }
  .professional-copy { padding-inline: 15px; }
  .mobile-booking-bar div { display: none; }
  .mobile-booking-bar .button { width: 100%; }
  .calendar-day { min-height: 37px; }
}

/*
  Puentes v7 — entrevista inicial, apartado y pago.
  Estas reglas complementan el sistema visual anterior y mantienen la
  experiencia táctil como prioridad.
*/
button,
input,
select { font: inherit; }

select:focus-visible,
.time-option:focus-visible,
.calendar-day:focus-visible,
.payment-option:focus-within,
.back-step:focus-visible,
.close-modal:focus-visible {
  outline: 3px solid rgba(143, 117, 171, .34);
  outline-offset: 3px;
}

.service-grid.single-service {
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.single-service .service-card {
  min-height: 480px;
  padding: 42px 40px 36px;
}

.single-service .service-card h3 {
  max-width: 430px;
  font-size: 36px;
}

.single-service .service-card > p {
  max-width: 500px;
  min-height: 0;
}

.service-path {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 54px 52px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(215,202,229,.55), transparent 36%),
    linear-gradient(145deg, white, #f8f4fa);
}

.service-path::after {
  content: "∞";
  position: absolute;
  right: -20px;
  bottom: -70px;
  color: rgba(117,92,145,.075);
  font-family: var(--serif);
  font-size: 250px;
  line-height: 1;
}

.service-path h3 {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 20px 0 17px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.service-path > p {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.service-path ol {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-path li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 16px;
}

.service-path li span {
  color: var(--plum);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.time-placeholder,
.time-loading,
.time-empty,
.time-retry {
  grid-column: 1 / -1;
  min-height: 55px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.58);
  color: var(--muted);
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
}

.time-loading i {
  width: 15px;
  height: 15px;
  border: 2px solid var(--lavender);
  border-top-color: var(--plum);
  border-radius: 50%;
  animation: time-spin .75s linear infinite;
}

.time-retry {
  color: var(--plum);
  cursor: pointer;
}

.time-option {
  min-height: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.time-option b {
  font-size: 13px;
}

.time-option small {
  color: #99909d;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.time-option:hover small,
.time-option.selected small { color: rgba(255,255,255,.68); }

.timezone-note {
  margin: 9px 0 0;
  color: #918895;
  font-size: 9px;
  line-height: 1.5;
}

.booking-summary {
  flex-direction: column;
  gap: 10px;
}

.booking-summary > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 11px;
}

.booking-summary > div + div {
  padding-top: 10px;
  border-top: 1px solid rgba(71,52,83,.09);
}

.booking-summary p {
  min-width: 0;
  margin: 0;
}

.booking-summary b {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.booking-summary small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.booking-summary .summary-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 16px;
}

.form-grid select {
  width: 100%;
  min-height: 45px;
  margin-top: 7px;
  padding: 11px 35px 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: white;
  font-size: 13px;
}

.form-grid select:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(111,91,136,.1);
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 15px;
  border: 1px solid #dfe8dd;
  border-radius: 13px;
  background: var(--sage-light);
}

.privacy-note > span {
  flex: 0 0 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #678067;
}

.privacy-note p {
  margin: 0;
  color: #667266;
  font-size: 10px;
  line-height: 1.55;
}

.privacy-note b {
  display: block;
  color: var(--ink);
  font-size: 11px;
}

.payment-status {
  margin-bottom: 18px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  border: 1px solid #dfe8dd;
  border-radius: 15px;
  background: var(--sage-light);
}

.payment-status > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-status strong {
  color: #526b52;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.payment-status p {
  margin: 0;
  color: #677367;
  font-size: 10px;
  line-height: 1.55;
}

.payment-status.ending {
  border-color: #edcfb3;
  background: #fff5eb;
}

.payment-status.ending strong { color: #9b5d32; }
.payment-summary { margin-bottom: 23px; }

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-option {
  min-height: 76px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.payment-option:hover,
.payment-option:has(input:checked) {
  border-color: var(--plum);
  background: var(--lavender-light);
  box-shadow: 0 10px 28px rgba(74,55,87,.07);
}

.payment-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.payment-radio {
  width: 18px;
  height: 18px;
  border: 1.5px solid #aaa0ad;
  border-radius: 50%;
  background: white;
  box-shadow: inset 0 0 0 4px white;
}

.payment-option input:checked + .payment-radio {
  border-color: var(--plum);
  background: var(--plum);
}

.payment-option > span:nth-of-type(2) {
  display: flex;
  flex-direction: column;
}

.payment-option b {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.payment-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.payment-option > strong {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--plum);
  background: white;
  font-size: 8px;
  letter-spacing: .08em;
}

.demo-payment-notice {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid #ddd3e6;
  border-radius: 13px;
  background: var(--lavender-light);
}

.demo-payment-notice > span {
  flex: 0 0 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--plum);
  font-family: var(--serif);
  font-size: 12px;
}

.demo-payment-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.demo-payment-notice b {
  display: block;
  color: var(--ink);
  font-size: 10px;
}

@keyframes time-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .service-grid.single-service {
    width: auto;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
  }

  .single-service .service-card,
  .service-path {
    min-height: auto;
  }

  .single-service .service-card {
    padding: 28px 24px 25px;
  }

  .single-service .service-card h3 {
    font-size: 28px;
  }

  .service-path {
    padding: 31px 25px 28px;
  }

  .service-path::after {
    right: -28px;
    bottom: -48px;
    font-size: 180px;
  }

  .service-path h3 {
    margin-top: 14px;
    font-size: 29px;
  }

  .service-path > p {
    font-size: 12px;
    line-height: 1.65;
  }

  .service-path ol { margin-top: 27px; }
  .service-path li { min-height: 51px; font-size: 14px; }

  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .time-option { min-height: 49px; }
  .time-option b { font-size: 12px; }

  .form-grid select {
    min-height: 50px;
    font-size: 16px;
  }

  .payment-status {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 15px;
  }

  .payment-status > div {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .payment-status strong { font-size: 25px; }
  .payment-option { min-height: 72px; padding: 12px 13px; }
  .payment-option b { font-size: 15px; }
  .payment-option small { font-size: 8px; }

  .booking-summary b { font-size: 13px; }
  .booking-summary small { font-size: 8px; line-height: 1.4; }
}

@media (max-width: 360px) {
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-option { grid-template-columns: 18px 1fr; }
  .payment-option > strong { display: none; }
}

/*
  Puentes v8 — identidad definitiva y terminación editorial.
*/
::selection {
  color: white;
  background: #765c91;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 999px;
  color: white;
  background: var(--plum-dark);
  font-size: 11px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 300;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #afc6af, #c8b2dc, #765c91);
  box-shadow: 0 0 12px rgba(175,198,175,.45);
}

.demo-bar {
  position: relative;
  min-height: 29px;
  background: #2e2634;
}

.demo-bar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,211,191,.35), transparent);
}

.site-header {
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
  background: rgba(252,250,246,.96);
  border-color: rgba(73,56,84,.12);
  box-shadow: 0 10px 35px rgba(39,31,45,.065);
}

.brand {
  flex: 0 0 auto;
  line-height: 0;
}

.brand > img {
  width: 178px;
  height: auto;
  display: block;
}



.main-nav > a {
  color: #554d59;
  font-size: 12px;
  transition: color .18s ease;
}

.main-nav > a:hover,
.main-nav > a.active { color: var(--plum); }

.main-nav > a.active::after { right: 0; }

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.button:hover::before { left: 125%; }

.hero {
  background:
    radial-gradient(circle at 85% 12%, rgba(211,193,228,.25), transparent 30%),
    radial-gradient(circle at 9% 91%, rgba(175,198,175,.16), transparent 27%),
    linear-gradient(135deg, #2b2232 0%, #493858 53%, #614872 100%);
}

.hero-grid {
  min-height: 710px;
  gap: 76px;
}

.hero h1 {
  max-width: 690px;
  text-wrap: balance;
}

.hero-lead {
  max-width: 590px;
  text-wrap: pretty;
}

.hero .button-hero { border: 1px solid rgba(255,255,255,.75); }

.trust-row span {
  padding: 9px 13px;
  border-color: rgba(255,255,255,.15);
  background: rgba(255,255,255,.065);
}

.trust-row b { color: #c5dcc4; }

.bridge-stage-top i {
  width: 28px;
  height: 22px;
  display: grid;
  place-items: center;
}

.bridge-stage-top i img {
  width: 28px;
  height: 28px;
  filter: brightness(1.55) saturate(.72);
}

.promise-mark { padding: 6px; }
.promise-mark img {
  width: 100%;
  height: 100%;
  filter: brightness(1.55) saturate(.72);
}

.bridge-stage {
  filter: drop-shadow(0 28px 48px rgba(16,10,20,.12));
}

.discipline {
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.hero-visual:hover .discipline-psychology { transform: translate(-3px, -4px); }
.hero-visual:hover .discipline-nutrition { transform: translate(3px, -4px); }

.floating-proof {
  border-color: rgba(255,255,255,.24);
  background: rgba(42,32,49,.76);
}

.hero-ribbon {
  background: rgba(28,21,33,.7);
}

.intro {
  background:
    radial-gradient(circle at 88% 2%, rgba(231,223,240,.48), transparent 25%),
    white;
}

.section-heading h2,
.process h2,
.for-you h2,
.faq h2 {
  text-wrap: balance;
}

.section-heading > p,
.section-heading.centered > p {
  text-wrap: pretty;
}

.pillars {
  border-color: rgba(61,47,70,.1);
  box-shadow: 0 25px 70px rgba(62,45,75,.07);
}

.pillar { background: rgba(255,255,255,.82); }

.pillar-featured {
  background: linear-gradient(145deg, #f9f6fb, #f2edf7);
}

.pillar:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(75,59,86,.11);
}

.process {
  background:
    radial-gradient(circle at 5% 100%, rgba(175,198,175,.13), transparent 27%),
    linear-gradient(135deg, #604875, #81679a 70%, #755c91);
}

.steps li {
  transition: padding-left .22s ease, background .22s ease;
}

.steps li:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,.055), transparent);
}

.for-you {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 6%, rgba(255,255,255,.75), transparent 26%),
    #edf2eb;
}

.for-you::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(87,109,86,.12);
  border-radius: 50%;
  pointer-events: none;
}

.for-you-art {
  box-shadow: 0 28px 70px rgba(59,77,59,.18);
}

.quote-card {
  box-shadow: 0 20px 46px rgba(51,64,50,.17);
}

.check-list li {
  transition: color .18s ease, transform .18s ease;
}

.check-list li:hover {
  color: var(--ink);
  transform: translateX(4px);
}

.professionals {
  background:
    radial-gradient(circle at 8% 12%, rgba(237,243,235,.72), transparent 20%),
    white;
}

.professional {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.professional:hover {
  transform: translateY(-6px);
  border-color: rgba(117,92,145,.24);
  box-shadow: 0 24px 55px rgba(59,44,70,.1);
}

.professional-image::before,
.professional-image::after {
  transition: transform .4s ease;
}

.professional:hover .professional-image::before { transform: translateY(-5px); }
.professional:hover .professional-image::after { transform: translateY(-3px) scale(1.03); }

.faq {
  background:
    radial-gradient(circle at 8% 90%, rgba(175,198,175,.2), transparent 27%),
    var(--lavender-light);
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details,
.accordion details:last-child {
  overflow: hidden;
  border: 1px solid rgba(73,57,82,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.72);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.accordion details[open] {
  border-color: rgba(117,92,145,.3);
  background: white;
  box-shadow: 0 14px 38px rgba(73,55,84,.07);
}

.accordion summary {
  padding: 21px 22px;
}

.accordion details p {
  margin: -2px 55px 23px 22px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 50%, rgba(175,198,175,.14), transparent 26%),
    linear-gradient(120deg, #29232f, #3b3042);
}

.cta-section::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -95px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.cta-inner { position: relative; z-index: 1; }

.footer-brand > img { width: 190px; }

.footer-grid > div:first-child p { margin-top: 2px; }

.booking-panel {
  background:
    radial-gradient(circle at 100% 0, rgba(230,220,239,.5), transparent 26%),
    var(--cream);
}

.calendar-shell {
  border-color: rgba(61,47,70,.1);
  box-shadow: 0 15px 38px rgba(61,45,73,.065);
}

.payment-option,
.booking-summary,
.privacy-note,
.demo-payment-notice {
  box-shadow: 0 8px 24px rgba(63,46,74,.035);
}

@media (min-width: 901px) and (max-width: 1100px) {
  .brand > img { width: 158px; }
  .main-nav { gap: 15px; }
  .main-nav > a { font-size: 10px; }
  .main-nav .button { padding-inline: 16px; }
}

@media (max-width: 900px) {
  .brand > img { width: 168px; }
  .main-nav {
    top: 76px;
    background: rgba(252,250,246,.985);
    backdrop-filter: blur(20px);
  }
  .main-nav > a {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
  }
}

@media (max-width: 620px) {
  .brand > img { width: 143px; }
  .demo-bar { min-height: 24px; }


  .main-nav { top: 62px; }

  .hero-grid { padding-top: 34px; padding-bottom: 38px; }
  .hero h1 { letter-spacing: -.052em; }
  .trust-row { display: none; }

  .mobile-bridge-card {
    border-color: rgba(255,255,255,.16);
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 18px 40px rgba(20,13,25,.13);
  }

  .mobile-bridge-disciplines > i {
    display: grid;
    place-items: center;
  }

  .mobile-bridge-disciplines > i img {
    width: 31px;
    height: 31px;
    filter: brightness(1.4) saturate(.75);
  }

  .section { padding: 66px 0; }
  .section-heading.centered { margin-bottom: 28px; }

  .pillars {
    box-shadow: none;
  }

  .pillar:hover,
  .professional:hover,
  .check-list li:hover {
    transform: none;
  }

  .process { padding-block: 65px 58px; }
  .steps li:hover { padding-left: 0; background: transparent; }

  .for-you { padding-block: 64px; }
  .professionals { padding-block: 64px 58px; }


  .accordion summary { padding: 18px 17px; }
  .accordion details p { margin: -1px 38px 20px 17px; }

  .footer-brand > img { width: 172px; }

  .mobile-booking-bar {
    border-color: rgba(255,255,255,.18);
    background: rgba(41,32,47,.97);
    box-shadow: 0 20px 52px rgba(22,16,26,.36);
  }

  .booking-panel {
    padding-top: calc(67px + env(safe-area-inset-top));
  }
}

@media (max-width: 360px) {
  .brand > img { width: 132px; }
  .main-nav > a { font-size: 17px; }
}

/* ==========================================================================
   PUENTES V10 · AJUSTES CONTROLADOS SOBRE LA PORTADA V8
   ========================================================================== */

.hero-actions {
  gap: 13px;
}

.hero-primary-v10 {
  min-height: 58px;
  padding: 8px 9px 8px 23px;
  gap: 23px;
  border: 1px solid rgba(255,255,255,.72);
  box-shadow:
    0 18px 38px rgba(20,13,25,.22),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.hero-primary-v10 > span {
  white-space: nowrap;
}

.hero-primary-v10 > i,
.hero-secondary-v10 > i {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 16px;
  font-style: normal;
  transition: transform .22s ease, background .22s ease;
}

.hero-primary-v10 > i {
  color: white;
  background: var(--plum-dark);
  box-shadow: 0 6px 14px rgba(71,51,87,.2);
}

.hero-primary-v10:hover > i {
  background: var(--ink);
  transform: translateX(2px);
}

.hero-secondary-v10 {
  min-height: 58px;
  padding: 8px 9px 8px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.hero-secondary-v10:hover {
  border-color: rgba(255,255,255,.36);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.hero-secondary-v10 > i {
  border: 1px solid rgba(255,255,255,.16);
  color: #d8c9e5;
  background: rgba(255,255,255,.065);
}

.hero-secondary-v10:hover > i {
  background: rgba(255,255,255,.12);
  transform: translateY(2px);
}

.hero-visual-v10 {
  min-height: 500px;
  padding: 62px 8px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.v10-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: 50%;
  pointer-events: none;
}

.v10-orbit-a {
  inset: 39px 12px 25px;
}

.v10-orbit-b {
  width: 255px;
  height: 255px;
  right: -24px;
  top: 116px;
  border-color: rgba(192,215,190,.13);
}

.v10-visual-kicker {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 50%;
  min-height: 42px;
  padding: 7px 9px 7px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.065);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.v10-visual-kicker span {
  white-space: nowrap;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.v10-visual-kicker img {
  width: 28px;
  height: 28px;
  padding: 3px;
  filter: brightness(1.55) saturate(.72);
}

.v10-duo {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(145px, 1fr) 52px minmax(145px, 1fr);
  align-items: center;
}

.v10-discipline {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 25px 18px 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 30px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 18% 5%, rgba(255,255,255,.16), transparent 38%),
    rgba(255,255,255,.055);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 22px 46px rgba(22,14,27,.16);
  backdrop-filter: blur(14px);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.v10-nutrition {
  border-color: rgba(203,224,201,.2);
  background:
    radial-gradient(circle at 82% 5%, rgba(199,220,197,.15), transparent 38%),
    rgba(255,255,255,.045);
}

.hero-visual-v10:hover .v10-psychology {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.27);
}

.hero-visual-v10:hover .v10-nutrition {
  transform: translateY(-4px);
  border-color: rgba(203,224,201,.3);
}

.v10-number {
  position: absolute;
  top: 17px;
  right: 18px;
  color: rgba(255,255,255,.42);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
}

.v10-icon {
  width: 61px;
  height: 61px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  color: #e5d8ef;
  background: rgba(255,255,255,.07);
  font-family: var(--serif);
  font-size: 27px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.v10-nutrition .v10-icon {
  color: #d5e7d3;
  background: rgba(186,211,184,.075);
}

.v10-discipline h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.v10-discipline p {
  margin: 0;
  color: rgba(255,255,255,.5);
  font-size: 7.5px;
  line-height: 1.5;
}

.v10-connection {
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
}

.v10-connection > i {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(221,205,235,.55));
}

.v10-connection > i:last-child {
  background: linear-gradient(90deg, rgba(201,222,199,.55), rgba(255,255,255,.12));
}

.v10-connection > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  background: rgba(48,36,56,.78);
  box-shadow: 0 0 0 6px rgba(255,255,255,.035);
}

.v10-connection img {
  width: 25px;
  height: 25px;
  padding: 3px;
  filter: brightness(1.55) saturate(.72);
}

.v10-visual-footer {
  position: relative;
  z-index: 3;
  width: 86%;
  min-height: 70px;
  margin-top: -12px;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 39px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  color: white;
  background: rgba(37,28,43,.76);
  box-shadow:
    0 20px 42px rgba(18,11,22,.23),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(15px);
}

.v10-footer-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(190,214,188,.13);
}

.v10-footer-mark img {
  width: 27px;
  height: 27px;
  padding: 3px;
  filter: brightness(1.55) saturate(.72);
}

.v10-visual-footer > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.v10-visual-footer b {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
}

.v10-visual-footer small {
  overflow: hidden;
  color: rgba(255,255,255,.45);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v10-visual-footer > i {
  color: rgba(255,255,255,.55);
  font-size: 15px;
  font-style: normal;
}

.proof-online-v10 {
  top: 8px;
  right: -1px;
}

.proof-human-v10 {
  left: 2px;
  bottom: 2px;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .hero-primary-v10,
  .hero-secondary-v10 {
    padding-left: 17px;
    gap: 13px;
    font-size: 10px;
  }

  .hero-primary-v10 > i,
  .hero-secondary-v10 > i {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .hero-visual-v10 { padding-inline: 0; }
  .v10-duo { grid-template-columns: minmax(132px, 1fr) 42px minmax(132px, 1fr); }
  .v10-discipline { min-height: 205px; padding-inline: 12px; }
  .v10-discipline h3 { font-size: 21px; }
  .v10-visual-footer { width: 91%; }
}

@media (max-width: 900px) {
  .hero-actions { justify-content: center; }

  .hero-visual-v10 {
    min-height: 455px;
    padding-inline: 25px;
  }

  .v10-duo {
    grid-template-columns: minmax(155px, 1fr) 58px minmax(155px, 1fr);
  }

  .v10-visual-footer { width: 80%; }
}

@media (max-width: 620px) {
  .hero-actions {
    display: block;
    margin-top: 23px;
  }

  .hero-primary-v10 {
    width: 100%;
    min-height: 55px;
    padding: 7px 8px 7px 20px;
    justify-content: space-between;
    font-size: 13px;
  }

  .hero-primary-v10 > i {
    flex-basis: 39px;
    width: 39px;
    height: 39px;
  }

  .hero-secondary-v10 { display: none; }
}

/* ==========================================================================
   PUENTES V11 · EXPERIENCIA MOBILE-FIRST
   Estos ajustes viven al final para que la versión de escritorio permanezca
   exactamente igual y el teléfono tenga una composición propia.
   ========================================================================== */

@media (max-width: 620px) {
  :root {
    --mobile-gutter: 18px;
    --mobile-radius: 24px;
    --mobile-shadow: 0 18px 45px rgba(55, 40, 65, .09);
  }

  html {
    scroll-padding-top: 72px;
    -webkit-text-size-adjust: 100%;
  }

  body {
    min-width: 0;
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
    background: #fbfaf7;
  }

  body.nav-open { overflow: hidden; }

  .container {
    width: min(calc(100% - 36px), 520px);
  }

  section[id] { scroll-margin-top: 72px; }

  .demo-bar {
    min-height: 23px;
    padding: 4px 12px;
  }

  .demo-bar span {
    font-size: 6.5px;
    letter-spacing: .2em;
  }

  .site-header {
    border-bottom-color: rgba(65,49,76,.08);
    box-shadow: 0 9px 26px rgba(39,30,46,.035);
  }

  .nav-shell { height: 62px; }

  .brand > img { width: 145px; }

  .menu-button {
    width: 41px;
    height: 41px;
    border-color: rgba(75,57,87,.12);
    box-shadow: 0 7px 20px rgba(55,40,65,.055);
  }

  .main-nav {
    top: 62px;
    max-height: calc(100dvh - 62px);
    padding: 12px 18px calc(24px + env(safe-area-inset-bottom));
    border-bottom: 1px solid rgba(70,53,82,.1);
    background:
      radial-gradient(circle at 90% 5%, rgba(232,222,241,.65), transparent 30%),
      rgba(252,250,247,.992);
    box-shadow: 0 25px 55px rgba(42,31,50,.15);
  }

  .main-nav > a {
    min-height: 55px;
    padding: 17px 4px;
    color: var(--ink);
    font-size: 19px;
  }

  .main-nav .button {
    min-height: 53px;
    margin-top: 13px;
    font-size: 13px;
  }

  /* Portada */
  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 102% 5%, rgba(211,193,228,.28), transparent 34%),
      radial-gradient(circle at -8% 92%, rgba(178,205,177,.17), transparent 34%),
      linear-gradient(152deg, #2c2333 0%, #493858 55%, #604771 100%);
  }

  .hero::before {
    right: -54%;
    top: 14%;
    width: 118%;
  }

  .hero::after {
    opacity: .35;
    background-size: 52px 52px;
  }

  .hero-grid {
    padding-top: 34px;
    padding-bottom: 35px;
  }

  .hero .eyebrow {
    color: #ddd0e8;
    font-size: 7.5px;
    letter-spacing: .17em;
  }

  .hero h1 {
    max-width: 410px;
    margin: 16px 0 18px;
    font-size: clamp(42px, 11.8vw, 51px);
    line-height: .96;
    letter-spacing: -.052em;
    text-wrap: balance;
  }

  .hero h1 strong {
    display: inline-block;
    margin-top: 3px;
    color: #e3d8eb;
  }

  .hero-lead-mobile {
    max-width: 390px;
    color: rgba(255,255,255,.74);
    font-size: 14px;
    line-height: 1.62;
    text-wrap: pretty;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-primary-v10 {
    min-height: 57px;
    padding: 8px 8px 8px 21px;
    border-color: rgba(255,255,255,.82);
    box-shadow:
      0 17px 34px rgba(20,13,25,.23),
      inset 0 1px 0 rgba(255,255,255,.9);
  }

  .hero-primary-v10 > i {
    flex-basis: 41px;
    width: 41px;
    height: 41px;
  }

  .mobile-bridge-card {
    position: relative;
    margin-top: 20px;
    padding: 17px 16px 14px;
    gap: 14px;
    overflow: hidden;
    border-color: rgba(255,255,255,.17);
    border-radius: 22px;
    background:
      radial-gradient(circle at 100% 0, rgba(207,189,224,.16), transparent 35%),
      linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.055));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.1),
      0 20px 38px rgba(20,13,25,.14);
  }

  .mobile-bridge-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -65px;
    width: 145px;
    height: 145px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
    pointer-events: none;
  }

  .mobile-bridge-disciplines {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    gap: 8px;
  }



  .mobile-bridge-disciplines > div > span {
    width: 38px;
    height: 38px;
    color: #e6daee;
    background: rgba(255,255,255,.075);
  }

  .mobile-bridge-disciplines b {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
  }

  .mobile-bridge-disciplines small { font-size: 7.5px; }

  .mobile-bridge-disciplines > i img {
    width: 34px;
    height: 34px;
  }

  .mobile-bridge-card > p {
    position: relative;
    z-index: 1;
    padding-top: 12px;
    color: rgba(255,255,255,.78);
    font-size: 9.5px;
  }

  /* Ritmo general de lectura */
  .section { padding: 64px 0; }

  .section-heading.centered {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .process h2,
  .for-you h2,
  .faq h2 {
    margin: 13px 0 16px;
    font-size: clamp(35px, 9.7vw, 42px);
    line-height: 1.03;
    letter-spacing: -.04em;
  }

  .section-heading > p,
  .section-heading.centered > p,
  .process-copy > p {
    font-size: 13.5px;
    line-height: 1.68;
  }

  .eyebrow {
    gap: 9px;
    font-size: 7.5px;
    letter-spacing: .15em;
  }

  .eyebrow > span:first-child { width: 20px; }

  /* Las tres miradas: lista vertical, sin contenido oculto al costado */
  .mobile-swipe-hint { display: none; }

  .pillars {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
  }

  .pillar,
  .pillar:last-child {
    width: 100%;
    min-height: 0;
    padding: 21px 20px;
    display: grid;
    grid-template-columns: 49px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 15px;
    row-gap: 4px;
    border: 1px solid rgba(71,53,82,.1);
    border-radius: 21px;
    background: rgba(255,255,255,.9);
    box-shadow: var(--mobile-shadow);
  }

  .pillar-featured {
    background: linear-gradient(145deg, #faf7fc, #f3edf8);
  }

  .pillar-number {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    font-size: 8px;
  }

  .pillar-icon {
    grid-column: 1;
    grid-row: 2 / 4;
    width: 49px;
    height: 49px;
    margin: 0;
    align-self: start;
    font-size: 23px;
  }

  .pillar h3 {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 23px;
    line-height: 1.1;
  }

  .pillar p {
    grid-column: 2;
    grid-row: 3;
    margin: 2px 0 0;
    font-size: 11.5px;
    line-height: 1.57;
  }

  /* Proceso */
  .process {
    padding: 64px 0 58px;
  }

  .process-copy .button {
    min-height: 53px;
    margin-top: 2px;
  }

  .steps {
    margin-top: 32px;
    display: grid;
    gap: 10px;
    border: 0;
  }

  .steps li {
    min-height: 0;
    padding: 17px 16px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 11px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 17px;
    background: rgba(255,255,255,.055);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  }

  .steps li:hover {
    padding-left: 16px;
    background: rgba(255,255,255,.055);
  }

  .step-index {
    width: 29px;
    height: 29px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: #d9cbe5;
    font-size: 9px;
  }

  .steps h3 { font-size: 19px; }

  .steps p {
    color: rgba(255,255,255,.65);
    font-size: 11px;
    line-height: 1.58;
  }

  /* Para vos */
  .for-you {
    padding: 64px 0;
  }

  .check-list {
    margin: 25px 0 23px;
    display: grid;
    gap: 9px;
    border: 0;
  }

  .check-list li,
  .check-list li:first-child {
    min-height: 0;
    padding: 13px 14px;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(78,95,76,.1);
    border-radius: 15px;
    background: rgba(255,255,255,.68);
    box-shadow: 0 10px 24px rgba(60,77,59,.045);
    font-size: 11.5px;
  }

  .check-list li span {
    flex-basis: 27px;
    width: 27px;
    height: 27px;
  }

  .for-you .text-link.dark {
    width: 100%;
    min-height: 51px;
    padding: 13px 18px;
    justify-content: space-between;
    border: 1px solid rgba(75,57,87,.14);
    border-radius: 999px;
    color: white;
    background: var(--plum);
    box-shadow: 0 13px 28px rgba(92,70,111,.18);
  }

  /* Profesionales: contenido legible, no comprimido en una columna angosta */
  .professionals {
    padding: 64px 0 58px;
  }

  .professional-grid {
    gap: 15px;
  }

  .professional {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
    background: #fcfaf6;
    box-shadow: var(--mobile-shadow);
  }

  .professional-image {
    min-height: 178px;
  }

  .professional-image::before {
    width: 116px;
    height: 138px;
    bottom: -42px;
  }

  .professional-image::after {
    width: 73px;
    height: 73px;
    top: 34px;
  }

  .professional-image span { font-size: 37px; }

  .professional-image small {
    left: 18px;
    right: auto;
    bottom: 13px;
    max-width: none;
    font-size: 6.5px;
    text-align: left;
  }

  .professional-copy {
    padding: 23px 21px 22px;
  }

  .professional-copy .role { font-size: 7px; }

  .professional-copy h3 {
    margin: 8px 0 11px;
    font-size: 26px;
  }

  .professional-copy p {
    font-size: 11.5px;
    line-height: 1.64;
  }

  .pending {
    margin-top: 17px;
    padding-top: 13px;
    font-size: 7.5px;
  }

  .disclaimer {
    margin: 17px auto 0;
    max-width: 330px;
    font-size: 7.5px;
  }

  /* Preguntas */
  .faq {
    padding: 61px 0 64px;
  }

  .faq-intro {
    margin-bottom: 25px;
  }

  .faq-intro p {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .accordion {
    gap: 9px;
  }

  .accordion details,
  .accordion details:last-child {
    border-radius: 16px;
  }

  .accordion summary {
    min-height: 58px;
    padding: 17px 16px;
    gap: 14px;
    font-size: 16.5px;
    line-height: 1.25;
  }

  .accordion summary span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lavender-light);
  }

  .accordion details p {
    margin: -1px 45px 19px 16px;
    font-size: 11px;
    line-height: 1.62;
  }

  /* Cierre y pie */
  .cta-section {
    padding: 54px 0 51px;
  }

  .cta-inner h2 {
    font-size: 36px;
    letter-spacing: -.04em;
  }

  .cta-inner p {
    max-width: 335px;
    font-size: 12.5px;
  }

  .cta-inner .button {
    min-height: 53px;
    margin-top: 24px;
  }

  .footer {
    padding: 49px 0 27px;
  }

  .footer-brand > img { width: 169px; }

  .footer-grid {
    gap: 27px;
  }

  .footer-grid > div:first-child p {
    max-width: 310px;
    font-size: 11px;
  }

  .footer-grid > div:nth-child(3) {
    padding-top: 21px;
    border-top: 1px solid rgba(255,255,255,.09);
  }

  .footer-grid a,
  .footer-grid span {
    min-height: 20px;
    font-size: 10.5px;
  }

  /* Acción fija */
  .mobile-booking-bar {
    left: 9px;
    right: 9px;
    bottom: max(8px, env(safe-area-inset-bottom));
    min-height: 66px;
    padding: 8px 8px 8px 15px;
    border-radius: 20px;
    background: rgba(39,31,45,.975);
    box-shadow:
      0 22px 54px rgba(20,14,24,.38),
      inset 0 1px 0 rgba(255,255,255,.07);
  }

  .mobile-booking-bar div span {
    font-size: 13.5px;
  }

  .mobile-booking-bar div small {
    max-width: 180px;
    font-size: 7px;
  }

  .mobile-booking-bar .button {
    min-width: 101px;
    min-height: 49px;
    padding: 11px 14px;
    font-size: 11px;
  }

  /* Turnera de pantalla completa */
  .booking-panel {
    width: 100%;
    padding:
      calc(68px + env(safe-area-inset-top))
      16px
      calc(30px + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(circle at 100% 0, rgba(231,222,240,.62), transparent 27%),
      #fbfaf7;
  }

  .close-modal {
    top: calc(13px + env(safe-area-inset-top));
    right: 13px;
    width: 44px;
    height: 44px;
    border-color: rgba(73,56,84,.11);
    font-size: 25px;
  }

  .booking-head {
    margin-bottom: 25px;
  }

  .booking-head h2 {
    margin-top: 5px;
    padding-right: 48px;
    font-size: 31px;
    line-height: 1.05;
  }

  .step-question {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .booking-lead-notice {
    padding: 11px 12px;
    border-radius: 14px;
  }

  .booking-lead-notice p {
    font-size: 9.5px;
    line-height: 1.5;
  }

  .calendar-shell {
    padding: 12px 9px 10px;
    border-radius: 17px;
    box-shadow: 0 14px 32px rgba(61,45,73,.075);
  }

  .calendar-head {
    min-height: 43px;
  }

  .calendar-head button {
    width: 39px;
    height: 39px;
  }

  .calendar-head strong {
    font-size: 17.5px;
  }

  .calendar-weekdays span {
    padding: 6px 0;
    font-size: 6.5px;
  }

  .calendar-day {
    min-height: 40px;
    border-radius: 9px;
    font-size: 11.5px;
  }

  .calendar-legend {
    justify-content: center;
    font-size: 7.5px;
  }

  .time-heading {
    margin-top: 21px;
  }

  .time-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  .time-option {
    min-height: 49px;
    border-radius: 11px;
  }

  .modal-actions {
    margin-top: 23px;
    gap: 9px;
  }

  .modal-actions .button,
  .modal-actions.right .button {
    width: 100%;
    min-height: 52px;
  }

  .form-grid {
    gap: 14px;
  }

  .form-grid input,
  .form-grid select {
    min-height: 52px;
    border-radius: 12px;
    font-size: 16px;
  }

  .consent {
    gap: 11px;
    font-size: 9.5px;
  }

  .consent input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
  }

  .payment-option {
    min-height: 75px;
    padding: 13px;
    border-radius: 15px;
  }

  .privacy-note,
  .notification-hint,
  .demo-payment-notice {
    border-radius: 14px;
  }

  .success-step {
    padding-top: 28px;
  }

  .success-step h2 {
    font-size: 31px;
    line-height: 1.07;
  }

  .success-actions .button {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 374px) {
  .container { width: calc(100% - 28px); }

  .hero h1 {
    font-size: 39px;
  }

  .hero-lead-mobile {
    font-size: 13.5px;
  }

  .mobile-bridge-card {
    padding-inline: 13px;
  }

  .mobile-bridge-disciplines {
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
    gap: 5px;
  }

  .mobile-bridge-disciplines > div {
    grid-template-columns: 31px minmax(0, 1fr);
    column-gap: 7px;
  }

  .mobile-bridge-disciplines > div > span {
    width: 31px;
    height: 31px;
    font-size: 15px;
  }

  .mobile-bridge-disciplines b { font-size: 12.5px; }
  .mobile-bridge-disciplines small { font-size: 6.5px; }


  .professional-image { min-height: 160px; }

  .mobile-booking-bar div { display: none; }

  .mobile-booking-bar .button {
    width: 100%;
    min-width: 0;
  }

  .calendar-day {
    min-height: 37px;
    font-size: 10.5px;
  }

  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   PUENTES V12 · CORRECCIÓN FINAL DE LA PRIMERA PANTALLA MÓVIL
   ========================================================================== */

.hero-cta-mobile { display: none; }

@media (max-width: 620px) {
  .hero {
    overflow: hidden;
  }

  .hero-grid {
    min-height: calc(100vh - 85px);
    min-height: calc(100svh - 85px);
    padding-top: 34px;
    padding-bottom: 38px;
    display: flex;
    align-items: center;
  }

  .hero-copy {
    width: 100%;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1 {
    margin-top: 0;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-cta-desktop { display: none; }
  .hero-cta-mobile { display: inline; }

  /*
    El teléfono usa una única portada. Estos elementos pertenecen a la
    composición de escritorio y no deben ocupar ni un píxel en celular.
  */
  .mobile-bridge-card,
  .hero-visual,
  .hero-visual-v10,
  .hero-ribbon,
  .trust-row {
    display: none !important;
  }

  .intro {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(73,56,84,.08);
  }
}

@media (max-width: 374px) {
  .hero-grid {
    min-height: calc(100vh - 85px);
    min-height: calc(100svh - 85px);
  }
}

/* ==========================================================================
   PUENTES V15 · TARJETA MÓVIL CON MÁS PRESENCIA + ACCIONES UNIFICADAS
   ========================================================================== */

/* Los dos caminos de la portada comparten exactamente el mismo lenguaje. */
@media (min-width: 621px) {
  .hero-actions {
    width: min(100%, 660px);
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 13px;
  }

  .hero-primary-v10,
  .hero-secondary-v10 {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 8px 9px 8px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 999px;
    color: #493859;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,245,250,.94));
    box-shadow:
      0 17px 35px rgba(20,13,25,.18),
      inset 0 1px 0 rgba(255,255,255,.96);
    font-family: var(--sans);
    font-size: clamp(10.5px, 1.05vw, 12.5px);
    font-weight: 750;
    line-height: 1.15;
    letter-spacing: -.01em;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  }

  .hero-primary-v10 > span,
  .hero-secondary-v10 > span {
    min-width: 0;
    white-space: nowrap;
  }

  .hero-primary-v10 > i,
  .hero-secondary-v10 > i {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 0;
    color: white;
    background: linear-gradient(145deg, #604875, #493858);
    box-shadow: 0 7px 16px rgba(54,38,65,.22);
    transition: transform .22s ease, background .22s ease;
  }

  .hero-primary-v10:hover,
  .hero-secondary-v10:hover {
    color: #493859;
    border-color: white;
    background: white;
    box-shadow:
      0 21px 42px rgba(20,13,25,.22),
      inset 0 1px 0 white;
    transform: translateY(-2px);
  }

  .hero-primary-v10:hover > i,
  .hero-secondary-v10:hover > i {
    background: linear-gradient(145deg, #4e3b5d, #392d43);
    transform: scale(1.045);
  }

  .hero-primary-v10:focus-visible,
  .hero-secondary-v10:focus-visible {
    outline: 3px solid rgba(215,198,231,.68);
    outline-offset: 4px;
  }
}

@media (min-width: 621px) and (max-width: 900px) {
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 621px) and (max-width: 1100px) {
  .hero-actions { gap: 10px; }

  .hero-primary-v10,
  .hero-secondary-v10 {
    min-height: 58px;
    padding-left: 16px;
    gap: 9px;
  }

  .hero-primary-v10 > i,
  .hero-secondary-v10 > i {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 620px) {
  .mobile-bridge-card {
    width: 100%;
    min-height: 116px;
    margin-top: clamp(34px, 5.8vh, 56px);
    padding: 14px 17px 15px;
    gap: 11px;
    border-radius: 25px;
    background:
      radial-gradient(circle at 50% -20%, rgba(225,211,238,.19), transparent 58%),
      linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.058));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.11),
      0 21px 45px rgba(20,13,25,.15);
  }


























}

@media (max-width: 374px) {


















}

@media (max-width: 620px) and (max-height: 740px) {




}

/* ==========================================================================
   PUENTES V13 · RITMO Y PROFUNDIDAD DE LA PORTADA MÓVIL
   ========================================================================== */

@media (max-width: 620px) {
  .hero {
    background:
      radial-gradient(circle at 93% 9%, rgba(218,202,232,.27), transparent 31%),
      radial-gradient(circle at 4% 88%, rgba(180,207,178,.15), transparent 33%),
      linear-gradient(158deg, #2b2232 0%, #463553 49%, #60476f 100%);
  }

  .hero::before {
    left: auto;
    right: -51%;
    top: 7%;
    width: 112%;
    border-color: rgba(255,255,255,.07);
  }

  .hero::after {
    opacity: .23;
    background-size: 58px 58px;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 72%);
    mask-image: linear-gradient(to bottom, black, transparent 72%);
  }

  .hero-noise {
    z-index: 0;
    opacity: 1;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 38%, transparent 0, rgba(18,11,22,.055) 62%, rgba(18,11,22,.16) 100%);
  }

  .hero-noise::before,
  .hero-noise::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.065);
    border-radius: 50%;
  }

  .hero-noise::before {
    width: 360px;
    height: 360px;
    right: -245px;
    top: 21%;
    box-shadow: 0 0 90px rgba(207,188,224,.035);
  }

  .hero-noise::after {
    width: 430px;
    height: 430px;
    left: -315px;
    bottom: -190px;
    border-color: rgba(188,213,186,.07);
  }

  .hero-grid {
    padding-top: 27px;
    padding-bottom: 32px;
    align-items: stretch;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 144px);
    min-height: calc(100svh - 144px);
    padding-top: clamp(4px, 1.5vh, 14px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1 {
    max-width: 395px;
    margin: 0 0 20px;
    font-size: clamp(42px, 11.65vw, 50px);
    line-height: .965;
    letter-spacing: -.053em;
  }

  .hero-lead-mobile {
    max-width: 365px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    margin-top: auto;
    padding-top: 52px;
    padding-bottom: 2px;
  }

  .hero-primary-v10 {
    min-height: 59px;
    border-color: rgba(255,255,255,.88);
    box-shadow:
      0 20px 42px rgba(17,10,21,.26),
      inset 0 1px 0 rgba(255,255,255,.95);
  }

  .hero-primary-v10 > i {
    flex-basis: 43px;
    width: 43px;
    height: 43px;
    background: linear-gradient(145deg, #604875, #493858);
    box-shadow: 0 8px 18px rgba(54,38,65,.22);
  }

  .intro {
    box-shadow: 0 -18px 45px rgba(25,17,30,.075);
  }
}

@media (max-width: 374px) {
  .hero-copy {
    min-height: calc(100vh - 140px);
    min-height: calc(100svh - 140px);
  }

  .hero h1 {
    max-width: 340px;
    font-size: 39px;
  }

  .hero-actions {
    padding-top: 38px;
  }
}

/* ==========================================================================
   PUENTES V14 · CONEXIÓN COMPACTA Y PORTADA MÓVIL COMPLETA
   ========================================================================== */

@media (max-width: 620px) {
  /*
    La portada se prolonga por debajo del área visible del navegador móvil.
    De ese modo, la siguiente sección no asoma detrás de la barra inferior.
  */
  .hero-grid {
    min-height: calc(100vh - 20px);
    min-height: calc(100svh - 20px);
  }

  .hero-copy {
    min-height: calc(100vh - 79px);
    min-height: calc(100svh - 79px);
    padding-bottom: 58px;
  }

  /*
    Versión móvil del concepto visual de escritorio: breve, legible y sin
    competir con el mensaje principal ni con el llamado a reservar.
  */
  .mobile-bridge-card {
    position: relative;
    display: flex !important;
    width: min(100%, 350px);
    margin: clamp(39px, 6.7vh, 66px) auto 0;
    padding: 13px 14px;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 21px;
    background:
      radial-gradient(circle at 50% 0, rgba(221,207,235,.12), transparent 53%),
      linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.052));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.09),
      0 18px 42px rgba(20,13,25,.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .mobile-bridge-card::after {
    right: -34px;
    bottom: -63px;
    width: 118px;
    height: 118px;
    border-color: rgba(255,255,255,.055);
  }

  .mobile-bridge-disciplines {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    gap: 7px;
    align-items: center;
  }

  .mobile-bridge-disciplines > div {
    grid-template-columns: 31px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 8px;
    row-gap: 1px;
    min-width: 0;
  }

  .mobile-bridge-disciplines > div > span {
    grid-row: 1 / 3;
    width: 31px;
    height: 31px;
    font-size: 12px;
  }

  .mobile-bridge-disciplines b {
    align-self: end;
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -.01em;
  }

  .mobile-bridge-disciplines small {
    align-self: start;
    font-size: 6.8px;
    line-height: 1.25;
    letter-spacing: .035em;
  }

  .mobile-bridge-disciplines > i {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 35px;
  }

  .mobile-bridge-disciplines > i::before,
  .mobile-bridge-disciplines > i::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 12px;
    height: 1px;
    background: rgba(255,255,255,.18);
  }

  .mobile-bridge-disciplines > i::before { right: 100%; margin-right: 1px; }
  .mobile-bridge-disciplines > i::after { left: 100%; margin-left: 1px; }

  .mobile-bridge-disciplines > i img {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 5px 10px rgba(20,13,25,.18));
  }

  .mobile-bridge-card > p {
    display: none;
  }

  .hero-actions {
    margin-top: auto;
    padding-top: 32px;
  }
}

@media (max-width: 374px) {
  .hero-grid {
    min-height: calc(100vh - 16px);
    min-height: calc(100svh - 16px);
  }

  .hero-copy {
    min-height: calc(100vh - 75px);
    min-height: calc(100svh - 75px);
    padding-bottom: 52px;
  }

  .mobile-bridge-card {
    width: min(100%, 330px);
    margin-top: 34px;
    padding: 11px 12px;
    border-radius: 19px;
  }

  .mobile-bridge-disciplines {
    grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
    gap: 5px;
  }

  .mobile-bridge-disciplines > div {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 7px;
  }

  .mobile-bridge-disciplines > div > span {
    width: 28px;
    height: 28px;
  }


  .mobile-bridge-disciplines small { font-size: 6.3px; }
  .mobile-bridge-disciplines > i { width: 36px; }
  .mobile-bridge-disciplines > i img { width: 29px; height: 29px; }
  .mobile-bridge-disciplines > i::before,
  .mobile-bridge-disciplines > i::after { width: 9px; }

  .hero-actions {
    padding-top: 25px;
  }
}

/* La versión final móvil debe quedar después de los ajustes históricos. */
@media (max-width: 620px) {
  .mobile-bridge-card {
    width: 100%;
    min-height: 116px;
    margin: clamp(34px, 5.8vh, 56px) auto 0;
    padding: 14px 17px 15px;
    gap: 11px;
    border-radius: 25px;
    background:
      radial-gradient(circle at 50% -20%, rgba(225,211,238,.19), transparent 58%),
      linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.058));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.11),
      0 21px 45px rgba(20,13,25,.15);
  }

  .mobile-bridge-kicker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.57);
    font-size: 7px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .mobile-bridge-kicker::before {
    content: "";
    width: 18px;
    height: 1px;
    background: rgba(216,200,229,.58);
  }

  .mobile-bridge-disciplines {
    grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
    gap: 9px;
  }

  .mobile-bridge-disciplines > div {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 10px;
  }

  .mobile-bridge-disciplines > div > span {
    width: 38px;
    height: 38px;
    font-size: 15px;
    background: rgba(255,255,255,.085);
  }

  .mobile-bridge-disciplines b { font-size: 13.5px; }

  .mobile-bridge-disciplines small {
    margin-top: 2px;
    font-size: 7.4px;
  }

  .mobile-bridge-disciplines > i {
    width: 50px;
    height: 42px;
  }

  .mobile-bridge-disciplines > i img {
    width: 38px;
    height: 38px;
  }

  .mobile-bridge-disciplines > i::before,
  .mobile-bridge-disciplines > i::after { width: 15px; }

  .mobile-bridge-card > p {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.105);
    color: rgba(255,255,255,.69);
    font-size: 8.7px;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: .005em;
  }

  .mobile-bridge-card > p span {
    margin-right: 7px;
    color: #cde0ca;
  }

  .hero-actions { padding-top: 27px; }
}

@media (max-width: 374px) {
  .mobile-bridge-card {
    min-height: 106px;
    margin-top: 30px;
    padding: 12px 13px 13px;
    gap: 9px;
    border-radius: 22px;
  }

  .mobile-bridge-kicker { font-size: 6.4px; }

  .mobile-bridge-disciplines {
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
    gap: 6px;
  }

  .mobile-bridge-disciplines > div {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 7px;
  }

  .mobile-bridge-disciplines > div > span {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .mobile-bridge-disciplines b { font-size: 11.5px; }
  .mobile-bridge-disciplines small { font-size: 6.4px; }
  .mobile-bridge-disciplines > i { width: 40px; height: 36px; }
  .mobile-bridge-disciplines > i img { width: 32px; height: 32px; }
  .mobile-bridge-disciplines > i::before,
  .mobile-bridge-disciplines > i::after { width: 10px; }
  .mobile-bridge-card > p { font-size: 7.7px; }
  .hero-actions { padding-top: 22px; }
}

@media (max-width: 620px) and (max-height: 740px) {
  .mobile-bridge-card {
    min-height: 94px;
    margin-top: 25px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .mobile-bridge-card > p { display: none; }
  .hero-actions { padding-top: 20px; }
}

/* ===== ORIGEN HISTÓRICO: v16.css ===== */
/* ==========================================================================
   PUENTES V16 · DIRECCIÓN VISUAL HUMANA, CLARA Y CONTEMPORÁNEA
   Esta hoja vive separada para conservar Puentes v15 intacta.
   ========================================================================== */

:root {
  --v16-ink: #241f27;
  --v16-plum: #5b466b;
  --v16-plum-dark: #382d40;
  --v16-lavender: #b9a5c8;
  --v16-lavender-soft: #eee7f2;
  --v16-sage: #cbdac8;
  --v16-sage-soft: #edf3ea;
  --v16-cream: #fbf5e8;
  --v16-paper: #fffdf9;
  --v16-line: rgba(36,31,39,.14);
  --v16-radius-xl: 42px;
  --v16-radius-lg: 32px;
  --v16-shadow: 0 24px 60px rgba(42,31,49,.13);
}

body {
  color: var(--v16-ink);
  background: var(--v16-paper);
}

.container {
  width: min(1240px, calc(100% - 40px));
}

/* Encabezado más directo y despejado */
.demo-bar {
  min-height: 28px;
  padding: 5px 20px;
  background: var(--v16-plum-dark);
  color: rgba(255,255,255,.78);
}

.site-header {
  background: rgba(255,253,249,.95);
  border-bottom-color: rgba(36,31,39,.08);
  box-shadow: 0 6px 24px rgba(42,31,49,.045);
}

.nav-shell { height: 74px; }
.brand > img { width: 153px; }
.main-nav { gap: 28px; font-size: 13px; }
.main-nav > a::after { background: var(--v16-plum); }

.main-nav .button {
  min-height: 46px;
  padding: 12px 21px;
  border: 1px solid #2e2633;
  color: white;
  background: var(--v16-plum);
  box-shadow: 0 7px 16px rgba(57,43,65,.15);
}

.main-nav .button:hover {
  background: var(--v16-plum-dark);
  transform: translateY(-1px);
}

/* Portada: tarjeta editorial + fotografía humana */
.hero-v16 {
  min-height: 0;
  padding: 18px 0 28px;
  overflow: hidden;
  color: var(--v16-ink);
  background:
    radial-gradient(circle at 9% 100%, rgba(205,220,201,.42), transparent 28%),
    linear-gradient(135deg, #7a638c 0%, #a68fb7 100%);
}

.hero-v16::before,
.hero-v16::after { display: none; }

.hero-grid-v16 {
  min-height: 625px;
  padding-top: 0;
  padding-bottom: 0;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 14px;
  align-items: stretch;
}

.hero-copy-v16 {
  min-width: 0;
  padding: clamp(48px, 5.2vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: var(--v16-radius-xl);
  color: var(--v16-ink);
  background:
    radial-gradient(circle at 0 100%, rgba(203,218,200,.35), transparent 30%),
    var(--v16-cream);
  box-shadow: var(--v16-shadow);
}

.hero-kicker-v16 {
  color: var(--v16-plum);
  font-size: 10px;
  letter-spacing: .12em;
}

.hero-v16 h1 {
  max-width: 610px;
  margin: 24px 0 23px;
  color: var(--v16-ink);
  font-family: var(--sans);
  font-size: clamp(50px, 4.7vw, 72px);
  font-weight: 760;
  line-height: .94;
  letter-spacing: -.062em;
  text-wrap: balance;
}

.hero-v16 h1 strong {
  color: var(--v16-plum);
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.055em;
}

.hero-lead-v16 {
  max-width: 510px;
  margin: 0;
  color: rgba(36,31,39,.76);
  font-size: 15px;
  line-height: 1.62;
  text-wrap: pretty;
}

.hero-proof-v16 {
  width: 100%;
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
  color: rgba(36,31,39,.88);
  font-size: 12px;
  font-weight: 650;
}

.hero-proof-v16 li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof-v16 li > span {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #314b34;
  background: var(--v16-sage);
  font-size: 11px;
  font-weight: 900;
}

.hero-actions-v16 {
  width: 100%;
  margin: 29px 0 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-primary-v16,
.hero-secondary-v16 {
  min-height: 54px;
  padding: 7px 8px 7px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-primary-v16 {
  min-width: 218px;
  border: 1px solid #302736;
  color: white;
  background: var(--v16-plum);
  box-shadow: 0 13px 25px rgba(60,43,70,.2);
}

.hero-secondary-v16 {
  min-width: 228px;
  border: 1px solid rgba(36,31,39,.24);
  color: var(--v16-ink);
  background: rgba(255,255,255,.5);
}

.hero-primary-v16 i,
.hero-secondary-v16 i {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 16px;
  font-style: normal;
}

.hero-primary-v16 i {
  color: var(--v16-plum-dark);
  background: white;
}

.hero-secondary-v16 i {
  color: var(--v16-plum);
  background: var(--v16-lavender-soft);
}

.hero-primary-v16:hover,
.hero-secondary-v16:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(52,39,60,.16);
}

.hero-primary-v16:hover { background: var(--v16-plum-dark); }
.hero-secondary-v16:hover { background: white; }

.hero-note-v16 {
  margin: 10px 0 0 20px;
  color: rgba(36,31,39,.51);
  font-size: 9px;
}

.hero-photo-v16 {
  position: relative;
  min-width: 0;
  min-height: 625px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--v16-radius-xl);
  background: #ded6ca;
  box-shadow: var(--v16-shadow);
}

.hero-photo-v16::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(29,22,31,.28));
}

.hero-photo-v16 > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 56% center;
}

.hero-photo-v16 figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  min-height: 76px;
  padding: 12px 18px 12px 12px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 23px;
  color: white;
  background: rgba(47,36,52,.73);
  box-shadow: 0 15px 35px rgba(20,14,23,.19);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-photo-v16 figcaption > span {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}

.hero-photo-v16 figcaption img { width: 34px; height: 34px; }
.hero-photo-v16 figcaption div { display: grid; gap: 4px; }
.hero-photo-v16 figcaption b { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.hero-photo-v16 figcaption small { color: rgba(255,255,255,.69); font-size: 10px; }

.hero-online-v16 {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  color: white;
  background: rgba(47,36,52,.66);
  font-size: 10px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-online-v16 i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bad9b7;
  box-shadow: 0 0 0 4px rgba(186,217,183,.17);
}

/* Secciones más modulares, cálidas y fáciles de recorrer */
.section { padding: 104px 0; }

.section-heading.centered {
  max-width: 850px;
  margin-bottom: 48px;
}

.section-heading h2,
.process h2,
.for-you h2,
.faq h2 {
  font-family: var(--sans);
  font-weight: 740;
  line-height: 1.02;
  letter-spacing: -.047em;
}

.section-heading h2 em,
.process h2 em,
.for-you h2 em,
.faq h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

.intro {
  overflow: hidden;
  background: var(--v16-paper);
}

.intro::before { display: none; }

.pillars {
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pillar,
.pillar-featured {
  min-height: 340px;
  padding: 36px 34px 31px;
  overflow: hidden;
  border: 1px solid var(--v16-line);
  border-radius: var(--v16-radius-lg);
  background: #f7f0e4;
  box-shadow: 0 15px 35px rgba(43,34,48,.055);
}

.pillar:nth-child(2) { background: var(--v16-lavender-soft); }
.pillar:nth-child(3) { background: var(--v16-sage-soft); }
.pillar:last-child { border: 1px solid var(--v16-line); }

.pillar:hover {
  z-index: 1;
  background: white;
  box-shadow: 0 22px 45px rgba(43,34,48,.1);
}

.pillar-icon,
.pillar-featured .pillar-icon {
  margin: 34px 0 26px;
  color: var(--v16-plum);
  background: rgba(255,255,255,.72);
}

.pillar h3 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 730;
  letter-spacing: -.03em;
}

.pillar p { font-size: 13px; line-height: 1.65; }

.process {
  padding: 28px 0;
  color: var(--v16-ink);
  background: var(--v16-paper);
}

.process::after { display: none; }

.process-grid {
  padding: 72px;
  gap: 90px;
  overflow: hidden;
  border-radius: var(--v16-radius-xl);
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(185,165,200,.26), transparent 31%),
    var(--v16-plum-dark);
  box-shadow: var(--v16-shadow);
}

.process-copy > p { font-size: 14px; line-height: 1.7; }
.process h2 em { color: #d9cae3; }
.steps li { border-bottom-color: rgba(255,255,255,.14); }
.steps h3 { font-family: var(--sans); font-size: 18px; font-weight: 720; }

.for-you {
  background: var(--v16-sage-soft);
}

.for-you::after { opacity: .38; }

.for-you-grid { gap: 70px; }

.for-you-art {
  height: 470px;
  border: 1px solid rgba(36,31,39,.1);
  border-radius: var(--v16-radius-xl);
  background: linear-gradient(145deg, #b7c9b4, #dce7d8);
  box-shadow: 0 20px 45px rgba(50,68,49,.09);
}

.quote-card {
  left: 28px;
  right: 28px;
  bottom: 27px;
  border-radius: 24px;
}

.check-list li { border-bottom-color: rgba(36,31,39,.12); }

.professionals { background: var(--v16-paper); }
.professional-grid { gap: 16px; }

.professional {
  min-height: 380px;
  border-color: var(--v16-line);
  border-radius: var(--v16-radius-lg);
  background: #f8f2e7;
  box-shadow: 0 16px 38px rgba(43,34,48,.06);
}

.professional h3 {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 740;
  letter-spacing: -.035em;
}

.faq { background: var(--v16-lavender-soft); }

.faq details {
  border-color: rgba(36,31,39,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
}

.cta-section {
  background: var(--v16-plum-dark);
}

.mobile-booking-bar .button,
.cta-section .button,
.booking-panel .button {
  background: var(--v16-plum);
}

/* Tablets */
@media (max-width: 1020px) {
  .hero-grid-v16 {
    min-height: 570px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy-v16 { padding: 42px 34px; }
  .hero-v16 h1 { font-size: clamp(44px, 5.8vw, 58px); }
  .hero-actions-v16 { align-items: stretch; flex-direction: column; }
  .hero-primary-v16, .hero-secondary-v16 { width: 100%; min-width: 0; }
  .hero-photo-v16 { min-height: 570px; }
  .process-grid { padding: 58px 48px; gap: 60px; }
}

/* Celular: fotografía primero, contenido después */
@media (max-width: 620px) {
  :root {
    --mobile-gutter: 14px;
  }


  .demo-bar { min-height: 24px; padding: 5px 12px; }
  .demo-bar span { font-size: 6.5px; }
  .demo-bar p { display: none; }

  .nav-shell { height: 68px; }
  .brand > img { width: 128px; }

  .main-nav {
    top: 68px;
    border-bottom: 1px solid rgba(36,31,39,.1);
    background: rgba(255,253,249,.99);
  }

  .hero-v16 {
    min-height: 0;
    padding: 10px 0 22px;
    background: linear-gradient(155deg, #806990, #aa93b9);
  }

  .hero-grid-v16 {
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-photo-v16 {
    order: 1;
    min-height: 0;
    height: clamp(255px, 68vw, 310px);
    border-radius: 29px;
    box-shadow: 0 18px 38px rgba(39,27,45,.16);
  }

  .hero-photo-v16 > img {
    object-position: 58% 48%;
  }

  .hero-photo-v16 figcaption { display: none; }

  .hero-online-v16 {
    top: 13px;
    right: 13px;
    padding: 8px 11px;
    font-size: 8px;
  }

  .hero-copy-v16 {
    order: 2;
    min-height: 0;
    padding: 29px 22px 27px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    border-radius: 29px;
    background:
      radial-gradient(circle at 0 100%, rgba(203,218,200,.3), transparent 34%),
      var(--v16-cream);
  }

  .hero-kicker-v16 {
    display: inline-flex;
    color: var(--v16-plum);
    font-size: 7.5px;
  }

  .hero-v16 h1 {
    max-width: 100%;
    margin: 18px 0 17px;
    color: var(--v16-ink);
    font-size: clamp(39px, 11vw, 46px);
    line-height: .94;
    letter-spacing: -.06em;
  }

  .hero-v16 h1 strong { color: var(--v16-plum); }

  .hero-lead-v16 {
    max-width: 100%;
    color: rgba(36,31,39,.75);
    font-size: 13.5px;
    line-height: 1.55;
  }

  .hero-proof-v16 {
    margin-top: 22px;
    gap: 8px;
    font-size: 10.5px;
  }

  .hero-proof-v16 li > span {
    flex-basis: 19px;
    width: 19px;
    height: 19px;
    font-size: 9px;
  }

  .hero-actions-v16 {
    width: 100%;
    margin-top: 23px;
    padding: 0;
    display: grid;
    gap: 9px;
  }

  .hero-primary-v16,
  .hero-secondary-v16 {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-left: 18px;
    font-size: 11px;
  }

  .hero-primary-v16 i,
  .hero-secondary-v16 i {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .hero-note-v16 {
    margin: 9px auto 0;
    font-size: 8px;
  }

  .section { padding: 72px 0; }

  .section-heading.centered {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading h2,
  .process h2,
  .for-you h2,
  .faq h2 {
    font-size: 35px;
    line-height: 1.02;
  }

  .mobile-swipe-hint { display: none !important; }

  .pillars {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .pillar,
  .pillar-featured {
    min-height: 0;
    padding: 27px 24px 25px;
    border: 1px solid var(--v16-line);
    border-radius: 25px;
  }

  .pillar-icon,
  .pillar-featured .pillar-icon {
    margin: 24px 0 19px;
  }

  .process { padding: 14px 0; }

  .process-grid {
    padding: 36px 23px;
    gap: 35px;
    border-radius: 29px;
  }

  .process-copy > p { font-size: 13px; line-height: 1.65; }
  .steps { gap: 0; }
  .steps li { padding: 22px 0; }

  .for-you-grid { gap: 35px; }
  .for-you-art { height: 330px; border-radius: 29px; }

  .professional-grid { grid-template-columns: 1fr; gap: 12px; }

  .professional {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 26px;
  }

  .professional-image { min-height: 250px; }
  .professional-copy { padding: 29px 24px; }

  .faq-grid { gap: 32px; }

  .mobile-booking-bar {
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    border-color: rgba(36,31,39,.12);
    background: rgba(255,253,249,.96);
    box-shadow: 0 17px 42px rgba(35,27,39,.18);
  }
}

@media (max-width: 374px) {
  .hero-copy-v16 { padding: 25px 18px 24px; }
  .hero-v16 h1 { font-size: 37px; }

  .hero-proof-v16 { font-size: 9.7px; }
  .hero-primary-v16, .hero-secondary-v16 { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-primary-v16,
  .hero-secondary-v16,
  .pillar { transition: none; }
}

/* ===== ORIGEN HISTÓRICO: v17.css ===== */
/* ==========================================================================
   PUENTES V17 · PROPORCIÓN, COLOR Y MARCA
   Ajustes visuales sobre v16 sin alterar la turnera ni las integraciones.
   ========================================================================== */

:root {
  --v17-plum-900: #34283b;
  --v17-plum-800: #44334e;
  --v17-plum-700: #5d476a;
  --v17-lavender: #b9a4c8;
  --v17-lavender-light: #eee7f2;
  --v17-cream: #faf4e7;
  --v17-sage: #c9ddc6;
}

.container {
  width: min(1280px, calc(100% - 48px));
}

/* Marca del encabezado reconstruida para ganar presencia y legibilidad. */
.site-header {
  background: rgba(252,249,253,.96);
  border-bottom-color: rgba(52,40,59,.1);
}

.nav-shell { height: 82px; }

.site-header .brand {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark-v17 {
  flex: 0 0 52px;
  width: 52px;
  height: 43px;
  display: grid;
  place-items: center;
}

.brand-mark-v17 img {
  width: 52px;
  height: 43px;
  display: block;
  filter: drop-shadow(0 5px 10px rgba(77,58,91,.08));
}

.brand-copy-v17 {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy-v17 b {
  color: #29212f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.055em;
}

.brand-copy-v17 small {
  padding-left: 2px;
  color: #765e84;
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.main-nav { gap: 26px; }

/* Encuadre general: ambas tarjetas comparten altura, borde y alineación. */
.hero-v16 {
  padding: 16px 0 24px;
  background:
    radial-gradient(circle at 4% 100%, rgba(202,220,199,.42), transparent 27%),
    radial-gradient(circle at 96% 0, rgba(231,220,239,.32), transparent 24%),
    linear-gradient(135deg, #79628b 0%, #a58fb5 100%);
}

.hero-grid-v16 {
  min-height: 590px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 14px;
}

.hero-copy-v16,
.hero-photo-v16 {
  min-height: 590px;
  border-radius: 38px;
}

.hero-copy-v16 {
  position: relative;
  isolation: isolate;
  padding: clamp(45px, 4.5vw, 62px);
  border-color: rgba(255,255,255,.2);
  color: white;
  background:
    radial-gradient(circle at 0 100%, rgba(201,221,198,.17), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(194,171,210,.22), transparent 32%),
    linear-gradient(145deg, var(--v17-plum-900), var(--v17-plum-700));
  box-shadow: 0 26px 60px rgba(42,29,49,.2);
}

.hero-copy-v16::before,
.hero-copy-v16::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}

.hero-copy-v16::before {
  width: 330px;
  height: 330px;
  right: -225px;
  top: -185px;
}

.hero-copy-v16::after {
  width: 260px;
  height: 260px;
  left: -190px;
  bottom: -170px;
  border-color: rgba(201,221,198,.09);
}

.hero-kicker-v16 {
  color: #d8c7e4;
  font-size: 9.5px;
}

.hero-kicker-v16 > span:first-child { background: #d8c7e4; }

.hero-v16 h1 {
  max-width: 560px;
  margin: 22px 0 21px;
  color: white;
  font-size: clamp(49px, 4.15vw, 64px);
  line-height: .94;
  letter-spacing: -.06em;
}

.hero-v16 h1 strong {
  color: #ddcfe7;
}

.hero-lead-v16 {
  max-width: 500px;
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  line-height: 1.58;
}

.hero-proof-v16 {
  margin-top: 24px;
  gap: 8px;
  color: rgba(255,255,255,.88);
  font-size: 11.5px;
}

.hero-proof-v16 li > span {
  color: #314b34;
  background: var(--v17-sage);
}

.hero-actions-v16 {
  margin-top: 25px;
  gap: 11px;
}

.hero-primary-v16,
.hero-secondary-v16 {
  min-height: 52px;
  font-size: 11.5px;
}

.hero-primary-v16 {
  border-color: rgba(255,255,255,.9);
  color: var(--v17-plum-900);
  background: var(--v17-cream);
  box-shadow: 0 14px 27px rgba(19,12,22,.22);
}

.hero-primary-v16 i {
  color: white;
  background: var(--v17-plum-700);
}

.hero-primary-v16:hover {
  color: var(--v17-plum-900);
  background: white;
}

.hero-secondary-v16 {
  border-color: rgba(255,255,255,.28);
  color: white;
  background: rgba(255,255,255,.07);
}

.hero-secondary-v16 i {
  color: white;
  background: rgba(255,255,255,.12);
}

.hero-secondary-v16:hover {
  color: white;
  background: rgba(255,255,255,.13);
}

.hero-note-v16 {
  color: rgba(255,255,255,.47);
}

.hero-photo-v16 {
  border-color: rgba(255,255,255,.58);
  box-shadow: 0 26px 60px rgba(42,29,49,.2);
}

.hero-photo-v16 > img {
  object-position: 57% 49%;
  transform: scale(1.012);
}

.hero-photo-v16 figcaption {
  left: 20px;
  right: 20px;
  bottom: 19px;
}

/* El comienzo de la página deja de ser una sucesión de fondos blancos. */
.intro {
  background:
    radial-gradient(circle at 100% 0, rgba(185,164,200,.18), transparent 25%),
    #f5f0f7;
}

.intro .section-heading > p { color: rgba(36,31,39,.67); }

.pillar:first-child { background: #fbf5e9; }
.pillar:nth-child(2) { background: #e8dfee; }
.pillar:nth-child(3) { background: #e7efe4; }

@media (max-width: 1100px) {
  .site-header .brand { min-width: 186px; }
  .brand-mark-v17 { flex-basis: 44px; width: 44px; height: 37px; }
  .brand-mark-v17 img { width: 44px; height: 37px; }
  .brand-copy-v17 b { font-size: 27px; }
  .main-nav { gap: 19px; font-size: 11px; }

  .hero-grid-v16,
  .hero-copy-v16,
  .hero-photo-v16 { min-height: 560px; }

  .hero-copy-v16 { padding: 41px 34px; }
  .hero-v16 h1 { font-size: clamp(44px, 5.1vw, 57px); }
  .hero-lead-v16 { font-size: 13.5px; }
}

@media (max-width: 900px) and (min-width: 621px) {
  .hero-grid-v16 {
    grid-template-columns: 1fr;
  }

  .hero-copy-v16,
  .hero-photo-v16 { min-height: 540px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 28px); }

  .nav-shell { height: 72px; }

  .site-header .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark-v17 {
    flex-basis: 39px;
    width: 39px;
    height: 33px;
  }

  .brand-mark-v17 img { width: 39px; height: 33px; }
  .brand-copy-v17 b { font-size: 24px; }
  .brand-copy-v17 small { font-size: 5.5px; letter-spacing: .12em; }
  .main-nav { top: 72px; }

  .hero-v16 {
    padding-top: 10px;
    background:
      radial-gradient(circle at 4% 100%, rgba(202,220,199,.32), transparent 28%),
      linear-gradient(155deg, #6f5980, #9b83aa);
  }

  .hero-grid-v16 { min-height: 0; }

  .hero-photo-v16 {
    min-height: 0;
    height: clamp(250px, 67vw, 305px);
    border-radius: 27px;
  }

  .hero-copy-v16 {
    min-height: 0;
    padding: 30px 22px 28px;
    border-radius: 27px;
    text-align: left;
  }

  .hero-kicker-v16 {
    display: inline-flex;
    color: #dacbe5;
    font-size: 7px;
  }

  .hero-v16 h1 {
    margin: 18px 0 17px;
    color: white;
    font-size: clamp(38px, 10.7vw, 45px);
    line-height: .94;
  }

  .hero-v16 h1 strong { color: #ddcfe7; }

  .hero-lead-v16 {
    color: rgba(255,255,255,.71);
    font-size: 13px;
    line-height: 1.52;
  }

  .hero-proof-v16 {
    color: rgba(255,255,255,.87);
    font-size: 10px;
  }

  .hero-actions-v16 { margin-top: 22px; }

  .hero-primary-v16,
  .hero-secondary-v16 {
    min-height: 52px;
    font-size: 10.5px;
  }

  .hero-note-v16 { color: rgba(255,255,255,.46); }

  .intro { background: #f4eef7; }
}

@media (max-width: 374px) {
  .brand-copy-v17 b { font-size: 22px; }
  .brand-copy-v17 small { display: none; }
  .hero-copy-v16 { padding: 27px 18px 25px; }
  .hero-v16 h1 { font-size: 36px; }
}

/* ===== ORIGEN HISTÓRICO: v18.css ===== */
/* Puentes v18 · estados de reserva y terminaciones técnicas */
.demo-outcome {
  display: grid;
  gap: 7px;
  padding: 17px 18px;
  margin-top: 14px;
  border: 1px dashed rgba(95, 71, 113, .28);
  border-radius: 16px;
  color: #4f3c5b;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #faf7fb;
}

.demo-outcome select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #ded5e3;
  border-radius: 12px;
  padding: 0 13px;
  background: #fff;
  color: #2b2230;
  font: 700 .95rem/1.2 var(--font-sans, Arial, sans-serif);
  letter-spacing: 0;
  text-transform: none;
}

.demo-outcome small {
  color: #7a707d;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.demo-outcome.hidden { display: none; }
.result-step .success-mark { transition: background .2s ease, color .2s ease; }
.result-step [hidden] { display: none !important; }

@media (max-width: 640px) {
  .demo-outcome { padding: 14px; }
}

/* ===== ORIGEN HISTÓRICO: v19.css ===== */
/* ==========================================================================
   PUENTES V19 · PORTADA MÓVIL INTEGRADA
   En escritorio se conserva intacta la composición de v18.
   ========================================================================== */

@media (max-width: 620px) {
  .hero-v16 {
    padding: 10px 0 22px;
  }

  /* El texto y la fotografía forman una única pieza, sin separación visual. */
  .hero-grid-v16 {
    gap: 0;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 31px;
    background: #392c41;
    box-shadow: 0 24px 50px rgba(40, 27, 47, .23);
  }

  .hero-copy-v16 {
    order: 1;
    padding: 31px 23px 27px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 100% 0, rgba(192, 165, 210, .20), transparent 35%),
      radial-gradient(circle at 0 100%, rgba(199, 220, 196, .13), transparent 32%),
      linear-gradient(145deg, #34283b 0%, #584265 100%);
    box-shadow: none;
  }

  .hero-photo-v16 {
    order: 2;
    height: clamp(250px, 66vw, 310px);
    margin-top: -1px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-radius: 0;
    box-shadow: none;
  }

  .hero-photo-v16::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 0 auto;
    height: 42px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(52, 40, 59, .24), transparent);
  }

  .hero-photo-v16 > img {
    object-position: 58% 46%;
    transform: scale(1.018);
  }

  .hero-online-v16 {
    top: 15px;
    right: 15px;
    border-color: rgba(255, 255, 255, .52);
    background: rgba(48, 36, 54, .72);
    box-shadow: 0 9px 22px rgba(29, 20, 34, .14);
  }

  .hero-copy-v16::before {
    width: 210px;
    height: 210px;
    top: -142px;
    right: -132px;
  }

  .hero-copy-v16::after {
    width: 170px;
    height: 170px;
    left: -122px;
    bottom: -110px;
  }
}

@media (max-width: 374px) {
  .hero-grid-v16 { border-radius: 27px; }
  .hero-copy-v16 { padding: 27px 19px 24px; }
  .hero-photo-v16 { height: 238px; }
}

/* ===== ORIGEN HISTÓRICO: v20.css ===== */
/* ==========================================================================
   PUENTES V20 · EDITORIAL HUMANO + CLARIDAD PROFESIONAL
   Capa final sobre v19. Preserva turnera e integraciones y refina la landing.
   ========================================================================== */

:root {
  --v20-ink: #241e28;
  --v20-plum-950: #2f2435;
  --v20-plum-900: #382b40;
  --v20-plum-800: #493653;
  --v20-plum-700: #604970;
  --v20-lavender: #bda9cc;
  --v20-lavender-soft: #eee7f2;
  --v20-sage: #c9ddc6;
  --v20-sage-soft: #edf4ea;
  --v20-cream: #faf4e8;
  --v20-paper: #fffdf9;
  --v20-muted: #706876;
  --v20-line: rgba(49, 37, 56, .13);
  --v20-shadow-sm: 0 14px 34px rgba(44, 31, 50, .08);
  --v20-shadow-md: 0 24px 58px rgba(43, 29, 50, .14);
  --v20-shadow-lg: 0 34px 82px rgba(39, 25, 47, .2);
  --v20-radius-sm: 20px;
  --v20-radius-md: 30px;
  --v20-radius-lg: 40px;
}

.puentes-v20 {
  color: var(--v20-ink);
  background: var(--v20-paper);
}

.puentes-v20 .container {
  width: min(1280px, calc(100% - 48px));
}

.puentes-v20 .demo-bar {
  min-height: 30px;
  padding: 6px 20px;
  gap: 15px;
  background: var(--v20-plum-950);
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
}

.puentes-v20 .demo-bar span {
  color: #fff;
  font-size: 9px;
  letter-spacing: .18em;
}

/* Encabezado */
.puentes-v20 .site-header {
  background: rgba(255, 253, 249, .93);
  border-bottom: 1px solid rgba(48, 36, 55, .08);
  box-shadow: 0 8px 28px rgba(47, 34, 54, .045);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.puentes-v20 .nav-shell { height: 80px; }

.puentes-v20 .site-header .brand {
  min-width: 228px;
  gap: 12px;
}

.puentes-v20 .brand-mark-v17,
.puentes-v20 .brand-mark-v17 img {
  width: 54px;
  height: 45px;
}

.puentes-v20 .brand-copy-v17 b {
  color: var(--v20-ink);
  font-size: 32px;
  letter-spacing: -.052em;
}

.puentes-v20 .brand-copy-v17 small {
  color: #775f84;
  font-size: 7px;
  letter-spacing: .17em;
}

.puentes-v20 .main-nav {
  gap: 25px;
  color: #504753;
  font-size: 13px;
}

.puentes-v20 .main-nav > a.active,
.puentes-v20 .main-nav > a:hover { color: var(--v20-plum-700); }

.puentes-v20 .main-nav .button {
  min-height: 48px;
  min-width: 178px;
  padding-inline: 22px;
  border: 1px solid var(--v20-plum-950);
  background: var(--v20-plum-700);
  box-shadow: 0 10px 24px rgba(60, 43, 70, .16);
  white-space: nowrap;
}

/* Portada */
.puentes-v20 .hero-v16 {
  padding: 18px 0 26px;
  background:
    radial-gradient(circle at 6% 100%, rgba(201, 222, 198, .42), transparent 26%),
    radial-gradient(circle at 95% 5%, rgba(231, 218, 240, .36), transparent 25%),
    linear-gradient(135deg, #765f87 0%, #a18bb1 100%);
}

.puentes-v20 .hero-grid-v16 {
  min-height: 604px;
  grid-template-columns: minmax(0, 1.01fr) minmax(0, .99fr);
  gap: 14px;
}

.puentes-v20 .hero-copy-v16,
.puentes-v20 .hero-photo-v16 {
  min-height: 604px;
  border-radius: var(--v20-radius-lg);
}

.puentes-v20 .hero-copy-v16 {
  padding: clamp(48px, 4.45vw, 64px);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 100% 0, rgba(197, 174, 213, .22), transparent 33%),
    radial-gradient(circle at 0 100%, rgba(197, 220, 194, .16), transparent 34%),
    linear-gradient(145deg, var(--v20-plum-950), var(--v20-plum-700));
  box-shadow: var(--v20-shadow-lg);
}

.puentes-v20 .hero-copy-v16::before {
  width: 360px;
  height: 360px;
  top: -210px;
  right: -245px;
  border-color: rgba(255, 255, 255, .075);
}

.puentes-v20 .hero-copy-v16::after {
  width: 280px;
  height: 280px;
  left: -190px;
  bottom: -185px;
}

.puentes-v20 .hero-kicker-v16 {
  color: #dbcce5;
  font-size: 10px;
  letter-spacing: .15em;
}

.puentes-v20 .hero-v16 h1 {
  max-width: 585px;
  margin: 24px 0 24px;
  color: #fff;
  font-size: clamp(51px, 4.2vw, 66px);
  line-height: .94;
  letter-spacing: -.062em;
}

.puentes-v20 .hero-v16 h1 strong { color: #e0d2e9; }

.puentes-v20 .hero-lead-v16 {
  max-width: 510px;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.62;
}

.puentes-v20 .hero-actions-v16 {
  margin-top: 31px;
  gap: 11px;
}

.puentes-v20 .hero-primary-v16,
.puentes-v20 .hero-secondary-v16 {
  min-width: 0;
  min-height: 56px;
  padding: 8px 8px 8px 21px;
  flex: 1 1 0;
  border-radius: 999px;
  font-size: 13px;
}

.puentes-v20 .hero-primary-v16 {
  border-color: rgba(255, 255, 255, .92);
  color: var(--v20-plum-900);
  background: var(--v20-paper);
  box-shadow: 0 17px 34px rgba(20, 13, 25, .22);
}

.puentes-v20 .hero-secondary-v16 {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  background: rgba(255, 255, 255, .065);
}

.puentes-v20 .hero-primary-v16 i,
.puentes-v20 .hero-secondary-v16 i {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
}

.puentes-v20 .hero-primary-v16 i {
  color: #fff;
  background: var(--v20-plum-700);
}

.puentes-v20 .hero-secondary-v16 i {
  color: var(--v20-plum-900);
  background: #fff;
}

.puentes-v20 .hero-primary-v16:hover {
  color: var(--v20-plum-900);
  background: #fff;
}

.puentes-v20 .hero-secondary-v16:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.puentes-v20 .hero-note-v16 {
  margin: 12px 0 0 20px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.puentes-v20 .hero-photo-v16 {
  border-color: rgba(255, 255, 255, .45);
  box-shadow: var(--v20-shadow-lg);
}

.puentes-v20 .hero-photo-v16 > img {
  object-position: 57% 48%;
  transition: transform .7s cubic-bezier(.2, .75, .25, 1);
}

.puentes-v20 .hero-photo-v16:hover > img { transform: scale(1.018); }

.puentes-v20 .hero-photo-v16 figcaption {
  left: 22px;
  right: 22px;
  bottom: 22px;
  min-height: 78px;
  border-radius: 24px;
  background: rgba(44, 32, 49, .76);
}

.puentes-v20 .hero-photo-v16 figcaption b { font-size: 21px; }
.puentes-v20 .hero-photo-v16 figcaption small { font-size: 11px; }

/* Certezas del servicio */
.puentes-v20 .trust-strip-v20 {
  position: relative;
  z-index: 4;
  padding: 0 0 72px;
  background: var(--v20-paper);
}

.puentes-v20 .trust-grid-v20 {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--v20-line);
  border-radius: var(--v20-radius-md);
  background: rgba(255, 253, 249, .98);
  box-shadow: var(--v20-shadow-md);
  transform: translateY(-20px);
  margin-bottom: -20px;
}

.puentes-v20 .trust-grid-v20 > div {
  padding: 24px 29px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--v20-line);
}

.puentes-v20 .trust-grid-v20 > div:last-child { border-right: 0; }

.puentes-v20 .trust-grid-v20 > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--v20-plum-700);
  background: var(--v20-lavender-soft);
  font-size: 10px;
  font-weight: 800;
}

.puentes-v20 .trust-grid-v20 p,
.puentes-v20 .trust-grid-v20 b,
.puentes-v20 .trust-grid-v20 small { display: block; }
.puentes-v20 .trust-grid-v20 p { margin: 0; }
.puentes-v20 .trust-grid-v20 b { font-size: 14px; }
.puentes-v20 .trust-grid-v20 small { margin-top: 4px; color: var(--v20-muted); font-size: 12px; }

/* Ritmo editorial de secciones */
.puentes-v20 .section { padding: 96px 0; }

.puentes-v20 .section-heading.centered {
  max-width: 880px;
  margin-bottom: 50px;
}

.puentes-v20 .section-heading h2,
.puentes-v20 .process h2,
.puentes-v20 .for-you h2,
.puentes-v20 .faq h2 {
  margin: 18px 0;
  font-size: clamp(43px, 4.2vw, 61px);
  line-height: 1;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.puentes-v20 .section-heading > p,
.puentes-v20 .section-heading.centered > p {
  max-width: 690px;
  color: var(--v20-muted);
  font-size: 16px;
  line-height: 1.72;
}

.puentes-v20 .eyebrow {
  color: var(--v20-plum-700);
  font-size: 10px;
}

.puentes-v20 .intro {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 5%, rgba(237, 228, 242, .8), transparent 26%),
    var(--v20-paper);
}

.puentes-v20 .pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.puentes-v20 .pillar,
.puentes-v20 .pillar-featured,
.puentes-v20 .pillar:last-child {
  min-height: 330px;
  padding: 34px 34px 31px;
  border: 1px solid var(--v20-line);
  border-radius: var(--v20-radius-md);
  background: var(--v20-cream);
  box-shadow: var(--v20-shadow-sm);
}

.puentes-v20 .pillar:nth-child(2) { background: var(--v20-lavender-soft); }

.puentes-v20 .pillar-joint-v20 {
  min-height: 230px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 82px minmax(180px, .65fr) minmax(280px, 1fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  column-gap: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(197, 174, 213, .2), transparent 30%),
    linear-gradient(140deg, var(--v20-plum-950), var(--v20-plum-700));
  box-shadow: var(--v20-shadow-md);
}

.puentes-v20 .pillar-joint-v20 .fine-line {
  display: none;
}

.puentes-v20 .pillar-joint-v20 .pillar-number {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .54);
}

.puentes-v20 .pillar-joint-v20 .pillar-icon {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  background: rgba(255, 255, 255, .1);
}

.puentes-v20 .pillar-joint-v20 h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: #fff;
  font-size: 31px;
}

.puentes-v20 .pillar-joint-v20 p {
  grid-column: 3;
  grid-row: 2;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.65;
}

.puentes-v20 .pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(43, 31, 48, .11);
}

.puentes-v20 .pillar-icon {
  width: 64px;
  height: 64px;
  margin: 31px 0 24px;
  color: var(--v20-plum-700);
  background: rgba(255, 255, 255, .76);
}

.puentes-v20 .pillar-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.puentes-v20 .pillar-mark-v20 img { width: 43px; height: 34px; }

.puentes-v20 .pillar h3 {
  color: var(--v20-ink);
  font-size: 27px;
}

.puentes-v20 .pillar p {
  max-width: 480px;
  color: var(--v20-muted);
  font-size: 15px;
  line-height: 1.66;
}

/* Proceso */
.puentes-v20 .process {
  padding: 20px 0;
  background: var(--v20-paper);
}

.puentes-v20 .process-grid {
  padding: 74px;
  gap: 86px;
  border-radius: var(--v20-radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(192, 167, 209, .25), transparent 30%),
    radial-gradient(circle at 0 100%, rgba(198, 221, 195, .11), transparent 27%),
    var(--v20-plum-950);
  box-shadow: var(--v20-shadow-md);
}

.puentes-v20 .process-copy > p {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.72;
}

.puentes-v20 .process-copy .button {
  min-height: 54px;
  padding-inline: 24px;
}

.puentes-v20 .steps { border-top-color: rgba(255, 255, 255, .14); }

.puentes-v20 .steps li {
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom-color: rgba(255, 255, 255, .14);
}

.puentes-v20 .step-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  font-size: 11px;
}

.puentes-v20 .steps h3 { font-size: 20px; }
.puentes-v20 .steps p { color: rgba(255, 255, 255, .66); font-size: 13px; line-height: 1.65; }

/* Para quién */
.puentes-v20 .for-you {
  background:
    radial-gradient(circle at 5% 100%, rgba(198, 219, 195, .38), transparent 28%),
    var(--v20-sage-soft);
}

.puentes-v20 .for-you-grid { gap: 76px; }

.puentes-v20 .for-you-board-v20 {
  height: 500px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--v20-radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(192, 166, 210, .2), transparent 32%),
    linear-gradient(145deg, var(--v20-plum-950), var(--v20-plum-700));
  box-shadow: var(--v20-shadow-md);
}

.puentes-v20 .for-you-board-v20::before,
.puentes-v20 .for-you-board-v20::after {
  display: none;
}

.puentes-v20 .board-heading-v20 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.puentes-v20 .board-heading-v20 img { width: 42px; height: 34px; }

.puentes-v20 .board-flow-v20 {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.puentes-v20 .board-flow-v20 article {
  min-height: 72px;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 41px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 19px;
  background: rgba(255, 255, 255, .065);
}

.puentes-v20 .board-flow-v20 article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #d9cbe4;
  background: rgba(255, 255, 255, .08);
  font-size: 9px;
  font-weight: 800;
}

.puentes-v20 .board-flow-v20 article div,
.puentes-v20 .board-flow-v20 b,
.puentes-v20 .board-flow-v20 small { display: block; }
.puentes-v20 .board-flow-v20 b { color: #fff; font-size: 16px; }
.puentes-v20 .board-flow-v20 small { margin-top: 3px; color: rgba(255, 255, 255, .62); font-size: 11px; }

.puentes-v20 .for-you-board-v20 .quote-card {
  position: static;
  margin-top: auto;
  padding: 18px 20px;
  border: 1px solid rgba(201, 221, 198, .18);
  border-radius: 20px;
  color: #fff;
  background: rgba(201, 221, 198, .1);
  font-size: 18px;
  line-height: 1.35;
}

.puentes-v20 .check-list li {
  color: #554d58;
  font-size: 14px;
  line-height: 1.5;
}

.puentes-v20 .for-you .text-link.dark {
  min-height: 51px;
  padding: 13px 21px;
  border: 1px solid var(--v20-plum-700);
  border-radius: 999px;
  color: #fff;
  background: var(--v20-plum-700);
  box-shadow: 0 12px 26px rgba(75, 54, 86, .16);
}

/* Profesionales */
.puentes-v20 .professionals { background: var(--v20-paper); }

.puentes-v20 .professional-grid { gap: 18px; }

.puentes-v20 .professional {
  min-height: 345px;
  grid-template-columns: minmax(190px, .72fr) 1.28fr;
  border: 1px solid var(--v20-line);
  border-radius: var(--v20-radius-md);
  background: var(--v20-cream);
  box-shadow: var(--v20-shadow-sm);
}

.puentes-v20 .professional-image { min-height: 345px; }

.puentes-v20 .professional-copy { padding: 41px 36px; }
.puentes-v20 .professional-copy .role { font-size: 9px; letter-spacing: .16em; }
.puentes-v20 .professional h3 { font-size: 29px; }
.puentes-v20 .professional-copy p { color: var(--v20-muted); font-size: 14px; line-height: 1.7; }
.puentes-v20 .pending { color: #8b828e; font-size: 9px; }
.puentes-v20 .disclaimer { font-size: 11px; line-height: 1.55; }

/* Preguntas y cierre */
.puentes-v20 .faq {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, .8), transparent 27%),
    var(--v20-lavender-soft);
}

.puentes-v20 .faq-grid { gap: 70px; }
.puentes-v20 .faq-intro > p { color: var(--v20-muted); font-size: 15px; line-height: 1.7; }

.puentes-v20 .contact-pending-v20 {
  margin-top: 20px;
  padding: 10px 13px;
  display: inline-flex;
  border: 1px solid rgba(73, 53, 84, .12);
  border-radius: 999px;
  color: #756c78;
  background: rgba(255, 255, 255, .48);
  font-size: 11px;
}

.puentes-v20 .faq details {
  border: 1px solid rgba(49, 37, 56, .11);
  border-radius: 19px;
  background: rgba(255, 255, 255, .64);
}

.puentes-v20 .accordion summary { font-size: 18px; }
.puentes-v20 .accordion details p { color: var(--v20-muted); font-size: 14px; line-height: 1.65; }

.puentes-v20 .faq-demo-note-v20 {
  grid-column: 2;
  margin: -46px 0 0;
  color: #776e7a;
  font-size: 11px;
  line-height: 1.5;
}

.puentes-v20 .cta-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 90% 0, rgba(195, 171, 212, .22), transparent 30%),
    var(--v20-plum-950);
}

.puentes-v20 .cta-inner h2 { font-size: clamp(41px, 4.5vw, 64px); }
.puentes-v20 .cta-inner p { font-size: 15px; }
.puentes-v20 .cta-inner .button { min-height: 56px; padding-inline: 25px; }

.puentes-v20 .footer { background: #251d2a; }
.puentes-v20 .footer-grid a,
.puentes-v20 .footer-grid span { font-size: 12px; }

/* Turnera: progreso legible, foco y controles más claros */
.puentes-v20 .booking-panel {
  width: min(760px, 100%);
  background:
    radial-gradient(circle at 100% 0, rgba(236, 226, 242, .72), transparent 26%),
    var(--v20-paper);
}

.puentes-v20 .booking-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.puentes-v20 .booking-progress span {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #918894;
  background: transparent;
}

.puentes-v20 .booking-progress span i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75, 55, 87, .15);
  border-radius: 50%;
  background: #fff;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.puentes-v20 .booking-progress span small { font-size: 10px; font-weight: 700; }
.puentes-v20 .booking-progress span.active { color: var(--v20-plum-700); background: transparent; }
.puentes-v20 .booking-progress span.active i { color: #fff; border-color: var(--v20-plum-700); background: var(--v20-plum-700); }

.puentes-v20 .step-question:focus { outline: none; }
.puentes-v20 .form-grid label { font-size: 12px; }
.puentes-v20 .form-grid input,
.puentes-v20 .form-grid select { font-size: 14px; }
.puentes-v20 .consent { font-size: 12px; line-height: 1.55; }

/* Tablet */
@media (max-width: 1020px) {
  .puentes-v20 .main-nav { gap: 18px; font-size: 12px; }
  .puentes-v20 .hero-copy-v16 { padding: 42px 36px; }
  .puentes-v20 .hero-v16 h1 { font-size: clamp(45px, 5.5vw, 57px); }
  .puentes-v20 .hero-lead-v16 { font-size: 14px; }
  .puentes-v20 .hero-primary-v16,
  .puentes-v20 .hero-secondary-v16 { font-size: 11.5px; }
  .puentes-v20 .process-grid { padding: 58px 48px; gap: 54px; }
}

@media (max-width: 900px) and (min-width: 621px) {
  .puentes-v20 .hero-grid-v16 {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .puentes-v20 .hero-copy-v16,
  .puentes-v20 .hero-photo-v16 { min-height: 0; }
  .puentes-v20 .hero-photo-v16 { height: 440px; }
  .puentes-v20 .hero-v16 h1 { max-width: 670px; font-size: 60px; }
  .puentes-v20 .hero-lead-v16 { max-width: 620px; font-size: 16px; }
  .puentes-v20 .hero-actions-v16 { max-width: 600px; flex-direction: row; }
  .puentes-v20 .trust-grid-v20 > div { padding: 21px 17px; grid-template-columns: 35px 1fr; gap: 10px; }
  .puentes-v20 .trust-grid-v20 > div > span { width: 35px; height: 35px; }
  .puentes-v20 .trust-grid-v20 b { font-size: 12px; }
  .puentes-v20 .trust-grid-v20 small { font-size: 10px; }
  .puentes-v20 .pillar-joint-v20 { grid-template-columns: 72px .7fr 1fr; }
}

/* Celular */
@media (max-width: 620px) {
  .puentes-v20 .container { width: calc(100% - 24px); }

  .puentes-v20 .demo-bar {
    min-height: 25px;
    padding: 5px 12px;
  }
  .puentes-v20 .demo-bar span { font-size: 7px; }

  .puentes-v20 .nav-shell { height: 70px; }
  .puentes-v20 .site-header .brand { min-width: 0; gap: 7px; }
  .puentes-v20 .brand-mark-v17,
  .puentes-v20 .brand-mark-v17 img { width: 38px; height: 31px; }
  .puentes-v20 .brand-copy-v17 b { font-size: 24px; }
  .puentes-v20 .brand-copy-v17 small { font-size: 5.5px; }

  .puentes-v20 .menu-button {
    width: 46px;
    height: 46px;
    padding: 7px;
    border: 1px solid rgba(48, 36, 55, .1);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 9px 22px rgba(45, 33, 51, .08);
  }

  .puentes-v20 .main-nav { top: 70px; }

  .puentes-v20 .hero-v16 {
    padding: 9px 0 15px;
    background:
      radial-gradient(circle at 100% 0, rgba(232, 219, 240, .25), transparent 27%),
      linear-gradient(155deg, #765f87, #a18ab1);
  }

  .puentes-v20 .hero-grid-v16 {
    min-height: 0;
    gap: 0;
    border-radius: 31px;
  }

  .puentes-v20 .hero-copy-v16 {
    min-height: 0;
    padding: 29px 23px 26px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .puentes-v20 .hero-kicker-v16 {
    font-size: 8px;
    letter-spacing: .14em;
  }

  .puentes-v20 .hero-v16 h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 10.75vw, 43px);
    line-height: .94;
  }

  .puentes-v20 .hero-lead-v16 {
    max-width: 330px;
    color: rgba(255, 255, 255, .77);
    font-size: 15px;
    line-height: 1.58;
  }

  .puentes-v20 .hero-actions-v16 {
    margin-top: 24px;
    display: block;
  }

  .puentes-v20 .hero-primary-v16 {
    width: 100%;
    min-height: 56px;
    padding-left: 21px;
    font-size: 13px;
  }

  .puentes-v20 .hero-secondary-v16 { display: none; }

  .puentes-v20 .hero-note-v16 {
    margin: 10px 0 0;
    width: 100%;
    text-align: center;
    font-size: 10px;
  }

  .puentes-v20 .hero-photo-v16 {
    height: clamp(225px, 64vw, 270px);
    min-height: 0;
    border-radius: 0;
  }

  .puentes-v20 .hero-photo-v16 > img {
    object-position: 58% 47%;
    transform: none;
  }

  .puentes-v20 .hero-photo-v16:hover > img { transform: none; }

  .puentes-v20 .hero-online-v16 {
    top: 13px;
    right: 13px;
    padding: 8px 11px;
    font-size: 9px;
  }

  .puentes-v20 .trust-strip-v20 { padding-bottom: 58px; }

  .puentes-v20 .trust-grid-v20 {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 24px;
    transform: translateY(-9px);
    margin-bottom: -9px;
  }

  .puentes-v20 .trust-grid-v20 > div {
    min-height: 72px;
    padding: 13px 17px;
    grid-template-columns: 38px 1fr;
    gap: 13px;
    border-right: 0;
    border-bottom: 1px solid var(--v20-line);
  }

  .puentes-v20 .trust-grid-v20 > div:last-child { border-bottom: 0; }
  .puentes-v20 .trust-grid-v20 > div > span { width: 38px; height: 38px; }
  .puentes-v20 .trust-grid-v20 b { font-size: 13px; }
  .puentes-v20 .trust-grid-v20 small { font-size: 11px; }

  .puentes-v20 .section { padding: 68px 0; }
  .puentes-v20 .section-heading.centered { margin-bottom: 31px; text-align: left; }

  .puentes-v20 .section-heading h2,
  .puentes-v20 .process h2,
  .puentes-v20 .for-you h2,
  .puentes-v20 .faq h2 {
    margin: 14px 0 16px;
    font-size: clamp(36px, 10.4vw, 42px);
    line-height: 1.01;
    letter-spacing: -.047em;
  }

  .puentes-v20 .section-heading > p,
  .puentes-v20 .section-heading.centered > p,
  .puentes-v20 .process-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .puentes-v20 .eyebrow { font-size: 8px; }

  .puentes-v20 .pillars { grid-template-columns: 1fr; gap: 11px; }

  .puentes-v20 .pillar,
  .puentes-v20 .pillar-featured,
  .puentes-v20 .pillar:last-child {
    min-height: 0;
    padding: 24px 21px;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 15px;
    border-radius: 23px;
  }

  .puentes-v20 .pillar-number { margin-bottom: 8px; }

  .puentes-v20 .pillar-icon {
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .puentes-v20 .pillar-icon svg { width: 28px; height: 28px; }
  .puentes-v20 .pillar h3 { font-size: 24px; }
  .puentes-v20 .pillar p { font-size: 13px; line-height: 1.58; }

  .puentes-v20 .pillar-joint-v20 {
    grid-column: auto;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    color: #fff;
  }

  .puentes-v20 .pillar-joint-v20 .pillar-number { grid-column: 1 / -1; grid-row: 1; }
  .puentes-v20 .pillar-joint-v20 .pillar-icon { grid-column: 1; grid-row: 2 / 4; }
  .puentes-v20 .pillar-joint-v20 h3 { grid-column: 2; grid-row: 2; font-size: 24px; }
  .puentes-v20 .pillar-joint-v20 p { grid-column: 2; grid-row: 3; margin-top: 3px; font-size: 13px; }

  .puentes-v20 .process { padding: 10px 0; }
  .puentes-v20 .process-grid { padding: 34px 22px; gap: 30px; border-radius: 28px; }
  .puentes-v20 .process-copy .button { width: 100%; justify-content: space-between; }
  .puentes-v20 .steps { margin-top: 0; }
  .puentes-v20 .steps li { padding: 17px 0; grid-template-columns: 40px 1fr; gap: 11px; }
  .puentes-v20 .steps h3 { font-size: 19px; }
  .puentes-v20 .steps p { font-size: 12.5px; }

  .puentes-v20 .for-you-grid { gap: 32px; }
  .puentes-v20 .for-you-copy { order: 1; }
  .puentes-v20 .for-you-board-v20 {
    order: 2;
    height: auto;
    min-height: 430px;
    padding: 21px;
    border-radius: 27px;
  }

  .puentes-v20 .board-flow-v20 article { padding: 12px 13px; }
  .puentes-v20 .board-flow-v20 b { font-size: 15px; }
  .puentes-v20 .board-flow-v20 small { font-size: 10.5px; }
  .puentes-v20 .for-you-board-v20 .quote-card { margin-top: 16px; font-size: 16px; }
  .puentes-v20 .check-list li { font-size: 13px; }
  .puentes-v20 .for-you .text-link.dark { width: 100%; justify-content: space-between; font-size: 13px; }

  .puentes-v20 .professional {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 24px;
  }

  .puentes-v20 .professional-image { min-height: 180px; }
  .puentes-v20 .professional-copy { padding: 25px 22px; }
  .puentes-v20 .professional-copy p { font-size: 13px; }
  .puentes-v20 .pending { font-size: 9px; line-height: 1.5; }
  .puentes-v20 .disclaimer { font-size: 10px; }

  .puentes-v20 .faq-grid { gap: 29px; }
  .puentes-v20 .faq-intro { margin-bottom: 0; }
  .puentes-v20 .faq-intro > p { font-size: 14px; }
  .puentes-v20 .contact-pending-v20 { font-size: 10px; }
  .puentes-v20 .accordion summary { min-height: 60px; font-size: 17px; }
  .puentes-v20 .accordion details p { margin-inline: 17px 43px; font-size: 13px; }
  .puentes-v20 .faq-demo-note-v20 { grid-column: auto; margin: -10px 0 0; font-size: 10px; }

  .puentes-v20 .cta-section { padding: 58px 0; }
  .puentes-v20 .cta-inner h2 { font-size: 38px; }
  .puentes-v20 .cta-inner p { font-size: 14px; }
  .puentes-v20 .cta-inner .button { width: 100%; justify-content: space-between; }

  .puentes-v20 .footer-grid a,
  .puentes-v20 .footer-grid span { font-size: 11px; }

  .puentes-v20 .mobile-booking-bar {
    left: 10px;
    right: 10px;
    bottom: max(9px, env(safe-area-inset-bottom));
    min-height: 66px;
    padding: 8px 8px 8px 15px;
    border-radius: 21px;
    border-color: rgba(255, 255, 255, .1);
    color: #fff;
    background: rgba(47, 36, 53, .96);
    box-shadow: 0 22px 52px rgba(26, 17, 31, .34);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .puentes-v20 .mobile-booking-bar div span { font-size: 13px; }
  .puentes-v20 .mobile-booking-bar div small { color: rgba(255, 255, 255, .58); font-size: 8px; }
  .puentes-v20 .mobile-booking-bar .button { min-height: 49px; color: var(--v20-plum-900); background: #fff; font-size: 11px; }

  .puentes-v20 .booking-panel {
    width: 100%;
    padding: calc(69px + env(safe-area-inset-top)) 16px calc(30px + env(safe-area-inset-bottom));
  }

  .puentes-v20 .booking-head {
    margin-bottom: 23px;
    display: grid;
    gap: 17px;
  }

  .puentes-v20 .booking-head h2 { padding-right: 46px; font-size: 32px; }

  .puentes-v20 .booking-progress {
    display: flex !important;
    width: 100%;
    gap: 5px;
  }

  .puentes-v20 .booking-progress span {
    min-width: 0;
    flex: 1 1 0;
    gap: 5px;
  }

  .puentes-v20 .booking-progress span i { width: 23px; height: 23px; font-size: 8px; }
  .puentes-v20 .booking-progress span small { font-size: 9px; }
  .puentes-v20 .step-question { font-size: 20px; }
  .puentes-v20 .booking-lead-notice p { font-size: 11px; }
  .puentes-v20 .form-grid label { font-size: 12px; }
  .puentes-v20 .form-grid input,
  .puentes-v20 .form-grid select { min-height: 50px; font-size: 16px; }
  .puentes-v20 .consent { font-size: 12px; }
}

@media (max-width: 374px) {
  .puentes-v20 .hero-copy-v16 { padding: 26px 19px 23px; }
  .puentes-v20 .hero-v16 h1 { font-size: 36px; }
  .puentes-v20 .hero-lead-v16 { font-size: 14px; }
  .puentes-v20 .hero-photo-v16 { height: 220px; }
  .puentes-v20 .trust-grid-v20 > div { padding-inline: 14px; }
  .puentes-v20 .booking-progress span small { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .puentes-v20 .hero-photo-v16 > img,
  .puentes-v20 .pillar { transition: none; }
}

/* ===== ORIGEN HISTÓRICO: v21.css ===== */
/*
 * Puentes v21 — terminación conservadora sobre v20.
 * Conserva la identidad y la composición; corrige ritmo, encuadres,
 * legibilidad, estados interactivos y comportamiento responsive.
 */

.puentes-v21 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.puentes-v21 ::selection {
  color: #fff;
  background: #654b75;
}

.puentes-v21 #enfoque,
.puentes-v21 #proceso,
.puentes-v21 #para-vos,
.puentes-v21 #nosotras,
.puentes-v21 #preguntas {
  scroll-margin-top: 104px;
}

.puentes-v21 h1,
.puentes-v21 h2,
.puentes-v21 h3 {
  text-wrap: balance;
}

.puentes-v21 p,
.puentes-v21 li,
.puentes-v21 summary {
  text-wrap: pretty;
}

/* Jerarquía y legibilidad */
.puentes-v21 .demo-bar span { font-size: 9px; }
.puentes-v21 .hero-photo-v16 figcaption small { color: rgba(255, 255, 255, .76); font-size: 12px; }
.puentes-v21 .steps p { color: rgba(255, 255, 255, .74); }
.puentes-v21 .board-flow-v20 small { color: rgba(255, 255, 255, .74); font-size: 11.5px; }
.puentes-v21 .pending { color: #746b77; font-size: 10.5px; line-height: 1.55; }
.puentes-v21 .disclaimer { color: #7e7581; font-size: 11.5px; }

/* Sombras más selectivas y radios consistentes */
.puentes-v21 .trust-grid-v20 {
  border-radius: 30px;
  box-shadow: 0 16px 38px rgba(43, 31, 48, .08);
}

.puentes-v21 .pillar,
.puentes-v21 .pillar-featured,
.puentes-v21 .pillar:last-child {
  border-radius: 30px;
  box-shadow: 0 10px 27px rgba(43, 31, 48, .055);
}

.puentes-v21 .pillar-joint-v20,
.puentes-v21 .process-grid,
.puentes-v21 .for-you-board-v20 { border-radius: 40px; }

.puentes-v21 .professional {
  border-radius: 30px;
  box-shadow: 0 10px 28px rgba(43, 31, 48, .055);
}

.puentes-v21 .professional-image { min-height: 320px; }

.puentes-v21 .faq details {
  overflow: clip;
  border-radius: 20px;
  transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.puentes-v21 .faq details[open] {
  border-color: rgba(73, 53, 84, .19);
  background: rgba(255, 255, 255, .83);
  box-shadow: 0 12px 28px rgba(48, 35, 55, .055);
}

.puentes-v21 .faq-demo-note-v20 {
  grid-column: 2;
  margin: 0;
  align-self: start;
}

/* Estados claros sin hacer que las tarjetas informativas parezcan botones */
.puentes-v21 .hero-photo-v16:hover > img,
.puentes-v21 .pillar:hover,
.puentes-v21 .professional:hover,
.puentes-v21 .professional:hover .professional-image::before,
.puentes-v21 .professional:hover .professional-image::after {
  transform: none;
}

.puentes-v21 .pillar:hover {
  box-shadow: 0 10px 27px rgba(43, 31, 48, .055);
}

.puentes-v21 .button:hover { transform: none; }

.puentes-v21 .hero-primary-v16 i,
.puentes-v21 .hero-secondary-v16 i,
.puentes-v21 .button > span:last-child,
.puentes-v21 .text-link > span:last-child {
  transition: transform .2s ease;
}

.puentes-v21 :is(.button, a, summary, input, select, .menu-button):focus-visible {
  outline: 3px solid rgba(107, 79, 124, .38);
  outline-offset: 4px;
}

.puentes-v21 .step-question:focus-visible {
  outline: 2px solid rgba(107, 79, 124, .38);
  outline-offset: 7px;
  border-radius: 4px;
}

.puentes-v21 .step-question { font-weight: 400; }

.puentes-v21 .success-step h2:focus {
  outline: 2px solid rgba(107, 79, 124, .24);
  outline-offset: 7px;
  border-radius: 10px;
}

.puentes-v21 .payment-option-pending {
  cursor: not-allowed;
  opacity: .58;
}

.puentes-v21 .payment-option-pending:hover {
  border-color: var(--line);
  background: #fff;
}

.puentes-v21 .calendar-head strong { text-transform: none; }

.puentes-v21 .booking-progress.complete span { color: #607760; }
.puentes-v21 .booking-progress.complete span i {
  color: #456245;
  border-color: #c9ddc6;
  background: #edf4ea;
}

@media (hover: hover) and (pointer: fine) {
  .puentes-v21 .button:hover { transform: translateY(-1px); }
  .puentes-v21 .hero-primary-v16:hover i,
  .puentes-v21 .hero-secondary-v16:hover i,
  .puentes-v21 .button:hover > span:last-child,
  .puentes-v21 .text-link:hover > span:last-child { transform: translateX(3px); }
  .puentes-v21 .hero-secondary-v16:hover i { transform: translateY(2px); }
}

/* El menú pasa antes a formato compacto para evitar compresión en tablet. */
@media (max-width: 1080px) {
  .puentes-v21 .menu-button {
    width: 48px;
    height: 48px;
    padding: 7px;
    display: grid;
    place-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(48, 36, 55, .1);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 9px 22px rgba(45, 33, 51, .08);
    cursor: pointer;
  }

  .puentes-v21 .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 80px);
    padding: 14px max(28px, calc((100vw - 1160px) / 2)) calc(26px + env(safe-area-inset-bottom));
    display: none;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(49, 37, 56, .12);
    background:
      radial-gradient(circle at 92% 0, rgba(232, 222, 241, .65), transparent 31%),
      rgba(255, 253, 249, .99);
    box-shadow: 0 25px 55px rgba(42, 31, 50, .15);
    backdrop-filter: blur(20px);
  }

  .puentes-v21 .main-nav.open { display: flex; }

  .puentes-v21 .main-nav > a {
    min-height: 52px;
    padding: 16px 4px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(49, 37, 56, .1);
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
  }

  .puentes-v21 .main-nav > a::after { display: none; }

  .puentes-v21 .main-nav .button {
    width: 100%;
    min-height: 53px;
    margin-top: 13px;
    font-size: 13px;
  }

  .puentes-v21.nav-open { overflow: hidden; }
}

/* Tablet */
@media (max-width: 900px) and (min-width: 621px) {
  .puentes-v21 .hero-v16 h1 { font-size: clamp(50px, 8vw, 60px); }
  .puentes-v21 .trust-strip-v20 { padding-bottom: 40px; }
  .puentes-v21 .section.intro { padding-top: 78px; }
  .puentes-v21 .faq-demo-note-v20 {
    grid-column: 1;
    margin-top: 15px;
  }
}

/* Celular */
@media (max-width: 620px) {
  .puentes-v21 #enfoque,
  .puentes-v21 #proceso,
  .puentes-v21 #para-vos,
  .puentes-v21 #nosotras,
  .puentes-v21 #preguntas { scroll-margin-top: 88px; }

  .puentes-v21 .demo-bar span { font-size: 8px; }
  .puentes-v21 .brand-copy-v17 small { font-size: 6.5px; letter-spacing: .13em; }
  .puentes-v21 .main-nav { top: 70px; max-height: calc(100dvh - 70px); }

  .puentes-v21 .hero-note-v16 { font-size: 11px; }
  .puentes-v21 .hero-photo-v16 figcaption small { font-size: 11px; }

  .puentes-v21 .trust-strip-v20 { padding-bottom: 30px; }

  .puentes-v21 .trust-grid-v20 {
    border-radius: 24px;
    box-shadow: 0 13px 30px rgba(43, 31, 48, .07);
  }

  .puentes-v21 .trust-grid-v20 > div {
    min-height: 64px;
    padding-block: 10px;
  }

  .puentes-v21 .section.intro { padding-top: 56px; }
  .puentes-v21 .eyebrow { font-size: 9px; }

  .puentes-v21 .pillar,
  .puentes-v21 .pillar-featured,
  .puentes-v21 .pillar:last-child {
    padding: 22px 20px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 15px;
    border-radius: 24px;
  }

  .puentes-v21 .pillar .pillar-number {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .puentes-v21 .pillar .pillar-icon {
    grid-column: 1;
    grid-row: 2 / 4;
  }

  .puentes-v21 .pillar h3 {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin: 0;
  }

  .puentes-v21 .pillar p {
    grid-column: 2;
    grid-row: 3;
    margin-top: 3px;
  }

  .puentes-v21 .pillar .fine-line { display: none; }

  .puentes-v21 .pillar-joint-v20,
  .puentes-v21 .process-grid,
  .puentes-v21 .for-you-board-v20 { border-radius: 28px; }

  .puentes-v21 .for-you-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .puentes-v21 .for-you-copy { order: 1; }
  .puentes-v21 .for-you-board-v20 { order: 2; }
  .puentes-v21 .for-you-board-v20 { min-height: 400px; }
  .puentes-v21 .board-flow-v20 small { font-size: 11px; }

  .puentes-v21 .professional { border-radius: 24px; }
  .puentes-v21 .professional-image { min-height: 180px; }
  .puentes-v21 .pending { font-size: 10px; }
  .puentes-v21 .disclaimer { font-size: 10.5px; }

  .puentes-v21 .contact-pending-v20 { font-size: 10.5px; }
  .puentes-v21 .faq-demo-note-v20 {
    grid-column: auto;
    margin: 16px 0 0;
    font-size: 10.5px;
  }

  .puentes-v21 .mobile-booking-bar div small {
    color: rgba(255, 255, 255, .7);
    font-size: 9.5px;
  }

  .puentes-v21 .booking-progress span small { font-size: 10px; }
  .puentes-v21 .booking-lead-notice p { font-size: 12px; }
  .puentes-v21 .payment-option small { font-size: 10px; }
  .puentes-v21 .calendar-weekdays span { font-size: 8px; }
  .puentes-v21 .calendar-legend { font-size: 9.5px; }
}

@media (max-width: 374px) {
  .puentes-v21 .booking-progress span small { font-size: 9px; }
  .puentes-v21 .mobile-booking-bar div small { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .puentes-v21 .hero-primary-v16 i,
  .puentes-v21 .hero-secondary-v16 i,
  .puentes-v21 .button > span:last-child,
  .puentes-v21 .text-link > span:last-child { transition: none; }
}

/* ===== ORIGEN HISTÓRICO: v22.css ===== */
/*
 * Puentes v22 — refinamiento de portada para escritorio.
 * Esta capa empieza después del menú compacto: tablet y celular conservan v21.
 */

@media (min-width: 1101px) {
  .puentes-v22 .hero-v16 {
    --v22-hero-height: clamp(520px, calc(100dvh - 242px), 620px);
    position: relative;
    isolation: isolate;
    padding: 18px 0 28px;
    background:
      radial-gradient(circle at 7% 100%, rgba(201, 222, 198, .38), transparent 29%),
      radial-gradient(circle at 95% 2%, rgba(235, 222, 244, .31), transparent 28%),
      linear-gradient(132deg, #725b83 0%, #8d76a0 54%, #a38db3 100%);
  }

  .puentes-v22 .hero-v16::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(circle at 79% 48%, transparent 0 205px, rgba(255, 255, 255, .065) 206px 207px, transparent 208px),
      radial-gradient(circle at 17% 82%, transparent 0 150px, rgba(213, 232, 209, .08) 151px 152px, transparent 153px);
  }

  .puentes-v22 .hero-grid-v16 {
    min-height: var(--v22-hero-height);
    padding: 8px;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .29);
    border-radius: 48px;
    background: rgba(255, 255, 255, .105);
    box-shadow: 0 28px 68px rgba(39, 25, 47, .16);
  }

  .puentes-v22 .hero-copy-v16,
  .puentes-v22 .hero-photo-v16 {
    min-height: calc(var(--v22-hero-height) - 16px);
    border-radius: 40px;
    box-shadow: 0 18px 44px rgba(39, 25, 47, .13);
  }

  .puentes-v22 .hero-copy-v16 {
    padding: clamp(47px, 4.15vw, 64px);
    border-color: rgba(255, 255, 255, .2);
    background:
      radial-gradient(circle at 100% 0, rgba(204, 183, 219, .23), transparent 34%),
      radial-gradient(circle at 0 100%, rgba(201, 222, 198, .15), transparent 35%),
      linear-gradient(145deg, #302537 0%, #473550 58%, #5e476d 100%);
  }

  .puentes-v22 .hero-kicker-v16 {
    color: #e2d5e9;
    letter-spacing: .16em;
  }

  .puentes-v22 .hero-kicker-v16 > span:first-child { background: #d8c9e1; }

  .puentes-v22 .hero-v16 h1 {
    max-width: 600px;
    margin: 22px 0 23px;
    font-size: clamp(51px, 4.2vw, 67px);
    line-height: .93;
  }

  .puentes-v22 .hero-v16 h1 strong { color: #e7daed; }

  .puentes-v22 .hero-lead-v16 {
    max-width: 515px;
    color: rgba(255, 255, 255, .81);
    line-height: 1.6;
  }

  .puentes-v22 .hero-actions-v16 {
    width: min(100%, 520px);
    margin-top: 30px;
    gap: 12px;
  }

  .puentes-v22 .hero-primary-v16,
  .puentes-v22 .hero-secondary-v16 {
    min-height: 58px;
    border-width: 1px;
    white-space: nowrap;
  }

  .puentes-v22 .hero-secondary-v16 {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .085);
  }

  .puentes-v22 .hero-note-v16 { color: rgba(255, 255, 255, .65); }

  .puentes-v22 .hero-photo-v16 {
    border-color: rgba(255, 255, 255, .5);
    background: #ded6ca;
  }

  .puentes-v22 .hero-photo-v16 > img,
  .puentes-v22 .hero-photo-v16:hover > img {
    object-position: 57% 48%;
    transform: scale(1.01);
  }

  .puentes-v22 .hero-photo-v16::after {
    inset: 43% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(29, 22, 31, .32));
  }

  .puentes-v22 .hero-photo-v16 figcaption {
    left: 24px;
    right: auto;
    bottom: 24px;
    width: min(400px, calc(100% - 48px));
    min-height: 70px;
    padding: 10px 15px 10px 10px;
    gap: 12px;
    border-radius: 22px;
    background: rgba(43, 31, 48, .8);
    box-shadow: 0 15px 34px rgba(20, 14, 23, .18);
  }

  .puentes-v22 .hero-photo-v16 figcaption > span {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .puentes-v22 .hero-photo-v16 figcaption img { width: 31px; height: 31px; }
  .puentes-v22 .hero-photo-v16 figcaption b { font-size: 19px; }
  .puentes-v22 .hero-photo-v16 figcaption small { font-size: 11px; }

  .puentes-v22 .hero-online-v16 { top: 24px; right: 24px; }

  .puentes-v22 .trust-grid-v20 {
    transform: translateY(-26px);
    margin-bottom: -26px;
    box-shadow: 0 18px 42px rgba(43, 31, 48, .09);
  }
}

@media (min-width: 1101px) and (max-height: 840px) {
  .puentes-v22 .hero-copy-v16 { padding-block: 39px; }
  .puentes-v22 .hero-v16 h1 { margin-block: 16px 18px; }
  .puentes-v22 .hero-actions-v16 { margin-top: 22px; }
}

@media (min-width: 1101px) and (max-width: 1180px) {
  .puentes-v22 .hero-actions-v16 { gap: 8px; }

  .puentes-v22 .hero-primary-v16,
  .puentes-v22 .hero-secondary-v16 {
    padding-left: 16px;
    font-size: 11.5px;
  }

  .puentes-v22 .hero-primary-v16 i,
  .puentes-v22 .hero-secondary-v16 i {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .puentes-v22 .hero-photo-v16 > img { transition: none; }
}

/* ===== ORIGEN HISTÓRICO: v25.css ===== */
/* Puentes v25 — políticas, derechos del consumidor y consentimiento informado administrativo */

.puentes-v25 .consumer-rights-bar {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid #e5dfe7;
  background: #fffdf8;
}

.puentes-v25 .consumer-rights-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 15px;
  padding: 7px 0;
  color: #736b76;
  font-size: 11px;
}

.puentes-v25 .consumer-rights-inner > span {
  color: #514557;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.puentes-v25 .consumer-rights-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid #ddd4e2;
  border-radius: 999px;
  background: #f8f4fa;
  color: #5f4771;
  font-weight: 750;
  text-decoration: none;
}

.puentes-v25 .consumer-rights-inner a:hover,
.puentes-v25 .consumer-rights-inner a:focus-visible {
  border-color: #5f4771;
  background: #5f4771;
  color: #fff;
}

.puentes-v25 .privacy-note a,
.puentes-v25 .consent a {
  color: #5f4771;
  font-weight: 800;
  text-underline-offset: 2px;
}

.puentes-v25 .consent + .consent { margin-top: 11px; }

.puentes-v25 .booking-emergency-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid #ecd2d2;
  border-radius: 13px;
  background: #fff2f2;
  color: #7d4b4b;
}

.puentes-v25 .booking-emergency-note > span {
  flex: 0 0 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-weight: 900;
}

.puentes-v25 .booking-emergency-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
}

.puentes-v25 .booking-emergency-note b {
  display: block;
  margin-bottom: 2px;
  color: #5f3434;
  font-size: 11px;
}

.puentes-v25 .legal-review-section {
  border-top: 1px solid rgba(255,255,255,.11);
  background: #211927;
}

.puentes-v25 .legal-review-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  color: #fff;
}

.puentes-v25 .legal-review-copy span {
  display: block;
  margin-bottom: 6px;
  color: #cdbfd4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.puentes-v25 .legal-review-copy b {
  display: block;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.puentes-v25 .legal-review-copy p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  line-height: 1.55;
}

.puentes-v25 .legal-review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.puentes-v25 .legal-review-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.puentes-v25 .legal-review-actions a:first-child {
  border-color: #d8c8df;
  background: #f3ebf6;
  color: #4c3858;
}

.puentes-v25 .footer-grid {
  grid-template-columns: 1.25fr .68fr .85fr .75fr .95fr;
  gap: 44px;
}

.puentes-v25 .footer-grid .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.puentes-v25 .footer-grid .footer-legal a {
  color: rgba(255,255,255,.68);
}

.puentes-v25 .footer-grid .footer-legal a:hover { color: #fff; }

.puentes-v25 .footer-bottom a {
  color: rgba(255,255,255,.48);
  text-underline-offset: 2px;
}

@media (max-width: 980px) {
  .puentes-v25 .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .puentes-v25 .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .puentes-v25 .consumer-rights-inner {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding: 7px 18px;
    scrollbar-width: none;
  }
  .puentes-v25 .consumer-rights-inner::-webkit-scrollbar { display: none; }
  .puentes-v25 .consumer-rights-inner > span,
  .puentes-v25 .consumer-rights-inner a { flex: 0 0 auto; }
  .puentes-v25 .legal-review-inner { grid-template-columns: 1fr; gap: 16px; }
  .puentes-v25 .legal-review-actions { justify-content: flex-start; }
  .puentes-v25 .legal-review-actions a { flex: 1 1 180px; }
}

@media (max-width: 600px) {
  .puentes-v25 .footer-grid { grid-template-columns: 1fr; }
  .puentes-v25 .footer-grid > div { display: flex!important; }
  .puentes-v25 .footer-grid > div:first-child { grid-column: auto; }
  .puentes-v25 .legal-review-copy b { font-size: 20px; }
  .puentes-v25 .booking-emergency-note p,
  .puentes-v25 .privacy-note p,
  .puentes-v25 .consent { font-size: 11px; }
}

/* ===== ORIGEN HISTÓRICO: v26.css ===== */
/* Puentes v26 · accesibilidad, rendimiento percibido y preparación de lanzamiento */
:root {
  --focus-ring: #2f6fed;
  --focus-shadow: rgba(47,111,237,.22);
}

/* Progressive enhancement: el contenido siempre es visible sin JavaScript. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.visible { opacity: 1; transform: none; }

:where(a,button,input,select,textarea,summary):focus-visible {
  outline: 3px solid var(--focus-ring) !important;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--focus-shadow);
}

:where(button,[role="button"],a.button,.main-nav a,.legal-actions a) {
  touch-action: manipulation;
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .62;
}

.form-error:not(:empty),
[role="alert"]:not(:empty) {
  scroll-margin-top: 110px;
}

.booking-panel,
.booking-dialog,
.legal-card {
  overscroll-behavior: contain;
}

.status-live-region {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.maintenance-banner {
  display: none;
  padding: 12px 18px;
  background: #fff3cd;
  color: #5f4500;
  border-bottom: 1px solid #ead38a;
  text-align: center;
  font-weight: 700;
}
.maintenance-banner.is-visible { display: block; }

@media (max-width: 700px) {
  :where(button,.button,input,select,textarea,summary) { min-height: 44px; }
  .booking-panel { max-height: 100dvh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button,
  .status-badge,
  .demo-bar,
  .legal-status,
  .privacy-note {
    border: 1px solid CanvasText;
  }
}

/* ===== ORIGEN HISTÓRICO: v27.css ===== */
/* Puentes v27 · ajustes visuales solicitados antes del lanzamiento */

/* La portada deja de mostrar avisos técnicos en la parte superior. Los accesos
   legales permanecen disponibles en el bloque informativo y en el footer. */
.puentes-v27 .demo-bar,
.puentes-v27 .consumer-rights-bar {
  display: none !important;
}

/* Wordmark completo: el descriptor forma parte del SVG y no puede superponerse
   con la palabra Puentes, incluso al reducir el ancho. */
.puentes-v27 .site-header .brand-v27 {
  flex: 0 0 auto;
  width: 228px;
  min-width: 228px;
  gap: 0;
}

.puentes-v27 .brand-logo-v27 {
  display: block;
  width: 220px;
  height: auto;
  max-width: 100%;
}

/* Estado del sistema pasa a ser el último módulo del panel. */
.system-card {
  margin-top: 18px;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .puentes-v27 .site-header .brand-v27 {
    width: 198px;
    min-width: 198px;
  }
  .puentes-v27 .brand-logo-v27 { width: 190px; }
}

@media (max-width: 420px) {
  .puentes-v27 .site-header .brand-v27 {
    width: 174px;
    min-width: 174px;
  }
  .puentes-v27 .brand-logo-v27 { width: 168px; }
}

/* ===== ORIGEN HISTÓRICO: v28.css ===== */
/* Puentes v28 · navegación guiada dentro de la turnera */

#booking-time-section,
#booking-next-action {
  scroll-margin-block: 24px;
}

#booking-time-section:focus-visible {
  outline: 3px solid rgba(95, 71, 113, .28);
  outline-offset: 7px;
  border-radius: 10px;
}

@media (max-width: 700px) {
  #booking-time-section,
  #booking-next-action {
    scroll-margin-block: 18px;
  }
}

/* PUENTES V38 · DATOS EDITABLES CENTRALIZADOS */
.professional-image.has-photo::before,
.professional-image.has-photo::after { display: none; }
.professional-image > img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.professional-details { margin-top: 24px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--ink); font-size: 10px; line-height: 1.55; letter-spacing: .02em; }
.footer-grid [data-puentes-contact] a { color: inherit; text-decoration: none; }
.footer-grid [data-puentes-contact] a:hover { text-decoration: underline; }

/* PUENTES V40 · HERO LIMPIO
   El texto centralizado del kicker es contenido real, no una línea decorativa. */
.hero-kicker-v16 > .eyebrow-label {
  flex: 0 1 auto;
  width: auto;
  height: auto;
  min-width: 0;
  overflow: visible;
  background: none;
  white-space: normal;
}
.hero-kicker-v16 > .eyebrow-line { flex: 0 0 auto; }
@media (min-width: 621px) {
  .hero-kicker-v16 > .eyebrow-label { white-space: nowrap; }
}

/* ===== PUENTES v43 · TRANSFERENCIA MANUAL VERIFICADA · FLUJO CORREGIDO ===== */
.manual-payment-card{margin:18px 0;padding:20px;border:1px solid rgba(95,71,113,.18);border-radius:18px;background:#faf7fb}.manual-payment-amount{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;padding-bottom:16px;border-bottom:1px solid rgba(95,71,113,.14)}.manual-payment-amount span{font-size:.82rem;color:#756d78}.manual-payment-amount strong{font-family:Georgia,serif;font-size:1.55rem;color:#443250;text-align:right}.manual-payment-data{margin:0}.manual-payment-data>div{display:grid;grid-template-columns:105px 1fr;gap:12px;padding:13px 0;border-bottom:1px solid rgba(95,71,113,.1)}.manual-payment-data dt{color:#756d78;font-size:.84rem}.manual-payment-data dd{margin:0;display:flex;align-items:center;justify-content:space-between;gap:10px;min-width:0;color:#2b2230;font-weight:700}.manual-payment-data code{font-family:inherit;font-weight:700;overflow-wrap:anywhere}.copy-payment{border:1px solid rgba(95,71,113,.22);background:#fff;border-radius:10px;padding:7px 10px;color:#5f4771;font:inherit;font-size:.8rem;cursor:pointer}.copy-payment:focus-visible{outline:3px solid rgba(95,71,113,.24);outline-offset:2px}.manual-payment-instructions{margin:14px 0 0;color:#645b68;font-size:.9rem;line-height:1.55}.manual-payment-report{display:grid;gap:14px;margin:18px 0}.manual-payment-report>label:not(.consent){display:grid;gap:7px;font-weight:700;color:#3f3345}.manual-payment-report input[type="text"]{width:100%;box-sizing:border-box;border:1px solid #ded6e2;border-radius:12px;padding:12px 13px;background:#fff;color:#2b2230;font:inherit}.manual-payment-report small{font-weight:400;color:#756d78}.manual-payment-declaration{margin-top:2px}.payment-option.is-unavailable{opacity:.58}.payment-option.is-unavailable strong{color:#756d78}.payment-option.payment-option-pending:not(.is-unavailable){opacity:1}.payment-destination-error{border-color:rgba(95,71,113,.34);background:#f5eef8}.payment-destination-error .manual-payment-amount strong{font-size:1rem}.result-step #refresh-booking-status{background:#6f5680}.result-step #retry-payment{background:#fff;color:#5f4771;border:1px solid rgba(95,71,113,.25)}
@media(max-width:600px){.manual-payment-amount{align-items:flex-start;flex-direction:column;gap:5px}.manual-payment-amount strong{text-align:left}.manual-payment-data>div{grid-template-columns:1fr;gap:5px}.manual-payment-data dd{align-items:flex-start}.copy-payment{flex:0 0 auto}}

/* ===== AJUSTE VISUAL · NUESTRO ENFOQUE · 2026-08-19 =====
   Objetivo: que la sección se lea completa en un viewport desktop habitual,
   sumar contraste cromático y conservar la identidad cálida de Puentes. */
.puentes-v21 #enfoque {
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 249, 237, .96), transparent 31%),
    radial-gradient(circle at 92% 10%, rgba(182, 156, 200, .28), transparent 34%),
    linear-gradient(135deg, #f1e8f4 0%, #f8f3f8 48%, #efe5f2 100%);
  box-shadow:
    inset 0 1px 0 rgba(76, 56, 88, .06),
    inset 0 -1px 0 rgba(76, 56, 88, .06);
}

.puentes-v21 #enfoque::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  left: -15vw;
  bottom: -54%;
  border: 1px solid rgba(101, 75, 117, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(255,255,255,.12),
    0 0 0 88px rgba(255,255,255,.08);
  pointer-events: none;
}

.puentes-v21 #enfoque .section-heading.centered {
  max-width: 900px;
}

.puentes-v21 #enfoque .section-heading .eyebrow {
  width: max-content;
  margin-inline: auto;
  padding: 7px 12px;
  border: 1px solid rgba(102, 76, 119, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  box-shadow: 0 8px 24px rgba(60, 43, 70, .04);
}

.puentes-v21 #enfoque .section-heading h2 em {
  color: #73578a;
}

.puentes-v21 #enfoque .pillar {
  border-color: rgba(72, 54, 82, .1);
}

.puentes-v21 #enfoque .pillar:first-child {
  background: linear-gradient(145deg, #fffaf0, #f7edda);
}

.puentes-v21 #enfoque .pillar:nth-child(2) {
  background: linear-gradient(145deg, #f2eaf6, #e7dced);
}

.puentes-v21 #enfoque .pillar-joint-v20 {
  background:
    radial-gradient(circle at 92% 8%, rgba(199, 179, 214, .22), transparent 34%),
    linear-gradient(145deg, #3f3048, #634b72);
}

.puentes-v21 #enfoque .pillar-icon {
  border: 1px solid rgba(95, 71, 113, .08);
  box-shadow: 0 9px 24px rgba(58, 42, 67, .055);
}

@media (min-width: 901px) {
  .puentes-v21 #enfoque.section {
    min-height: calc(100vh - 84px);
    min-height: calc(100svh - 84px);
    padding: clamp(36px, 4.8vh, 54px) 0;
    display: flex;
    align-items: center;
  }

  .puentes-v21 #enfoque > .container {
    width: min(92%, 1320px);
  }

  .puentes-v21 #enfoque .section-heading.centered {
    margin-bottom: clamp(24px, 3.2vh, 34px);
  }

  .puentes-v21 #enfoque .section-heading h2 {
    margin: 11px 0 12px;
    font-size: clamp(42px, 3.45vw, 55px);
    line-height: .99;
  }

  .puentes-v21 #enfoque .section-heading > p,
  .puentes-v21 #enfoque .section-heading.centered > p {
    max-width: 720px;
    margin: 16px auto 0;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .puentes-v21 #enfoque .pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.15vw, 17px);
    align-items: stretch;
  }

  .puentes-v21 #enfoque .pillar,
  .puentes-v21 #enfoque .pillar-featured,
  .puentes-v21 #enfoque .pillar:last-child {
    min-height: 268px;
    padding: 25px 27px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .puentes-v21 #enfoque .pillar .pillar-icon,
  .puentes-v21 #enfoque .pillar-featured .pillar-icon {
    width: 54px;
    height: 54px;
    margin: 21px 0 17px;
  }

  .puentes-v21 #enfoque .pillar h3,
  .puentes-v21 #enfoque .pillar-joint-v20 h3 {
    margin: 0 0 9px;
    font-size: clamp(23px, 1.8vw, 28px);
    line-height: 1.08;
  }

  .puentes-v21 #enfoque .pillar p,
  .puentes-v21 #enfoque .pillar-joint-v20 p {
    margin: 0;
    font-size: 13px;
    line-height: 1.58;
  }

  .puentes-v21 #enfoque .fine-line {
    left: 27px;
    bottom: 22px;
  }

  .puentes-v21 #enfoque .pillar-joint-v20 {
    grid-column: auto;
    color: #fff;
  }

  .puentes-v21 #enfoque .pillar-joint-v20 .pillar-number,
  .puentes-v21 #enfoque .pillar-joint-v20 .pillar-icon,
  .puentes-v21 #enfoque .pillar-joint-v20 h3,
  .puentes-v21 #enfoque .pillar-joint-v20 p {
    grid-column: auto;
    grid-row: auto;
  }

  .puentes-v21 #enfoque .pillar-joint-v20 .pillar-number {
    color: rgba(255,255,255,.58);
  }

  .puentes-v21 #enfoque .pillar-joint-v20 .pillar-icon {
    margin: 21px 0 17px;
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.12);
    box-shadow: none;
  }

  .puentes-v21 #enfoque .pillar-joint-v20 h3 {
    color: #fff;
  }

  .puentes-v21 #enfoque .pillar-joint-v20 p {
    color: rgba(255,255,255,.74);
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .puentes-v21 #enfoque.section {
    min-height: calc(100vh - 78px);
    min-height: calc(100svh - 78px);
    padding: 27px 0 30px;
  }

  .puentes-v21 #enfoque .section-heading.centered {
    margin-bottom: 20px;
  }

  .puentes-v21 #enfoque .section-heading .eyebrow {
    padding-block: 5px;
  }

  .puentes-v21 #enfoque .section-heading h2 {
    margin-block: 8px 10px;
    font-size: clamp(39px, 3.15vw, 49px);
  }

  .puentes-v21 #enfoque .section-heading > p,
  .puentes-v21 #enfoque .section-heading.centered > p {
    margin-top: 11px;
    line-height: 1.48;
  }

  .puentes-v21 #enfoque .pillar,
  .puentes-v21 #enfoque .pillar-featured,
  .puentes-v21 #enfoque .pillar:last-child {
    min-height: 244px;
    padding: 21px 24px 21px;
  }

  .puentes-v21 #enfoque .pillar .pillar-icon,
  .puentes-v21 #enfoque .pillar-featured .pillar-icon,
  .puentes-v21 #enfoque .pillar-joint-v20 .pillar-icon {
    width: 49px;
    height: 49px;
    margin: 16px 0 14px;
  }
}

@media (max-width: 900px) {
  .puentes-v21 #enfoque .section-heading .eyebrow {
    margin-inline: 0;
  }
}

@media (max-width: 620px) {
  .puentes-v21 #enfoque {
    background:
      radial-gradient(circle at 100% 0, rgba(182, 156, 200, .23), transparent 31%),
      linear-gradient(180deg, #f7f1f8, #f2eaf5);
  }

  .puentes-v21 #enfoque .section-heading .eyebrow {
    padding: 6px 10px;
  }
}

/* ===== PUENTES v44 · ORDEN EDITORIAL + NOSOTRAS COMPACTA =====
   Cambio incremental: Como trabajamos pasa antes de Nuestro enfoque y
   la seccion Nosotras se adapta mejor al primer viewport de escritorio. */
.puentes-v21 #nosotras {
  background:
    radial-gradient(circle at 50% 0, rgba(214, 196, 226, .25), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #faf6fb 100%);
}

.puentes-v21 #nosotras .professional:nth-child(2) {
  background: #f3edf6;
}

@media (min-width: 901px) {
  .puentes-v21 #nosotras.section {
    min-height: calc(100vh - 82px);
    min-height: calc(100svh - 82px);
    padding: clamp(38px, 5vh, 58px) 0 clamp(34px, 4.5vh, 50px);
    display: grid;
    align-items: center;
  }

  .puentes-v21 #nosotras > .container {
    width: min(91%, 1320px);
  }

  .puentes-v21 #nosotras .section-heading.centered {
    max-width: 920px;
    margin: 0 auto clamp(24px, 3vh, 34px);
  }

  .puentes-v21 #nosotras .section-heading h2 {
    margin: 12px 0 0;
    font-size: clamp(40px, 3.7vw, 56px);
    line-height: .98;
  }

  .puentes-v21 #nosotras .professional-grid {
    gap: 16px;
  }

  .puentes-v21 #nosotras .professional {
    min-height: 282px;
    grid-template-columns: minmax(155px, .66fr) 1.34fr;
  }

  .puentes-v21 #nosotras .professional-image {
    min-height: 282px;
  }

  .puentes-v21 #nosotras .professional-copy {
    padding: 29px 28px;
  }

  .puentes-v21 #nosotras .professional-copy .role {
    font-size: 8px;
  }

  .puentes-v21 #nosotras .professional h3 {
    margin: 9px 0 12px;
    font-size: 26px;
  }

  .puentes-v21 #nosotras .professional-copy p {
    font-size: 13px;
    line-height: 1.6;
  }

  .puentes-v21 #nosotras .disclaimer {
    max-width: 880px;
    margin: 14px auto 0;
    text-align: center;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .puentes-v21 #nosotras.section {
    padding: 28px 0 30px;
  }

  .puentes-v21 #nosotras .section-heading.centered {
    margin-bottom: 19px;
  }

  .puentes-v21 #nosotras .section-heading h2 {
    margin-top: 8px;
    font-size: clamp(36px, 3.25vw, 48px);
  }

  .puentes-v21 #nosotras .professional,
  .puentes-v21 #nosotras .professional-image {
    min-height: 242px;
  }

  .puentes-v21 #nosotras .professional-copy {
    padding: 22px 24px;
  }

  .puentes-v21 #nosotras .professional h3 {
    margin: 7px 0 9px;
    font-size: 24px;
  }

  .puentes-v21 #nosotras .professional-copy p {
    font-size: 12px;
    line-height: 1.52;
  }

  .puentes-v21 #nosotras .disclaimer {
    margin-top: 10px;
    font-size: 10px;
  }
}
