/* === Estilo para a imagem fullscreen de fundo === */
.fullscreen-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/* === Blur inicial e transição === */
.blur-up {
  filter: blur(20px);
  transition: filter 0.8s ease-out;
}
.blur-up.loaded {
  filter: blur(0);
}

/* Estilos do popup */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
#popup-content {
  background: transparent;
  width: 35vw;
  height: auto;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
#popup-content img {
  display: block;
  width: 100%;
  height: auto;
}
#popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Estilos dos links de navegação */
.nav-link-inscricao,
.nav-link-edital {
  color: #39FF14 !important;
  font-weight: bold;
}

