.hoteles-hero {
  position: relative;
  padding: 9rem 0 4.5rem;
  overflow: hidden;
  background: var(--navy);
}

.hoteles-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 24%, rgba(10,46,82,0.16) 0%, rgba(10,46,82,0.66) 50%, rgba(10,46,82,0.92) 100%),
    linear-gradient(90deg, rgba(6,24,44,0.96) 0%, rgba(10,46,82,0.84) 48%, rgba(10,46,82,0.52) 100%);
  pointer-events: none;
}

.hoteles-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hoteles-carousel .hoteles-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: brightness(0.68) saturate(0.96) contrast(1.05);
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 4.8s ease;
}

.hoteles-carousel .hoteles-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hoteles-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.hoteles-hero .page-title,
.hoteles-hero .page-desc {
  text-shadow: 0 10px 30px rgba(0,0,0,0.42);
}

.hoteles-carousel-dots {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1120px) / 2 + 1.5rem));
  bottom: 1.6rem;
  z-index: 2;
  display: flex;
  gap: 0.38rem;
}

.hoteles-carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
}

.hoteles-carousel-dots span.active { background: var(--gold); }

.hoteles-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.hotel-checklist {
  margin-top: 1.5rem;
}

.hotel-world-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hotel-world-card img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
}

.hotel-world-card > div {
  padding: 1.35rem;
}

.hotel-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0.28rem 0.78rem;
  border-radius: 999px;
  background: #fff3db;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
}

.hotel-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.hotel-type-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(10,46,82,0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hotel-type-card:hover {
  transform: translateY(-3px);
  border-color: rgba(30,136,229,0.2);
  box-shadow: var(--shadow);
}

.hotel-type-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
  background: var(--smoke);
}

.hotel-type-card > div {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.25rem;
}

.hotel-type-card .card-title,
.hotel-world-card .card-title {
  margin-bottom: 0;
}

.hotel-partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hotel-partner-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.84rem;
}

#solicitar-hotel {
  position: sticky;
  top: 92px;
}

@media (max-width: 980px) {
  .hoteles-hero::after {
    background:
      radial-gradient(circle at 70% 8%, rgba(10,46,82,0.18) 0%, rgba(10,46,82,0.72) 52%, rgba(10,46,82,0.94) 100%),
      linear-gradient(90deg, rgba(6,24,44,0.96) 0%, rgba(10,46,82,0.88) 70%, rgba(10,46,82,0.68) 100%);
  }
  .hoteles-split { grid-template-columns: 1fr; }
  .hotel-type-grid { grid-template-columns: 1fr; }
  .hotel-type-card { display: grid; grid-template-columns: 280px minmax(0, 1fr); }
  .hotel-type-card img { height: 100%; min-height: 230px; }
  .hotel-type-card > div { min-height: auto; }
  #solicitar-hotel { position: static; }
}

@media (max-width: 640px) {
  .hoteles-hero { padding: 8rem 0 3.5rem; }
  .hoteles-hero::after {
    background:
      linear-gradient(180deg, rgba(6,24,44,0.48) 0%, rgba(10,46,82,0.9) 58%, rgba(6,24,44,0.98) 100%),
      linear-gradient(90deg, rgba(6,24,44,0.9) 0%, rgba(10,46,82,0.8) 100%);
  }
  .hoteles-carousel .hoteles-slide { filter: brightness(0.58) saturate(0.92) contrast(1.08); }
  .hoteles-carousel-dots { bottom: 1rem; right: 1rem; }
  .hotel-world-card img { height: 230px; }
  .hotel-type-card { grid-template-columns: 1fr; }
  .hotel-type-card img { height: 210px; min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hoteles-carousel .hoteles-slide { transition: none; transform: none; }
}
