/* Estilos del botón flotante */
.float-whatsapp {
    position: fixed;
    bottom: 10px;
    left: 15px;
    width: 50px;
    height: 50px;
    background-color: rgba(13, 193, 67, 0.8); /* Color de fondo de WhatsApp */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    line-height: 50px;
    cursor: pointer;
    z-index: 1000; /* Asegúrate de que el botón flote sobre otros elementos */
  }

  .float-whatsapp i{
    color: azure;
  }