/* ===============================
   GRID
================================ */
.mkt-cards-grid {
  display: grid;
  width: 100%;
}

/* ===============================
   CARD
================================ */
.mkt-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.mkt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* ===============================
   IMAGEM
================================ */
.mkt-card__image {
  margin-bottom: 16px;
}

.mkt-card__image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ===============================
   TÍTULO
================================ */
.mkt-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #1e293b;
}

/* ===============================
   EXCERPT (se usar depois)
================================ */
.mkt-card__excerpt {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

/* ===============================
   PREÇO
================================ */
.mkt-card__price {
  font-size: 20px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 16px;
}

/* ===============================
   BOTÃO
================================ */
.mkt-card__button {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}

.mkt-card__button:hover {
  background: #1d4ed8;
  transform: scale(1.04);
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 1024px) {
  .mkt-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .mkt-cards-grid {
    grid-template-columns: 1fr !important;
  }

  .mkt-card {
    padding: 20px;
  }
}
