body {
  background-color: white;
  margin: 10px;
}

h1 {
  font-family: verdana;
  font-size: 300%;
  color: white;
  text-shadow: 4px 2px 2px red;
  text-align: center;
}

.l {
  font-family: verdana;
  font-size: 150%;
  color: black;
  text-shadow: 4px 2px 2px white;
  text-align: center;
}

p {
  padding: 10px;
  margin: 10px;
  font-family: verdana;
  font-size: 160%;
  color: red;
  text-align: center;
}

li a {
  display: inline-block;
  color: red;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  background-color: yellow;
  border-radius: 15px;
  border: 0px solid black;
}

li a:hover {
  background-color: black;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: white;
  border-radius: 10px;
  display: flex;
  width: 100%;
}

ul li {
  flex: 1 1 0;
  text-align: center;
}

.produto-item {
  margin-bottom: 20px;
}

.produto-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media (max-width: 600px) {
  ul {
    flex-direction: column;
  }
  ul li {
    margin: 10px 0; /* espaçamento vertical no mobile */
    width: 100%;
    margin-bottom: 10px;
  }
}

ul {
  display: flex;
  align-items: center; /* alinha verticalmente */
  justify-content: center; /* já tá centralizado horizontal */
}

li {
  flex: 1 1 0;
  text-align: center;
}