body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf6f0;
    color: #4b2e2e;
  }
  
  header {
    background-color: #d8a47f;
    padding: 20px;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
  
  section {
    padding: 40px;
    max-width: 800px;
    margin: auto;
  }
  
  .cardapio li {
    margin: 10px 0;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  input, textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
  }
  
  button {
    background-color: #d8a47f;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }
  
  footer {
    background-color: #4b2e2e;
    color: white;
    text-align: center;
    padding: 20px;
  }

  .container-botao {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh; /* ocupa metade da altura da tela */
  }
  
  
  .botao-pedido {
    padding: 10px 28px;
    background-color: #4b2e2e;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .botao-pedido:hover {
    background-color: #d8a47f;
    transform: scale(1.05);
  }
  
  .cardapio-digital {
    text-align: center;
    padding: 40px 20px;
  }
  
  .grid-cardapio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 20px;
  }
  
  .item-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 15px;
    transition: transform 0.3s ease;
  }
  
  .item-card:hover {
    transform: scale(1.05);
  }
  
  .item-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .item-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #4b2e2e;
  }
  
  .item-card p {
    font-size: 16px;
    color: #d8a47f;
    font-weight: bold;
  }
  
  fieldset {
    border: none;
    margin: 20px 0;
  }
  
  legend {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  label input[type="checkbox"] {
    margin-right: 8px;
  }
  
  fieldset {
    border: none;
    margin: 20px 0;
  }
  
  legend {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  label input[type="checkbox"] {
    margin-right: 8px;
  }
  
  .botao-animado {
    background-color: #4b2e2e;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
  }
  
  .botao-animado:hover {
    background-color: #d8a47f;
    transform: scale(1.05);
  }
  
  .botao-animado:active {
    transform: scale(0.95);
    background-color: #a36c4f;
  }
  