@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
body {
font-family: 'Montserrat', sans-serif :important;
}
@media (max-width: 768px) {
  .menu, .banner {
    text-align: center;
    font-size: 14px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  background-color: #1E1E1E; /* Fundo grafite escuro */
  color: #FFFFFF; /* Texto branco */
  font-family: 'Orbitron', sans-serif; /* Fonte futurista gamer */
}

h1, h2, h3 {
  color: #D4AF37; /* Dourado */
  text-transform: uppercase;
}

a {
  color: #D4AF37;
  transition: 0.3s;
}
a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.botao, .btn {
  background-color: #D4AF37;
  color: #1E1E1E;
  border-radius: 10px;
  font-weight: bold;
}
.botao:hover, .btn:hover {
  background-color: #FFD700;
  color: #000;
}.vitrine-midgard {
  text-align: center;
  padding: 40px 20px;
  background-color: #0d0d0d;
  color: #ffffff;
}

.vitrine-midgard h2 {
  font-size: 2.5rem;
  color: #e0b400;
  margin-bottom: 10px;
  font-family: 'Segoe UI', sans-serif;
}

.vitrine-midgard p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-produto {
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease;
}

.card-produto:hover {
  transform: translateY(-5px);
}

.card-produto img {
  max-width: 100%;
  border-radius: 6px;
}

.card-produto h3 {
  font-size: 1.1rem;
  margin: 10px 0 5px;
  color: #ffffff;
}

.preco-antigo {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
}

.preco-novo {
  color: #00e676;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

.botao-comprar {
  display: inline-block;
  background-color: #e0b400;
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.botao-comprar:hover {
  background-color: #ffd700;
}
