.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 50%; /* Posición vertical centrada */
    right: 40px; /* Cambiado a derecha */
    transform: translateY(-50%); /* Asegura centrado vertical perfecto */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-50%) scale(1.1); /* Mantiene centrado vertical al hacer hover */
}

.whatsapp-float i {
    margin-top: 16px;
}

/* Animación de pulso */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}