#wlc-button {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    cursor: pointer;
    border-radius: 50%;
    background: #25D366;
}

.wlc-icon {
    width: 62px;
    height: 62px;
    display: block;
    transform: translateX(-2px); /* ajuste fino do ícone */
}

/* PULSE */
#wlc-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: wlc-pulse 2s infinite;
    z-index: -1;
}

@keyframes wlc-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* MODAL COM OVERLAY */
#wlc-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);

    align-items: center;
    justify-content: center;
}
/* BOX */
.wlc-box {
    background: #fff;
    width: 320px;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* INPUTS */
.wlc-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* BOTÃO */
#wlc_send {
    width: 100%;
    background: #25D366;
    border: none;
    color: #fff;
    padding: 12px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
}

/* FECHAR */
.wlc-close {
    position: absolute;
    right: 12px;
    top: 8px;
    cursor: pointer;
    font-size: 18px;
}