/* ═══════════════════════════════════════════════════════════════════════
   EL VIAJE · recuperado del commit 82cb000 del 21-may-2026
   «viaje universitario agéntico + 3D dramatizado al aterrizar»

   El original estaba escrito para que el globo FUESE la página: reset
   global, reglas sobre html y body, y ocho bloques con position:fixed e
   inset:0. Soltarlo tal cual encima de la web actual la habría tapado
   entera, que es exactamente como se rompió esto en agosto.

   Tres cambios y ninguno más:
     · fuera el reset y las reglas de html/body,
     · cada selector acotado bajo #viaje,
     · position:fixed → position:absolute, anclado al contenedor.

   El CSS de dentro no se ha tocado. Si el viaje se ve raro, es del
   original, no de la adaptación.
   ═══════════════════════════════════════════════════════════════════════ */

#viaje{
  position:relative;
  height:100svh;min-height:560px;
  overflow:hidden;
  isolation:isolate;   /* el topbar del sitio va en z-index 100: aquí dentro
                          los z-index del viaje no se le suben encima */
  background:#0a0a0a;
  color:#f3efe7;
}

#viaje /* ═══════════════════════════════════════════════════════
   COSAS AGÉNTICAS — 3D GLOBE TACTICAL HUD
   Cyberpunk Military HUD · Zero Radius · B&W + Gold
   ═══════════════════════════════════════════════════════ */

:root {
  --black: #000;
  --white: #fff;
  --g4: #86868b;
  --g5: #6e6e73;
  --gold: #c9a86c;
  --border: rgba(255,255,255,.12);
  --border-bright: rgba(255,255,255,.25);
  --panel-bg: rgba(8,8,8,.88);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Space Mono', 'SF Mono', 'Courier New', monospace;
  --ease: cubic-bezier(.25,.1,.25,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}
#viaje ::selection { background: var(--white); color: var(--black); }
#viaje a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: rgba(255,255,255,.3); }
#viaje a:hover { text-decoration-color: var(--white); }
#viaje .hidden { display: none !important; }
#viaje /* ═══ MAP CONTAINER ═══ */
#globe-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#viaje #globe-container canvas { outline: none; }
#viaje /* ═══ MAPBOX OVERRIDES ═══ */
.mapboxgl-ctrl-logo, #viaje .mapboxgl-ctrl-attrib { display: none !important; }
#viaje .mapboxgl-canvas { outline: none; }
#viaje /* ═══ HUD ═══ */
.hud {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  pointer-events: none;
}
#viaje .hud-left, #viaje .hud-center, #viaje .hud-right { pointer-events: auto; }
#viaje .hud-brand-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .45rem;
}
#viaje .hud-brand {
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border-bright);
  padding: .55rem 1.1rem;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s, color .2s;
}
#viaje .hud-brand::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 10px; height: 10px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
#viaje .hud-brand::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 10px; height: 10px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
#viaje .hud-brand:hover {
  border-color: var(--gold);
  background: rgba(201,168,108,.08);
  color: var(--gold);
}
#viaje /* Status line below the brand: pulsing dot + text */
.hud-status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding-left: .1rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.78);
}
#viaje .status-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
#viaje .status-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse-ring 1.4s cubic-bezier(.4,0,.6,1) infinite;
}
#viaje .status-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse-ring 1.4s cubic-bezier(.4,0,.6,1) infinite;
  animation-delay: .5s;
}
#viaje .status-green { background: #10b981; animation: dot-pulse-green 1.4s ease-in-out infinite; }
#viaje .status-green::before, #viaje .status-green::after { background: rgba(16,185,129,.7); }
#viaje .status-red { background: #ef4444; animation: dot-pulse-red 1.4s ease-in-out infinite; }
#viaje .status-red::before, #viaje .status-red::after { background: rgba(239,68,68,.7); }


@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: .9; }
  70%  { transform: scale(3.2); opacity: 0;  }
  100% { transform: scale(3.2); opacity: 0;  }
}

@keyframes dot-pulse-green {
  0%, 100% { box-shadow: 0 0 6px rgba(16,185,129,.5); }
  50%      { box-shadow: 0 0 18px rgba(16,185,129,1), 0 0 32px rgba(16,185,129,.6); }
}

@keyframes dot-pulse-red {
  0%, 100% { box-shadow: 0 0 6px rgba(239,68,68,.5); }
  50%      { box-shadow: 0 0 18px rgba(239,68,68,1), 0 0 32px rgba(239,68,68,.6); }
}
#viaje .hud-location {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  background: var(--panel-bg);
  border: 1px solid var(--border);
  padding: .4rem 1rem;
  border-radius: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 120px;
  text-align: center;
  white-space: nowrap;
  transition: opacity .3s, border-color .3s;
}
#viaje .hud-location:not(:empty) { border-color: var(--border-bright); }
#viaje .hud-right { display: flex; gap: .5rem; }
#viaje .hud-btn {
  width: 34px; height: 34px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--g4);
  font-size: .75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
  position: relative;
}
#viaje .hud-btn::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 6px; height: 6px;
  border-top: 1px solid rgba(255,255,255,.3);
  border-left: 1px solid rgba(255,255,255,.3);
  transition: border-color .2s;
}
#viaje .hud-btn:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.06);
}
#viaje .hud-btn:hover::before { border-color: var(--white); }
#viaje .hud-btn.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
#viaje /* ═══ LOCATION LIST ═══ */
.location-list {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 170px;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  overflow: hidden;
}
#viaje .location-list::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 16px; height: 16px;
  border-top: 1px solid var(--border-bright);
  border-left: 1px solid var(--border-bright);
  pointer-events: none;
  z-index: 10;
}
#viaje .location-list::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 16px; height: 16px;
  border-bottom: 1px solid var(--border-bright);
  border-right: 1px solid var(--border-bright);
  pointer-events: none;
  z-index: 10;
}
#viaje .location-list-header {
  font-family: var(--mono);
  font-size: .48rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--g4);
  padding: .6rem .8rem .4rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}
#viaje .location-list-header::before {
  content: '//';
  color: var(--white);
  font-weight: 700;
}
#viaje .location-items { max-height: 60vh; overflow-y: auto; scrollbar-width: none; }
#viaje .location-items::-webkit-scrollbar { display: none; }
#viaje .location-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .9rem;
  cursor: pointer;
  transition: background .2s, border-color .2s, padding-left .2s;
  border-bottom: 1px solid rgba(201,168,108,.08);
  border-left: 2px solid transparent;
  position: relative;
}
#viaje .location-item:last-child { border-bottom: none; }
#viaje .location-item:hover {
  background: rgba(201,168,108,.07);
  border-left-color: rgba(201,168,108,.6);
  padding-left: 1.1rem;
}
#viaje .location-item.active {
  background: rgba(201,168,108,.12);
  border-left-color: var(--gold);
}
#viaje .location-dot {
  width: 7px; height: 7px;
  border-radius: 0;
  background: var(--g4);
  flex-shrink: 0;
  transition: background .2s, box-shadow .2s, transform .2s;
}
#viaje .location-item:hover .location-dot { background: var(--gold); transform: scale(1.2); }
#viaje .location-item.active .location-dot {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,108,.6);
}
#viaje .location-text { display: flex; flex-direction: column; min-width: 0; }
#viaje .location-name {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color .15s;
  letter-spacing: .02em;
}
#viaje .location-item:hover .location-name { color: var(--white); }
#viaje .location-item.active .location-name { color: var(--white); }
#viaje .location-city {
  font-family: var(--mono);
  font-size: .5rem;
  color: var(--g4);
  margin-top: .15rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
#viaje .location-item:hover .location-city { color: rgba(201,168,108,.85); }
#viaje .location-item.active .location-city { color: var(--gold); }
#viaje /* ── Último nodo: Cosas Agénticas Guías (cierre narrativo) ── */
.location-item.is-guias {
  border-top: 1px solid rgba(201,168,108,.18);
  background: rgba(201,168,108,.04);
}
#viaje .location-item.is-guias .location-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ef4444;
  animation: dot-pulse-red 1.4s ease-in-out infinite;
  position: relative;
}
#viaje .location-item.is-guias .location-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(239,68,68,.7);
  animation: pulse-ring 1.4s cubic-bezier(.4,0,.6,1) infinite;
}
#viaje .location-item.is-guias .location-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(239,68,68,.7);
  animation: pulse-ring 1.4s cubic-bezier(.4,0,.6,1) infinite;
  animation-delay: .5s;
}
#viaje .location-item.is-guias:hover .location-dot { transform: none; }
#viaje .location-item.is-guias .location-name { color: var(--white); }
#viaje .location-item.is-guias .location-city { color: var(--gold); }
#viaje /* ═══ PROJECT PANEL ═══ */
.project-panel {
  position: absolute;
  z-index: 70;
  width: min(480px, calc(100% - 2rem));
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 0;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  overflow: hidden;
}
#viaje .project-panel.visible { opacity: 1; pointer-events: auto; }
#viaje .project-panel::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--border-bright);
  border-left: 1px solid var(--border-bright);
  pointer-events: none; z-index: 10;
}
#viaje .project-panel::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--border-bright);
  border-right: 1px solid var(--border-bright);
  pointer-events: none; z-index: 10;
}
#viaje .panel-connector {
  position: absolute; z-index: 69;
  pointer-events: none; opacity: 0;
  transition: opacity .35s var(--ease);
}
#viaje .panel-connector.visible { opacity: 1; }
#viaje .panel-connector line {
  stroke: rgba(255,255,255,.38);
  stroke-width: 1;
  stroke-dasharray: 4 3;
}
#viaje .panel-close {
  position: absolute;
  top: .6rem; right: .6rem;
  width: 24px; height: 24px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--g5);
  font-size: .6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 5;
}
#viaje .panel-close:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
#viaje .panel-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#viaje .panel-image-wrap img { width: 100%; height: 100%; object-fit: cover; background: rgba(0,0,0,.3); }
#viaje .panel-info { padding: 1rem 1.2rem 1.2rem; }
#viaje .panel-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--white);
  text-transform: uppercase;
}
#viaje .panel-city {
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--g5);
  margin-top: .3rem;
}
#viaje .panel-city::before { content: '◆ '; color: var(--white); font-size: .4rem; }
#viaje .panel-stat {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: .6rem;
  letter-spacing: -.02em;
}
#viaje .panel-desc {
  font-size: .75rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-top: .5rem;
}
#viaje .panel-link {
  display: inline-block;
  margin-top: .7rem;
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  padding: .4rem .9rem;
  border-radius: 0;
  border: 1px solid var(--border-bright);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .2s;
  position: relative;
}
#viaje .panel-link:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
#viaje /* ═══ BIO OVERLAY ═══ */
.bio-overlay {
  position: absolute; inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
#viaje .bio-overlay.visible { opacity: 1; pointer-events: auto; }
#viaje .bio-panel {
  width: min(400px, calc(100% - 2rem));
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 0;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 2rem;
  position: relative;
  scrollbar-width: none;
}
#viaje .bio-panel::-webkit-scrollbar { display: none; }
#viaje .bio-panel::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 16px; height: 16px;
  border-top: 1px solid var(--border-bright);
  border-left: 1px solid var(--border-bright);
  pointer-events: none; z-index: 10;
}
#viaje .bio-panel::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 16px; height: 16px;
  border-bottom: 1px solid var(--border-bright);
  border-right: 1px solid var(--border-bright);
  pointer-events: none; z-index: 10;
}
#viaje .bio-name { font-size: 1.4rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
#viaje .bio-role { font-family: var(--mono); font-size: .6rem; letter-spacing: .15em; color: var(--g5); margin-top: .3rem; text-transform: uppercase; }
#viaje .bio-text { margin-top: 1rem; font-size: .8rem; line-height: 1.8; color: rgba(255,255,255,.6); }
#viaje .bio-text p { margin-bottom: .9rem; }
#viaje .bio-email {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--g5);
  text-decoration: none;
  letter-spacing: .08em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
#viaje .bio-email:hover { color: var(--white); border-bottom-color: var(--white); }
#viaje /* ═══ HUD PLAY BUTTON (arriba derecha, #viaje parpadeo dorado cada 4s + label "Hey aquí") ═══ */
.hud-play-block {
  position: relative;
  display: flex;
  align-items: center;
}
#viaje .hud-btn-play {
  width: 110px;
  height: 38px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 1rem;
  letter-spacing: .15em;
  animation: hud-play-blink 4s ease-in-out infinite;
}
#viaje .hud-btn-play::before {
  top: -2px !important;
  left: -2px !important;
  width: 12px !important;
  height: 12px !important;
  border-top: 2px solid var(--white) !important;
  border-left: 2px solid var(--white) !important;
}
#viaje .hud-btn-play::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
#viaje .hud-btn-play:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.15);
  color: var(--white);
}
#viaje .hud-btn-play.active {
  animation: none;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 0 18px rgba(255,255,255,.55);
}


@keyframes hud-play-blink {
  0%, 60%, 100% {
    background: transparent;
    color: var(--white);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
  8% {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 0 0 0 rgba(255,255,255,.95), 0 0 32px rgba(255,255,255,.75);
  }
  18% {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 0 0 14px rgba(255,255,255,0), 0 0 32px rgba(255,255,255,.75);
  }
  26% {
    background: transparent;
    color: var(--white);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}
#viaje .hud-play-label {
  position: absolute;
  top: calc(100% + .45rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--white);
  letter-spacing: .04em;
  font-weight: 700;
  white-space: nowrap;
  animation: hud-label-glow 4s ease-in-out infinite;
  pointer-events: none;
}
#viaje .hud-btn-play.active + .hud-play-label {
  animation: none;
  color: rgba(255,255,255,.4);
}


@keyframes hud-label-glow {
  0%, 60%, 100% { opacity: .55; transform: translateX(-50%) translateY(0); }
  12%           { opacity: 1;   transform: translateX(-50%) translateY(-2px); text-shadow: 0 0 12px rgba(255,255,255,.9); }
}
#viaje /* ═══ FLIGHT STRIP ═══ */
.flight-strip {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: .5rem 1.2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: opacity .4s, transform .4s var(--ease);
  white-space: nowrap;
}
#viaje .flight-strip::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 8px; height: 8px;
  border-top: 1px solid var(--border-bright);
  border-left: 1px solid var(--border-bright);
  pointer-events: none;
}
#viaje .flight-strip::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 8px; height: 8px;
  border-bottom: 1px solid var(--border-bright);
  border-right: 1px solid var(--border-bright);
  pointer-events: none;
}
#viaje .strip-from, #viaje .strip-to {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
}
#viaje .strip-to { color: var(--white); font-weight: 700; }
#viaje .strip-line {
  width: 80px; height: 1px;
  background: rgba(255,255,255,.1);
  position: relative;
}
#viaje .strip-line::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: stripPulse 2s ease infinite;
}

@keyframes stripPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: .6; }
}
#viaje .strip-plane {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: .7rem;
  animation: flyAcross 2s linear infinite;
  color: var(--white);
}

@keyframes flyAcross { 0%{left:0} 100%{left:calc(100% - 12px)} }
#viaje /* ═══ MAP MARKERS ═══ */
.map-marker {
  position: relative;
  width: 20px; height: 20px;
  cursor: pointer;
}
#viaje .map-marker-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 0;
  z-index: 2;
  transition: width .2s, height .2s, box-shadow .2s;
}
#viaje .map-marker:hover .map-marker-dot {
  width: 8px; height: 8px;
  box-shadow: 0 0 8px rgba(255,255,255,.3);
}
#viaje .map-marker.active .map-marker-dot {
  width: 10px; height: 10px;
  box-shadow: 0 0 12px rgba(255,255,255,.4);
}
#viaje .map-marker-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 0;
  z-index: 1;
  animation: markerPulse 2.5s ease-in-out infinite;
}
#viaje .map-marker.active .map-marker-ring {
  border-color: rgba(255,255,255,.55);
  width: 24px; height: 24px;
}

@keyframes markerPulse {
  0%, 100% { opacity: .3; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: .7; transform: translate(-50%,-50%) scale(1.3); }
}
#viaje /* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .location-list { display: none; }
#viaje .bio-overlay { padding: .5rem; justify-content: center; }
#viaje .bio-panel { width: calc(100% - 1rem); }
#viaje .project-panel { width: min(360px, calc(100% - 1rem)); }
#viaje .hud { padding: .8rem 1rem; }
#viaje .hud-center {
    position: absolute;
    top: auto;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 51;
  }

}
