.menu-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
}

.menu-item {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-color: #25D366; /* Color de fondo de los íconos de WhatsApp */
    border-radius: 50%;
    color:#fff;
    text-align: center;
    line-height: 50px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.menu-item:hover {
    background-color: #128C7E; /* Cambia el color de fondo al pasar el cursor */
}

.menu-item img {
    width: 30px;
    height: 30px;
}