/* Modal base */
#modal-noticia {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  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;
}

/* Modal visível */
#modal-noticia.show {
  opacity: 1;
  pointer-events: auto;
}

/* Conteúdo do modal */
#modal-noticia .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 do conteúdo */
#modal-noticia.show .modal-noticia-content {
  transform: translateY(0);
}

/* Corpo do modal */
#modal-noticia .modal-noticia-body {
  margin-top: 1rem;
  background: none;
}

/* Botão de fechar */
#modal-noticia .modal-noticia-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Ocultar modal por padrão */
.hidden-noticia {
  display: none;
}

/* Estilo da imagem da notícia */
#modal-noticia .modal-noticia-body img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Título, data e descrição da notícia */
#modal-noticia .modal-noticia-body > h2,
#modal-noticia .modal-noticia-body > span,
#modal-noticia .modal-noticia-body > p {
  background: none;
}
.btn-ler-mais {
    border: none;
    display: inline-block;
    padding: 8px 14px;
    background-color: #0073e6;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}