#wafb-floating-button {
    position: fixed;
    z-index: 980;
    bottom: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Posições */
#wafb-floating-button.wafb-position-left {
    left: 20px;
    right: auto;
}

#wafb-floating-button.wafb-position-right {
    left: auto;
    right: 20px;
}

/* Animações */
#wafb-floating-button.wafb-animation-slide-up {
    animation: wafb-slide-up var(--wafb-delay, 2s) ease-out forwards;
    opacity: 0;
}

#wafb-floating-button.wafb-animation-pulse .wafb-link {
    animation: wafb-pulse 2s infinite;
}

#wafb-floating-button.wafb-animation-bounce .wafb-link {
    animation: wafb-bounce 2s infinite;
}

/* Texto */
.wafb-text {
    color: var(--wafb-text-color, #ffffff);
    background: var(--wafb-color, #25D366);
    padding: 8px 12px; ;
    border-radius: 20px;
    margin-bottom: 8px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.wafb-text p {
    margin: 0;
    padding: 0;
}

/* Ícone */
.wafb-icon-container {
    width: var(--wafb-size, 60px);
    height: var(--wafb-size, 60px);
}

.wafb-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: var(--wafb-radius, 50%);
    background: var(--wafb-color, #25D366);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.wafb-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.wafb-icon {
    width: 60%;
    height: 60%;
}

/* Animações */
@keyframes wafb-slide-up {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes wafb-pulse {
    0% { transform: scale(1); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes wafb-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsividade */
@media (max-width: 768px) {
    #wafb-floating-button {
        bottom: 10px;
        bottom: 88px;
    }
    
    #wafb-floating-button.wafb-position-left {
        left: 10px;
    }
    
    #wafb-floating-button.wafb-position-right {
        right: 21.5px;
    }
    
    .wafb-text {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .wafb-icon-container {
        width: calc(var(--wafb-size, 60px) * 0.9);
        height: calc(var(--wafb-size, 60px) * 0.9);
    }
}