*{
margin: 0;
padding: 0;
border: 0:
}
.btn-wsp{
position: fixed;
width: 60px;  
height: 60px; 
line-height: 55px;
bottom: 30px;
right: 30px;
background: #0df053;
color: #fff;
border-radius: 50%;
text-align: center;
font-size: 30px;
box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
z-index: 100;
animation: flotar 10s ease-in-out infinite;
transition: all 0.3s ease-in-out;
}
.btn-wsp:hover{
text-decoration: none;
color: #0df053;
background: #fff;
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 123, 255, 0.6);
}

/* Animación de pulso opcional para llamar más la atención */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.floating-support-pulse {
    animation: pulse 2s infinite;
}