/* --- FOOTER PREMIUM AZUL --- */
.footer {
  background: linear-gradient(135deg, #0000FF 70%, #005999 100%) !important;
  color: #fff !important;
  font-size: 0.95rem;
}

.footer h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 8px;
}

.footer p {
  color: #fff !important;
}

.footer a {
  color: #fff !important;
  transition: all 0.3s ease; /* Cambiamos a 'all' para que la animación fluya */
  display: inline-block; /* Esto es súper importante para que los enlaces puedan "saltar" */
}

.footer a:hover {
  color: #ffffff !important; /* Mantenemos el color blanco */
  transform: translateY(-4px); /* El efecto de saltito hacia arriba */
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4); /* Sombra para que resalte del fondo */
}

.footer hr {
  border-color: rgba(255,255,255,0.2);
}

.footer .text-center p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

/* Botón de chat flotante */
.chat-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, #0000FF 70%, #005999 100%);
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(1, 44, 80, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  animation: floatUp 1s ease-out;
}

.chat-button i {
  font-size: 1.3rem;
}

/* Hover con inversión de colores */
.chat-button:hover {
  background: #fff;
  color: #0000FF;
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 61, 111, 0.6);
}

/* Animación de entrada */
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
