* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Times New Roman', sans-serif;
  background-color: #ffffff;
  color: #0043fc;
}


header h1 {
  font-size: 2.5rem;
}

header p {
  margin-top: 0.5rem;
  font-size: 1.2rem;
}

.vitrine {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.produto {
  background: rgb(255, 123, 0);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 220px;
  text-align: center;
  transition: transform 0.3s ease;
}

.produto:hover {
  transform: scale(1.05);
}

.produto img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.produto h2 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.preco {
  color: #000000;
  font-weight: bold;
  font-size: 1.1rem;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a {
  color: #00bfff;
  text-decoration: none;
}.menu-horizontal {
  background-color: #0a0a23;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.menu-horizontal ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-horizontal li {
  margin: 0 20px;
}

.menu-horizontal a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.menu-horizontal a:hover {
  color: #00ffcc;
}

/* empurra o conteúdo para baixo do menu fixo */
body {
  padding-top: 40px; /* ajuste esse valor se necessário */
}
html {
  scroll-behavior: smooth;
}
/* Cursor de bola de futebol */
body {
  cursor: url("img/cursor.png") 16 16, auto;
}
@media screen and (max-width: 768px){
  .menu-horizontal img {
   width: 30%;
  }