.whatsapp-button{
    position: fixed;
    bottom: 90px;
    right: 30px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 999;
}

/* Celulares */ 
@media (max-width: 768px){
    .whatsapp-button{
        bottom: 30px;
    }
}

.whatsapp-icon{
    width: 60px;
    height: 60px;
    background: #ff1d25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 0 15px rgba(255,0,0,0.6);
    transition: 0.3s;
}

.whatsapp-text{
    background: #111;
    color: white;
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s;
}

.whatsapp-button:hover .whatsapp-text{
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-icon:hover{
    transform: scale(1.1);
}