#filtros-posts {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  justify-content: center;
  padding: 40px 0;
  flex-wrap: wrap;
}

.post-resumo {
  margin-bottom: 20px;
}

.modal-post {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content-post {
  background: white;
  padding: 40px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 20px;
}
