
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
  }
  
  .whatsapp-button img {
    width: 35px;
    height: 35px;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.1);
  }

  @media (max-width: 991px) {
    .whatsapp-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: transform 0.3s ease-in-out;
        text-decoration: none;
      }
      .whatsapp-button img {
        width: 35px;
        height: 35px;
      }
}
  
  /* Balão de Texto */
  .whatsapp-text {
    position: absolute;
    right: 70px;
    background-color: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  /* Exibir balão ao passar o mouse */
  .whatsapp-button:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
  }