body {
  background: #0f172a;
  font-family: Arial, sans-serif;
  color: #fff;
}

.noticia-detalhe {
  max-width: 900px;
  margin: 40px auto;
}

.blog-card {
  background: #1e1b4b;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.blog-card img {
  width: 100%;
  height: auto;
}

.blog-content {
  padding: 25px;
}

.botao {
  margin-top: 20px;
}
/* ===== BOTÕES DAS NOTÍCIAS ===== */
.noticias-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 26px;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #ffffff;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 999px;
  cursor: pointer;

  transition: 0.25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.noticias-botao:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.noticias-botao:active {
  transform: scale(0.96);
}
