/* ---------- Estilos generales ---------- */

/* Navbar sticky */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* Hero */
header.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Overlay */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Contenido por encima del overlay */
.hero .container.position-relative {
  position: relative;
  z-index: 2;
}

/* Botón Reserva */
.btn-warning {
  background-color: #ffcc00;
  border: none;
  font-weight: 700;
  transition: all 0.28s ease;
}
.btn-warning:hover,
.btn-warning:focus {
  background-color: #ff9900;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  outline: none;
}

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  border-radius: 50%;
  padding: 12px 14px;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Cards de servicios */
#services .card {
  background: rgba(255,255,255,0.9);
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { height: 70vh; }
  .display-3 { font-size: 2rem; line-height: 1.1; }
}
