/* =========================
   HABITACIONES
========================= */

.habitaciones {
  background: #fff;
}

/* Título principal */
.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 70px;
  color: var(--dark);
  font-weight: 600;
}

/* Bloque habitación */
.habitacion {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 90px;
}

.habitacion.reverse {
  flex-direction: row-reverse;
}

/* Imagen */
.habitacion-img {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
}

.habitacion-img img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Contenido */
.habitacion-content {
  flex: 1;
}

.habitacion-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--accent);
}

.habitacion-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Botón */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .habitacion {
    flex-direction: column;
    text-align: center;
  }

  .habitacion.reverse {
    flex-direction: column;
  }

  .habitacion-img img {
    max-width: 100%;
  }

  .section-title {
    font-size: 28px;
  }
}
