/*Estilização do catalogo*/
/*Lista de Cardapio*/
#catalogo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
}

.produto {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  background: #f9f9f9;
  transition: transform 0.3s ease;
}

.produto:hover {
  transform: translateY(-5px);
}

.produto img {
  max-width: 100%;
  height: 300px;
  object-fit: cover;
}

.produto h4 {
  margin: 10px;
  font-size: 18px;
  color: #333;
}

.produto p {
  margin: 10px;
  font-size: 16px;
  color: #555;
}

.produto button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #7ad37a;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 0 0 8px 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.produto button:hover {
  background-color: #68b868;
}

/* Estilo da seção de filtros */
.filtros {
  margin-top: 100px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  background-color: #68b868;
  padding: 5px;
  border-radius: 10px;
  margin-left: 30%;
  margin-right: 30%;
}

.filtros select {
  padding: 8px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
