.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.05);
  }
  
  .whatsapp-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .whatsapp-label {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  