/* ============================================================
   HISPA RACING — RX7 GUIDED TOUR
   ============================================================ */

#hrTourRoot {
  position: fixed;
  inset: 0;
  z-index: 99990;
  pointer-events: none;
  font-family: 'Orbitron', system-ui, sans-serif;
}

#hrTourRoot.active { pointer-events: auto; }

/* ---- Overlay con agujero (spotlight) ---- */
.hr-tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 18, 0.25);
  pointer-events: none;
  transition: background 0.3s;
}

.hr-tour-spot {
  position: absolute;
  border: 3px solid #ff2d2d;
  border-radius: 14px;
  box-shadow:
    0 0 0 3000px rgba(5, 8, 18, 0.35),
    0 0 40px 10px rgba(255, 45, 45, 0.75),
    inset 0 0 24px rgba(255, 45, 45, 0.3);
  transition: all 0.55s cubic-bezier(.5,.2,.2,1);
  pointer-events: none;
  animation: hrTourPulse 1.6s ease-in-out infinite;
  background: transparent;
}

@keyframes hrTourPulse {
  0%, 100% { box-shadow: 0 0 0 3000px rgba(5,8,18,.35), 0 0 40px 10px rgba(255,45,45,.75), inset 0 0 24px rgba(255,45,45,.3); }
  50%      { box-shadow: 0 0 0 3000px rgba(5,8,18,.38), 0 0 65px 18px rgba(255,211,77,.85), inset 0 0 34px rgba(255,211,77,.4); }
}

/* ---- Tooltip / Card explicativa ---- */
.hr-tour-card {
  position: absolute;
  width: min(380px, 92vw);
  background: linear-gradient(160deg, #13172a 0%, #1d1330 60%, #2a0f1a 100%);
  border: 1px solid rgba(255, 45, 45, 0.55);
  border-radius: 16px;
  padding: 20px 22px 18px;
  color: #f4f6ff;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 40px rgba(255,45,45,.25);
  transition: all 0.55s cubic-bezier(.5,.2,.2,1);
  transform-origin: top left;
}

.hr-tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #ff2d2d, transparent 40%, transparent 60%, #ffd34d);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .75;
}

.hr-tour-card .hr-tour-step {
  font-size: 11px;
  letter-spacing: 2px;
  color: #ffd34d;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 4px;
}
.hr-tour-card .hr-tour-step b { color: #ff6b6b; }

.hr-tour-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 14px rgba(255,45,45,.5);
}

.hr-tour-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #cdd3e8;
  font-family: system-ui, sans-serif;
}

.hr-tour-actions {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hr-tour-actions .hr-tour-left,
.hr-tour-actions .hr-tour-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hr-tour-btn {
  background: linear-gradient(135deg, #ff2d2d, #c71414);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, filter .15s;
  box-shadow: 0 6px 18px rgba(255,45,45,.35);
}
.hr-tour-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(255,45,45,.55); }
.hr-tour-btn:active { transform: translateY(1px); }
.hr-tour-btn.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #cdd3e8;
  box-shadow: none;
  font-weight: 700;
}
.hr-tour-btn.ghost:hover { color: #fff; border-color: rgba(255,255,255,.6); }

.hr-tour-progress {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
  margin: 10px 0 14px;
}
.hr-tour-progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff2d2d, #ffd34d);
  transition: width .5s cubic-bezier(.5,.2,.2,1);
  box-shadow: 0 0 10px rgba(255,211,77,.6);
}

/* ---- RX7 "conductor" ---- */
.hr-tour-car {
  position: absolute;
  width: 180px;
  height: auto;
  pointer-events: none;
  transition:
    left  0.9s cubic-bezier(.5,.2,.2,1),
    top   0.9s cubic-bezier(.5,.2,.2,1),
    transform 0.9s cubic-bezier(.5,.2,.2,1);
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.55)) drop-shadow(0 0 25px rgba(255,45,45,.45));
  animation: hrCarBob 1.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes hrCarBob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -4px; }
}

.hr-tour-car.flip { transform: scaleX(-1); }

/* Estela de neón bajo el coche */
.hr-tour-trail {
  position: absolute;
  height: 6px;
  background: linear-gradient(90deg, transparent, #ffd34d, #ff2d2d, transparent);
  filter: blur(3px);
  border-radius: 99px;
  pointer-events: none;
  opacity: .9;
  transition: all .9s cubic-bezier(.5,.2,.2,1);
  animation: hrTrailFlicker .35s linear infinite;
}
@keyframes hrTrailFlicker {
  0%,100% { opacity: .85; }
  50%     { opacity: .55; }
}

/* Humo del escape */
.hr-tour-smoke {
  position: absolute;
  width: 14px; height: 14px;
  background: radial-gradient(circle, rgba(255,255,255,.8), rgba(255,255,255,0));
  border-radius: 50%;
  pointer-events: none;
  animation: hrSmoke 1.2s ease-out forwards;
}
@keyframes hrSmoke {
  0%   { transform: translate(0,0) scale(.4); opacity: .9; }
  100% { transform: translate(-60px, -20px) scale(2.4); opacity: 0; }
}

/* ---- Botón lanzador en navbar ---- */
#btnTourStart {
  background: linear-gradient(135deg, #ff2d2d, #ffd34d);
  color: #111;
  font-weight: 900;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 4px 14px rgba(255,45,45,.45);
  position: relative;
  overflow: hidden;
}
#btnTourStart::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,.5) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: hrBtnShine 3.2s linear infinite;
}
@keyframes hrBtnShine {
  0%   { transform: translateX(-120%); }
  60%, 100% { transform: translateX(120%); }
}

/* ---- Bienvenida inicial ---- */
.hr-tour-welcome {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(255,45,45,.15), rgba(5,8,18,.92) 60%);
  animation: hrWelcomeIn .6s ease;
}
@keyframes hrWelcomeIn { from { opacity: 0; } to { opacity: 1; } }

.hr-tour-welcome-card {
  width: min(520px, 92vw);
  background: linear-gradient(160deg, #13172a, #2a0f1a);
  border: 1px solid rgba(255,45,45,.5);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 60px rgba(255,45,45,.3);
}
.hr-tour-welcome-card img {
  width: 220px;
  margin: -10px auto 10px;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.6)) drop-shadow(0 0 30px rgba(255,45,45,.5));
  animation: hrCarBob 1.4s ease-in-out infinite;
}
.hr-tour-welcome-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ff2d2d, #ffd34d);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hr-tour-welcome-card p {
  margin: 0 0 20px;
  font-family: system-ui, sans-serif;
  color: #cdd3e8;
  font-size: 15px;
  line-height: 1.5;
}
.hr-tour-welcome-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contador tipo semáforo */
.hr-tour-lights {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 10px 0 18px;
}
.hr-tour-lights span {
  width: 18px; height: 18px; border-radius: 50%;
  background: #3a1010;
  box-shadow: inset 0 0 6px rgba(0,0,0,.8);
}
.hr-tour-lights span.on {
  background: #ff2d2d;
  box-shadow: 0 0 14px #ff2d2d, inset 0 0 6px rgba(0,0,0,.6);
}
.hr-tour-lights span.go {
  background: #3ade5a;
  box-shadow: 0 0 16px #3ade5a, inset 0 0 6px rgba(0,0,0,.6);
}

/* ---- Botón flotante (FAB) ---- */
#btnTourFab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ff2d2d, #ffd34d);
  color: #111;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(255,45,45,.5), 0 0 0 4px rgba(255,45,45,.15);
  transition: transform .2s, box-shadow .2s;
  animation: hrFabPulse 2.2s ease-in-out infinite;
}
#btnTourFab:hover {
  transform: scale(1.08) rotate(-8deg);
  box-shadow: 0 14px 36px rgba(255,45,45,.7), 0 0 0 8px rgba(255,45,45,.2);
}
#btnTourFab::after {
  content: "TOUR";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #ff2d2d;
  text-shadow: 0 0 6px rgba(0,0,0,.8);
  font-weight: 900;
}
@keyframes hrFabPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(255,45,45,.5), 0 0 0 4px rgba(255,45,45,.15); }
  50%      { box-shadow: 0 14px 40px rgba(255,45,45,.8), 0 0 0 12px rgba(255,45,45,.05); }
}

/* ---- Demos interactivas sobre targets ---- */
.hr-tour-demo-hover {
  outline: 2px dashed #ffd34d !important;
  outline-offset: 3px;
  transition: outline-offset .2s;
}
.hr-tour-demo-pulse {
  animation: hrDemoPulse 0.8s ease-in-out 2 !important;
}
@keyframes hrDemoPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50%      { transform: scale(1.04); filter: brightness(1.25) drop-shadow(0 0 12px #ffd34d); }
}

/* ---- Modal admin noticias ---- */
.hr-news-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.hr-news-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
}
.hr-news-modal-card {
  position: relative;
  background: linear-gradient(160deg, #13172a, #1d1330, #2a0f1a);
  border: 1px solid rgba(255,45,45,.55);
  border-radius: 16px;
  width: min(560px, 96vw);
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 40px rgba(255,45,45,.25);
}

.news-admin-del {
  background: transparent;
  border: 1px solid rgba(255,45,45,.5);
  color: #ff6b6b;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all .15s;
}
.news-admin-del:hover { background: rgba(255,45,45,.15); }

/* Móvil */
@media (max-width: 640px) {
  .hr-tour-car { width: 120px; }
  .hr-tour-card { width: 92vw; }
}

/* =========================================================
   MASCOT GUIDE — chica del juego + bocadillo
   ========================================================= */
.hr-tour-mascot {
  position: fixed;
  right: 24px;
  top: 24px;
  left: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;     /* Imagen arriba, bocadillo debajo */
  align-items: flex-end;      /* Alineado al borde derecho */
  gap: 8px;
  z-index: 100001;
  pointer-events: none;
  max-width: 400px;
  animation: hr-mascot-enter-top .55s cubic-bezier(.22,1.2,.32,1) both;
}

@keyframes hr-mascot-enter-top {
  0%   { opacity: 0; transform: translateY(-120px) scale(.92); }
  60%  { opacity: 1; transform: translateY(6px)    scale(1.02); }
  100% { opacity: 1; transform: translateY(0)      scale(1);    }
}

/* Oculta la mascota durante la pantalla de bienvenida para evitar solapes */
#hrTourRoot:has(.hr-tour-welcome) .hr-tour-mascot { display: none; }

@keyframes hr-mascot-enter {
  0%   { opacity: 0; transform: translateY(120px) scale(.92); }
  60%  { opacity: 1; transform: translateY(-6px)  scale(1.02); }
  100% { opacity: 1; transform: translateY(0)     scale(1);    }
}

.hr-tour-mascot-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center 5%;       /* Encuadre de cintura para arriba */
  border-radius: 50%;               /* Burbuja circular */
  border: 3px solid rgba(255, 45, 45, .85);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, .7),
    0 0 0 4px rgba(255, 45, 45, .14),
    0 0 48px rgba(255, 45, 45, .38);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 45, 45, .18) 0%, rgba(25, 28, 42, .95) 55%, rgba(45, 18, 24, .95) 100%);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .55));
  animation: hr-mascot-float 3.6s ease-in-out infinite;
  transform-origin: 50% 100%;
}

@keyframes hr-mascot-float {
  0%, 100% { transform: translateY(0)    rotate(-1deg); }
  50%      { transform: translateY(-5px) rotate(1deg);  }
}

.hr-tour-mascot.hr-tour-mascot-talk .hr-tour-mascot-img {
  animation: hr-mascot-talk 0.5s ease-out 1, hr-mascot-float 3.6s ease-in-out infinite 0.5s;
}

@keyframes hr-mascot-talk {
  0%   { transform: translateY(0)    rotate(0deg)  scale(1);    }
  30%  { transform: translateY(-8px) rotate(-4deg) scale(1.04); }
  60%  { transform: translateY(-2px) rotate(2deg)  scale(1.01); }
  100% { transform: translateY(0)    rotate(0deg)  scale(1);    }
}

/* Bocadillo — DEBAJO de la mascota, cola apuntando hacia arriba */
.hr-tour-speech {
  position: relative;
  width: 320px;
  max-width: 320px;
  padding: 12px 14px 10px;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  color: #111;
  border-radius: 14px;
  border: 2px solid rgba(255, 45, 45, .6);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, .55),
    0 0 24px rgba(255, 45, 45, .24);
  font-family: 'Noto Sans', system-ui, -apple-system, sans-serif;
  transform-origin: right top;
}

/* Cola apuntando hacia ARRIBA (a la cabeza de la mascota que está encima) */
.hr-tour-speech::before,
.hr-tour-speech::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  right: 130px;               /* Alineada con el centro horizontal de la burbuja (260px) */
  left: auto;
}
.hr-tour-speech::before {
  top: -14px;
  border-width: 0 14px 14px 14px;
  border-color: transparent transparent rgba(255, 45, 45, .6) transparent;
}
.hr-tour-speech::after {
  top: -10px;
  border-width: 0 12px 12px 12px;
  border-color: transparent transparent #fff5f5 transparent;
}

.hr-tour-speech-title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .35px;
  color: #c8102e;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-family: 'Orbitron', sans-serif;
}

.hr-tour-speech-body {
  font-size: 12.5px;
  line-height: 1.5;
  color: #1a1a1a;
  white-space: pre-wrap;
}

.hr-tour-speech-tip {
  margin-top: 8px;
  font-size: 11.5px;
  color: #8a1c1c;
  font-style: italic;
  border-top: 1px dashed rgba(200, 16, 46, .3);
  padding-top: 6px;
  line-height: 1.4;
}

/* Contador de paso en cabecera del bocadillo */
.hr-tour-speech-step {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #c8102e;
  opacity: .85;
  margin-bottom: 2px;
}
.hr-tour-speech-step b {
  color: #c8102e;
  font-weight: 900;
}

/* Barra de progreso del bocadillo */
.hr-tour-speech-progress {
  width: 100%;
  height: 5px;
  background: rgba(200, 16, 46, .15);
  border-radius: 999px;
  margin: 4px 0 8px;
  overflow: hidden;
}
.hr-tour-speech-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff2d2d 0%, #ffd34d 100%);
  border-radius: 999px;
  transition: width .35s ease;
}

/* Navegación: Saltar / ← Anterior / Siguiente → */
.hr-tour-speech-nav {
  pointer-events: auto;       /* la mascota tiene pointer-events:none por defecto */
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid rgba(200, 16, 46, .18);
  padding-top: 8px;
}
.hr-tour-speech-nav [data-act="skip"] {
  margin-right: auto;         /* Saltar a la izquierda, resto a la derecha */
}

.hr-tour-speech-nav .hr-tour-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 9px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid #c8102e;
  background: linear-gradient(135deg, #c8102e 0%, #ff4d4d 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(200, 16, 46, .35);
}
.hr-tour-speech-nav .hr-tour-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(200, 16, 46, .5);
}
.hr-tour-speech-nav .hr-tour-btn.ghost {
  background: #fff;
  color: #c8102e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}
.hr-tour-speech-nav .hr-tour-btn.ghost:hover {
  background: #ffecec;
  transform: translateY(-1px);
}

/* Estado "cargando" mientras la demo del paso aún está corriendo:
   el usuario no puede pasar al siguiente/anterior hasta que termine. */
.hr-tour-speech-nav .hr-tour-btn[disabled],
.hr-tour-speech-nav .hr-tour-btn.is-loading {
  opacity: .48;
  cursor: progress;
  pointer-events: none;
  filter: saturate(.6);
  box-shadow: none;
  transform: none;
}
.hr-tour-speech-nav .hr-tour-btn.is-loading::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  vertical-align: -1px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: hr-tour-spin .7s linear infinite;
}
@keyframes hr-tour-spin {
  to { transform: rotate(360deg); }
}

/* Índice de pasos dentro del bocadillo */
.hr-tour-speech-index {
  pointer-events: auto;
  margin-top: 10px;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid rgba(200, 16, 46, .25);
  border-radius: 10px;
  background: #fff;
  padding: 6px 8px 8px;
  font-family: 'Noto Sans', system-ui, -apple-system, sans-serif;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .06);
}
.hr-tour-index-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 10.5px;
  letter-spacing: 1px;
  color: #c8102e;
  font-weight: 900;
  text-transform: uppercase;
  margin: 4px 2px 8px;
}
.hr-tour-index-group { margin-bottom: 6px; }
.hr-tour-index-group-title {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #8a1c1c;
  padding: 4px 4px 2px;
  border-bottom: 1px dashed rgba(200, 16, 46, .25);
  margin-bottom: 3px;
}
.hr-tour-speech-index ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hr-tour-index-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 11.5px;
  color: #1a1a1a;
  transition: background .15s, transform .1s;
}
.hr-tour-index-item:hover {
  background: rgba(200, 16, 46, .08);
  transform: translateX(2px);
}
.hr-tour-index-item.is-current {
  background: linear-gradient(135deg, rgba(200,16,46,.14), rgba(255,211,77,.18));
  font-weight: 800;
  color: #8a1c1c;
}
.hr-tour-index-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #c8102e;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 900;
}
.hr-tour-index-item.is-current .hr-tour-index-num {
  background: linear-gradient(135deg, #c8102e, #ff4d4d);
  box-shadow: 0 0 0 2px rgba(255, 211, 77, .5);
}
.hr-tour-index-label { flex: 1; line-height: 1.3; }

.hr-tour-speech-nav [data-act="index"].is-active {
  background: #ffecec;
  color: #8a1c1c;
  border-color: #8a1c1c;
}

.hr-tour-speech-pop {
  animation: hr-speech-pop .35s cubic-bezier(.22,1.3,.36,1) 1;
}

@keyframes hr-speech-pop {
  0%   { transform: scale(.92) translateY(4px); opacity: .6; }
  60%  { transform: scale(1.03) translateY(-2px); opacity: 1; }
  100% { transform: scale(1)    translateY(0);    opacity: 1; }
}

/* Responsivo */
@media (max-width: 700px) {
  .hr-tour-mascot { right: 10px; top: 10px; left: auto; bottom: auto; max-width: 260px; }
  .hr-tour-mascot-img { width: 140px; height: 140px; border-radius: 50%; }
  .hr-tour-speech { width: 240px; max-width: 240px; padding: 10px 12px; }
  .hr-tour-speech::before, .hr-tour-speech::after { right: 70px; }
  .hr-tour-speech-title { font-size: 12px; }
  .hr-tour-speech-body { font-size: 12px; line-height: 1.4; }
  .hr-tour-speech-tip { font-size: 10.5px; }
}

/* Tarjeta adelgazada — solo título + navegación */
.hr-tour-card .hr-tour-card-title {
  margin: 8px 0 4px;
  font-size: 17px;
}
.hr-tour-card-hint {
  font-size: 11.5px;
  color: #cdd3e8;
  opacity: .75;
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: .4px;
}
