.whatsapp-float {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-right {
    right: 20px;
}

.whatsapp-left {
    left: 20px;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.whatsapp-icon {
    width: 36px;
    height: 36px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
    }
    
    .whatsapp-right {
        right: 15px;
    }
    
    .whatsapp-left {
        left: 15px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}
