p.blog-intro {
  text-align: center;
  font-style: italic;
  margin-bottom: 2rem;
}

.blog-highlight {
  display: flex;
  justify-content: center;
}

.highlight-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.highlight-image {
  background-image: url('/assets/css/images/cobranca-indevida.png'); /* salve a imagem no seu projeto */
  background-size: cover;
  background-position: center;
  height: 400px;
  transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-image {
  transform: scale(1.05);
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.highlight-overlay .category {
  font-size: 2rem;
  color: #f5c58a;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.highlight-overlay .title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.highlight-overlay .excerpt {
  font-size: 1rem;
  color: #eee;
}
