/* Fundo escurecido por trás da popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* fundo escuro com transparência */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Janela do conteúdo da popup */
  .popup-conteudo {
    width: 90vw;
    height: 90vh;
    background-color: rgba(30, 30, 30, 0.85); /* dark com leve transparência */
    color: #f0f0f0;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  }
  
  /* Botão de fechar (X) */
  .fechar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    font-weight: bold;
    color: #f0f0f0;
    cursor: pointer;
  }
  