/* ═══════════════════════════════════════════════════════════
   AR Fisioterapia · estilos
   ═══════════════════════════════════════════════════════════ */
@font-face { font-family: "Familjen Grotesk"; src: url("../fonts/familjen-grotesk-latin.woff2") format("woff2"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-latin.woff2") format("woff2"); font-weight: 200 800; font-display: swap; }

:root {
  --ink: #08171F; --ink-2: #0D2430; --ink-3: #123444;
  --text: #10222E; --muted: #4F6068;
  --paper: #F5F0E8; --paper-2: #ECE4D7; --card: #FFFCF7; --line: #DFD6C8;
  --teal: #0B6F69; --mint: #7FD1C3;
  --signal: #E25B30; --signal-btn: #C4471E; --signal-dark: #A33914;
  --bone: #FBF9F6; --fog: #9DB3BC;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --px: clamp(18px, 4.5vw, 56px);
  --maxw: 1320px;
  --r: 28px;
  --display: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;
  --body: Manrope, "Segoe UI", Roboto, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; background: var(--paper); color: var(--text); font: 400 16px/1.6 var(--body); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: clip; }
body.lock { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
h1, h2, h3, p, figure, blockquote, dl, dd, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
::selection { background: var(--teal); color: #fff; }
:focus-visible { outline: 2.5px solid var(--signal); outline-offset: 3px; border-radius: 8px; }
section[id] { scroll-margin-top: 70px; }
.wrap { position: relative; max-width: var(--maxw); margin-inline: auto; }
.skip { position: fixed; left: 12px; top: -80px; z-index: 400; padding: 12px 18px; border-radius: 12px; background: var(--text); color: #fff; font-weight: 700; transition: top .3s var(--ease); }
.skip:focus { top: 12px; }
.mark { display: inline-block; flex-shrink: 0; aspect-ratio: 1.38; background-color: currentColor; -webkit-mask: url("../img/logo-mark-sm.webp") center / contain no-repeat; mask: url("../img/logo-mark-sm.webp") center / contain no-repeat; }
.mark-lg { -webkit-mask-image: url("../img/logo-mark.webp"); mask-image: url("../img/logo-mark.webp"); }

/* ── Botones ── */
.btn { --bg: var(--text); --fg: #fff; --hv: rgba(255,255,255,.14); position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border: 0; border-radius: 999px; background: var(--bg); color: var(--fg); font: 700 15.5px/1.1 var(--body); letter-spacing: .005em; text-align: center; cursor: pointer; overflow: hidden; isolation: isolate; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--hv); transform: translateY(101%); transition: transform .5s var(--ease); }
.btn:hover::before { transform: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; transition: transform .45s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 14px; }
.btn-lg { min-height: 56px; padding: 0 26px; font-size: 16px; }
.btn-xl { min-height: 62px; padding: 0 30px; font-size: 16.5px; }
.btn-signal { --bg: var(--signal-btn); --hv: var(--signal-dark); box-shadow: 0 16px 36px -16px rgba(226,91,48,.85); }
.btn-signal:hover { box-shadow: 0 22px 44px -16px rgba(226,91,48,.95); }
.btn-ink { --bg: var(--text); --hv: var(--teal); }
.btn-teal { --bg: var(--teal); --hv: #07504B; }
.btn-bone { --bg: var(--bone); --fg: var(--text); --hv: #fff; }
.btn-ghost-dark { --bg: rgba(251,249,246,.05); --fg: var(--bone); --hv: rgba(251,249,246,.12); box-shadow: inset 0 0 0 1.5px rgba(251,249,246,.3); }
.btn-ghost { --bg: transparent; --fg: var(--text); --hv: rgba(16,34,46,.06); box-shadow: inset 0 0 0 1.5px #CFC6B8; }
.btn-ghost-light { --bg: transparent; --fg: #fff; --hv: rgba(255,255,255,.14); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); }

/* ── Barra de progreso + cabecera ── */
.progress { position: fixed; inset: 0 0 auto; z-index: 150; height: 3px; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--mint), var(--signal)); }
.hdr { position: fixed; inset: 0 0 auto; z-index: 100; color: var(--bone); transition: background .45s var(--ease), color .45s var(--ease), box-shadow .45s var(--ease); }
.hdr-in { max-width: calc(var(--maxw) + 2 * var(--px)); height: 84px; margin: 0 auto; padding: 0 var(--px); display: flex; align-items: center; gap: 24px; transition: height .45s var(--ease); }
.hdr.scrolled { background: rgba(245,240,232,.86); -webkit-backdrop-filter: blur(16px) saturate(1.2); backdrop-filter: blur(16px) saturate(1.2); color: var(--text); box-shadow: 0 1px 0 rgba(16,34,46,.08); }
.hdr.scrolled .hdr-in { height: 68px; }
.hdr.menu-open { background: transparent; color: var(--bone); box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mono { width: auto; height: 30px; color: var(--bone); transition: color .45s var(--ease); }
.hdr.scrolled .logo-mono { color: var(--text); }
.hdr.menu-open .logo-mono { color: var(--bone); }
.logo-t { display: flex; flex-direction: column; gap: 4px; line-height: 1; }
.logo-t b { font: 600 15px/1 var(--display); letter-spacing: .17em; text-transform: uppercase; }
.logo-t small { font: 700 9.5px/1 var(--body); letter-spacing: .15em; text-transform: uppercase; opacity: .7; }
.nav { display: flex; gap: clamp(18px, 2.2vw, 32px); margin-left: auto; }
.nav a { position: relative; padding: 6px 0; font-weight: 600; font-size: 14.5px; opacity: .88; transition: opacity .25s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.hdr-cta { margin-left: 6px; }
.burger { display: none; position: relative; width: 48px; height: 48px; margin-left: auto; border: 1.5px solid currentColor; border-radius: 50%; background: transparent; cursor: pointer; }
.burger i { position: absolute; left: 14px; right: 14px; height: 1.8px; border-radius: 2px; background: currentColor; transition: transform .4s var(--ease); }
.burger i:first-child { top: 18px; }
.burger i:last-child { bottom: 18px; }
.burger[aria-expanded="true"] i:first-child { transform: translateY(4.6px) rotate(45deg); }
.burger[aria-expanded="true"] i:last-child { transform: translateY(-4.6px) rotate(-45deg); }

/* ── Menú móvil ── */
.menu { position: fixed; inset: 0; z-index: 90; display: flex; flex-direction: column; padding: 104px var(--px) 36px; overflow-y: auto; background: var(--ink); color: var(--bone); visibility: hidden; opacity: 0; transition: opacity .4s var(--ease), visibility 0s .4s; }
.menu.open { visibility: visible; opacity: 1; transition: opacity .4s var(--ease); }
.menu nav { display: flex; flex-direction: column; }
.menu nav a { display: flex; align-items: baseline; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(251,249,246,.12); font: 600 clamp(28px, 8.4vw, 42px)/1.05 var(--display); letter-spacing: -.04em; opacity: 0; transform: translateY(18px); transition: transform .6s var(--ease), opacity .6s var(--ease); }
.menu nav a small { font: 700 12px/1 var(--body); letter-spacing: .14em; color: var(--mint); }
.menu.open nav a { opacity: 1; transform: none; }
.menu.open nav a:nth-child(2) { transition-delay: .04s; }
.menu.open nav a:nth-child(3) { transition-delay: .08s; }
.menu.open nav a:nth-child(4) { transition-delay: .12s; }
.menu.open nav a:nth-child(5) { transition-delay: .16s; }
.menu.open nav a:nth-child(6) { transition-delay: .2s; }
.menu.open nav a:nth-child(7) { transition-delay: .24s; }
.menu.open nav a:nth-child(8) { transition-delay: .28s; }
.menu-cta { display: grid; gap: 10px; margin-top: 30px; }
.menu-foot { margin-top: auto; padding-top: 28px; font-size: 14px; color: var(--fog); }

@media (max-width: 999px) {
  .nav, .hdr-cta { display: none; }
  .burger { display: block; }
  .hdr-in { height: 72px; }
  .hdr.scrolled .hdr-in { height: 64px; }
}

/* ── Utilidades de sección ── */
.sec { position: relative; padding: clamp(84px, 11vw, 150px) var(--px); overflow-x: hidden; overflow-x: clip; }
.paper { background: var(--paper); }
.paper-2 { background: var(--paper-2); }
.dark { background: var(--ink); color: var(--bone); }
.grain { isolation: isolate; }
.grain::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .08; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font: 800 12px/1 var(--body); letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.eyebrow span { display: inline-grid; place-items: center; min-width: 36px; height: 26px; padding: 0 9px; border: 1.5px solid currentColor; border-radius: 999px; font-size: 11px; letter-spacing: .04em; }
.eyebrow span svg { width: 12px; height: 12px; }
.dark .eyebrow { color: var(--mint); }
.h-xl { font: 700 clamp(42px, 6.2vw, 92px)/.95 var(--display); letter-spacing: -.048em; text-wrap: balance; }
.h-xl .soft { display: block; color: #8A8375; text-wrap: balance; }
.sec-head { margin-bottom: clamp(44px, 6vw, 76px); }
.sec-head.split { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 64px; }
.sec-head.split > div { flex: 1 1 520px; min-width: min(100%, 300px); }
.sec-intro { flex: 0 1 400px; font-size: clamp(16px, 1.35vw, 18.5px); line-height: 1.62; color: var(--muted); }
.dark .sec-intro { color: var(--fog); }
.fine { margin-top: 26px; font-size: 12.5px; line-height: 1.5; color: #6B665B; }
.dark .fine { color: #7F98A2; }
.mint { color: var(--mint); }

/* Aparición al hacer scroll (solo si el JS está activo) */
.reveal-on [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s); }
.reveal-on [data-reveal].in { opacity: 1; transform: none; }

/* ═════════ HERO ═════════ */
.hero { position: relative; padding: clamp(104px, 14vh, 150px) var(--px) 0; background: var(--ink); color: var(--bone); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(127,209,195,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(127,209,195,.07) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(ellipse 60% 70% at 72% 42%, #000 10%, transparent 72%); mask-image: radial-gradient(ellipse 60% 70% at 72% 42%, #000 10%, transparent 72%); }
.glow { position: absolute; border-radius: 50%; }
.glow-a { width: 900px; height: 900px; right: -240px; top: -260px; background: radial-gradient(closest-side, rgba(17,150,139,.42), rgba(17,150,139,0)); }
.glow-b { width: 700px; height: 700px; left: -320px; bottom: -360px; background: radial-gradient(closest-side, rgba(226,91,48,.22), rgba(226,91,48,0)); }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(16px, 3vw, 48px); align-items: end; }
.hero-copy { padding-bottom: clamp(120px, 16vh, 180px); }
.chip { display: inline-flex; align-items: center; gap: 12px; margin-bottom: clamp(22px, 3.2vh, 34px); padding: 9px 16px 9px 14px; border: 1px solid rgba(127,209,195,.24); border-radius: 999px; background: rgba(127,209,195,.09); font: 800 12px/1 var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--mint); animation: fadeUp .9s var(--ease) both; }
.live { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); }
.live::after { content: ""; position: absolute; inset: -5px; border: 1.5px solid var(--mint); border-radius: 50%; animation: ping 2.2s var(--ease) infinite; }
.hero-title { margin-bottom: clamp(22px, 3.2vh, 32px); font: 700 clamp(56px, 7.6vw, 128px)/.9 var(--display); letter-spacing: -.055em; }
.hero-title .ln { display: block; overflow: hidden; margin: -.14em 0 -.26em; padding: .14em .06em .26em 0; }
.hero-title .ln > span { display: inline-block; animation: lineUp 1.1s var(--ease) both; }
.hero-title .ln:nth-child(2) > span { animation-delay: .09s; }
.hero-title .ln:nth-child(3) > span { animation-delay: .18s; }
.hero-title .accent { position: relative; color: var(--signal); }
.scribble { position: absolute; left: 0; bottom: -.17em; width: 90%; height: .13em; overflow: visible; }
.scribble path { fill: none; stroke: var(--signal); stroke-width: clamp(3.5px, .05em, 7px); vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw 1.1s var(--ease) 1s forwards; }
.hero-lead { max-width: 48ch; margin-bottom: clamp(26px, 4vh, 38px); font-size: clamp(17px, 1.45vw, 20px); line-height: 1.6; color: #C3D2D8; animation: fadeUp 1s var(--ease) .32s both; }
.hero-lead strong { font-weight: 700; color: var(--bone); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeUp 1s var(--ease) .42s both; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 14px 30px; margin-top: clamp(30px, 5vh, 48px); animation: fadeUp 1s var(--ease) .56s both; }
.hero-proof li { display: flex; flex-direction: column; gap: 3px; padding-left: 14px; border-left: 2px solid rgba(127,209,195,.35); }
.hero-proof b { font: 600 15px/1.2 var(--display); letter-spacing: -.01em; color: var(--bone); }
.hero-proof span { font-size: 13px; color: var(--fog); }
.hero-visual { position: relative; height: clamp(540px, 82vh, 800px); animation: fadeIn 1.2s var(--ease) .1s both; }
.hero-mono { position: absolute; left: 50%; top: 6%; width: 128%; height: auto; max-width: none; transform: translateX(-50%); color: var(--mint); opacity: .17; pointer-events: none; }
.hero-arch { position: absolute; left: 50%; bottom: 0; width: min(80%, 500px); height: 72%; transform: translateX(-50%); border-radius: 999px 999px 0 0; background: linear-gradient(180deg, #139A8E 0%, #0B6F69 40%, rgba(11,111,105,.35) 78%, rgba(8,23,31,0) 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.18); }
.hero-arch::before { content: ""; position: absolute; inset: -18px -18px 0; border: 1px dashed rgba(127,209,195,.4); border-bottom: 0; border-radius: 999px 999px 0 0; -webkit-mask-image: linear-gradient(#000 40%, transparent 85%); mask-image: linear-gradient(#000 40%, transparent 85%); }
.hero-img { position: absolute; left: 50%; bottom: 0; width: auto; height: 96%; max-width: none; transform: translateX(-50%); filter: drop-shadow(0 40px 50px rgba(0,0,0,.45)); animation: rise 1.3s var(--ease) .2s both; }
.fcard { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; border: 1px solid rgba(127,209,195,.2); border-radius: 18px; background: rgba(13,36,48,.74); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 24px 50px -24px rgba(0,0,0,.7); animation: fadeUp .9s var(--ease) both, float 7s ease-in-out infinite; }
.fcard b { display: block; font: 600 14.5px/1.2 var(--display); color: var(--bone); }
.fcard small { display: block; margin-top: 2px; font-size: 12px; color: var(--fog); }
.fc-ico { flex-shrink: 0; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--signal-btn); color: #fff; }
.fc-ico svg { width: 18px; height: 18px; }
.fc-ico-mono { background: rgba(127,209,195,.14); color: var(--mint); }
.fc-ico-mono .mark { width: 30px; }
.fc-1 { left: -6%; top: 46%; animation-delay: .9s, 1.8s; }
.fc-2 { right: -4%; bottom: 22%; animation-delay: 1.1s, 0s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lineUp { from { transform: translateY(140%); } to { transform: none; } }
@keyframes rise { from { opacity: 0; transform: translate(-50%, 40px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes ping { 0% { transform: scale(.4); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }

@media (max-width: 999px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { height: clamp(430px, 122vw, 640px); margin-top: 12px; }
  .hero-mono { width: 100%; }
  .fc-1 { left: 0; top: 44%; }
  .fc-2 { right: 0; bottom: 25%; }
}
@media (max-width: 560px) {
  .hero-title { font-size: clamp(48px, 14.6vw, 80px); }
  .chip { gap: 10px; padding: 9px 14px 9px 12px; font-size: 10.5px; letter-spacing: .08em; }
  .hero-cta .btn { flex: 1 1 100%; }
  .fcard { gap: 10px; padding: 9px 12px 9px 9px; border-radius: 14px; }
  .fcard b { font-size: 13px; }
  .fcard small { font-size: 11px; }
  .fc-ico { width: 34px; height: 34px; border-radius: 10px; }
}

/* ── Cintas cruzadas ── */
.band-wrap { position: relative; z-index: 5; height: 190px; margin: -96px 0 -94px; overflow: hidden; pointer-events: none; }
.band { position: absolute; left: -5%; right: -5%; top: 50%; display: flex; overflow: hidden; padding: 17px 0; white-space: nowrap; font: 700 clamp(22px, 2.7vw, 38px)/1 var(--display); letter-spacing: -.02em; text-transform: uppercase; }
.band-a { background: var(--signal-btn); color: #fff; transform: translateY(-50%) rotate(-2.4deg); box-shadow: 0 20px 40px -20px rgba(0,0,0,.5); }
.band-b { background: var(--ink-3); color: var(--mint); transform: translateY(-50%) rotate(1.8deg); }
.band-b span { color: transparent; -webkit-text-stroke: 1px var(--mint); }
.band-track { display: flex; align-items: center; flex-shrink: 0; gap: 28px; padding-right: 28px; animation: marquee 48s linear infinite; }
.band-b .band-track { animation-duration: 64s; animation-direction: reverse; }
.band svg { width: .62em; height: .62em; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ═════════ 01 · MAPA CORPORAL ═════════ */
.map { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(28px, 6vw, 96px); align-items: center; }
.map-figure { position: relative; justify-self: center; width: min(100%, 330px); aspect-ratio: 300 / 640; }
.map-figure::before { content: ""; position: absolute; inset: -6% -50%; background: radial-gradient(circle, rgba(11,111,105,.2) 1.2px, transparent 1.5px) 0 0 / 18px 18px; -webkit-mask-image: radial-gradient(closest-side, #000 30%, transparent 100%); mask-image: radial-gradient(closest-side, #000 30%, transparent 100%); }
.map-figure::after { content: ""; position: absolute; left: 50%; top: 48%; width: 150%; aspect-ratio: 1; transform: translate(-50%, -50%); border: 1px solid rgba(11,111,105,.16); border-radius: 50%; box-shadow: inset 0 0 0 38px rgba(11,111,105,.025), inset 0 0 0 39px rgba(11,111,105,.09); }
.body-svg { position: relative; z-index: 1; width: 100%; height: 100%; overflow: visible; }
.fig-outline { fill: var(--text); stroke: var(--text); stroke-width: 4; stroke-linejoin: round; }
.fig-fill { fill: url(#figFill); }
.fig-heat { mix-blend-mode: multiply; transition: transform .8s var(--ease); }
.fig-detail { fill: none; stroke: var(--teal); stroke-width: 1.3; stroke-linecap: round; opacity: .5; }
.fig-detail .dash { stroke-dasharray: 2 5; }
.fig-detail circle { fill: var(--teal); stroke: none; }
.hs { cursor: pointer; }
.hs-hit { fill: transparent; }
.hs-dot { fill: var(--teal); transition: fill .3s; }
.hs-ring { fill: none; stroke: var(--teal); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: hsPulse 2.4s var(--ease) infinite; }
.hs:hover .hs-dot, .hs.on .hs-dot { fill: var(--signal); }
.hs.on .hs-ring { stroke: var(--signal); }
@keyframes hsPulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(2); opacity: 0; } }
.fig-label { position: absolute; z-index: 3; display: flex; align-items: center; transform: translate(10px, -50%); pointer-events: none; transition: left .7s var(--ease), top .7s var(--ease); }
.fig-label::before { content: ""; width: 34px; height: 1.5px; background: var(--text); }
.fig-label span { padding: 7px 12px; border-radius: 999px; background: var(--text); color: #fff; font: 800 11px/1 var(--body); letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.fig-label.left { flex-direction: row-reverse; transform: translate(calc(-100% - 10px), -50%); }
.scan { position: absolute; z-index: 2; left: -6%; right: -6%; top: 0; height: 9%; pointer-events: none; background: linear-gradient(180deg, rgba(11,111,105,0), rgba(11,111,105,.07) 70%, rgba(11,111,105,.4) 96%, rgba(11,111,105,0)); -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent); mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent); animation: scan 5.5s var(--ease) infinite; }
@keyframes scan { 0% { transform: translateY(-40%); opacity: 0; } 12% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateY(1080%); opacity: 0; } }

.zone-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.zone-tab { display: inline-flex; align-items: center; gap: 7px; min-height: 46px; padding: 0 17px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--card); color: var(--text); font-weight: 700; font-size: 14.5px; cursor: pointer; transition: background .3s var(--ease), border-color .3s, color .3s; }
.zone-tab:hover { border-color: var(--text); }
.zone-tab[aria-selected="true"] { background: var(--text); border-color: var(--text); color: #fff; }
.zone-tab svg { width: 12px; height: 12px; color: var(--signal); }
.zone-card { position: relative; padding: clamp(24px, 3.4vw, 42px); border: 1px solid var(--line); border-radius: var(--r); background: var(--card); box-shadow: 0 40px 70px -50px rgba(16,34,46,.45); }
.zone-card.swap > * { animation: swap .6s var(--ease) both; }
.zone-card.swap > :nth-child(2) { animation-delay: .04s; }
.zone-card.swap > :nth-child(3) { animation-delay: .08s; }
.zone-card.swap > :nth-child(4) { animation-delay: .12s; }
.zone-card.swap > :nth-child(5) { animation-delay: .16s; }
.zone-card.swap > :nth-child(6) { animation-delay: .2s; }
@keyframes swap { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.zone-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.zone-idx { font-weight: 800; font-size: 12px; letter-spacing: .14em; color: var(--muted); }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: #FBE1D5; color: var(--signal-dark); font-weight: 800; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.badge svg { width: 12px; height: 12px; }
.zone-title { margin-bottom: 14px; font: 700 clamp(28px, 3.2vw, 44px)/1.02 var(--display); letter-spacing: -.04em; }
.zone-desc { margin-bottom: 24px; font-size: clamp(16px, 1.3vw, 17.5px); line-height: 1.65; color: #33454E; }
.zone-sub { margin-bottom: 12px; font-weight: 800; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.zone-signs { display: grid; gap: 8px; margin-bottom: 28px; }
.zone-signs li { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; background: var(--paper); font-weight: 600; font-size: 15px; }
.zone-signs li::before { content: ""; flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px rgba(226,91,48,.18); }

@media (max-width: 899px) {
  .map { grid-template-columns: 1fr; gap: 22px; }
  .map-panel { display: contents; }
  .zone-tabs { order: 1; flex-wrap: nowrap; margin: 0 calc(var(--px) * -1); padding: 2px var(--px) 6px; overflow-x: auto; scrollbar-width: none; }
  .zone-tabs::-webkit-scrollbar { display: none; }
  .zone-tab { flex-shrink: 0; }
  .map-figure { order: 2; width: min(62vw, 270px); margin-block: 10px; }
  .zone-card { order: 3; }
  .fig-label::before { width: 18px; }
}

/* ═════════ 02 · TEST ATM ═════════ */
.atm { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.hl { font-style: normal; color: var(--signal); }
.lead { max-width: 46ch; margin: 24px 0 34px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: var(--fog); }
.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.checks li { display: flex; }
.check { width: 100%; min-height: 68px; display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid rgba(127,209,195,.18); border-radius: 18px; background: rgba(251,249,246,.035); color: var(--bone); font-weight: 600; font-size: 15px; line-height: 1.35; text-align: left; cursor: pointer; transition: background .3s var(--ease), border-color .3s, transform .35s var(--ease); }
.check:hover { border-color: rgba(127,209,195,.5); transform: translateY(-2px); }
.box { flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center; border: 1.5px solid rgba(127,209,195,.55); border-radius: 8px; transition: background .3s, border-color .3s; }
.box svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 18; stroke-dashoffset: 18; transition: stroke-dashoffset .35s var(--ease); }
.check[aria-pressed="true"] { border-color: rgba(226,91,48,.65); background: rgba(226,91,48,.13); }
.check[aria-pressed="true"] .box { border-color: var(--signal-btn); background: var(--signal-btn); }
.check[aria-pressed="true"] .box svg { stroke-dashoffset: 0; }
.atm-meter { --heat: 0; position: relative; isolation: isolate; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(127,209,195,.16); border-radius: 32px; background: linear-gradient(180deg, rgba(18,52,68,.7), rgba(13,36,48,.35)); text-align: center; }
.atm-meter::before { content: ""; position: absolute; inset: -10%; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, rgba(226,91,48,.5), transparent); opacity: var(--heat); transition: opacity .8s var(--ease); }
.ring { position: relative; width: min(100%, 250px); aspect-ratio: 1; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(127,209,195,.14); stroke-width: 14; }
.ring-fg { fill: none; stroke: url(#ringGrad); stroke-width: 14; stroke-linecap: round; stroke-dasharray: 603.19; stroke-dashoffset: 603.19; opacity: 0; transition: stroke-dashoffset .8s var(--ease), opacity .3s; }
.ring-num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring-num b { font: 700 clamp(84px, 9vw, 118px)/.8 var(--display); letter-spacing: -.06em; }
.ring-num span { margin-top: 12px; font-weight: 800; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fog); }
.verdict { min-height: 2.9em; max-width: 30ch; font: 600 clamp(18px, 1.6vw, 21px)/1.4 var(--display); letter-spacing: -.015em; }
.atm-meter .fine { margin-top: 0; }
@media (max-width: 899px) { .atm { grid-template-columns: 1fr; } .checks { grid-template-columns: 1fr; } }

/* ═════════ 03 · MÉTODO ═════════ */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 2.6vw, 36px); }
.step-n { display: block; font: 700 clamp(72px, 8vw, 124px)/.8 var(--display); letter-spacing: -.06em; color: transparent; -webkit-text-stroke: 1.5px #B3A794; transition: color .7s var(--ease), -webkit-text-stroke-color .7s var(--ease); }
.step h3 { position: relative; margin: 26px 0 12px; padding-top: 22px; border-top: 2px solid #CFC4B2; font: 700 clamp(23px, 2.2vw, 30px)/1.05 var(--display); letter-spacing: -.03em; }
.step h3::before { content: ""; position: absolute; left: 0; top: -2px; width: 100%; height: 2px; background: var(--signal); transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease); }
.step p { font-size: 15.5px; line-height: 1.62; color: var(--muted); }
.step.on .step-n { color: var(--signal); -webkit-text-stroke-color: var(--signal); }
.step.on h3::before { transform: scaleX(1); }
@media (min-width: 900px) {
  .step:nth-child(2) .step-n, .step:nth-child(2) h3::before { transition-delay: .18s; }
  .step:nth-child(3) .step-n, .step:nth-child(3) h3::before { transition-delay: .36s; }
  .step:nth-child(4) .step-n, .step:nth-child(4) h3::before { transition-delay: .54s; }
}
@media (max-width: 899px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 44px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.tech { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(48px, 6vw, 76px); }
.tech li { display: inline-flex; align-items: center; gap: 10px; min-height: 46px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); font-weight: 700; font-size: 14.5px; }
.tech li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

/* ═════════ 04 · ÁLVARO ═════════ */
.about { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(34px, 6vw, 96px); align-items: start; }
.about-media { position: sticky; top: 110px; }
.portrait { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 999px 999px 28px 28px; background: #CFE0DC; }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: grayscale(1) contrast(1.08); mix-blend-mode: multiply; transition: filter .9s var(--ease); }
.portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,23,31,0) 50%, rgba(8,23,31,.4)); pointer-events: none; }
.about-media:hover .portrait img { filter: grayscale(0) contrast(1); }
.stamp { position: absolute; right: -10px; bottom: -26px; width: 148px; height: 148px; display: grid; place-items: center; border-radius: 50%; background: var(--signal-btn); color: #fff; box-shadow: 0 24px 50px -24px rgba(196,71,30,.9); }
.stamp-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 24s linear infinite; }
.stamp-ring text { fill: #fff; font: 800 12.5px var(--body); letter-spacing: .14em; }
.stamp-mono { width: 70px; }
@keyframes spin { to { transform: rotate(360deg); } }
.quote { margin-top: 26px; padding-left: 22px; border-left: 3px solid var(--signal); font: 500 clamp(20px, 2.1vw, 26px)/1.4 var(--display); letter-spacing: -.02em; color: var(--text); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 34px 0 6px; }
.facts div { padding: 18px 16px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); }
.facts b { display: block; margin-bottom: 8px; font: 700 clamp(32px, 3.4vw, 46px)/1 var(--display); letter-spacing: -.05em; color: var(--teal); }
.facts span { display: block; font-weight: 600; font-size: 13px; line-height: 1.4; color: var(--muted); }
.mini-h { margin: 34px 0 12px; font: 800 12px/1 var(--body); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.timeline li { display: grid; grid-template-columns: 96px 1fr; gap: 16px; padding: 17px 0; border-top: 1px solid var(--line); }
.tl-when { padding-top: 3px; font-weight: 800; font-size: 12.5px; letter-spacing: .04em; color: var(--teal); }
.timeline b { display: block; margin-bottom: 4px; font: 600 17.5px/1.3 var(--display); letter-spacing: -.02em; }
.timeline span:not(.tl-when) { font-size: 14px; line-height: 1.5; color: var(--muted); }
.exp { display: grid; gap: 10px; margin-bottom: 30px; }
.exp li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.5; color: #2C3E47; }
.exp li::before { content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: #DDEDEA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11 12 5' fill='none' stroke='%230B6F69' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }
.colegiado { margin-bottom: 22px; font-size: 14px; color: var(--muted); }
@media (max-width: 899px) {
  .about { grid-template-columns: 1fr; }
  .about-media { position: relative; top: 0; width: min(100%, 420px); justify-self: center; }
}
@media (max-width: 480px) { .timeline li { grid-template-columns: 1fr; gap: 4px; } .facts { gap: 8px; } .facts div { padding: 14px 12px; } }

/* ═════════ OPINIONES ═════════ */
.teal-sec { background: var(--teal); color: #fff; }
.teal-sec .eyebrow { color: #BFE6DF; }
.gscore { display: inline-flex; align-items: center; gap: 16px; padding: 16px 22px; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; background: rgba(255,255,255,.1); }
.gscore b { font: 700 42px/1 var(--display); letter-spacing: -.04em; }
.stars { display: block; font-style: normal; letter-spacing: .1em; color: #FFC96B; }
.gscore small { display: block; font-size: 13px; color: #D2EEE9; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.review { display: flex; flex-direction: column; gap: 18px; padding: clamp(22px, 3vw, 30px); border-radius: 22px; background: var(--bone); color: var(--text); }
.review blockquote { flex: 1; font: 500 clamp(17px, 1.6vw, 19px)/1.5 var(--display); letter-spacing: -.015em; }
.review figcaption { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); font-weight: 700; font-size: 14px; }
.review figcaption span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ═════════ 05 · UBICACIÓN ═════════ */
.loc { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(16px, 2.4vw, 28px); }
.loc-info { display: flex; flex-direction: column; gap: 26px; padding: clamp(24px, 3.4vw, 40px); border: 1px solid rgba(127,209,195,.14); border-radius: var(--r); background: var(--ink-2); }
.route li { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding-bottom: 24px; }
.route li:last-child { padding-bottom: 0; }
.route li:not(:last-child)::after { content: ""; position: absolute; left: 23px; top: 54px; bottom: 6px; border-left: 2px dashed rgba(127,209,195,.3); }
.route-n { width: 48px; height: 48px; display: grid; place-items: center; border: 1.5px solid rgba(127,209,195,.4); border-radius: 50%; background: rgba(127,209,195,.08); color: var(--mint); font: 700 18px/1 var(--display); }
.route li:last-child .route-n { border-color: var(--signal-btn); background: var(--signal-btn); color: #fff; box-shadow: 0 0 0 7px rgba(226,91,48,.2); }
.route b { display: block; margin: 3px 0 4px; font: 600 clamp(19px, 1.8vw, 23px)/1.2 var(--display); letter-spacing: -.02em; color: var(--bone); }
.route span { font-size: 14.5px; line-height: 1.5; color: var(--fog); }
.hours { padding-top: 22px; border-top: 1px solid rgba(127,209,195,.14); }
.hours-t { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--bone); }
.hours-t svg { width: 20px; height: 20px; color: var(--mint); }
.hours-dl { display: grid; gap: 6px; margin-top: 12px; }
.hours-dl div { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; }
.hours-dl dt { color: var(--fog); }
.hours-dl dd { font-weight: 700; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.map-box { position: relative; min-height: 460px; overflow: hidden; border: 1px solid rgba(127,209,195,.14); border-radius: var(--r); background: #0C2230; }
.map-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-facade { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px; padding: 24px; }
.streets { position: absolute; inset: 0; width: 100%; height: 100%; }
.pin { position: relative; width: 64px; height: 64px; display: grid; place-items: center; }
.pin-head { position: relative; z-index: 1; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50% 50% 50% 6px; background: var(--signal-btn); transform: rotate(-45deg); box-shadow: 0 16px 30px -10px rgba(226,91,48,.7); }
.pin-head .mark { width: 38px; color: #fff; transform: rotate(45deg); }
.pin-ring { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border: 2px solid var(--signal); border-radius: 50%; animation: ping 2.4s var(--ease) infinite; }
.pin-ring.r2 { animation-delay: 1.2s; }
.map-card { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 18px 22px 16px; border: 1px solid rgba(127,209,195,.2); border-radius: 20px; background: rgba(8,23,31,.78); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); text-align: center; }
.map-card b { font: 600 19px/1.2 var(--display); letter-spacing: -.02em; }
.map-card > span { margin-bottom: 10px; font-size: 13.5px; color: var(--fog); }
.map-card small { margin-top: 8px; font-size: 11.5px; color: #7F98A2; }
@media (max-width: 899px) { .loc { grid-template-columns: 1fr; } .map-box { min-height: 380px; } }

/* ═════════ 06 · RESERVA ═════════ */
.booking { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(28px, 5vw, 72px); align-items: center; margin-bottom: clamp(56px, 7vw, 96px); }
.wizard { padding: clamp(22px, 3.4vw, 42px); border: 1px solid var(--line); border-radius: var(--r); background: var(--card); box-shadow: 0 50px 90px -60px rgba(16,34,46,.45); }
.wz-step { margin-bottom: 28px; }
.wz-legend { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font: 600 clamp(19px, 1.7vw, 22px)/1.2 var(--display); letter-spacing: -.02em; }
.wz-legend span { width: 28px; height: 28px; display: grid; place-items: center; flex-shrink: 0; border-radius: 50%; background: var(--text); color: #fff; font: 800 13px/1 var(--body); }
.wz-legend em { font: 500 14px var(--body); font-style: normal; color: var(--muted); }
.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { min-height: 46px; padding: 0 17px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--paper); font-weight: 700; font-size: 14.5px; cursor: pointer; transition: background .25s, border-color .25s, color .25s; }
.opt:hover { border-color: var(--text); }
.opt[aria-pressed="true"] { border-color: var(--teal); background: var(--teal); color: #fff; }
.field { width: 100%; min-height: 56px; padding: 0 18px; border: 1.5px solid var(--line); border-radius: 16px; background: var(--paper); font-size: 16px; font-weight: 500; }
.field::placeholder { color: #8C877C; }
.field:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(11,111,105,.15); }
.wz-preview { display: none; margin: -6px 0 22px; padding: 14px; border-radius: 18px; background: #EFE7DC; }
.wz-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; }
.wz-alt { font-weight: 700; font-size: 14.5px; color: var(--teal); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 4px; }
.wz-note { margin-top: 18px; font-size: 13px; color: var(--muted); }
.phone-wrap { display: grid; place-items: center; }
.phone { position: relative; width: min(100%, 340px); padding: 10px; border-radius: 46px; background: #0B1B23; box-shadow: 0 60px 90px -50px rgba(8,23,31,.7), inset 0 0 0 1.5px rgba(255,255,255,.08); transform: rotate(2.5deg); }
.phone::before { content: ""; position: absolute; z-index: 2; top: 20px; left: 50%; width: 92px; height: 26px; margin-left: -46px; border-radius: 20px; background: #000; }
.screen { overflow: hidden; border-radius: 37px; background: #EFE7DC; }
.phone-top { display: flex; align-items: center; gap: 10px; padding: 56px 16px 14px; background: var(--teal); color: #fff; }
.avatar { width: 40px; height: 40px; display: grid; place-items: center; flex-shrink: 0; border-radius: 50%; background: var(--bone); color: var(--teal); }
.avatar .mark { width: 30px; }
.phone-top b { display: block; font-size: 14.5px; line-height: 1.2; }
.phone-top small { font-size: 12px; opacity: .82; }
.chat { min-height: 330px; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; padding: 18px 14px 24px; background-color: #EFE7DC; background-image: radial-gradient(rgba(16,34,46,.07) 1px, transparent 1.2px); background-size: 16px 16px; }
.chat-hint { align-self: center; padding: 5px 12px; border-radius: 8px; background: rgba(255,255,255,.78); font-weight: 700; font-size: 11.5px; color: #5B6B72; }
.bubble { align-self: flex-end; max-width: 90%; margin-left: auto; padding: 10px 12px 7px; border-radius: 14px 14px 4px 14px; background: #D9FDD3; color: #10222E; font-size: 14.5px; line-height: 1.45; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.bubble small { display: flex; align-items: center; justify-content: flex-end; gap: 4px; margin-top: 4px; font-size: 11px; color: #667781; }
.bubble small svg { width: 16px; height: 11px; color: #53BDEB; }
.bubble.bump { animation: bump .4s var(--ease); }
@keyframes bump { 0% { transform: scale(.96); } 60% { transform: scale(1.02); } 100% { transform: none; } }
@media (max-width: 999px) {
  .booking { grid-template-columns: 1fr; }
  .phone-wrap { display: none; }
  .wz-preview { display: block; }
}
@media (max-width: 560px) { .wz-actions .btn { flex: 1 1 100%; } .btn-lg { padding: 0 20px; font-size: 15px; } .btn-xl { padding: 0 22px; font-size: 16px; } }

/* ═════════ 07 · FAQ ═════════ */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.faq-head { position: sticky; top: 100px; }
.faq-head .sec-intro { display: block; margin: 20px 0 28px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; list-style: none; cursor: pointer; font: 600 clamp(18px, 1.8vw, 22px)/1.25 var(--display); letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; flex-shrink: 0; width: 38px; height: 38px; border: 1.5px solid var(--line); border-radius: 50%; transition: transform .45s var(--ease), background .3s, border-color .3s, color .3s; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.8px; background: currentColor; transform: translate(-50%, -50%); }
.faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list summary:hover i { border-color: var(--text); }
.faq-list details[open] summary i { border-color: var(--text); background: var(--text); color: #fff; transform: rotate(45deg); }
.faq-list details p { padding: 0 56px 24px 0; font-size: 16px; line-height: 1.7; color: var(--muted); }
.faq-list details[open] p { animation: swap .5s var(--ease); }
@media (max-width: 899px) { .faq { grid-template-columns: 1fr; } .faq-head { position: static; } .faq-list details p { padding-right: 0; } }

/* ═════════ CTA FINAL ═════════ */
.final { position: relative; isolation: isolate; overflow: hidden; padding: clamp(96px, 13vw, 190px) var(--px); background: var(--signal-btn); color: #fff; text-align: center; }
.final::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 80% at 50% 0%, rgba(255,255,255,.16), transparent 70%), radial-gradient(50% 60% at 100% 100%, rgba(8,23,31,.35), transparent 70%); }
.final-mono { position: absolute; z-index: -1; right: -10%; bottom: -16%; width: min(96vw, 1180px); height: auto; max-width: none; color: #fff; opacity: .09; }
.final .eyebrow { justify-content: center; color: #FFE1D6; }
.final h2 { margin-bottom: 28px; font: 700 clamp(46px, 14.2vw, 232px)/.82 var(--display); letter-spacing: -.065em; }
.final-lead { max-width: 34ch; margin: 0 auto 40px; font-size: clamp(17px, 1.7vw, 22px); line-height: 1.5; }
.final-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ═════════ FOOTER ═════════ */
.foot { position: relative; overflow: hidden; padding: clamp(64px, 8vw, 100px) var(--px) 0; background: var(--ink); color: var(--bone); }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr .8fr; gap: clamp(28px, 4vw, 56px); padding-bottom: clamp(40px, 5vw, 64px); }
.logo-lg .logo-mono { width: auto; height: 44px; }
.logo-lg .logo-t b { font-size: 18px; }
.foot-brand > p { max-width: 36ch; margin: 20px 0 22px; font-size: 15px; line-height: 1.6; color: var(--fog); }
.socials { display: flex; gap: 10px; }
.socials a { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(251,249,246,.22); border-radius: 50%; transition: background .3s, border-color .3s; }
.socials a:hover { border-color: var(--bone); background: rgba(251,249,246,.1); }
.socials svg { width: 19px; height: 19px; }
.foot-col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: 15px; color: #D6E2E7; }
.foot-col h3 { margin-bottom: 8px; font: 800 11.5px/1 var(--body); letter-spacing: .16em; text-transform: uppercase; color: #7C919B; }
.foot-col a:hover { color: #fff; }
.foot-col p { line-height: 1.6; color: var(--fog); }
.foot .hours-dl { width: 100%; margin-top: 0; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 24px; padding: 22px 0; border-top: 1px solid rgba(251,249,246,.12); font-size: 13px; color: #8FA3AD; }
.foot-bottom nav { display: flex; gap: 20px; }
.foot-bottom a:hover { color: #fff; }
.foot-giant { margin: 0 calc(var(--px) * -1); font: 700 clamp(48px, 12vw, 190px)/.8 var(--display); letter-spacing: -.06em; text-align: center; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(127,209,195,.24); transform: translateY(18%); user-select: none; }
@media (max-width: 899px) { .foot-top { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } .foot { padding-bottom: 76px; } }

/* ═════════ 04 · VÍDEOS ═════════ */
.reels { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.reel { position: relative; display: block; aspect-ratio: 9 / 16; overflow: hidden; padding: 0; border: 1px solid rgba(127,209,195,.16); border-radius: 22px; background: var(--ink-2); color: #fff; text-align: left; cursor: pointer; isolation: isolate; transition: transform .5s var(--ease), border-color .3s, box-shadow .5s var(--ease); }
.reel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.reel::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,23,31,.55) 0%, rgba(8,23,31,0) 28%, rgba(8,23,31,0) 55%, rgba(8,23,31,.88) 100%); }
.reel:hover { transform: translateY(-6px); border-color: rgba(127,209,195,.5); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.reel:hover video { transform: scale(1.05); }
.reel-top { position: absolute; z-index: 2; top: 12px; left: 12px; right: 12px; display: flex; align-items: center; justify-content: space-between; font: 800 11px/1 var(--body); letter-spacing: .12em; }
.reel-n { color: var(--mint); }
.reel-dur { padding: 5px 8px; border-radius: 999px; background: rgba(8,23,31,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); letter-spacing: .04em; }
.reel-play { position: absolute; z-index: 2; left: 50%; top: 50%; width: 54px; height: 54px; margin: -27px 0 0 -27px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(251,249,246,.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; transform: scale(.85); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.reel-play svg { width: 20px; height: 20px; margin-left: 3px; }
.reel:hover .reel-play, .reel:focus-visible .reel-play { opacity: 1; transform: none; }
.reel-t { position: absolute; z-index: 2; left: 14px; right: 14px; bottom: 14px; font: 600 clamp(15px, 1.3vw, 18px)/1.15 var(--display); letter-spacing: -.02em; }
.reels-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; margin-top: clamp(28px, 4vw, 44px); padding: 22px 26px; border: 1px solid rgba(127,209,195,.16); border-radius: var(--r); background: var(--ink-2); }
.reels-foot p { font: 600 clamp(19px, 1.8vw, 24px)/1.2 var(--display); letter-spacing: -.02em; }
@media (max-width: 1099px) { .reels { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 699px) {
  .reels { display: flex; gap: 10px; margin: 0 calc(var(--px) * -1); padding: 4px var(--px) 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .reels::-webkit-scrollbar { display: none; }
  .reel { flex: 0 0 62vw; scroll-snap-align: center; }
  .reel-play { width: 46px; height: 46px; margin: -23px 0 0 -23px; opacity: 1; transform: none; }
}
.vmodal { width: min(92vw, 420px); max-height: 94vh; padding: 0; border: 0; border-radius: 26px; background: var(--ink); color: var(--bone); overflow: hidden; }
.vmodal::backdrop { background: rgba(4,12,16,.84); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.vmodal[open] { animation: vIn .45s var(--ease); }
@keyframes vIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
.vmodal-box { position: relative; }
.vmodal-video { display: block; width: 100%; aspect-ratio: 9 / 16; max-height: calc(94vh - 72px); object-fit: contain; background: #000; }
.vmodal-close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(8,23,31,.62); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.vmodal-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px 12px 18px; }
.vmodal-foot p { font: 600 17px/1.2 var(--display); letter-spacing: -.02em; }

/* ── Reserva online (Profisio) y bloque de WhatsApp ── */
.book-card { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: clamp(26px, 4vw, 48px); border-radius: var(--r); background: var(--ink); color: var(--bone); box-shadow: 0 50px 90px -60px rgba(8,23,31,.7); }
.book-tag { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1px solid rgba(127,209,195,.24); border-radius: 999px; background: rgba(127,209,195,.1); color: var(--mint); font: 800 12px/1 var(--body); letter-spacing: .12em; text-transform: uppercase; }
.book-tag svg { width: 16px; height: 16px; }
.book-card h3 { font: 700 clamp(30px, 3.4vw, 46px)/1 var(--display); letter-spacing: -.04em; }
.book-steps { display: grid; gap: 12px; margin: 4px 0 8px; }
.book-steps li { display: flex; align-items: center; gap: 14px; font-size: clamp(15.5px, 1.3vw, 17px); color: #D6E2E7; }
.book-steps span { flex-shrink: 0; width: 34px; height: 34px; display: grid; place-items: center; border: 1.5px solid rgba(127,209,195,.35); border-radius: 50%; background: rgba(127,209,195,.1); color: var(--mint); font: 700 15px/1 var(--display); }
.book-note { font-size: 13px; color: var(--fog); }
.agenda { min-height: 330px; display: flex; flex-direction: column; gap: 10px; padding: 18px 16px 22px; background: #F7F3EC; color: var(--text); }
.ag-label { margin-top: 6px; font-weight: 800; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ag-service { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border: 1.5px solid var(--teal); border-radius: 14px; background: #fff; font-size: 14.5px; }
.ag-check { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; }
.ag-check svg { width: 14px; height: 10px; }
.ag-slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.ag-slots span { padding: 11px 0; border: 1px solid var(--line); border-radius: 12px; background: #fff; text-align: center; font-weight: 700; font-size: 14px; }
.ag-slots .on { border-color: var(--signal-btn); background: var(--signal-btn); color: #fff; }
.ag-btn { margin-top: auto; padding: 13px; border-radius: 999px; background: var(--text); color: #fff; text-align: center; font-weight: 700; font-size: 14.5px; }
.wa-block { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 72px); align-items: start; margin-bottom: clamp(56px, 7vw, 96px); padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.wa-intro h3 { margin-bottom: 14px; font: 700 clamp(30px, 3.4vw, 46px)/1 var(--display); letter-spacing: -.04em; }
.wa-intro > p:not(.eyebrow) { max-width: 38ch; font-size: clamp(16px, 1.35vw, 18px); line-height: 1.6; color: var(--muted); }
.wz-preview { display: block; }
@media (max-width: 899px) { .wa-block { grid-template-columns: 1fr; } }
@media (max-width: 1199px) and (min-width: 1000px) { .nav { gap: 16px; } .nav a { font-size: 14px; } }

/* ── Promo en portada ── */
.hero-promo { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 7px 14px 7px 7px; border: 1px solid rgba(226,91,48,.45); border-radius: 999px; background: rgba(196,71,30,.14); color: #FFD9CB; font-weight: 700; font-size: 14px; line-height: 1.3; animation: fadeUp 1s var(--ease) .5s both; transition: background .3s, border-color .3s; }
.hero-promo:hover { border-color: rgba(226,91,48,.8); background: rgba(196,71,30,.26); }
.hero-promo-ico { width: 30px; height: 30px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: var(--signal-btn); color: #fff; }
.hero-promo-ico svg { width: 16px; height: 16px; }
.hero-promo .arr { width: 16px; height: 16px; flex-shrink: 0; transition: transform .4s var(--ease); }
.hero-promo:hover .arr { transform: translateX(4px); }

/* ── 07 · Tarifas por sesión ── */
.tarifas-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 24px; margin-bottom: 18px; }
.tarifas-head h3 { font: 700 clamp(26px, 2.6vw, 34px)/1.05 var(--display); letter-spacing: -.03em; }
.tarifas-head p { font-size: 15px; color: var(--muted); }
.tarifas-head a { font-weight: 700; color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.svc { display: flex; flex-direction: column; gap: 10px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--card); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s; }
.svc:hover { transform: translateY(-4px); border-color: #CDBFAC; box-shadow: 0 30px 50px -36px rgba(16,34,46,.45); }
.svc-hi { border-color: rgba(196,71,30,.45); box-shadow: 0 0 0 1px rgba(196,71,30,.18); }
.svc-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 30px; }
.svc-min { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: var(--paper); font-weight: 800; font-size: 12px; color: var(--muted); }
.svc-min svg { width: 14px; height: 14px; }
.svc h4 { margin: 4px 0 0; font: 700 21px/1.1 var(--display); letter-spacing: -.02em; }
.svc-desc { flex: 1; font-size: 14px; line-height: 1.55; color: var(--muted); }
.svc-price { margin-top: 6px; font: 700 40px/1 var(--display); letter-spacing: -.045em; }
.svc .btn { align-self: stretch; margin-top: 6px; }
@media (max-width: 1099px) { .services { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

/* ═════════ 08 · BONOS Y PROMOCIONES ═════════ */
.bono-tabs { display: flex; gap: 6px; width: fit-content; max-width: 100%; margin-bottom: 30px; padding: 6px; border: 1px solid rgba(127,209,195,.18); border-radius: 999px; background: rgba(251,249,246,.04); }
.bono-tab { flex-shrink: 0; min-height: 44px; padding: 0 18px; border: 0; border-radius: 999px; background: transparent; color: var(--fog); font-weight: 700; font-size: 14.5px; cursor: pointer; transition: background .3s var(--ease), color .3s; }
.bono-tab:hover { color: var(--bone); }
.bono-tab[aria-selected="true"] { background: var(--bone); color: var(--text); }
.bono-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.bono { position: relative; display: flex; flex-direction: column; gap: 6px; padding: clamp(26px, 3vw, 34px); border: 1px solid rgba(127,209,195,.16); border-radius: var(--r); background: linear-gradient(180deg, rgba(18,52,68,.55), rgba(13,36,48,.3)); animation: swap .55s var(--ease) both; }
.bono:nth-child(2) { animation-delay: .06s; }
.bono:nth-child(3) { animation-delay: .12s; }
.bono-hi { border-color: rgba(226,91,48,.55); background: linear-gradient(180deg, rgba(196,71,30,.22), rgba(13,36,48,.35)); box-shadow: 0 40px 80px -50px rgba(226,91,48,.6); }
.bono-badge { position: absolute; top: -13px; left: clamp(26px, 3vw, 34px); padding: 7px 12px; border-radius: 999px; background: var(--mint); color: var(--ink); font-weight: 800; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.bono-hi .bono-badge { background: var(--signal-btn); color: #fff; }
.bono-n { font: 600 20px/1 var(--display); letter-spacing: -.02em; color: var(--bone); }
.bono-n b { margin-right: 8px; font-size: clamp(56px, 5.6vw, 76px); letter-spacing: -.06em; }
.bono-svc { margin-bottom: 14px; font-size: 13.5px; color: var(--fog); }
.bono-price { display: flex; align-items: baseline; gap: 10px; }
.bono-price b { font: 700 clamp(36px, 3.4vw, 46px)/1 var(--display); letter-spacing: -.045em; color: #fff; }
.bono-price s { font-size: 16px; color: #7F98A2; }
.bono-per { font-size: 14px; color: var(--fog); }
.bono-save { align-self: flex-start; margin: 8px 0 4px; padding: 6px 11px; border-radius: 999px; background: rgba(127,209,195,.14); color: var(--mint); font-weight: 800; font-size: 12.5px; }
.bono-hi .bono-save { background: rgba(226,91,48,.2); color: #FFB59C; }
.bono-feat { display: grid; gap: 8px; margin: 12px 0 22px; }
.bono-feat li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #D6E2E7; }
.bono-feat li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: rgba(127,209,195,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11 12 5' fill='none' stroke='%237FD1C3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat; }
.bono .btn { margin-top: auto; }
.promos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: clamp(28px, 4vw, 44px); }
.promo { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 24px; border: 1px dashed rgba(127,209,195,.3); border-radius: var(--r); background: rgba(251,249,246,.03); }
.promo-ico { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 8px; border-radius: 14px; background: var(--signal-btn); color: #fff; }
.promo-ico svg { width: 22px; height: 22px; }
.promo-t { font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); }
.promo-big { font: 700 clamp(22px, 2vw, 27px)/1.1 var(--display); letter-spacing: -.03em; color: #fff; }
.promo-txt { flex: 1; margin-bottom: 14px; font-size: 14.5px; line-height: 1.55; color: var(--fog); }
@media (max-width: 999px) {
  .promos { grid-template-columns: 1fr; }
  .bono-tabs { width: 100%; overflow-x: auto; scrollbar-width: none; }
  .bono-tabs::-webkit-scrollbar { display: none; }
  .bono-grid { display: flex; gap: 12px; margin: 0 calc(var(--px) * -1); padding: 18px var(--px) 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .bono-grid::-webkit-scrollbar { display: none; }
  .bono { flex: 0 0 min(84vw, 360px); scroll-snap-align: center; }
}

/* ── Cabecera de cada apartado ── */
.phero { position: relative; overflow: hidden; padding: clamp(128px, 17vh, 180px) var(--px) clamp(64px, 8vw, 104px); background: var(--ink); color: var(--bone); }
.phero .wrap { z-index: 1; }
.phero-mark { position: absolute; z-index: 0; right: -6%; bottom: -20%; width: min(72vw, 940px); color: var(--mint); opacity: .09; pointer-events: none; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--fog); animation: fadeUp .9s var(--ease) both; }
.crumbs a { color: var(--mint); }
.crumbs a:hover { color: #fff; }
.phero-title { max-width: 15ch; margin-bottom: 22px; font: 700 clamp(44px, 6.4vw, 100px)/.92 var(--display); letter-spacing: -.05em; text-wrap: balance; animation: fadeUp 1s var(--ease) .06s both; }
.phero-lead { max-width: 54ch; margin-bottom: 32px; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; color: #C3D2D8; animation: fadeUp 1s var(--ease) .14s both; }
.phero-cta { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeUp 1s var(--ease) .22s both; }
.phero + .sec.dark { padding-top: clamp(8px, 2vw, 24px); }
.nav a[aria-current="page"] { opacity: 1; }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu nav a[aria-current="page"] { color: var(--mint); }
@media (max-width: 699px) { .phero-mark { width: 130vw; right: -45%; bottom: -8%; } .phero-cta .btn { flex: 1 1 100%; } }

/* ── Siguiente apartado ── */
.next { padding: 0 var(--px); background: var(--paper); }
.next-link { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 24px; padding: clamp(44px, 6vw, 80px) 0; border-top: 1px solid var(--line); color: var(--text); }
.next-k { grid-column: 1; font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); }
.next-t { grid-column: 1; font: 700 clamp(40px, 7vw, 110px)/.9 var(--display); letter-spacing: -.055em; transition: color .4s var(--ease); }
.next-go { grid-column: 2; grid-row: 1 / span 2; width: clamp(64px, 8vw, 110px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--text); color: #fff; transition: background .4s var(--ease), transform .5s var(--ease); }
.next-go svg { width: 40%; height: 40%; }
.next-link:hover .next-t { color: var(--signal-btn); }
.next-link:hover .next-go { background: var(--signal-btn); transform: rotate(-45deg); }

/* ── Inicio: explora por apartados ── */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: 380px 300px 300px; grid-template-areas: "trat trat atm" "vid prec sobre" "vid ubi dudas"; gap: 14px; }
.tile { position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 26px; border-radius: var(--r); background: var(--ink-2); color: #fff; transition: box-shadow .5s var(--ease); }
.tile:hover { box-shadow: 0 40px 70px -40px rgba(8,23,31,.6); }
.tile > img, .tile > video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tile:hover > img, .tile:hover > video, .tile:hover .tile-strip img { transform: scale(1.06); }
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,23,31,.05) 30%, rgba(8,23,31,.88) 100%); }
.tile-strip { position: absolute; inset: 0; z-index: -2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.tile-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tile-k { display: block; margin-bottom: 8px; font-weight: 800; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); }
.tile-t { display: block; margin-bottom: 6px; font: 700 clamp(26px, 2.6vw, 38px)/1 var(--display); letter-spacing: -.04em; }
.tile-big { display: block; margin-bottom: 10px; font: 700 clamp(44px, 4.6vw, 68px)/.9 var(--display); letter-spacing: -.06em; }
.tile-d { display: block; max-width: 36ch; font-size: 14.5px; line-height: 1.5; color: #D6E2E7; }
.tile-go { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(251,249,246,.14); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); transition: background .35s var(--ease), border-color .35s, transform .45s var(--ease); }
.tile-go svg { width: 20px; height: 20px; }
.tile:hover .tile-go { border-color: var(--signal-btn); background: var(--signal-btn); transform: rotate(-45deg); }
.tile-trat { grid-area: trat; }
.tile-atm { grid-area: atm; }
.tile-vid { grid-area: vid; }
.tile-prec { grid-area: prec; background: var(--signal-btn); }
.tile-sobre { grid-area: sobre; }
.tile-sobre > img { object-position: 50% 22%; }
.tile-ubi { grid-area: ubi; background: var(--ink); }
.tile-dudas { grid-area: dudas; border: 1px solid var(--line); background: var(--card); color: var(--text); }
.tile-prec::before, .tile-ubi::before, .tile-dudas::before { display: none; }
.tile-prec .tile-k { color: #FFE1D6; }
.tile-prec .tile-d { color: #FFE9E1; }
.tile-dudas .tile-k { color: var(--teal); }
.tile-dudas .tile-d { color: var(--muted); }
.tile-dudas .tile-go { border-color: var(--line); background: var(--paper); color: var(--text); }
.tile-dudas:hover .tile-go { color: #fff; }
.tile-mark { position: absolute; z-index: -1; right: -14%; top: -6%; width: 95%; color: var(--mint); opacity: .13; }
@media (max-width: 999px) { .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; grid-auto-rows: minmax(260px, auto); grid-template-areas: "trat trat" "atm vid" "prec vid" "sobre ubi" "dudas dudas"; } }
@media (max-width: 599px) { .bento { grid-template-columns: 1fr; grid-auto-rows: minmax(230px, auto); grid-template-areas: "trat" "atm" "vid" "prec" "sobre" "ubi" "dudas"; } .tile-vid { min-height: 420px; } }

/* ── ATM: cómo es la sesión ── */
.atm-info { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.atm-info .sec-intro { display: block; margin: 22px 0 26px; }
.atm-info .exp { margin-bottom: 26px; }
.atm-price { display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin-bottom: 26px; padding: 16px 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); }
.atm-price span { font-weight: 700; color: var(--muted); }
.atm-price b { font: 700 36px/1 var(--display); letter-spacing: -.04em; }
.atm-price small { font-weight: 700; color: var(--muted); }
.atm-info-video .reel { width: min(100%, 360px); margin-inline: auto; }
@media (max-width: 899px) { .atm-info { grid-template-columns: 1fr; } }

/* ── Barra fija móvil, aviso y modo borrador ── */
.mbar { position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 80; display: none; gap: 8px; padding: 7px; border-radius: 999px; background: rgba(8,23,31,.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 20px 44px -18px rgba(0,0,0,.6); transform: translateY(calc(100% + 30px)); transition: transform .55s var(--ease); }
.mbar.show { transform: none; }
.mbar .btn { flex: 1; min-height: 52px; }
.mbar-wa { flex: 0 0 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; }
.mbar-wa svg { width: 24px; height: 24px; }
@media (max-width: 899px) { .mbar { display: flex; } }

/* ── Botón flotante de WhatsApp (escritorio; en móvil ya va en la barra inferior). Se oculta solo si no hay número en config.js ── */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 10px; min-height: 56px; padding: 0 22px 0 16px; border-radius: 999px; background: #25D366; color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .01em; text-decoration: none; box-shadow: 0 18px 40px -14px rgba(37,211,102,.7), 0 6px 18px -8px rgba(0,0,0,.35); transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease; }
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float:hover { transform: translateY(-3px); background: #1EBE5A; color: #fff; box-shadow: 0 24px 48px -14px rgba(37,211,102,.75), 0 8px 20px -8px rgba(0,0,0,.4); }
.wa-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
@media (max-width: 899px) { .wa-float { display: none; } }
@media (prefers-reduced-motion: reduce) { .wa-float { transition: none; } .wa-float:hover { transform: none; } }
.toast { position: fixed; left: 50%; bottom: 96px; z-index: 300; max-width: min(92vw, 440px); padding: 14px 18px; border-radius: 14px; background: var(--text); color: #fff; font-weight: 600; font-size: 14.5px; line-height: 1.45; box-shadow: 0 20px 40px -20px rgba(0,0,0,.6); opacity: 0; transform: translate(-50%, 16px); pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.draft { position: fixed; left: 12px; bottom: 12px; z-index: 250; width: min(340px, calc(100vw - 24px)); padding: 14px 42px 14px 16px; border: 1px solid #EFD27A; border-radius: 16px; background: #FFF1BF; color: #4A3A00; font-size: 13px; line-height: 1.45; box-shadow: 0 18px 40px -18px rgba(0,0,0,.45); }
.draft b { display: block; margin-bottom: 4px; font-weight: 800; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.draft small { display: block; margin-top: 6px; color: #7A6320; }
.draft button { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border: 0; border-radius: 50%; background: rgba(74,58,0,.1); font-size: 17px; line-height: 1; cursor: pointer; }
@media (max-width: 899px) { .draft { bottom: 80px; padding: 10px 38px 10px 12px; font-size: 12px; } .draft small { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .band-track, .scan, .stamp-ring { animation: none !important; }
}
