.blog-detalhes h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-detalhes .text-muted {
  font-size: 0.95rem;
  color: #6c757d;
}

.blog-detalhes img {
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.blog-detalhes .conteudo {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  padding: 20px 15px;
}

.blog-detalhes .conteudo p {
  margin-bottom: 1.2rem;
}

/* Botão com efeito hero */
.btn-pixel-fx {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-pixel-fx:hover {
  background: #084ec9;
}

.pixel-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: sparkle 1.6s infinite ease-in-out;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.p1 { top: 10%; left: 10%; animation-delay: 0s; }
.p2 { top: 50%; left: 5%; animation-delay: 0.2s; }
.p3 { top: 20%; right: 10%; animation-delay: 0.4s; }
.p4 { bottom: 10%; left: 20%; animation-delay: 0.6s; }
.p5 { top: 5%; right: 25%; animation-delay: 0.8s; }
.p6 { bottom: 20%; right: 15%; animation-delay: 1s; }
.p7 { bottom: 10%; left: 40%; animation-delay: 1.2s; }
.p8 { top: 15%; right: 5%; animation-delay: 1.4s; }

/* Responsivo */
@media (max-width: 767px) {
  .blog-detalhes .conteudo {
    font-size: 1rem;
  }

  .blog-detalhes img {
    max-height: 300px;
  }
}
