/* Modal base */
.modal-noticia {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.modal-noticia.show {
  opacity: 1;
  pointer-events: auto;
}

/* Modal content */
.modal-noticia-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  height: 90%;
  overflow-y: auto;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

/* Animação de entrada */
.modal-noticia.show .modal-noticia-content {
  transform: translateY(0);
}

.modal-noticia-body {
  margin-top: 1rem;
  background: none;
}

.modal-noticia-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.hidden-noticia {
  display: none;
}

.modal-noticia-body img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.modal-noticia-body>h2,
.modal-noticia-body>span,
.modal-noticia-body>p{
  background: none;
}