
    /* Overlay centralizado */
    .nox-modal {
        display:none;
        position: fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background: rgba(0,0,0,0.5);
        justify-content: center;
        align-items: center;
        z-index: 9999;
        padding: 15px;
        box-sizing: border-box;
    }

    /* Conteúdo do popup */
    .nox-modal-content {
        background: #fff;
        padding: 50px;
        border-radius: 10px;
        max-width: 400px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    .nox-modal.show{
        display: flex !important;
    }
    /* Quando o popup estiver ativo */
    .nox-modal.show .nox-modal-content {
        transform: translateY(0);
        opacity: 1;
    }

    .nox-modal-content input {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
    }

    .nox-modal-content button {
        padding: 10px 20px;
        background: #25D366;
        border: none;
        color: #fff;
        cursor: pointer;
        border-radius: 5px;
        transition: background 0.2s;
    }
    .nox-modal-content button:hover {
        background: #128C7E;
    }

    .nox-input-group { position: relative; margin-bottom: 15px; }
    .nox-error {
        display: block;
        color: #ff4d4f;
        font-size: 0.85em;
        margin-top: 5px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .nox-error.show { opacity: 1; }




    .nox-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  /*border-bottom: 1px solid #ddd;*/
}

.nox-logo a {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.nox-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nox-menu li a {
  text-decoration: none;
  color: #333;
}

.nox-menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}
button.nox-menu-toggle{
    background-color: #2D6395;
}

@media (max-width: 768px) {
  .nox-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 200px;
    padding: 20px;
    border: 1px solid #ddd;
  }

  .nox-menu.active {
    display: flex;
    z-index: 999999999;
  }

  .nox-menu-toggle {
    display: block;
  }
}
