/* Centralizar imagens dos cards de produtos */
.produto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.produto-img {
  object-fit: contain;
  width: 100%;
  max-width: 220px;
  height: 180px;
  margin: 0 auto;
  display: block;
}
body, html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
/* h1 do cabeçalho de produtos com fundo igual ao body */
.produtos-header h1 {
  display: inline-block;
  padding: 0.5em 1.5em;
  background: linear-gradient(rgba(40, 20, 10, 0.85), rgba(183, 28, 28, 0.15)), url('https://www.transparenttextures.com/patterns/wood-pattern.png');
  background-size: auto;
  background-repeat: repeat;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(183, 28, 28, 0.10);
  font-weight: bold;
}

/* Header de produtos com fundo de madeira e overlay */
.produtos-header {
  background: linear-gradient(rgba(40, 20, 10, 0.85), rgba(183, 28, 28, 0.15)), url('https://www.transparenttextures.com/patterns/wood-pattern.png');
  background-size: auto;
  background-repeat: repeat;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(183, 28, 28, 0.10);
}

/* Fundo geral para churrascaria: textura de madeira e overlay escuro */
body {
  background: linear-gradient(rgba(40, 20, 10, 0.7), rgba(40, 20, 10, 0.7)), url('https://www.transparenttextures.com/patterns/wood-pattern.png');
  background-size: auto;
  background-repeat: repeat;
  min-height: 100vh;
}

/* Navbar com imagem de fundo personalizada */
.navbar.bg-black {
  background-color: #111 !important;
  background-image: url('img/BANNER_transparente.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 200px;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  border-radius: 0 !important;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25), 0 1.5px 0 0 #b71c1c inset;
  border: none !important;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 10;
  overflow: hidden;
}

.navbar.bg-black::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.navbar.bg-black > .container-fluid, .navbar.bg-black > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .navbar.bg-black {
    min-height: 120px;
    background-size: contain;
  }
}
/* Fim do CSS principal */

.qr-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}