/* === Corrección de color primario a azul Bootstrap === */
.text-primary {
  color: #042961 !important;
}

.btn-primary {
  background-color: #042961 !important;
  border-color: #042961 !important;
}

.btn-outline-primary {
  color: #042961 !important;
  border-color: #042961 !important;
}

.btn-outline-primary:hover {
  background-color: #042961 !important;
  color: #fff !important;
}

/* FOOTER */
/* ===== Ajustes Footer Responsive ===== */
.footer-area {
  text-align: left;
}

/* Centrar en móviles */
@media (max-width: 768px) {
  .footer-top .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  /* "Sobre Nosotros" ocupa todo el ancho */
  .footer-top .col-lg-3:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }

  /* Los demás se centran en 2 columnas */
  .footer-top .col-lg-3:not(:first-child) {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    margin-top: 20px;
  }

  /* Centrar iconos sociales */
  .social-icons {
    justify-content: center;
    padding: 0;
  }

  /* Evitar desbordes */
  .footer-items ul {
    padding-left: 0;
  }
}

/* BOTON DE WASAP */
.whatsapp-float {
  position: fixed !important;
  bottom: 95px !important;
  right: 25px !important;
  width: 60px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background-color: #25D366 !important;
  color: white !important;
  font-size: 32px !important;
  z-index: 1000 !important;
  text-decoration: none !important;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  color: white;
}

/* 🔸 Efecto de pulso opcional */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float {
  animation: pulse 2s infinite;
}