/* Encabezado */
.header-hospedaje {
  background: linear-gradient();
  height: 25vh;
  flex-direction: column;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Tarjetas de servicios */
.servicio-card {
  border: none;
  background-color: #f0fdf4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
}

/* Galería */
.img-fluid {
  transition: transform 0.3s ease;
}

.img-fluid:hover {
  transform: scale(1.03);
}

/* Sección WhatsApp */
.bg-success-subtle {
  background-color: #e8f5e9;
}
