/* Fonte moderna */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f3f3f3;
  margin: 0;
  padding: 0;
}

header {
  background: #ffcc00;
  color: #b40000;
  text-align: center;
  padding: 20px;
  font-size: 28px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

main {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.menu, .pedido {
  background: white;
  padding: 20px;
  border-radius: 16px;
  width: 45%;
  min-width: 300px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Título */
h2 {
  color: #b40000;
  margin-bottom: 15px;
}

/* Produtos em grid */
.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

/* Card do produto */
.produto {
  background: #fff5e1;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform .2s, box-shadow .2s;
}

.produto:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Imagem do produto */
.produto img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

/* Nome e preço */
.produto h3 {
  margin: 10px 0 5px;
  color: #b40000;
}
.produto p {
  color: #444;
  font-weight: bold;
}

/* Pedido */
.pedido ul {
  list-style: none;
  padding: 0;
}

.pedido ul li {
  background: #ffe6e6;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 5px;
}

.resumo {
  margin-top: 10px;
  text-align: center;
}

.resumo p {
  font-size: 18px;
  margin: 10px 0;
}

button {
  background: #b40000;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
}

button:hover {
  background: #ff0000;
}
