.whatsapp-sticker {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-sticker img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .whatsapp-sticker:hover {
    transform: scale(1.1);
  }
  