.cardapio-geral {
  width: 100%;
  padding: 20px;
}

.categoria-bloco {
  margin-bottom: 40px;
}

.categoria-titulo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #5c2d91; /* Roxo */
}

.carrossel-container {
  position: relative;
  overflow: hidden;
}

.carrossel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.carrossel::-webkit-scrollbar {
  display: none;
}

.card-produto {
  flex: 0 0 auto;
  width: 220px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
}

.card-produto:hover {
  transform: translateY(-4px);
}

.card-produto img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.info-produto {
  padding: 10px;
}

.info-produto h3 {
  font-size: 16px;
  color: #222;
  margin-bottom: 6px;
}

.preco {
  color: #000;
  font-weight: bold;
  margin-bottom: 10px;
}

.btn-vermelho {
  background-color: #a20003;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-roxo {
  background-color: #5c2d91;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-vermelho:hover {
  background-color: #c10000;
}

.btn-roxo:hover {
  background-color: #7239b2;
}

.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 10;
}

.carrossel-btn.left { left: 0; }
.carrossel-btn.right { right: 0; }

@media (max-width: 768px) {
  .card-produto {
    width: 160px;
  }
  .info-produto h3 {
    font-size: 14px;
  }
}