.contact-info h3 {
  word-break: break-word;   /* fuerza el salto si es muy largo */
  overflow-wrap: break-word; /* soporte moderno */
  font-size: 1.5rem;        /* ajusta el tamaño si aún se sale */
  text-align: center;        /* centra el texto */
}

.social-icons li {
    display: inline-flex;       /* convierte en flex para centrar */
    justify-content: center;     /* centra horizontal */
    align-items: center;         /* centra vertical */
    width: 40px;                 /* ancho fijo para todos */
    height: 40px;                /* alto fijo para todos */
    text-align: center;
}

.social-icons li a i {
    font-size: 24px;             /* ajusta el tamaño del ícono */
    line-height: 1;              /* evita espacios extra */
}

ul.list-unstyled li i {
  margin-right: 10px; /* o 12px si quieres más espacio */
}

/* 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;
}
