.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 */
}

/* 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;
  }
}


    input[type="text"],
    input[type="date"],
    input[type="email"],
    input[type="number"],
    select,
    textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      transition: border 0.3s ease;
      box-sizing: border-box;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: #0b3d91;
      outline: none;
    }


     /* === Estilo moderno de inputs === */
  .modern-input {
    border: 2px solid #bdbdbd !important;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
  }

  .modern-input:focus {
    border-color: #7B1FA2 !important;
    box-shadow: 0 0 6px rgba(123, 31, 162, 0.4);
  }

  /* === Botón moderno === */
  .btn-modern {
    background: linear-gradient(135deg, #0097A7, #7B1FA2);
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }

  .btn-modern:hover {
    background: linear-gradient(135deg, #7B1FA2, #0097A7);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  h3, h2 {
    letter-spacing: 0.5px;
  }

  .fw-semibold {
    font-weight: 600;
  }
    

  /* 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;
}