.angie-wa-widget-container-6a81b93f {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.angie-wa-item-6a81b93f {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    pointer-events: auto;
    position: relative;
}

.angie-wa-label-6a81b93f {
    background: #222222;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.angie-wa-btn-6a81b93f {
    background-color: #111111;
    color: #25D366;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #222222;
    position: relative;
    overflow: hidden;
}

.angie-wa-btn-6a81b93f::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.angie-wa-item-6a81b93f:hover .angie-wa-label-6a81b93f,
.angie-wa-item-6a81b93f.is-active .angie-wa-label-6a81b93f {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.angie-wa-item-6a81b93f:hover .angie-wa-btn-6a81b93f,
.angie-wa-item-6a81b93f.is-active .angie-wa-btn-6a81b93f {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #111111, #222222);
    border-color: #D4A017;
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.3);
    color: #D4A017;
}

.angie-wa-item-6a81b93f:hover .angie-wa-btn-6a81b93f::before,
.angie-wa-item-6a81b93f.is-active .angie-wa-btn-6a81b93f::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .angie-wa-widget-container-6a81b93f {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .angie-wa-btn-6a81b93f {
        width: 50px;
        height: 50px;
        font-size: 24px;
        border-radius: 14px;
    }
}