.container {
  margin: 0 auto;
  width: 95%;
  max-width: 1256px;
}

header {
  background: url(../images/banner.webp) top center no-repeat fixed;
  height: 905px;
  display: flex;
  justify-content: space-evenly;
  /* O tamanho das imagens irá criar uma barra de rolagem 
  horizontal. Iremos desativar isso */
  overflow-x: hidden;

  /* A propriedade perspective indica a "distância" entre o 
  usuário e o plano Z.
  Quanto maior o valor, mais perto o elemento estará do usuário.
  Se for um valor negativo,
  mais distante esse elemento estará.
  */
  perspective: 2px;

  /* O transform-style indica se os elementos filhos devem ser 
  transformados em um plano 2D ou 3D.
  O valor preserve-3d indica que os elementos devem seguir o 
  espaço 3D indicado.
  */
  transform-style: preserve-3d;
}

header:before,
header:after {
  margin: 0 auto;
  content: "";
  background: #252525;
  height: 5px;
  display: block;
  position: absolute;
  width: 60%;
}

header:after {
  background: #fff;
  height: 1px;
  position: absolute;
  top: 11%;
}
#logo {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 67px auto;
}
a.logo img,
a.logo svg {
  width: auto;
  margin-top: 13px;
}
nav ul li {
  margin-top: 55px;

  top: 20%;
}

nav ul li {
  margin-top: 56px;
}

nav ul {
  display: flex;
}
nav ul li {
  padding-right: 40px;
}
nav ul li img {
  width: 25px;
}
nav ul li a {
  color: #6b6b6b;
  font-size: 13px;
  font-family: "Montserrat-SemiBold";
}
nav ul li a.branco::after {
  background-color: #fff;
}
nav ul li a::after {
  transition: all 0.3s;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #6b6b6b;
  opacity: 0;
  width: 0;
}
nav ul li a:hover::after {
  opacity: 1;
  width: 100%;
}

nav ul li:nth-child(10) {
  padding-right: 0;
}

section#conheca-lr {
  bottom: 100px;
  position: relative;
}

.titulo h1 {
  color: #d9d9d9;
  font-family: "Montserrat-Bold";
  font-size: 58.01px;
}
.titulo h1:last-child {
  margin-left: 16%;
}

.titulo {
  display: flex;
  justify-content: center;
  margin-top: 27%;
}

.item-conheca {
  border: 2px solid #161616;
  width: 193px;
  height: 193px;
  float: right;
  margin-top: 8%;
}
.item-conheca a {
  display: flex;
  text-transform: uppercase;
  margin-top: 47px;
  flex-direction: column;
  text-align: center;
}
.item-conheca p {
  color: #161616;
  font-size: 12.2px;
  font-family: "Montserrat-Bold";
  letter-spacing: 10px;
}
.item-conheca img {
  margin: 0 auto;
  width: 150px;
  margin-top: 12px;
}
.titulo-portifolio {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.titulo-portifolio h1,
.titulo-contato h1 {
  color: #ffffff;
  font-family: "Montserrat-Black";
  font-size: 46.11px;
}

.titulo-portifolio a {
  color: #ffffff;
  border: 1px solid #b3b3b3;
  font-family: "Montserrat-Regular";
  font-size: 21.72px;
  /* height: 45px; */
  padding: 10px;
  border-radius: 40px;
  margin-left: 23px;
  margin-top: 5px;
}

.itens-portifolio {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-auto-rows: 500px;
  margin-top: 50px;
}

.titulo-contato {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
section#trabalhe-conosco {
  background: #242424 url(../images/bg-contato.jpg) top center no-repeat;
  padding-bottom: 50px;
  background-size: cover;
}
.titulo-contato {
  margin-top: 40px;
}
.titulo-contato h1 {
  font-size: 37.43px;
  text-transform: uppercase;
  cursor: pointer;
  color: #959595;
}

.titulo-contato h2 {
  color: #959595;
  font-size: 37.43px;
  font-family: "Montserrat-Black";
  text-transform: uppercase;
  cursor: pointer;
}
.endereco {
  margin-top: 40px;
}
.item-endreco {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.links-endereco {
  display: flex;
  justify-content: space-around;
}
.links-endereco a {
  transition: all 0.3s;
}
.links-endereco a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.links-endereco a:first-child {
  padding-right: 20px;
}
.item-endreco img {
  width: 48px;
}

.item-endreco span {
  font-size: 14.15px;
  flex: 0 0 52%;
  margin-left: 10px;
}

.item-endreco span p strong {
  font-size: 19.97px;
}

.campo-contato {
  flex: 0 0 36%;
  margin-top: 50px;
}
#trabalhe-conosco:after {
  margin: 0 auto;
  content: "";
  background: #959595;
  display: block;
  height: 15px;
  width: 1106px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
}

footer {
  height: 347px;
}
.itens-rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.itens-rodape img {
  width: 208px;
  margin-top: 50px;
}
.itens-rodape span {
  font-size: 16px;
  flex: 0 0 22%;
  margin-top: 50px;
}

.itens-rodape span p span {
  font-size: 31px;
}
.itens-rodape:last-child {
  justify-content: center;
  margin-top: 105px;
}
.itens-rodape a {
  font-size: 13px;
  margin-right: 20px;
}
.itens-rodape a:last-child {
  margin-right: 0;
}

header.banner-agencia {
  background: url(../images/banner-agencia.jpg) top center no-repeat;
  height: 492px;
}

.descricao-agencia span {
  flex: 0 0 50%;
}
.descricao-agencia span:last-child {
  margin-left: 70px;
}
.descricao-agencia span p,
.descricao-lr-imob span p {
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
  margin-bottom: 30px;
}
.descricao-agencia {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.imagem-agencia img:first-child {
  -webkit-box-shadow: 0px 25px 24px -9px rgba(143, 143, 143, 1);
  -moz-box-shadow: 0px 25px 24px -9px rgba(143, 143, 143, 1);
  box-shadow: 0px 25px 24px -9px rgba(143, 143, 143, 1);
  bottom: 85px;
}
.imagem-agencia img:last-child {
  margin: 50px auto 0 auto;
  display: block;
}
#portifolio-geral .itens-portifolio {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: auto;
  margin-top: 40px;
}

.menu .svg {
  width: 25px;
  height: 25px;
}

.banner-lr-imob,
.banner-divertdia {
  background: url(../images/banner-lr-imob.png) top center no-repeat;
  height: 574px;
}
.banner-divertdia {
  background: url(../images/banner-divertdia.jpg) top center no-repeat;
}

#imagensDivertdia .owl-carousel .owl-item img {
  width: 100%;
  height: 276px;
  object-fit: cover;
}

.descricao-lr-imob {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 90px;
}

.descricao-lr-imob span {
  flex: 0 0 50%;
  margin-left: 87px;
}
.w3-button {
  background-color: #fff;
  color: #000;
  margin-left: 5rem;
  padding: 10px 14px;
  text-align: center;
  border-radius: 4px;
  position: absolute;
  top: 0;
  right: -75px;
}
.w3-modal {
  z-index: 999;
}
.formulario-modal {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #171717;
}
.formulario-modal .title {
  font-family: "Montserrat-SemiBold";
  color: #e3072b;
  letter-spacing: 0.2rem;
  margin-top: 32px;
  text-transform: uppercase;
}
.formulario-modal .text {
  font-family: "Montserrat-SemiBold";
  color: #fff;
  letter-spacing: 0.2rem;
  max-width: 550px;
  line-height: 25px;
  text-align: center;
  font-size: 14px;
}
.formulario-modal form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
}
.formulario-modal input {
  width: 550px;
  font-family: "Montserrat-SemiBold";
  line-height: 25px;
  height: 50px;
  text-align: center;
  margin-bottom: 8px;
}
.formulario-modal textarea {
  width: 550px;
  height: 150px;
  font-family: "Montserrat-SemiBold";
  line-height: 25px;
  margin-bottom: 26px;
  text-align: center;
}
.formulario-modal button {
  padding: 16px 80px;
  font-family: "Montserrat-Bold";
  background: #e3072b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
}
.itens-imob,
.clientes {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  margin-top: 67px;
}
.itens-imob {
  grid-auto-rows: 300px;
}
.clientes {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 500px;
  margin-top: 0;
  overflow: hidden;
}
.imagem-portfolio-grande {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-portifolio {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.item-imob:before,
.item-cliente a:before,
.galeria .item:before {
  content: "";
  width: 100%;
  position: absolute;
  display: block;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.galeria .item:before {
  width: 385px;
}
.galeria .owl-stage {
  min-width: 7389px;
}

/* .item-cliente{
   width: 640px;
} */
.item-cliente a:before {
  background-color: #959595c4;
  width: 640px;
  height: 500px;
}
.galeria .item:before {
  background-color: rgba(241, 36, 122, 0.82);
}
.item-imob span {
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.83);
  padding: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.item-imob a {
  position: absolute;
  height: 100%;
  width: 100%;
}
.item-imob span h1 {
  font-size: 20px;
}
.item-imob span p {
  font-size: 15px;
  margin-top: 10px;
}

.item-imob:hover span {
  display: block;
}
.item-imob:hover:before {
  display: none;
}

.banner-clientes {
  background: url(../images/banner-clientes.jpg) top center no-repeat;
  height: 492px;
}

.menu-clientes {
  display: flex;
  align-self: center;
  justify-content: center;
  margin-top: 45px;
  margin-bottom: 12px;
}

.menu-clientes p {
  font-size: 13px;
  margin-right: 25px;
  cursor: pointer;
  padding: 10px;
  text-transform: uppercase;
}

.conteudo-divertdia,
.descricao-galeria {
  display: flex;
  align-content: center;
  justify-content: space-around;
}

.conteudo-divertdia p {
  font-size: 16px;
  line-height: 25px;
  margin-top: 140px;
  text-align: justify;
}

.descricao-galeria h1 {
  font-size: 46.11px;
}

.descricao-galeria span h2,
.descricao-galeria span p {
  font-size: 23.95px;
  margin-right: 30px;
}
.descricao-galeria span p {
  cursor: pointer;
  padding: 10px;
  border-radius: 50px;
}

.descricao-galeria {
  justify-content: space-between;
}
.descricao-galeria span {
  display: flex;

  align-items: center;
}

.galeria .item:hover:before {
  display: none;
}

.saiba-mais-dovertdia {
  background: url(../images/bg-divertdia-saiba-mais.jpg) top center no-repeat;
  height: 229px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.saiba-mais-dovertdia a {
  font-size: 27px;
  background: #f59331;
  border-radius: 50px;
  width: 460px;
  height: 50px;
  text-align: center;
  padding: 10px;
}

#banner-divertdia {
  bottom: 85px;
}

#portifolio-geral .titulo-portifolio {
  margin-top: 20px;
}

.item-cliente:hover a:before {
  background: none;
}

#change-icone {
  display: none;
}

.logo-imob {
  margin-left: 20px;
  margin-top: 25px !important;
}

.ativo {
  padding: 56px 20px 0 20px;
  margin-top: 0;
  background: #252525;
  text-align: center;
  height: 97px;
  margin-right: 40px;
}
.ativo a {
  color: #fff;
}
.owl-carousel .owl-item {
  width: 385px !important;
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #c30a2b;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}
.campo-contato button,
.campo-contato input,
.campo-contato textarea,
.item-conheca,
.ativo-btn,
.btn-clientes {
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
}
.campo-contato button:hover {
  background: #c30a2b;
}
input:hover,
input:focus,
input:active,
textarea:hover,
textarea:focus,
textarea:active {
  border: 3px solid #c30a2b;
}
button:hover #trabalhe-conosco:after {
  background: #c30a2b;
}

.zoom {
  overflow: hidden;
}

.zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  filter: grayscale(1);
}

.zoom:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  filter: grayscale(0);
}

/* Reveal */
.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #c30a2b;
  border-style: solid;
  border-width: 0;
  -webkit-transition-property: border-width;
  transition-property: border-width;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-reveal:hover:before,
.hvr-reveal:focus:before,
.hvr-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-width: 4px;
}

.item-conheca:hover {
  border: none;
}

/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
  border-radius: 50px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #c30a2b;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border-color: transparent;
}
.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 40px !important;
  background: #252525;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-horizontal:hover,
.hvr-shutter-in-horizontal:focus,
.hvr-shutter-in-horizontal:active {
  color: white;
  border-color: #c30a2b;
}
.hvr-shutter-in-horizontal:hover:before,
.hvr-shutter-in-horizontal:focus:before,
.hvr-shutter-in-horizontal:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.parallax {
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  position: relative;
}

.aparecer {
  opacity: 0;
}

.item-portifolio a {
  height: 100%;
}
.no-record {
  font-size: 46px;
  font-family: "Montserrat-Black";
  text-align: center;
  padding: 24px;
  grid-column-end: span 3;
}
.item-portifolio a:before {
  content: "";
  background: #d8d8d8;
  width: 100%;
  position: absolute;
  display: block;
  z-index: 9;
  height: 533px;
  opacity: 0.8;
}

.item-portifolio a:hover:before {
  display: none;
}

.descricao-galeria .hvr-shutter-in-horizontal:before,
.descricao-galeria .hvr-shutter-in-horizontal {
  background: transparent;
}
#imagensDivertdia.owl-carousel .owl-item img {
  width: 100%;
  height: 276px;
  object-fit: cover;
}
