/* ===== RESET ===== */
* {
  box-sizing: border-box;
}

/* ===== PÁGINA ===== */
body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 20px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

/* ===== GRID ===== */
.grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ===== CARD ===== */
.card {
  position: relative;
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.grid-view .card {
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* ===== DETALHE MARCA (VERMELHO + DOURADO) ===== */
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #c4161c 0%,
    #c4161c 50%,
    #c9a24d 50%,
    #c9a24d 100%
  );
}

/* ===== BOTÃO COMPARTILHAR ===== */
.btn-share {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f4f4f4;
  border: none;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 0.75rem;
  cursor: pointer;
  color: #444;
}

.btn-share:hover {
  background: #e6e6e6;
}

/* ===== LISTA INTERCALADA ===== */
.lista .card {
  flex-direction: row;
}

.lista .card:nth-child(even) {
  flex-direction: row-reverse;
}

.lista .card:nth-child(even) .img-wrap {
  border-left: 1px solid #eee;
  border-right: none;
}

/* ===== IMAGEM ===== */
.img-wrap {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-right: 1px solid #eee;
}

.grid-view .img-wrap {
  width: 100%;
  border: none;
  border-bottom: 1px solid #eee;
}

.img-wrap img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

/* ===== CONTEÚDO ===== */
.card-body {
  flex: 1;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
}

.card-body strong {
  font-size: 1.1rem;
  color: #222;
}

.card-body .linha {
  font-size: .9rem;
  color: #666;
}

/* ===== VARIAÇÕES ===== */
.variacoes {
  margin-top: 14px;
}

.toggle-var {
  background: #f0f0f0;
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: .85rem;
  text-align: left;
}

.toggle-var:hover {
  background: #e0e0e0;
}

.lista-var {
  display: none;
  margin-top: 10px;
}

.lista-var.ativa {
  display: block;
}

.var-item {
  background: #f2f2f2;
  border-radius: 6px;
  padding: 7px 10px;
  margin-bottom: 6px;
  font-size: .85rem;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }

  .img-wrap {
    border: none;
    border-bottom: 1px solid #eee;
  }
}
