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


header {
  background: #7a0000;
  color: white;
  text-align: center;
  padding: 20px;
}


.banner {
  height: 300px;
  background-image: url("img/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}


.menu {
  padding: 20px;
  margin-right: 300px;
  padding-bottom: 300px; 
}


.item {
  background: white;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.item span {
  font-weight: bold;
}


button {
  background: green;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: darkgreen;
}

.marmitex-box,
.sabores {
  display: none;
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}


.sabores label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sabores input[type="checkbox"] {
  width: auto;
  transform: scale(1.1);
}

.sabores button {
  margin-top: 10px;
  width: 100%;
}

.carrinho {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: white;
  padding: 20px;
  border-left: 2px solid #ccc;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}


input {
  width: 100%;
  margin: 5px 0;
  padding: 8px;
  box-sizing: border-box;
}


.pagamento {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opcao 
{
   display: flex; 
   align-items: center; 
   gap: 8px; 
   cursor: pointer; 
  } 
  .opcao input 
  { 
    margin: 0; 
    width: auto; 
  }


@media (max-width: 900px) {
  .menu {
    margin-right: 0;
  }

  .carrinho {
    bottom: 0;
    left: 0;
    top: auto;
    right: auto;
    width: 100%;
    height: 250px;
    border-left: none;
    border-top: 2px solid #ccc;
  }
}