/* ANIMACAO WHATSAPP */
.animacao {
	display: flex;
	justify-content: center;
	align-items: center;
	position:fixed; 
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	box-shadow: 0 0 0 0 rgba(10, 202, 58, 0.89);
	z-index:11000; 
	text-decoration: none;
	animation: alerta 1.5s infinite;
}
.animacao:hover,
.animacao:focus,
.animacao:focus-visible,
.animacao:active {
	  color: #FFF !important;
      text-decoration: none;
}
.animacao-icon {
	  color: white;
}

@keyframes alerta {
	0% {
	  transform: scale();
	}
	70% {
	  transform: scale();
	  box-shadow: 0 0 0 50px rgba(69, 152, 27, 0);
	}
	  100% {
	  transform: scale();
	  box-shadow: 0 0 0 0 rgba(69, 152, 27, 0);
	}
}
/* FIM ANIMACAO WHATSAPP */