/* GRID GERAL */
.gsc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin: 20px 0;
  padding: 0;
}

/* CARD */
.gsc-card {
  width: calc(25% - 18px); /* 4 cards por linha com gap */
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.gsc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* IMAGEM */
.gsc-card .gsc-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.gsc-card .gsc-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* DESCRIÇÃO */
.gsc-card .gsc-descricao {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin: 8px 0;
  line-height: 1.3;
}

/* ESTRELA */
.gsc-card .gsc-estrela {
  font-size: 18px;
  color: #f4b400;
  margin: 6px 0;
}

/* PREÇO */
.gsc-card .gsc-preco {
  font-size: 17px;
  font-weight: bold;
  color: #000;
  margin: 8px 0;
}

/* CONTÊINER DO BOTÃO */
.gsc-card .gsc-botao {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* BOTÃO */
.gsc-card .gsc-botao a,
.gsc-card .gsc-botao a.modelos {
  background: #A41861;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 0 14px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 220px;
  height: 44px;
}

/* RESPONSIVO */
@media screen and (max-width: 1024px) {
  .gsc-card {
    width: calc(33.33% - 16px);
  }
}

@media screen and (max-width: 768px) {
  .gsc-card {
    width: calc(50% - 12px);
  }
}

@media screen and (max-width: 480px) {
  .gsc-card {
    width: 100%;
  }
}
