/*********************************************************/
/*INICIO TRECHO REFERENTE ARQUIVO mod-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 mod-banner.scss*/

/*********************************************************/
/*INICIO TRECHO REFERENTE ARQUIVO mod-fotos.scss*/
.principalFotos {
  padding: 20px 20px 80px 20px;
  background-image: linear-gradient(to bottom, #1c1b22, #2c2b35);
}
.principalFotos .fotosgaleria {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.principalFotos .fotosgaleria > a {
  width: 25%;
  padding: 20px;
}
.principalFotos .fotosgaleria > a > img {
  width: 100%;
  border-radius: 10px;
  transition: 0.4s;
}
.principalFotos .fotosgaleria > a > img:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 1280px) {
  .principalFotos .fotosgaleria > a {
    width: 33.33%;
  }
}
@media only screen and (max-width: 890px) {
  .principalFotos .fotosgaleria > a {
    width: 50%;
  }
}
/* FIM TRECHO REFERENTE ARQUIVO mod-fotos.scss*/

