.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.projeto-modal {
  display: none;
}

.modal-content {

  width: 90%;
  max-width: 1200px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content img {
  width: 100%;
}

.fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: var(--fonte-texto);
  cursor: pointer;
  font-family: "Newsreader", serif;
  font-style: italic;
  color: var(--cor-branco);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease;
}

.fechar::before {
  content: "←";
  font-style: normal;
}

.fechar:hover {
  opacity: 0.7;
}
