/*==================================================
                BOTÃO WHATSAPP
==================================================*/

.whatsapp-float {

      position: fixed;

      right: 25px;

      bottom: 25px;

      width: 68px;

      height: 68px;

      border-radius: 50%;

      background: linear-gradient(135deg, #25D366, #128C7E);

      color: #FFF;

      display: flex;

      justify-content: center;

      align-items: center;

      font-size: 36px;

      text-decoration: none;

      box-shadow: 0 15px 35px rgba(37, 211, 102, .35);

      z-index: 9999;

      transition: .3s;

      animation: whatsPulse 2s infinite;

}

.whatsapp-float:hover {

      transform: scale(1.12);

      color: #FFF;

      box-shadow: 0 20px 45px rgba(37, 211, 102, .5);

}

@keyframes whatsPulse {

      0% {

            box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);

      }

      70% {

            box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);

      }

      100% {

            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);

      }

}

@media(max-width:768px) {

      .whatsapp-float {

            width: 60px;

            height: 60px;

            right: 18px;

            bottom: 18px;

            font-size: 32px;

      }

}