.card-nordestina {
  border: 3px dashed #c58f3f;
  border-radius: 18px;
  background-color: #fffbea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-nordestina:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
  background-color: #fff5dc;
}

.card-nordestina .card-title {
  color: #944b12;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-nordestina .card-text {
  color: #5b4b38;
  font-style: italic;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Alinhamento e altura da imagem */
.card-img-top {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

/* Garante que o conteúdo ocupe espaço proporcional */
.card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-footer {
  font-family: 'Poppins', sans-serif;
  background-color: #fffef9;
  border-top: 1px solid #e8dab0;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.card-footer h6 {
  font-weight: 600;
  color: #a0622e;
}

.card-footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #5a4635;
}

.card-footer .text-warning {
  font-size: 1.2rem;
}

.card-footer small {
  font-size: 0.85rem;
}
