/*=====================================
  WHATSAPP PREMIUM - BORDALO
======================================*/

:root{
    --wa:#25D366;
    --wa-hover:#1fb857;
    --wa-shadow:0 12px 35px rgba(0,0,0,.25);
}

#wa-container{
    position:fixed;
    right:28px;
    bottom:28px;
    z-index:999999;
    font-family:'Segoe UI',Arial,sans-serif;
}

#wa-message{
    position:absolute;
    right:0;
    bottom:82px;
    width:260px;
    background:#fff;
    border-radius:14px;
    padding:15px 18px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    animation:waFade .6s ease;
}

#wa-message h4{
    margin:0 0 6px;
    color:#222;
    font-size:16px;
}

#wa-message p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.45;
}

#wa-close{
    position:absolute;
    right:12px;
    top:8px;
    cursor:pointer;
    color:#999;
    font-size:18px;
}

#wa-button{
    width:64px;
    height:64px;
    background:var(--wa);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:var(--wa-shadow);
    transition:.3s;
    text-decoration:none;
}

#wa-button:hover{
    transform:translateY(-5px) scale(1.05);
    background:var(--wa-hover);
}

#wa-button svg{
    width:34px;
    fill:#fff;
}

@keyframes waFade{

from{
opacity:0;
transform:translateY(20px);
}

to{
opacity:1;
transform:translateY(0);
}

}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

#wa-button{
animation:pulse 2.5s infinite;
}

@media(max-width:768px){

#wa-container{

right:18px;
bottom:18px;

}

#wa-message{

width:220px;
bottom:75px;

}

}