body {
  font-family: Arial, sans-serif;
  background-color: #fff8f0;
  color: #333;
  margin: 0;
}

header {
  background-color: transparent;
  color: #333;
  text-align: center;
  padding: 1rem;
}

footer {
  background-color: transparent;
  color: #333;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}


main {
  max-width: 1200px;
  width: 100%;
  padding: 1rem;
  margin: 2rem auto;
}

#menu {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.item {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  width: 250px;
}

.item img {
  width: 100%;
  border-radius: 5px;
}

.item button {
  background: #d35400;
  color: white;
  border: none;
  padding: 0.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
}

#carrinho {
  margin-top: 2rem;
}

footer {
  background-color: #d35400;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  #menu {
    flex-direction: column;
    align-items: center;
  }

  .item {
    width: 90%;
  }
}
.extra-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}
.endereco-entrega {
  margin: 1rem 0;
}

.endereco-entrega label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.endereco-entrega input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.dia-cardapio {
  width: 100%;
  margin-bottom: 2rem;
}

.dia-cardapio h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: #f5f5f5;
  border-radius: 6px;
}

.dia-cardapio .item {
  margin-bottom: 1rem;
}
.dia-cardapio {
  width: 100%;
  margin-bottom: 2rem;
}

.dia-cardapio h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: #f5f5f5;
  border-radius: 6px;
}

.dia-cardapio .itens {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dia-cardapio .item {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  width: 250px;
}

@media (max-width: 768px) {
  .dia-cardapio .item {
    width: 100%;
  }
}
#carrinho {
  max-width: 500px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

#carrinho h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #d35400;
}

#cart-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

#cart-items li {
  background: #f8f8f8;
  margin-bottom: 0.5rem;
  padding: 0.8rem;
  border-radius: 6px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items:left;
}

#total {
  font-size: 1.3rem;
  font-weight: bold;
  color: #27ae60;
}

button.finalizar {
  background: #27ae60;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

button.finalizar:hover {
  background: #219150;
}
button.finalizar {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

button.finalizar:hover {
  background: linear-gradient(135deg, #219150, #27ae60);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

button.finalizar:active {
  transform: translateY(0px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}
