@charset "UTF-8";
/* V239.09 · Hotfix integral
   - Fallback JPEG y capa robusta para el hero de portada.
   - Skip link accesible en checkout/reserva.
*/

/* El hero conserva <picture> AVIF/WebP, pero ya no depende de que esos formatos
   se carguen: la propia sección dispone de un JPEG real como respaldo. */
body.haa-page-home.haa-hero-v158-active .haa-hero-premium-v158 {
  position: relative;
  background-color: #10251b !important;
  background-image: url("../img/home/hero-premium/habitacion-305-hero-960.jpg") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
body.haa-page-home.haa-hero-v158-active .haa-hero-premium-v158 .haa-hero-premium__picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
body.haa-page-home.haa-hero-v158-active .haa-hero-premium-v158 .haa-hero-premium__picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.haa-page-home.haa-hero-v158-active .haa-hero-premium-v158 .haa-hero-premium__shade {
  z-index: 1;
}
body.haa-page-home.haa-hero-v158-active .haa-hero-premium-v158 .haa-hero-premium__inner {
  position: relative;
  z-index: 2;
}

/* Acceso directo al contenido para navegación por teclado. */
.haa-booking-clean-page .skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  max-width: calc(100vw - 16px);
  padding: .72rem 1rem;
  border-radius: 999px;
  background: #071b14;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform .18s ease;
}
.haa-booking-clean-page .skip-link:focus,
.haa-booking-clean-page .skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #f2d48d;
  outline-offset: 2px;
}
