/* Reset básico */
* {
  box-sizing: border-box;
}

/* Background geral */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f6f6f6;

  /* Background solicitado */
  background-image: url('https://imagens.baxinholanches.com.br/bg.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;

  margin: 0;
  padding: 0;
}

/* Container principal (card) */
.container {
  max-width: 520px;
  margin: 20px auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 10px;
}

.logo img {
  max-width: 180px;
}

/* Título */
h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 15px 0;
  text-align: center;
}

/* Labels */
label {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
}

/* Inputs */
input[type="text"],
input[type="number"],
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  background-color: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #ea1d2c; /* vermelho iFood-like */
}

/* Separador */
hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 16px 0;
}

/* Lista de itens */
.item {
  display: grid;
  grid-template-columns: 22px 1fr 70px;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.item:last-child {
  border-bottom: none;
}

.item span {
  font-size: 14px;
}

/* Checkbox */
.item-check {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Quantidade */
.item-qty {
  text-align: center;
}

/* Total */
.total {
  margin-top: 20px;
  padding: 12px;
  background-color: #fafafa;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: 1px dashed #ddd;
}

.total small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #777;
  margin-top: 4px;
}

/* Botão principal */
button {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: #ea1d2c; /* vermelho iFood */
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background-color: #c91825;
}

/* Mobile ajustes */
@media (max-width: 480px) {
  .container {
    margin: 0;
    min-height: 100vh;
    border-radius: 0;
  }

  h2 {
    font-size: 17px;
  }
}

footer {
  text-align: center;
  margin-top: 20px;
  padding: 15px 10px;
  font-size: 11px;
  color: #777;
}

footer a {
  color: #e53935;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}