.cardapioSection {
  padding: 60px 20px;
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.sectionTitle {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--red-velvet);
  text-align: center;
  margin-bottom: 40px;
}

.categoriaCard {
  margin-bottom: 50px;
}

.categoriaTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 25px;
  border-left: 5px solid var(--red-velvet);
  padding-left: 15px;
}

.listaCard {
  list-style: none;
  padding: 0;
  margin: 0;
}

.itemsCard {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.itemsCard img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.itemInfo {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.itemName {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 4px;
}

.itemAcompanhamento {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.3;
}

.itemPrice {
  font-weight: bold;
  height: 100%;
  color: var(--red-velvet);
  font-size: 1rem;
  white-space: nowrap;
  align-self: flex-start;
  margin-left: auto;
}

