.whatsapp-container {
      position: fixed;
      bottom: 70px; 
      right: 20px; 
      z-index: 1000; 
  }
  
   .whatsapp-container img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    animation: pulse 1.5s ease-in-out infinite; 
    transition: transform 0.3s ease;
}

.whatsapp-container img:hover {
    transform: scale(1.1);
    animation: none; 
}

  @keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
} 

