/* BOTÃO FLUTUANTE */
.whatsapp-button {
    position: fixed;
    right: 25px;
    bottom: 8.5rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform .2s ease;
}
.whatsapp-button:hover {
    transform: scale(1.1);
}
.whatsapp-button > i::after {
    width: 30px !important;
    height: 30px !important;
    background-color: #fff !important;
}

/* POPUP */
.whatsapp-popup {
    position: fixed;
    right: 25px;
    bottom: 15.7rem;
    width: 300px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

/* HEADER */
.whatsapp-popup-header {
    background: #25D366;
    color: white;
    padding: 5px;
    display: flex;
    align-items: center;
    position: relative;
}

/* FOTO */
.whatsapp-popup-header img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 10px;
}

/* BOTÃO FECHAR */
.whatsapp-popup-close {
    position: absolute;
    right: 12px;
    top: 8px;
    /* font-size: 18px; */
    cursor: pointer;
    padding: 0 10px;
    border-radius: 50%;
    transition: background .2s;
}
.whatsapp-popup-close:hover {
    background: rgba(255,255,255,0.3);
}

/* TÍTULO E TEXTO */
.popup-title {
    font-weight: bold;
    font-size: 16px;
}
.popup-message {
    padding: 15px;
    color: #333;
    font-size: 14px;
}

/* COPIED */
@keyframes joinchat_show {
    0% {
        transform: scale3d(0,0,0)
    }
    to {
        transform: scaleX(1)
    }
}
.popup-message {
    position: relative;
    min-width: 60px;
    max-width: calc(100% - 52px);
    min-height: 40px;
    padding: 10px 20px;
    margin: 26px auto;
    border-radius: 26px;
    background: #fff;
    color: #4a4a4a;
    word-break: break-word;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
    transform-origin: 0 50%;
    animation: joinchat_show .25s 
        cubic-bezier(0, 0, .58, 1.19) 10ms both;
}
.popup-message:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 11px;
    left: -13px;
    width: 17px;
    height: 25px;
    background: inherit;
    clip-path: path("M17 25V0C17 12.877 6.082 14.9 1.031 15.91c-1.559.31-1.179 2.272.004 2.272C9.609 18.182 17 18.088 17 25z");
}
/* COPIED */

/* BOTÃO ABRIR CHAT */
.popup-open-chat-btn {
    /* display: block;
    width: 100%; */
    padding: 12px;
    font-size: 16px;
    background: #25D366;
    color: #fff;
    text-align: center;
    font-weight: bold;
    /* text-decoration: none; */
    transition: background .2s;
}
.popup-open-chat-btn:hover {
    background: #1ebe5c;
    color: #fff;
}