.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: green;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .whatsapp-button i {
    font-size: 40px; /* Tamanho do ícone aumentado para 40px */
    color: white;
  }
  
  .modal-wp {
    display: none;
    position: absolute;
    top: 90px;
    right: 90px;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    z-index: 1001;
  }
  
  .modal-content-wp {
    text-align: center;
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
  }
  