.btn-whatsapp a {
	color:#fff; 
	text-decoration:none; 
	display:block; 
}
.btn-whatsapp {    
    z-index: 1000;
    position:fixed;
    right:10px; 
    bottom:10px; 
    transform: translate(-50%, -50%);  
    background-color:rgb(37, 211, 102); 
    width:60px; height:60px; 
    text-align:center; 
    line-height:58px; 
    font-size:1.8em; 
    color:#ffffff; 
    font-weight:100; 
    border-radius:50%; 
}
.btn-whatsapp:before,
.btn-whatsapp:after
{
	content: '';
    display:block;
    position: absolute;
    border-radius:50%;
    border:1px solid #25d366;
    left: -20px;
    right: -20px;
    bottom: -20px;
    top: -20px;
    animation: animate 1.5s linear infinite;
    opacity:0;
    backface-visibility:hidden;    
}
.pulsaDelay:after { animation-delay: .5s; }
@keyframes animate {
   0%   { transform: scale(0.5); opacity:0; }
   50%  { opacity:1; }
   100% { transform: scale(1.2); opacity:0; }
}



.btn-suporte {
  position: fixed;
  bottom: 20px;       /* distância do fundo */
  left: 20px;         /* distância da esquerda */
  z-index: 1000;
}

.btn-suporte img {
  width: 70px;        /* ajuste o tamanho aqui */
  height: auto;       /* mantém proporção */
  border-radius: 50%; /* deixa a imagem redonda, remova se não quiser */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.btn-suporte img:hover {
  transform: scale(1.1); /* efeito de zoom ao passar o mouse */
}