
/* BOTAO WHATSAPP */
.banner_texto {
    border: none;
    padding: 10px 10px;
    z-index: 10000;
    color: #fff;
    text-align: center;
    position: fixed;
    top: 90%;
    width: 100%;
    background: #28a745;
  }
  @media screen and (min-width: 490px) {
    .banner_texto {
      display: none;
    }
  }
  
  @media screen and (max-width: 490px) {
    .whats {
      display: none;
    }
  }
  .pulse-button2 {
    box-shadow: 0 0 0 0 #28a745;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  }
  .pulse-button2:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
  }
  @-webkit-keyframes pulse {
    to {
      box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
  }
  @-moz-keyframes pulse {
    to {
      box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
  }
  @-ms-keyframes pulse {
    to {
      box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
  }
  @keyframes pulse {
    to {
      box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
    }
  }
  
  
  
  .botaoWhats {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #28a745;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 1px 1px 2px #1b8a36;
    z-index: 1000;
    transition: .3s ease-in-out
  }
  
  .botaoWhats:hover {
    background-color: #fff;
    color: #28a745;
  }
  
  /* BOTAO WHATSAPP */
  .text-dark {
   color: #000 !important;
  }