/* Modal */
.promo-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.promo-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-out;
}

/* Botones estilo Booking */
.btn-booking {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

/* Botón primario (azul Booking) */
.btn-booking-primary {
  background-color: #0071c2;
  color: white;
}

.btn-booking-primary:hover {
  background-color: #FA6800;
}

/* Botón secundario (gris claro Booking) */
.btn-booking-secondary {
  background-color: #f0f3f5;
  color: #222;
  border: 1px solid #d2d8dd;
}

.btn-booking-secondary:hover {
  background-color: #FADD00;
}

/* Animación suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

