/*Botão Whatsapp*/
@-webkit-keyframes glowing {
  0% {
    background-color: #35b084;
    -webkit-box-shadow: 0 0 3px #35b084;
  }
  50% {
    background-color: #8BC34A;
    -webkit-box-shadow: 0 0 3px #8BC34A;
  }
  100% {
    background-color: #35b084;
    -webkit-box-shadow: 0 0 3px #35b084;
  }
}
@-moz-keyframes glowing {
  0% {
    background-color: #35b084;
    -moz-box-shadow: 0 0 3px #35b084;
  }
  50% {
    background-color: #8BC34A;
    -moz-box-shadow: 0 0 3px #8BC34A;
  }
  100% {
    background-color: #35b084;
    -moz-box-shadow: 0 0 3px #35b084;
  }
}
@-o-keyframes glowing {
  0% {
    background-color: #35b084;
    box-shadow: 0 0 3px #35b084;
  }
  50% {
    background-color: #8BC34A;
    box-shadow: 0 0 3px #8BC34A;
  }
  100% {
    background-color: #35b084;
    box-shadow: 0 0 3px #35b084;
  }
}
@keyframes glowing {
  0% {
    background-color: #35b084;
    box-shadow: 0 0 3px #35b084;
  }
  50% {
    background-color: #8BC34A;
    box-shadow: 0 0 3px #8BC34A;
  }
  100% {
    background-color: #35b084;
    box-shadow: 0 0 3px #35b084;
  }
}
.float-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999;
}
.float-whatsapp-button {
  display: flex;
  cursor: pointer;
  background-color: #2a894d;
  color: #FFF;
  font-family: Roboto, sans-serif;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 7px 20px 7px;
  box-shadow: 2px 2px 3px #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
.float-whatsapp-button:hover {
  box-shadow: 0 10px 25px rgb(34, 189, 91, 0.6);
  -webkit-transform: translatey(-5px);
  transform: translatey(-5px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.float-whatsapp-button p {
  margin: 0px;
  font-size: 16px;
  font-weight: 600;
}
.float-whatsapp-button i {
  font-size: 24px;
  margin-right: 5px
}
.float-whatsapp-button img {
  margin-right: 10px;
  width: 25px;
  height: 25px;
}
@media (max-width: 600px) {
  .float-whatsapp {
    position: fixed;
    display: flex;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    padding: 15px 0 10px;
    background: white;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -10px 20px 0 rgb(0, 0, 0, 0.3);
    width: 100vw;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 999999;
  }
  .float-whatsapp-button {
    width: 80vw;
    border-radius: 50px
  }
}
/*Botão Whatsapp*/