.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  .whatsapp-button svg {
    width: 32px;
    height: 32px;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #22c15e;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  }
  
  /* Animação de pulsação */
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
  }
  
  /* Aplicação da animação após 3 segundos */
  .whatsapp-button.animate {
    animation: pulse 1.5s infinite;
  }
  
  /* Responsividade para dispositivos móveis */
  @media (max-width: 768px) {
    .whatsapp-button {
      width: 50px;
      height: 50px;
    }
    
    .whatsapp-button svg {
      width: 26px;
      height: 26px;
    }
  }