/* Seção de Notícias */
#noticias {
  background-color: #fff;
}

#noticias h2.outline {
  text-align: center;
  margin-bottom: 2rem;
}

.noticia-item {
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.noticia-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.noticia-item .data-post {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.noticia-item h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.noticia-item .resumo {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Post Single */
.post-single {
  padding: 3rem 0;
}

.post-single .post-header {
  margin-bottom: 2rem;
}

.post-single .post-header h1 {
  color: #333;
  margin-bottom: 0.5rem;
}

.post-single .post-header time {
  color: #666;
  font-size: 0.9rem;
}

.post-single .post-content {
  color: #333;
  line-height: 1.8;
}
