/*********************************************************/
/*INICIO TRECHO REFERENTE ARQUIVO _banner.scss*/
.bannerPag {
  position: relative;
  z-index: 1;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 20px;
}
.bannerPag span.imagem {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  filter: grayscale(0.5) brightness(0.5);
  animation: bgBanner 10s ease-in-out infinite;
}
@keyframes bgBanner {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
h2 {
  color: #CCCCCC;
}
h2:before {
  background-color: #CCCCCC;
}
.bannerPag .textB {
  font-family: var(--font-padrao);
  font-weight: 300;
  font-size: 30px;
  color: #FFFFFF;
  filter: drop-shadow(0 0 2px #000);
}
@media only screen and (max-width: 600px) {
  .bannerPag {
    height: 320px;
    padding-top: 50px;
  }
  .bannerPag h2, .bannerPag .textB {
    transform: scale(0.7);
  }
}
/* FIM TRECHO REFERENTE ARQUIVO _banner.scss*/

/*********************************************************/
/*INICIO TRECHO REFERENTE ARQUIVO categorias.scss*/
.categorias {
  position: relative;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.categorias a.itemCat {
  width: 33.33%;
  height: 300px;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: row;
}
.categorias a.itemCat > div.texto {
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  padding: 10px;
  z-index: 2;
  transition: 0.6s;
}
.categorias a.itemCat > div.texto > div {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #000;
  width: 100%;
  height: 100%;
  font-size: 24px;
}
.categorias a.itemCat > div.texto h3 {
  color: #000000;
}
.categorias a.itemCat > div.texto h3:before {
  background-color: #000000;
  left: calc(50% - 40px);
}
.categorias a.itemCat > div.foto {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  transition: 0.6s;
}
.categorias a.itemCat > div.foto > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categorias a.itemCat:hover > div.foto, .categorias a.itemCat:hover > div.texto {
  width: 100%;
}
.categorias a.itemCat:nth-child(4) > div.foto, .categorias a.itemCat:nth-child(5) > div.foto, .categorias a.itemCat:nth-child(6) > div.foto, .categorias a.itemCat:nth-child(10) > div.foto, .categorias a.itemCat:nth-child(11) > div.foto, .categorias a.itemCat:nth-child(12) > div.foto {
  left: 0;
  right: auto;
}
.categorias a.itemCat:nth-child(4) > div.texto, .categorias a.itemCat:nth-child(5) > div.texto, .categorias a.itemCat:nth-child(6) > div.texto, .categorias a.itemCat:nth-child(10) > div.texto, .categorias a.itemCat:nth-child(11) > div.texto, .categorias a.itemCat:nth-child(12) > div.texto {
  left: auto;
  right: 0;
}
@media only screen and (max-width: 1180px) {
  .categorias a.itemCat {
    width: 50%;
  }
  .categorias a.itemCat:nth-child(1) > div.foto, .categorias a.itemCat:nth-child(2) > div.foto, .categorias a.itemCat:nth-child(5) > div.foto, .categorias a.itemCat:nth-child(6) > div.foto, .categorias a.itemCat:nth-child(9) > div.foto, .categorias a.itemCat:nth-child(10) > div.foto {
    left: auto;
    right: 0;
  }
  .categorias a.itemCat:nth-child(1) > div.texto, .categorias a.itemCat:nth-child(2) > div.texto, .categorias a.itemCat:nth-child(5) > div.texto, .categorias a.itemCat:nth-child(6) > div.texto, .categorias a.itemCat:nth-child(9) > div.texto, .categorias a.itemCat:nth-child(10) > div.texto {
    left: 0;
    right: auto;
  }
  .categorias a.itemCat:nth-child(3) > div.foto, .categorias a.itemCat:nth-child(4) > div.foto, .categorias a.itemCat:nth-child(7) > div.foto, .categorias a.itemCat:nth-child(8) > div.foto, .categorias a.itemCat:nth-child(11) > div.foto, .categorias a.itemCat:nth-child(12) > div.foto {
    left: 0;
    right: auto;
  }
  .categorias a.itemCat:nth-child(3) > div.texto, .categorias a.itemCat:nth-child(4) > div.texto, .categorias a.itemCat:nth-child(7) > div.texto, .categorias a.itemCat:nth-child(8) > div.texto, .categorias a.itemCat:nth-child(11) > div.texto, .categorias a.itemCat:nth-child(12) > div.texto {
    left: auto;
    right: 0;
  }
}
@media only screen and (max-width: 840px) {
  .categorias a.itemCat {
    width: 100%;
  }
  .categorias a.itemCat:nth-child(odd) > div.foto {
    left: auto;
    right: 0;
  }
  .categorias a.itemCat:nth-child(odd) > div.texto {
    left: 0;
    right: auto;
  }
  .categorias a.itemCat:nth-child(even) > div.foto {
    left: 0;
    right: auto;
  }
  .categorias a.itemCat:nth-child(even) > div.texto {
    left: auto;
    right: 0;
  }
}
/* FIM TRECHO REFERENTE ARQUIVO categorias.scss*/

/*********************************************************/
/*INICIO TRECHO REFERENTE ARQUIVO produtos.scss*/
.prodIcon {
  background-color: #dbdbdb;
  padding-top: 20px;
  padding-bottom: 80px;
}
.prodIcon .itensCat {
  display: flex;
  flex-wrap: wrap;
}
.prodIcon .itensCat .itemCat {
  width: calc(25% - 10px);
  margin: 5px;
  position: relative;
  overflow: hidden;
}
.prodIcon .itensCat .itemCat > a {
  color: #333333;
  text-decoration: none;
  display: block;
  height: 200px;
  width: 100%;
  overflow: hidden;
  border-radius: 0 20px 0 20px;
}
.prodIcon .itensCat .itemCat > a .nomeItem {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  width: 100%;
  background: #FFFFFF66;
  text-align: center;
}
.prodIcon .itensCat .itemCat > a img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) drop-shadow(0 0 0px #00000066);
  transition: 0.6s;
}
.prodIcon .itensCat .itemCat > a img:hover {
  transform: scale(1.1);
  filter: grayscale(0) drop-shadow(0 0 5px #00000066);
}
.prodIcon .itensCat .itemCat > a div {
  height: 40px;
  line-height: 40px;
}
@media screen and (max-width: 980px) {
  .prodIcon .itensCat .itemCat {
    width: calc(33.33% - 10px);
  }
}
@media screen and (max-width: 600px) {
  .prodIcon .itensCat .itemCat {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .prodIcon .itensCat .itemCat {
    width: calc(100% - 10px);
  }
}
/* FIM TRECHO REFERENTE ARQUIVO produtos.scss*/

