body {
  background: url("ec5088a493a335cb6175d2992c66081d.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #f5f5f5;
  font-family: 'Georgia', serif;
}

h1 {
  font-family: 'Cursive', sans-serif;
  margin-bottom: 30px;
}

.card {
  background-color: #2a2a2a;
  border: 2px solid #d4af37; /* dourado */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.6);
  transition: transform 0.2s;
}

.card {
  height: 300px;           /* altura fixa */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: scale(1.03);
}

.card-body {
  text-align: center;
}

.card h5 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #ffd700; /* título dourado */
}

.card p {
  margin: 5px 0;
}

.card .preco-estoque {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: bold;
}

.btn-success {
  margin-top: 15px;
  background-color: #228b22;
  border: none;
}