/* ================= HOSPEDAJE ================= */

.hospedaje {
  position: relative;
  padding: 4rem 1rem;
}

.hospedaje-bg {
  position: absolute;
  filter: grayscale(100%);
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hospedaje-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(128, 128, 128, 0.55) 0%,
    rgba(255, 255, 255, 0.80) 15%,
    rgba(255, 255, 255, 0.85) 65%,
    rgba(255, 255, 255, 0.85) 100%
  );
  z-index: 1;
}

.hospedaje-container {
  position: relative;
  z-index: 2;
  width: 75%;
  margin: var(--header-h) auto 0;
  display: flow-root;
}

.hospedaje-header {
  margin-bottom: 3rem;
}

.hospedaje-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hospedaje-header p {
  font-size: 1rem;
  color: #555;
}

.hospedaje-header__title{
  background: #8c1d2d;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  border-radius: 5px;
}

/* ================= GRID / CARDS ================= */

.hospedaje-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.hospedaje-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hospedaje-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.hospedaje-card .icon {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.hospedaje-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #24363f;
}

.hospedaje-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hospedaje-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hospedaje-cards {
    grid-template-columns: 1fr;
  }
}
