/* pulsar */

@-webkit-keyframes botao1 {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes botao1 {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.botao1 {
  -webkit-animation-name: botao1;
  animation-name: botao1;
  -webkit-animation-duration: 0.6s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: cubic-bezier(0.38, -0.46, 0.15, 0.19);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/* pulsar */


