@font-face {
  font-family: 'Poppins', sans-serif;
  src: url(../../libraries/fonts/poppins/Poppins-Regular.ttf);
}

body {
    background-color: #ffffff; /* Fondo blanco */
    font-family: 'Poppins', sans-serif;
    src: url(../../libraries/fonts/poppins/Poppins-Regular.ttf);
}
/* Estilos para el botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-float:hover {
    color: white;
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}