.banner {
  background: linear-gradient(90deg, #fff0f0, #ffe8e8);
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.banner h1 {
  font-size: 26px;
  color: #a83838;
}

.banner a {
  text-decoration: none;
  color: #a83838;
  font-weight: bold;
}
.cardapio {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: #fffaf7;
  border-radius: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.titulo-categoria {
  color: #b34747;
  font-size: 28px;
  margin-top: 40px;
  border-bottom: 2px solid #e9c6c6;
  padding-bottom: 8px;
}

.item {
  display: flex;
  margin-top: 20px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #f0dada;
  padding-bottom: 20px;
}

.item img {
  width: 150px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(179, 71, 71, 0.2);
}

.info h3 {
  margin: 0 0 5px 0;
  color: #903636;
  font-size: 22px;
}

.info p {
  margin: 5px 0;
  color: #5f3b3b;
  font-size: 16px;
}

.preco {
  font-weight: bold;
  margin-top: 8px;
  font-size: 18px;
  color: #b34747;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 10px;
  background-color: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

/* Responsividade básica */
@media (max-width: 650px) {
  .item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .item img {
    width: 100%;
    max-width: 300px;
  }
}
