.popup {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
  }
  
  .popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    position: relative;
  }
  
  #close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    top: 0;
    cursor: pointer;
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  .popup-button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #FFCC00;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .popup-button:hover {
    background-color: #FFCC00;
    background-color: #128C7E;
  }