/* Estilos para o blog e cards */
.blog-row {
  margin-bottom: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-card-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.blog-btn-lermais {
  background: #198754;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.blog-btn-lermais:hover {
  background: #145c32;
  color: #fff;
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 1rem;
  display: block;
}


