* {
  margin: 0px;
  padding: 0px;
  border: none;
  font: inherit;
  list-style: none;
  background: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #333333;
  font-size: 15px;
  text-align: center;
  background-color: #FCFCFC;
}
body h1 {
  position: relative;
  display: block;
  color: #FCFCFC;
  margin: 0 auto;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}
body h1 span, body h1 em {
  background-color: #191b2a;
}
body h2 {
  position: relative;
  display: block;
  color: #333333;
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  text-transform: uppercase;
}
body h2 b {
  position: relative;
  display: inline;
  color: #FCFCFC;
  background-color: #191b2a;
}
body p {
  position: relative;
  font-size: 15px;
  display: block;
}
body img {
  width: 100%;
  height: auto;
}
body picture {
  position: relative;
  display: block;
  line-height: 0px;
}
body form {
  position: relative;
  display: block;
  margin: 0 auto;
}
body input[type=submit], body button {
  cursor: pointer;
}
body input, body button, body select, body textarea {
  position: relative;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
body input::placeholder, body button::placeholder, body select::placeholder, body textarea::placeholder {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}
body .button {
  display: inline-block;
  position: relative;
  color: #FCFCFC;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
  padding: 15px 60px;
  border-radius: 30px;
  border: #028ccd 3px solid;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 2px 14px 6px rgba(2, 140, 205, 0.6);
  background: linear-gradient(to right, #191b2a, #028ccd);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
body .button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0 0 0 0 rgba(2, 140, 205, 0.8);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body .button:hover {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
  transform: scale(1.07);
}
body .button:hover::before {
  animation: pulseButton 0.8s;
}
body .container {
  position: relative;
  margin: 0 auto;
  width: 80%;
}
body .container > p {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 60px;
}
body .form-busca {
  display: flex;
  gap: 1%;
  width: 90%;
  padding: 10px;
  flex-wrap: wrap;
  border-radius: 8px;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  background-color: #191b2a;
}
body .form-busca input, body .form-busca button {
  color: #FCFCFC;
}
body .form-busca input::placeholder, body .form-busca button::placeholder {
  color: #FCFCFC;
}
body .form-busca .select, body .form-busca input[type=text], body .form-busca input[type=submit] {
  padding: 10px 15px;
  border-radius: 5px;
  border: #FCFCFC thin solid;
}
body .form-busca .select {
  position: relative;
  width: 15%;
  text-align: left;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
body .form-busca .select::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/down-branco.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
body .form-busca .select input[type=text] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body .form-busca .select label, body .form-busca .select p {
  cursor: pointer;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
body .form-busca .select > label {
  display: block;
  color: #028ccd;
  font-size: 11px;
  margin-bottom: 5px;
}
body .form-busca .select p {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  align-items: center;
  flex-direction: row;
  text-transform: uppercase;
}
body .form-busca .select p i {
  width: 30px;
  height: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90%;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
body .form-busca .select p label {
  max-width: 75%;
}
body .form-busca .select p .imovel {
  background-image: url("../images/icons/building-branco.svg");
}
body .form-busca .select:hover {
  background-color: #FCFCFC;
}
body .form-busca .select:hover::before {
  background-image: url("../images/icons/down.svg");
}
body .form-busca .select:hover > label, body .form-busca .select:hover p {
  color: #333333;
}
body .form-busca .select:hover p .imovel {
  background-image: url("../images/icons/building.svg");
}
body .form-busca .tipo-imovel {
  width: 25%;
}
body .form-busca input[type=text] {
  width: 37%;
}
body .form-busca input[type=submit] {
  width: 20%;
  font-weight: 500;
  border: #028ccd thin solid;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 60%;
  background-color: #028ccd;
  text-transform: uppercase;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
body .form-busca input[type=submit]:hover {
  color: #191b2a;
  background-color: #FCFCFC;
  border: #FCFCFC thin solid;
}
body .form-busca .loading {
  pointer-events: none;
  background-image: url("../images/loading.gif");
}
body .active {
  opacity: 1 !important;
  visibility: initial !important;
}
@keyframes pulseButton {
  70% {
    box-shadow: 0 0 0 20px rgba(2, 140, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(2, 140, 205, 0);
  }
}
@keyframes pulseSocialMedia {
  70% {
    box-shadow: 0 0 0 15px rgba(2, 140, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(2, 140, 205, 0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(2, 140, 205, 0.8);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(2, 140, 205, 0);
  }
  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(2, 140, 205, 0);
  }
}

header, main, section, footer {
  position: relative;
  display: block;
  width: 100%;
}

header {
  position: absolute;
  display: flex;
  z-index: 9;
  top: 0%;
  left: 0%;
  flex-wrap: wrap;
  padding: 10px 0px;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
header .logo {
  position: relative;
  display: block;
  width: 180px;
  line-height: 0px;
}
header nav {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
}
header nav > a {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}
header nav > a i, header nav > a b {
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
header nav > a i {
  position: relative;
  width: 20px;
  height: 20px;
}
header nav > a i::before, header nav > a i::after {
  position: absolute;
  content: "";
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/tel-branco.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
header nav > a i::after {
  z-index: 1;
  opacity: 0;
  background-image: url("../images/icons/tel-azul.svg");
}
header nav > a b {
  color: #FCFCFC;
  font-size: 15px;
  font-weight: 500;
}
header nav > a:hover b {
  color: #028ccd;
}
header nav > a:hover i::before {
  opacity: 0;
}
header nav > a:hover i::after {
  opacity: 1;
}
header nav .redes-sociais {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
header nav .redes-sociais a {
  position: relative;
  width: 30px;
  height: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90%;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
header nav .redes-sociais a::before, header nav .redes-sociais a::after {
  position: absolute;
  content: "";
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
header nav .redes-sociais a::after {
  z-index: 1;
  opacity: 0;
}
header nav .redes-sociais a:hover::before {
  opacity: 0;
}
header nav .redes-sociais a:hover::after {
  opacity: 1;
}
header nav .redes-sociais .whatsapp::before {
  background-image: url("../images/icons/whatsapp-branco.svg");
}
header nav .redes-sociais .whatsapp::after {
  background-image: url("../images/icons/whatsapp-azul.svg");
}
header nav .redes-sociais .facebook::before {
  background-image: url("../images/icons/facebook-branco.svg");
}
header nav .redes-sociais .facebook::after {
  background-image: url("../images/icons/facebook-azul.svg");
}
header nav .redes-sociais .instagram::before {
  background-image: url("../images/icons/instagram-branco.svg");
}
header nav .redes-sociais .instagram::after {
  background-image: url("../images/icons/instagram-azul.svg");
}
header nav .responsive {
  width: 40px;
  height: 40px;
}
header nav .responsive::before, header nav .responsive::after {
  position: absolute;
  content: "";
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/menu-branco.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
header nav .responsive::after {
  z-index: 1;
  opacity: 0;
  background-image: url("../images/icons/menu-azul.svg");
}
header nav .responsive:hover::before {
  opacity: 0;
}
header nav .responsive:hover::after {
  opacity: 1;
}
header > div {
  display: flex;
  flwx-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
header .menu-fixed, header .container {
  width: 100%;
  padding: 10px 5%;
}
header .menu-fixed {
  position: fixed;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  background-color: #FCFCFC;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
header .menu-fixed .logo {
  width: 140px;
}
header .menu-fixed nav > a i::before {
  background-image: url("../images/icons/tel.svg");
}
header .menu-fixed nav > a b {
  color: #333333;
}
header .menu-fixed nav > a:hover b {
  color: #028ccd;
}
header .menu-fixed nav .redes-sociais .whatsapp::before {
  background-image: url("../images/icons/whatsapp.svg");
}
header .menu-fixed nav .redes-sociais .facebook::before {
  background-image: url("../images/icons/facebook.svg");
}
header .menu-fixed nav .redes-sociais .instagram::before {
  background-image: url("../images/icons/instagram.svg");
}
header .menu-fixed nav .responsive::before {
  background-image: url("../images/icons/menu.svg");
}

.popup {
  visibility: hidden;
  position: fixed;
  display: none;
  opacity: 0;
  z-index: 9;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.popup > div {
  visibility: hidden;
  position: absolute;
  display: flex;
  z-index: -1;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 25%;
  height: 100vh;
  flex-wrap: wrap;
  min-width: 400px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.popup > div ul {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  overflow-y: auto;
  margin-bottom: 20px;
}
.popup > div ul li {
  position: relative;
  display: block;
}
.popup > div ul li button {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 15px 20px;
  align-items: center;
  border-radius: 10px;
  flex-direction: row;
  justify-content: center;
  text-transform: uppercase;
  background-color: #191b2a;
  border-bottom: #555765 thin solid;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.popup > div ul li button i {
  position: absolute;
  display: block;
  opacity: 0;
  top: 50%;
  left: 20px;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  background-image: url("../images/icons/check-branco.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}
.popup > div ul li button b {
  color: #FCFCFC;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.popup > div ul li button:hover {
  background-color: #FCFCFC;
}
.popup > div ul li button:hover b {
  color: #191b2a;
}
.popup > div ul li .active i {
  opacity: 1;
}
.popup > div ul li .active:hover {
  background-color: #191b2a;
}
.popup > div ul li .active:hover b {
  color: #FCFCFC;
}
.popup > div ul li:last-of-type button {
  border-bottom: none;
}
.popup > div .submit {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px;
  color: #FCFCFC;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  border-radius: 8px;
  border: #028ccd 3px solid;
  text-transform: uppercase;
  background: linear-gradient(to right, #191b2a, #028ccd);
}
.popup > div .submit::before {
  position: absolute;
  content: "";
  z-index: 0;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 105%;
  height: 105%;
  object-fit: cover;
  background-color: #028ccd;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.popup > div .submit b {
  position: relative;
  display: block;
  z-index: 1;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.popup > div .submit:hover::before {
  opacity: 1;
}
.popup > div .close {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  margin-top: 30px;
  background-image: url("../images/icons/close-branco.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80%;
}
.popup .active {
  z-index: 1;
}

.menu-responsive {
  visibility: hidden;
  position: fixed;
  opacity: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  padding-top: 20px;
}
.menu-responsive .bg {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0%;
  height: 100%;
  -moz-transition: 0.8s ease-out;
  -o-transition: 0.8s ease-out;
  -webkit-transition: 0.8s ease-out;
  transition: 0.8s ease-out;
}
.menu-responsive .bg-write {
  z-index: 1;
  background-color: #FCFCFC;
}
.menu-responsive .bg-black {
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.menu-responsive .container {
  opacity: 0;
  z-index: 2;
  width: 90%;
  text-align: right;
  visibility: hidden;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.menu-responsive .container .header {
  position: relative;
  flex-wrap: wrap;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.menu-responsive .container .header .logo {
  position: relative;
  display: block;
  width: 200px;
}
.menu-responsive .container .header .logo img {
  width: 100%;
  height: auto;
}
.menu-responsive .container .header .close {
  position: relative;
  width: 40px;
  height: 40px;
  background-image: url("../images/icons/close.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #FCFCFC;
  background-size: 60%;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.menu-responsive .container .header .close:hover {
  background-image: url("../images/icons/close-branco.svg");
  background-color: #333333;
}
.menu-responsive .container ul {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 60px;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.menu-responsive .container ul li {
  width: 100%;
  margin-top: 30px;
}
.menu-responsive .container ul li a {
  position: relative;
  color: #333333;
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
}
.menu-responsive .container ul li a::before {
  position: absolute;
  content: "";
  width: 0%;
  z-index: -1;
  right: -5px;
  bottom: 0px;
  height: 10px;
  background-color: #028ccd;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.menu-responsive .container ul li a:hover::before {
  width: 100%;
}
.menu-responsive .container ul li:last-of-type {
  margin-bottom: 0px;
}
.menu-responsive .container .redes-sociais {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
  flex-direction: row;
  justify-content: end;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.menu-responsive .container .redes-sociais a {
  position: relative;
  width: 40px;
  height: 40px;
}
.menu-responsive .container .redes-sociais a::before, .menu-responsive .container .redes-sociais a::after {
  position: absolute;
  content: "";
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.menu-responsive .container .redes-sociais a::after {
  z-index: 1;
  opacity: 0;
}
.menu-responsive .container .redes-sociais a:hover::before {
  opacity: 0;
}
.menu-responsive .container .redes-sociais a:hover::after {
  opacity: 1;
}
.menu-responsive .container .redes-sociais .whatsapp::before {
  background-image: url("../images/icons/whatsapp.svg");
}
.menu-responsive .container .redes-sociais .whatsapp::after {
  background-image: url("../images/icons/whatsapp-azul.svg");
}
.menu-responsive .container .redes-sociais .facebook::before {
  background-image: url("../images/icons/facebook.svg");
}
.menu-responsive .container .redes-sociais .facebook::after {
  background-image: url("../images/icons/facebook-azul.svg");
}
.menu-responsive .container .redes-sociais .instagram::before {
  background-image: url("../images/icons/instagram.svg");
}
.menu-responsive .container .redes-sociais .instagram::after {
  background-image: url("../images/icons/instagram-azul.svg");
}
.menu-responsive .container .tel {
  position: relative;
  display: flex;
  color: #333333;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: end;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.menu-responsive .container .tel i {
  position: relative;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.menu-responsive .container .tel i::before, .menu-responsive .container .tel i::after {
  position: absolute;
  content: "";
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/tel.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.menu-responsive .container .tel i::after {
  z-index: 1;
  opacity: 0;
  background-image: url("../images/icons/tel-azul.svg");
}
.menu-responsive .container .tel b {
  font-size: 18px;
  font-weight: bold;
}
.menu-responsive .container .tel:hover {
  color: #028ccd;
}
.menu-responsive .container .tel:hover i::before {
  opacity: 0;
}
.menu-responsive .container .tel:hover i::after {
  opacity: 1;
}

.banner {
  z-index: 0;
  height: 100vh;
  padding-top: 20vh;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner::before, .banner::after {
  position: absolute;
  content: "";
  z-index: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.banner::before {
  background-color: rgba(0, 0, 0, 0.2);
}
.banner::after {
  height: 30vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.banner .container {
  z-index: 3;
}
.banner .container h1 {
  width: 60%;
  margin-bottom: 20vh;
}
.banner .down {
  position: absolute;
  display: block;
  z-index: 3;
  left: 50%;
  width: 35px;
  height: 35px;
  bottom: 40px;
  margin-left: -17.5px;
  border-radius: 40px;
  background-color: #FCFCFC;
  background-image: url("../images/icons/down.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-mstransform: scale(1);
  transform: scale(1);
  box-shadow: 0 0 0 0 #028ccd;
  animation: pulse 2s infinite;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.banner .down:hover {
  background-image: url("../images/icons/down-branco.svg");
  animation-play-state: paused;
  background-color: #028ccd;
}
.banner .shapes {
  position: absolute;
  display: block;
  z-index: 1;
  width: 100%;
  bottom: 0px;
}
.banner .shape-azul {
  z-index: 2;
}

.quem-somos {
  padding-top: 50px;
  padding-bottom: 100px;
}
.quem-somos .container > div {
  position: relative;
  display: flex;
  gap: 4%;
  flex-wrap: wrap;
  margin-top: 60px;
  align-items: center;
  justify-content: center;
}
.quem-somos .container > div div, .quem-somos .container > div picture {
  width: 40%;
}
.quem-somos .container > div picture {
  padding: 55px 0px;
}
.quem-somos .container > div picture::before {
  position: absolute;
  content: "";
  z-index: 0;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 320px;
  border-radius: 320px;
  box-shadow: -15px 5px 85px 5px rgba(2, 140, 205, 0.6);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.quem-somos .container > div picture img {
  position: relative;
  z-index: 1;
  width: 40%;
  top: -10px;
  min-width: 200px;
}
.quem-somos .container > div div p {
  text-align: justify;
  margin-bottom: 15px;
}
.quem-somos .container > div div p:last-of-type {
  margin-bottom: 0px;
}

.imoveis {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #191b2a;
}
.imoveis::before, .imoveis::after {
  position: absolute;
  content: "";
  left: 0px;
  width: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 1920px;
}
.imoveis::before {
  top: -100px;
  height: 100px;
  background-image: url("../images/shape-03.svg");
}
.imoveis::after {
  height: 80px;
  bottom: -79px;
  background-image: url("../images/shape-04.svg");
}
.imoveis .container h2, .imoveis .container > p {
  color: #FCFCFC;
}
.imoveis .container h2 b {
  background-color: #028ccd;
}
.imoveis .container .form-busca {
  width: 100%;
  margin-bottom: 40px;
}
.imoveis .container > ul {
  position: relative;
  display: flex;
  width: 100%;
  gap: 2.6%;
  flex-wrap: wrap;
  align-items: start;
  margin-bottom: 60px;
  flex-direction: row;
  justify-content: center;
}
.imoveis .container > ul > li {
  position: relative;
  display: block;
  width: 23%;
  margin-top: 40px;
  border-radius: 8px;
}
.imoveis .container > ul > li .slider {
  position: relative;
  width: 100%;
  height: auto;
}
.imoveis .container > ul > li .slider ul {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 12vw;
  overflow: hidden;
}
.imoveis .container > ul > li .slider ul li {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: #FCFCFC 3px solid;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s linear;
  -o-transition: 0.5s linear;
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.imoveis .container > ul > li .slider ul li picture {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.imoveis .container > ul > li .slider ul li picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.imoveis .container > ul > li .slider ul .center {
  opacity: 1;
  z-index: 1;
}
.imoveis .container > ul > li .slider ul .left, .imoveis .container > ul > li .slider ul .right {
  z-index: 0;
}
.imoveis .container > ul > li .slider ul .left {
  left: -50%;
}
.imoveis .container > ul > li .slider ul .right {
  left: 150%;
}
.imoveis .container > ul > li .slider ul .transition {
  -moz-transition: 0 linear;
  -o-transition: 0 linear;
  -webkit-transition: 0 linear;
  transition: 0 linear;
}
.imoveis .container > ul > li .slider > button {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50%;
  background-color: rgba(252, 252, 252, 0.7);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.imoveis .container > ul > li .slider > button:hover {
  background-color: #FCFCFC;
}
.imoveis .container > ul > li .slider .back {
  left: 10px;
  background-image: url("../images/icons/back.svg");
}
.imoveis .container > ul > li .slider .next {
  right: 10px;
  background-image: url("../images/icons/next.svg");
}
.imoveis .container > ul > li .informations {
  width: 90%;
  margin: 0 auto;
  color: #FCFCFC;
  text-align: left;
  padding-top: 35px;
}
.imoveis .container > ul > li .informations h4 {
  display: inline-block;
  font-size: 11px;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 30px;
  letter-spacing: 1.5px;
  background-color: rgba(2, 140, 205, 0.4);
}
.imoveis .container > ul > li .informations h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.imoveis .container > ul > li .informations p {
  text-align: justify;
  margin-bottom: 25px;
}
.imoveis .container > ul > li .informations p em, .imoveis .container > ul > li .informations p b {
  position: relative;
  display: block;
}
.imoveis .container > ul > li .informations p em {
  font-size: 13px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.imoveis .container > ul > li .informations p b {
  font-size: 18px;
  font-weight: 600;
}
.imoveis .container > ul > li .informations p span {
  display: inline-block;
  line-height: 1;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  margin-right: 10px;
  color: #191b2a;
  border-radius: 30px;
  background-color: #fcfcfc;
}
.imoveis .container > ul > li .informations p span:last-of-type {
  margin-right: 0px;
}
.imoveis .container > ul > li .informations .desc {
  display: inline-table;
  line-height: 1.8;
}
.imoveis .container > ul > li .informations .button {
  width: 100%;
  text-align: center;
  padding: 15px 15px;
  background: linear-gradient(to right, #028ccd, #191b2a);
  box-shadow: 0px 2px 14px 6px rgba(2, 140, 205, 0.4);
}
.imoveis .container > ul > li:first-of-type, .imoveis .container > ul > li:nth-of-type(2), .imoveis .container > ul > li:nth-of-type(3), .imoveis .container > ul > li:nth-of-type(4) {
  margin-top: 0px;
}
.imoveis .container > ul .empty {
  width: 100%;
  color: #FCFCFC;
  font-size: 18px;
}
.imoveis .container .load-more {
  position: relative;
  display: flex;
  gap: 10px;
  margin: 0 auto;
  color: #FCFCFC;
  font-size: 15px;
  flex-wrap: wrap;
  font-weight: 500;
  align-items: center;
  flex-direction: row;
  padding-bottom: 5px;
  justify-content: center;
  text-transform: uppercase;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.imoveis .container .load-more::before {
  position: absolute;
  content: "";
  left: 50%;
  width: 0%;
  bottom: 0px;
  height: 2px;
  background-color: #FCFCFC;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.imoveis .container .load-more i {
  width: 20px;
  height: 20px;
  font-size: 21px;
  border-radius: 4px;
  border: #FCFCFC 2px solid;
  background-image: url("../images/icons/plus-branco.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80%;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.imoveis .container .load-more .minus {
  background-image: url("../images/icons/minus-branco.svg");
}
.imoveis .container .load-more:hover {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
  transform: scale(1.07);
}
.imoveis .container .load-more:hover::before {
  width: 100%;
}
.imoveis .container .loading {
  pointer-events: none;
}
.imoveis .container .loading i {
  width: 25px;
  height: 25px;
  border: rgba(0, 0, 0, 0) 2px solid;
  background-image: url("../images/loading.gif") !important;
  background-size: 100%;
}

.contato {
  margin-top: 60px;
  padding-top: 40px;
  margin-bottom: 80px;
  padding-bottom: 40px;
}
.contato .container > div {
  position: relative;
  display: flex;
  gap: 4%;
  width: 70%;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-top: 100px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.contato .container > div form, .contato .container > div div {
  position: relative;
  display: block;
  width: 44%;
}
.contato .container > div form {
  width: 52%;
  padding: 20px 5%;
  background-color: #191b2a;
}
.contato .container > div form::before, .contato .container > div form::after {
  position: absolute;
  content: "";
  left: 0px;
  width: 100%;
  height: 80px;
  background-repeat: no-repeat;
  background-size: 1920px;
}
.contato .container > div form::before {
  top: -80px;
  background-image: url("../images/shape-05.svg");
  background-position: center top;
}
.contato .container > div form::after {
  bottom: -79px;
  background-image: url("../images/shape-04.svg");
  background-position: center bottom;
}
.contato .container > div form p {
  position: relative;
  display: block;
  color: #FCFCFC;
  text-align: left;
  margin-bottom: 15px;
}
.contato .container > div form p label {
  position: relative;
  display: block;
  font-size: 11px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.contato .container > div form p input, .contato .container > div form p textarea {
  width: 100%;
  border-radius: 8px;
  padding: 10px 15px;
  background-color: #FCFCFC;
}
.contato .container > div form p textarea {
  height: 150px;
}
.contato .container > div form p input[type=submit], .contato .container > div form p button {
  position: relative;
  display: block;
  width: 100%;
  color: #FCFCFC;
  font-size: 13px;
  font-weight: 600;
  padding: 15px 10px;
  border-radius: 8px;
  border: #028ccd 2px solid;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #191b2a, #028ccd);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.contato .container > div form p input[type=submit] {
  position: absolute;
  z-index: 1;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #028ccd;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contato .container > div form p input[type=submit]:hover {
  opacity: 1;
}
.contato .container > div form p button {
  z-index: 0;
  overflow: hidden;
  min-height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
}
.contato .container > div form p button b {
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.contato .container > div form p button:before {
  content: "ENVIADO COM SUCESSO";
  position: absolute;
  visibility: hidden;
  display: flex;
  z-index: 2;
  opacity: 0;
  top: 50%;
  left: 50%;
  width: 105%;
  height: 105%;
  font-size: 13px;
  background: #25D366;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  border: #25D366 2px solid;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.contato .container > div form p:last-of-type {
  margin-bottom: 0px;
}
.contato .container > div form .loading input[type=submit], .contato .container > div form .loading button, .contato .container > div form .success input[type=submit], .contato .container > div form .success button {
  pointer-events: none;
}
.contato .container > div form .loading input[type=submit], .contato .container > div form .success input[type=submit] {
  opacity: 0;
  visibility: hidden;
}
.contato .container > div form .loading button {
  border: #FCFCFC 2px solid;
  background-image: url("../images/loading.gif");
  background-color: #191b2a;
  background-size: auto 60%;
}
.contato .container > div form .loading button b {
  opacity: 0;
  visibility: hidden;
}
.contato .container > div form .success button {
  border: none;
}
.contato .container > div form .success button::before {
  opacity: 1;
  visibility: initial;
}
.contato .container > div div {
  text-align: left;
}
.contato .container > div div picture {
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  border: #191b2a 3px solid;
}
.contato .container > div div picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contato .container > div div h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.contato .container > div div p, .contato .container > div div > a, .contato .container > div div p a {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  flex-direction: row;
  justify-content: start;
}
.contato .container > div div p i, .contato .container > div div p b, .contato .container > div div > a i, .contato .container > div div > a b, .contato .container > div div p a i, .contato .container > div div p a b {
  position: relative;
  display: block;
}
.contato .container > div div p i, .contato .container > div div > a i {
  position: relative;
  width: 25px;
  height: 25px;
}
.contato .container > div div p i img, .contato .container > div div > a i img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contato .container > div div p b, .contato .container > div div > a b {
  width: 80%;
  color: #333333;
  font-size: 15px;
  font-weight: 500;
}
.contato .container > div div p a, .contato .container > div div > a a {
  position: relative;
  width: 50px;
  height: 50px;
  color: #FCFCFC;
  padding: 8px 0px;
  margin-bottom: 0px;
  border-radius: 30px;
  justify-content: center;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.contato .container > div div p a::before, .contato .container > div div > a a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.contato .container > div div p a:hover, .contato .container > div div > a a:hover {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.contato .container > div div p a:hover::before, .contato .container > div div > a a:hover::before {
  animation: pulseSocialMedia 0.5s;
}
.contato .container > div div p .facebook, .contato .container > div div > a .facebook {
  border: #1877F2 2px solid;
  background: linear-gradient(to right, #0b3d91, #1877F2);
}
.contato .container > div div p .facebook::before, .contato .container > div div > a .facebook::before {
  box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.8);
}
.contato .container > div div p .instagram, .contato .container > div div > a .instagram {
  border: #bc1888 2px solid;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.contato .container > div div p .instagram::before, .contato .container > div div > a .instagram::before {
  box-shadow: 0 0 0 0 rgba(188, 24, 136, 0.8);
}
.contato .container > div div p .whatsapp, .contato .container > div div > a .whatsapp {
  border: #25D366 2px solid;
  background: linear-gradient(to right, #075E54, #25D366);
}
.contato .container > div div p .whatsapp::before, .contato .container > div div > a .whatsapp::before {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
}
.contato .container > div div > a .phone::before, .contato .container > div div > a .phone::after {
  position: absolute;
  content: "";
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("../images/icons/tel.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.contato .container > div div > a .phone::after {
  z-index: 1;
  opacity: 0;
  background-image: url("../images/icons/tel-azul.svg");
}
.contato .container > div div > a b {
  font-weight: bold;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.contato .container > div div > a:hover .phone::before {
  opacity: 0;
}
.contato .container > div div > a:hover .phone::after {
  opacity: 1;
}
.contato .container > div div > a:hover b {
  color: #028ccd;
}
.contato .container > div div p:last-of-type {
  gap: 15px;
  margin-bottom: 0px;
}

footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #191b2a;
}
footer::before {
  position: absolute;
  content: "";
  z-index: 0;
  left: 0%;
  top: -30px;
  width: 100%;
  height: 60px;
  background-image: url("../images/shape-06.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 1920px;
}
footer .container {
  display: flex;
  z-index: 1;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}
footer .container p {
  display: flex;
  width: 70%;
  color: #FCFCFC;
  flex-wrap: wrap;
  margin-bottom: 0px;
  align-items: center;
  flex-direction: row;
  justify-content: start;
}
footer .container p b {
  font-size: 15px;
  font-weight: 500;
}
footer .container p .logo {
  width: 180px;
  margin-right: 20px;
}
footer .container p .i10 {
  width: 140px;
  margin-left: 10px;
}
footer .container p:last-of-type {
  width: 30%;
  justify-content: end;
}

@media screen and (max-width: 1500px) {
  body h1 {
    width: 40%;
    font-size: 28px;
  }
  body .form-busca {
    width: 100%;
  }
  .popup > div {
    width: 35%;
  }
  .banner .container h1 {
    width: 70%;
  }
  .quem-somos .container > div picture::before {
    width: 250px;
    height: 250px;
  }
  .contato .container > div {
    width: 90%;
  }
}
@media screen and (max-width: 1000px) {
  body .container > p {
    width: 100%;
  }
  header nav > a, header nav .redes-sociais {
    display: none;
  }
  main .banner {
    padding-top: 0vh;
  }
  main .banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  main .banner .container h1 {
    width: 100%;
    margin-bottom: 40px;
  }
  main .banner .container form {
    padding: 15px;
  }
  main .banner .container form button, main .banner .container form input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
  }
  main .banner .container form input[type=submit] {
    margin-bottom: 0px;
  }
  main .quem-somos .container > div {
    margin-top: 80px;
  }
  main .quem-somos .container > div picture {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  main .quem-somos .container > div picture img {
    width: 90%;
    min-width: auto;
    margin-top: -30px;
  }
  main .quem-somos .container > div div {
    width: 100%;
  }
  main .quem-somos .container > div div p {
    text-align-last: center;
  }
  main .imoveis .container form {
    padding: 15px;
  }
  main .imoveis .container form button, main .imoveis .container form input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
  }
  main .imoveis .container form input[type=submit] {
    margin-bottom: 0px;
  }
  main .imoveis .container ul li {
    width: 48.7%;
    margin-top: 40px;
  }
  main .imoveis .container ul li picture {
    height: 24vw;
    border-radius: 10px;
  }
  main .imoveis .container ul li div .valor {
    text-align: left;
  }
  main .imoveis .container ul li:nth-of-type(3), main .imoveis .container ul li:nth-of-type(4) {
    margin-top: 40px;
  }
  main .contato {
    margin-bottom: 0px;
    padding-bottom: 80px;
  }
  main .contato .container > div {
    width: 80%;
    margin-top: 100px;
  }
  main .contato .container > div form, main .contato .container > div div {
    width: 100%;
  }
  main .contato .container > div form {
    padding: 10px 5%;
    margin-bottom: 80px;
  }
  footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  footer .container p {
    justify-content: center;
  }
  footer .container p .logo {
    margin: 0 auto;
  }
  footer .container p .i10 {
    margin-left: 0px;
  }
  footer .container p b {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  footer .container p:first-of-type {
    margin-bottom: 10px;
  }
  footer .container p:last-of-type {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  body h1 {
    font-size: 21px;
  }
  body .button {
    padding: 15px 50px;
  }
  main .popup > div {
    min-width: 300px;
  }
  main .banner {
    padding-top: 13vh;
  }
  main .banner .container h1 {
    margin-bottom: 3vh;
  }
  main .banner .down {
    bottom: 20px;
  }
  main .imoveis {
    padding-bottom: 30px;
  }
  main .imoveis .container ul li {
    width: 100%;
  }
  main .imoveis .container ul li picture {
    height: 52vw;
  }
  main .imoveis .container ul li:nth-of-type(2) {
    margin-top: 40px;
  }
  main .contato .container > div {
    width: 100%;
  }
}
@media (orientation: landscape) {
  main .banner {
    min-height: 700px;
  }
}

/*# sourceMappingURL=style.css.map */
