.wa-floating-btn-de234d9b {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.wa-floating-btn-de234d9b:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.4);
    background-color: #1EBE57;
    color: white;
}

@media (max-width: 768px) {
    .wa-floating-btn-de234d9b {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
}
