/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .whatsappPress {
     position:fixed;
 }
 
/*--- AnimaĆĀ§ĆGo do Icone do Whatsapp ----*/
@keyframes WaveWhatsApp {0%{ transform: scale(0.5); } 50%{ opacity: 1; } 100%{ transform: scale(1.2); opacity: 0; }}
.whatsappPress a::after,.whatsappPress a::before{
	content: '';
    position: absolute;
    opacity: 0;
    border: 4px solid lightgreen;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    -webkit-border-radius: 50%;
    animation: WaveWhatsApp 1.5s ease infinite;
}
.whatsappPress a::after{animation-delay:.5s;}
