@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.btn-whatsapp {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
width: 40px;
height: 40px;
bottom: 0px;
left: 5px;
background-color: #25d366;
color: #FFF;
border: none;
border-radius: 5px 5px 0 0;
font-size: 20px;
box-shadow: 1px 1px 2px #888;
z-index: 1000;
}

.wcard {
width: 300px;
position: fixed;
left: 5px;
bottom: 45px;
z-index: 1000;
display: none;
}

.wcard-header {
background-color: #075E55;
padding: 10px;
border-radius: 5px 5px 0 0;
display: flex;
align-items: center;
}

.wcard-logo {
width: 40px;
height: 40px;
margin-right: 15px;
border-radius: 50%;
background-color: #fff;
overflow: hidden;
}

.wcard-logo img {
width: 100%;
height: 100%;
object-fit: cover;
}

.wcard-title {
flex: 1;
}

.wcard-title h6, .wcard-title p {
margin: 0;
color: #fff;
line-height: 1;
}

.wcard-title h6 {
font-weight: 400;
}

.wcard-body {
position: relative;
background-color: #e5ddd5;
padding: 10px;
font-size: 0.8rem;
border: 1px solid #ccc;
border-top: none;
border-radius: 0 0 5px 5px;
}

.wcard-body:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(https://web.whatsapp.com/img/bg-chat-tile-light_04fcacde539c58cca6745483d4858c52.png);
opacity: 0.06;
}

.wcard-campo {
position: relative;
background-color: #fff;
border-radius: 0 5px 5px 5px;
box-shadow: -1px 1px 1px #999999;
padding: 10px;
margin-bottom: 3px;
}

.wcard-campo:before, .wcard-campo:after {
content: "";
border-top: 3px solid #fff;
border-right: 3px solid #fff;
border-left: 3px solid transparent;
border-bottom: 3px solid transparent;
height: 0;
position: absolute;
top: 0;
left: -6px;
}

.wcard-campo:before {
top: 1px;
left: -7px;
border-top-color: #999999;
border-right-color: #999999;
}

.wcard-campo label {
font-weight: bold;
margin-bottom: 0;
}

.wcard-campo input {
background-color: #fff;
border: none;
border-bottom: 1px solid #ccc;
border-radius: 5px;
width: 100%;
padding: 5px;
}

.wcard-footer {
position: relative;
display: flex;
align-items: flex-end;
margin-top: 15px;
}

.wcard-mensagem {
flex: 1;
}

.wcard-mensagem textarea {
border-radius: 20px;
background-color: #fff;
width: 100%;
padding: 10px;
min-height: 40px;
max-height: 100px;
border: none;
margin: 0;
display: block;
box-shadow: 0 1px 2px #999999;
}

.wcard-send {
width: 40px;
height: 40px;
margin-left: 5px;
}

.wcard-send button {
width: 40px;
height: 40px;
border: none;
border-radius: 50%;
background-color: #075E55;
color: #fff;
}

.icone-whatsapp{
    color: #fff;
    font-size: 40px;
}

@media (min-width: 768px){
    .wcard {
        left: 40px;
        bottom: 105px;
    }
    .btn-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 40px;
        left: 40px;
        border-radius: 50%;
        font-size: 30px;
    }
}