  /* Estilo do pop-up */
    #popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 400px;
      background: #ffffff; /* Fundo branco */
      border: 3px solid #0056b3; /* Borda azul */
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      padding: 20px;
      text-align: center;
      z-index: 1000;
      display: none; /* Ocultar por padro */
    }

    #popup h2 {
      color: #0056b3; /* Azul do tema */
      font-size: 1.8rem;
      margin: 0;
    }

    #popup p {
      color: #333; /* Texto em cinza escuro */
      font-size: 1.2rem;
      margin: 10px 0;
    }

    #popup .cta {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background-color: #0056b3; /* Boto azul */
      color: #fff; /* Texto branco */
      font-size: 1.2rem;
      font-weight: bold;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    #popup .cta:hover {
      background-color: #003f8a; /* Azul mais escuro no hover */
    }

    #popup .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #0056b3; /* Fundo azul */
      color: #fff; /* Texto branco */
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      font-size: 1.2rem;
      cursor: pointer;
    }

    /* Fundo escurecido */
    #overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      display: none; /* Ocultar por padro */
    }
    