:root {
  --color-primary: #007fcc;
  --color-secundary: #0b113f;
  --color-title: #1e1e1e;
  --color-text: #4a4f55;

  --color-input: #827ca1;
  --color-placeholder: #827ca1;

  --color-background: #fff;
  --color-background-secundary: #e8edf2;
  --color-background-secundary: #f8f9fd;
}

@media only screen and (min-width: 993px) {
  .container {
    width: 90%;
  }
}

/** DIVERSAS PERSONALIZAÇÕES BASE ================================ **/
*,
a,
a:link,
a:hover,
a:visited,
a:active {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  outline: none;
}

a:hover {
  color: var(--color-primary);
}

/* Barra de Rolagem */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-input);
  border-radius: 4px;
}

.animate,
.animate-inverse {
  transition-duration: 0.3s;
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(1);
}

.animate:hover {
  transition-duration: 0.3s;
  transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(1.1);
}

.animate-inverse:hover {
  transition-duration: 0.3s;
  transform: scale(0.9);
  -webkit-transition-duration: 0.3s;
  -webkit-transform: scale(0.9);
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

/** SELEÇÃO DE TEXTO */
*::-moz-selection {
  background: var(--color-primary);
  color: #fff;
}

*::selection {
  background: var(--color-primary);
  color: #fff;
}

strong {
  font-weight: 600;
}

.row.row-margin-bottom-0 {
  margin-bottom: 0;
}

/**
** FORM
***************************************/
/* Style Placeholders */
::placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

/* Text inputs */
input:not([type]),
input[type="text"]:not(.browser-default),
input[type="password"]:not(.browser-default),
input[type="email"]:not(.browser-default),
input[type="url"]:not(.browser-default),
input[type="time"]:not(.browser-default),
input[type="date"]:not(.browser-default),
input[type="datetime"]:not(.browser-default),
input[type="datetime-local"]:not(.browser-default),
input[type="tel"]:not(.browser-default),
input[type="number"]:not(.browser-default),
input[type="search"]:not(.browser-default),
textarea.materialize-textarea {
  background-color: var(--color-background);
  border: 1px solid var(--color-input);
  border-radius: 2px;
  height: 2.9rem;
  width: calc(100% - 20px);
  padding: 5px 10px;
  font-weight: 400;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Focus Inputs */
input:not([type]):focus:not([readonly]),
input[type="text"]:not(.browser-default):focus:not([readonly]),
input[type="password"]:not(.browser-default):focus:not([readonly]),
input[type="email"]:not(.browser-default):focus:not([readonly]),
input[type="url"]:not(.browser-default):focus:not([readonly]),
input[type="time"]:not(.browser-default):focus:not([readonly]),
input[type="date"]:not(.browser-default):focus:not([readonly]),
input[type="datetime"]:not(.browser-default):focus:not([readonly]),
input[type="datetime-local"]:not(.browser-default):focus:not([readonly]),
input[type="tel"]:not(.browser-default):focus:not([readonly]),
input[type="number"]:not(.browser-default):focus:not([readonly]),
input[type="search"]:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]),
.select-wrapper input.select-dropdown:focus {
  border: 1px solid var(--color-primary);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Valid Inputs */
input.valid:not([type]),
input.valid:not([type]):focus,
input.valid[type="text"]:not(.browser-default),
input.valid[type="text"]:not(.browser-default):focus,
input.valid[type="password"]:not(.browser-default),
input.valid[type="password"]:not(.browser-default):focus,
input.valid[type="email"]:not(.browser-default),
input.valid[type="email"]:not(.browser-default):focus,
input.valid[type="url"]:not(.browser-default),
input.valid[type="url"]:not(.browser-default):focus,
input.valid[type="time"]:not(.browser-default),
input.valid[type="time"]:not(.browser-default):focus,
input.valid[type="date"]:not(.browser-default),
input.valid[type="date"]:not(.browser-default):focus,
input.valid[type="datetime"]:not(.browser-default),
input.valid[type="datetime"]:not(.browser-default):focus,
input.valid[type="datetime-local"]:not(.browser-default),
input.valid[type="datetime-local"]:not(.browser-default):focus,
input.valid[type="tel"]:not(.browser-default),
input.valid[type="tel"]:not(.browser-default):focus,
input.valid[type="number"]:not(.browser-default),
input.valid[type="number"]:not(.browser-default):focus,
input.valid[type="search"]:not(.browser-default),
input.valid[type="search"]:not(.browser-default):focus,
textarea.materialize-textarea.valid,
textarea.materialize-textarea.valid:focus,
.select-wrapper.valid > input.select-dropdown {
  border: 1px solid var(--color-primary);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Invalid Inputs */
input.invalid:not([type]),
input.invalid:not([type]):focus,
input.invalid[type="text"]:not(.browser-default),
input.invalid[type="text"]:not(.browser-default):focus,
input.invalid[type="password"]:not(.browser-default),
input.invalid[type="password"]:not(.browser-default):focus,
input.invalid[type="email"]:not(.browser-default),
input.invalid[type="email"]:not(.browser-default):focus,
input.invalid[type="url"]:not(.browser-default),
input.invalid[type="url"]:not(.browser-default):focus,
input.invalid[type="time"]:not(.browser-default),
input.invalid[type="time"]:not(.browser-default):focus,
input.invalid[type="date"]:not(.browser-default),
input.invalid[type="date"]:not(.browser-default):focus,
input.invalid[type="datetime"]:not(.browser-default),
input.invalid[type="datetime"]:not(.browser-default):focus,
input.invalid[type="datetime-local"]:not(.browser-default),
input.invalid[type="datetime-local"]:not(.browser-default):focus,
input.invalid[type="tel"]:not(.browser-default),
input.invalid[type="tel"]:not(.browser-default):focus,
input.invalid[type="number"]:not(.browser-default),
input.invalid[type="number"]:not(.browser-default):focus,
input.invalid[type="search"]:not(.browser-default),
input.invalid[type="search"]:not(.browser-default):focus,
textarea.materialize-textarea.invalid,
textarea.materialize-textarea.invalid:focus,
.select-wrapper.invalid > input.select-dropdown,
.select-wrapper.invalid > input.select-dropdown:focus {
  border: 1px solid #f44336;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

input:not([type]):focus:not([readonly]) + label,
input[type="text"]:not(.browser-default):focus:not([readonly]) + label,
input[type="password"]:not(.browser-default):focus:not([readonly]) + label,
input[type="email"]:not(.browser-default):focus:not([readonly]) + label,
input[type="url"]:not(.browser-default):focus:not([readonly]) + label,
input[type="time"]:not(.browser-default):focus:not([readonly]) + label,
input[type="date"]:not(.browser-default):focus:not([readonly]) + label,
input[type="datetime"]:not(.browser-default):focus:not([readonly]) + label,
input[type="datetime-local"]:not(.browser-default):focus:not([readonly])
  + label,
input[type="tel"]:not(.browser-default):focus:not([readonly]) + label,
input[type="number"]:not(.browser-default):focus:not([readonly]) + label,
input[type="search"]:not(.browser-default):focus:not([readonly]) + label,
textarea.materialize-textarea:focus:not([readonly]) + label {
  color: #747e8c;
}

textarea {
  height: 150px;
  background: #ffffff;
  border: 1px solid var(--color-input);
  padding: 10px;
}

textarea:focus {
  border: 1px solid #f2fafa;
}

/* DROPDOWN SELECT*/
.dropdown-content.select-dropdown {
  position: absolute;
  top: -38px;
  background: none;
  padding-top: 7px;
  border-radius: 0.375rem;
  border: 0 solid rgba(31, 45, 61, 0);
  box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
}

.dropdown-content.select-dropdown:before {
  position: absolute;
  content: " ";
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px;
  width: 0;
  height: 0;
  top: 0px;
  right: 5px;
  z-index: 999;

  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
}

.select-dropdown li {
  background-color: #ffffff;
}

.select-dropdown li:first-child {
  display: none;
}

.select-dropdown.dropdown-content li.selected,
.select-dropdown.dropdown-content li:hover {
  background-color: #eeeeee;
}

.dropdown-content li > a,
.dropdown-content li > span {
  color: #142441;
}

/** BUTTOM */
.btn-custom {
  box-shadow: 0px 5px 10px rgba(62, 16, 55, 0.1);
  box-shadow: none;
  background: var(--color-primary);
  border: 0;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0 4rem;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}

.btn-custom:hover {
  background: var(--color-secundary);
  box-shadow: none;
  color: #fff;
}

@media (max-width: 993px) {
  .btn-custom {
    width: 100%;
  }
}

label {
  width: 100%;
}

.help-block {
  color: red;
}

.rb-0 {
  margin-bottom: 0;
}

/** HTML, BODY ======================================== **/
html,
body {
  background: var(--color-background);
  font-family: "Roboto", sans-serif;
  color: var(--color-text);
  letter-spacing: 0.3px;
  position: relative;
  height: 100%;
  width: 100%;
}

@media (max-width: 1080px) {
  html,
  body {
    font-size: 93.75%;
  }
}

@media (max-width: 720px) {
  html,
  body {
    font-size: 87.5%;
  }
}

.loadie {
  transition: width 0.5s ease-out;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
  background-color: var(--color-primary);
  position: absolute;
  z-index: 99999;
  height: 3px;
  width: 0;
  left: 0;
  top: 0;
}

p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

/** HEADER ======================================== */
header {
  position: fixed;
  width: 100%;
  z-index: 99;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0)
  );
}

header nav {
  background: transparent;
  box-shadow: none;
  line-height: 100px;
  height: 100px;
  transition: all 0.3s;
}

header nav .nav-wrapper {
  margin: auto;
}

header nav .sidenav-trigger i,
header nav .sidenav-trigger {
  height: 100px;
  line-height: 100px;
  color: #fff;
}

header .brand-logo {
  height: 100px;
  display: flex;
  align-items: center;
}

header .brand-logo img {
  height: 65px;
  animation: float 6s ease-in-out infinite;
  position: absolute;
  transition: all 0.3s;
}

header .brand-logo img.logo-white {
  opacity: 1;
}

header .brand-logo img.logo {
  opacity: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translatey(-10px);
  }

  50% {
    transform: translatey(8px);
  }
}

header nav > ul,
header nav > ul > li {
  height: 100px;
  line-height: 100px;
}

header nav ul a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s;
}

header nav ul a:hover {
  color: var(--color-background-secundary);
  background-color: transparent;
}

header a.atendimento {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  font-size: 0.95rem;
  color: #fff;
  line-height: 36px;
  border-radius: 32px;
  margin-top: 32px;
  margin-left: 20px;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

header a.atendimento i {
  height: 36px;
  line-height: 36px;
  font-size: 0.95rem;
  margin-right: 5px;
}

header a.atendimento:hover {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
}

header a.atendimento.btn-pulse {
  animation: btn-pulse-primario 2s infinite;
}

@keyframes btn-pulse-primario {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 135, 40, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 135, 40, 0);
  }
}

/* DORPDOWN */
header .dropdown-content {
  position: absolute;
  left: 0;
  top: -75px;
  height: auto;
  background: none;
  min-width: 260px;
  /* padding-top: 7px; */
  border: 1 solid rgba(31, 45, 61, 0);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);

  border-radius: 8px;
}

header .dropdown-content:before {
  position: absolute;
  content: " ";
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px;
  width: 0;
  height: 0;
  top: 0px;
  left: 20px;
  z-index: 99999;

  /* border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--color-primary); */
}

header .dropdown-content li {
  min-height: auto;
}

header .dropdown-content li:hover {
  background: transparent;
}

header .dropdown-content li:first-child {
  overflow: hidden;
  /* border-top: 2px solid var(--color-primary); */
  display: inherit;
  border-radius: 8px 8px 0 0;
}

header .dropdown-content a {
  color: var(--color-title) !important;
  background: #fff;
  padding: 8px 16px;
}

header .dropdown-content li:first-child a {
  padding-top: 16px;
}

header .dropdown-content li:last-child a {
  padding-bottom: 16px;
}

header .dropdown-content a:hover {
  color: var(--color-primary) !important;
  background: #fff !important;
}

@media (max-width: 992px) {
  header .brand-logo {
    justify-content: center;
  }
}

/** EFEITO MENU ======================================== */
.efeito-menu nav {
  background: #fff;
  border-bottom: 2px solid var(--color-primary);
  line-height: 85px;
  height: 85px;
}

.efeito-menu nav .sidenav-trigger i,
.efeito-menu nav .sidenav-trigger {
  height: 85px;
  line-height: 85px;
  color: var(--color-title);
}

.efeito-menu .brand-logo {
  height: 85px;
}

.efeito-menu .brand-logo img {
  height: 50px;
}

.efeito-menu .brand-logo img.logo {
  opacity: 0;
}

.efeito-menu .brand-logo img.logo {
  opacity: 1;
}

.efeito-menu nav ul a:not(.atendimento) {
  color: var(--color-title);
}

.efeito-menu nav ul a:hover:not(.atendimento) {
  color: var(--color-primary);
}

.efeito-menu a.atendimento {
  margin-top: 24px;
}

.efeito-menu a.atendimento:hover {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.efeito-menu .dropdown-content {
  top: -76px;
}

/** SIDENAV ======================================== */
.sidenav {
  background: var(--color-primary);
}

.sidenav hr {
  border-top: 1px solid #050c3b;
}

.sidenav li a {
  color: #fff;
}

.sidenav li a:hover {
  background: var(--color-background-secundary);
  color: var(--color-secundary);
}

.sidenav li:first-child a {
  height: auto;
  line-height: auto;
  padding: 32px 0 8px 32px;
}

.sidenav li:first-child a:hover {
  background: transparent;
}

.sidenav li:first-child a img {
  height: 50px;
  margin: auto;
}

ul.sidenav li.atendimento,
ul.sidenav li.central-cliente {
  margin: 10px 16px;
}

ul.sidenav li.atendimento a {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid #fff;
  border-radius: 50px;
  transition: all 0.3s;
}

ul.sidenav li.atendimento a i.material-icons {
  color: var(--color-primary);
}

ul.sidenav li.atendimento a:hover i.material-icons {
  color: #fff;
}

ul.sidenav li.atendimento a:hover {
  background: var(--color-primary);
  color: #fff;
}

/** BANNER ======================================== **/
.transparent-banner {
  display: flex;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
}

.slide-pattern {
  background: url("../images/pattern.png") 0 0 repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.slider,
.slider .slides,
.slider .slides li {
  max-height: 100vh;
  height: 100vh;
}

.slider .slides li .caption {
  top: 30%;
  max-width: 620px;
  z-index: 2;
}

.slider .slides li .caption.right-align {
  left: auto;
  right: 15%;
}

.slider .slides .caption h3,
.slider .slides .caption h5 {
  margin: 7px;
  font-weight: 600;
  text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.6);
}

.slider .slides .caption h3 span {
  line-height: 137%;
  padding: 5px 0;
}

.slider .slides .caption h5 span {
  padding: 10px 0;
  color: var(--color-background-secundary);
}

.slider .indicators {
  bottom: 100px;
  z-index: 9;
}

.slider .indicators .indicator-item {
  background: var(--color-primary);
  margin: 0 5px;
  height: 10px;
  width: 10px;
  border-radius: 8px;
  transition: all 0.3s;
}

.slider .indicators .indicator-item.active {
  background: var(--color-secundary);
  width: 40px;
}

/** BANNER PAGE */
.banner-page {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-background-secundary);
  height: 300px;
  overflow: hidden;
}

.banner-page .slide-pattern {
  background: url("../images/pattern.png") 0 0 repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

.banner-page h1 {
  position: absolute;
  z-index: 9;
  max-width: 1000px;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.6);
}

.banner-page img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
}

.banner-page .slide-pattern {
  height: 400px;
}

@media screen and (max-width: 900px) {
  .slider,
  .slider .slides,
  .slider .slides li {
    max-height: 300px;
  }
}

/** TÍTULOS ======================================== **/
h1.titulo {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 48px;
  color: var(--color-primary);
}

h2.titulo {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--color-primary);
}

h5.titulo {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-primary);
}

h1.titulo span,
h2.titulo span {
  color: var(--color-secundary);
  font-family: "Roboto", sans-serif;
}

@media (max-width: 992px) {
  h1.titulo,
  h2.titulo {
    font-size: 24px;
  }

  h2.titulo-home {
    font-size: 20px;
  }
}

/** SAIBA MAIS
====================================================== **/
a.saiba-mais {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 50px;
  color: var(--color-text);
  background: var(--color-background-secundary);
}

a.saiba-mais:hover {
  background: var(--color-background-secundary);
}

a.saiba-mais img {
  margin-left: 20px;
  width: 13px;
  height: 9px;
  vertical-align: middle;
  transition: all 0.3s;
}

a.saiba-mais:hover img {
  margin-left: 25px;
}

/** INSTITUCIONAL ======================================== **/
.institucional h1 {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 38px;
  color: var(--color-primary);
}

.institucional .descricao {
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 40px;
}

.institucional .img1,
.institucional .img2,
.institucional .img3 {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 20px;
  background: var(--color-background-secundary);
}

.institucional .img1 {
  height: 400px;
}

.institucional .img2,
.institucional .img3 {
  height: 190px;
}

.institucional .img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.institucional .img2 img,
.institucional .img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .institucional .img1,
  .institucional .img2,
  .institucional .img3 {
    height: 200px;
    margin-top: 0;
  }
}

/** CATEGORIAS
====================================================== **/
.categorias {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0;
}

.categorias li {
  margin-bottom: 16px;
}

.categorias li a {
  background: #f2f4f7;
  border-radius: 20px;
  padding: 8px 16px;
  text-align: center;
  color: var(--color-text);

  transition: all 0.3s;
}

.categorias li a.active,
.categorias li a:hover {
  background: var(--color-primary);
  color: #fff;
}

/** IMOVEIS
====================================================== **/
.imoveis h2.titulo {
  line-height: 36px;
  margin-bottom: 0;
  color: #fff;
}

.imoveis .imovel {
  position: relative;
  border: 1px solid var(--color-background-secundary);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  height: 400px;
}

.imoveis .imovel .info {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: absolute;
  z-index: 9;
  padding: 16px 16px 40px;
  height: 400px;
  width: 100%;
  background-image: linear-gradient(transparent, transparent, black);
}

.imoveis .imovel .info h3 {
  color: #fff;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 800;
}

.imoveis .imovel img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;

  transition: all 1.2s;
}

.imoveis .imovel:hover img {
  height: 105%;
  width: 105%;
}

.imoveis .owl-theme .owl-nav {
  position: absolute;
  top: -90px;
}

.imoveis .owl-imoveis .owl-nav {
  right: 0;
}

.imoveis .owl-theme .owl-nav button.owl-prev,
.imoveis .owl-theme .owl-nav button.owl-next {
  background: #f5f7f9;
  color: var(--color-title);

  display: inline-flex;
  align-items: center;
  height: 30px;
  width: 30px;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;

  transition: all 0.3s;
}

.imoveis .owl-theme .owl-nav button.owl-prev:hover,
.imoveis .owl-theme .owl-nav button.owl-next:hover {
  color: #fff;
  background: var(--color-primary);
}

.imoveis .owl-theme .owl-dots {
  margin: 20px 0;
}

.imoveis .owl-theme .owl-dots .owl-dot span {
  background: var(--color-primary);
  margin: 5px 3px;
  transition: all 0.3s;
}

.imoveis .owl-theme .owl-dots .owl-dot.active span {
  background: var(--color-secundary);
  width: 40px;
  margin: 5px;
}

@media (max-width: 992px) {
  .imoveis .owl-imoveis .owl-nav {
    display: none;
  }
}

/** PG IMOVEL OLD
====================================================== **/
.pg-imovel {
}

.pg-imovel .detalhe {
  border: 2px solid var(--color-secundary);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 16px;
  padding: 20px 8px;
}

.pg-imovel .detalhe h2 {
  color: var(--color-secundary);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  transition: all 0.3s;
}

.pg-imovel .detalhe:hover {
  border: 2px solid var(--color-primary);
}

.pg-imovel .detalhe:hover h2 {
  color: var(--color-primary);
}

/** VIDEOS
======================================== **/
.videosContainer {
  padding: 01px 0 25px;
  /* background: url(../images/bg-empreendimento.png) repeat-x;
  background-position: right 0 bottom -90px; */

  background-image: linear-gradient(#fff 50%, #4a4f55 50%);
}

.videosContainer h2.titulo {
  color: var(--color-secundary);
}

.video {
  flex: 1;
  width: 100%;
}

.video iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
}

/* @media (min-width: 1000px) {
  .video {
    min-height: 330px;
  }
}

@media (max-width: 992px) {
  .video {
    min-height: 200px;
  }
}

@media (max-width: 600px) {
  .video {
    flex-direction: column;
    min-height: 200px;
  }
} */

/** FOTOS
======================================== **/
.pg-imovel .fotos {
  background: var(--color-text);
  padding-bottom: 200px;
}

.pg-imovel .fotos h2.titulo {
  color: #fff;
}

.pg-imovel .fotos .foto {
  float: left;
  width: calc(25% - 16px);
  margin: 8px;
  height: 180px;
  background-size: cover;
  background-position-x: center;
  background-position-y: center;

  cursor: pointer;
  transition: all 1s;
}

.pg-imovel .fotos .foto:hover {
  background-position-x: left;
  background-position-y: top;
}

.pg-imovel .fotos .foto img {
  width: 100%;
  opacity: 0;
}

@media (max-width: 992px) {
  .pg-imovel .fotos .foto {
    width: 30%;
    margin: 1.5%;
    height: 140px;
  }
}

@media (max-width: 600px) {
  .pg-imovel .fotos .foto {
    width: 47%;
    margin: 1.5%;
    height: 140px;
  }
}

/** LOCALIZAÇÃO
======================================== **/
.pg-imovel .localizacao {
  margin-top: -150px;
}

.pg-imovel .endereco-mapa {
  display: flex;

  align-items: center;
  justify-content: space-evenly;
}

.pg-imovel .endereco {
  display: flex;
  align-items: center;
  background: var(--color-primary);
  padding-inline: 36px;
  color: #fff;
  width: 40%;
  height: 400px;
}

.pg-imovel .endereco h2 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 600;
  color: #fff;
}

.pg-imovel .mapa {
  flex: 1;
  width: 60%;
  overflow: hidden;
}

@media (max-width: 992px) {
  .pg-imovel .endereco-mapa {
    flex-direction: column;
  }

  .pg-imovel .endereco-mapa .endereco,
  .pg-imovel .endereco-mapa .mapa {
    width: 100%;
  }
}

.footer-imovel {
  color: #fff;
  position: fixed;
  z-index: 99;
  bottom: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: 999999999;
}

.footer-imovel ul {
  display: flex;
  align-items: center;
}

.footer-imovel ul li:first-child {
  margin-right: 32px;
  font-weight: 600;
  font-size: 1.3rem;
}

.footer-imovel ul li button {
  background: var(--color-secundary);
  border: 2px solid var(--color-secundary);
  color: #fff;
  padding: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin-right: 32px;
}

.footer-imovel ul li button:hover {
  background: #fff;
  border: 2px solid #fff;
  color: var(--color-primary);
}

.footer-imovel ul li.fone a {
  border: 2px solid #fff;
  padding: 4px 8px;
  margin-right: 16px;
  border-radius: 32px;
  color: #fff;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-imovel ul li.rs a {
  margin-left: 8px;
}

.footer-imovel ul li.rs a img:hover {
  opacity: 0.9;
}

@media (max-width: 992px) {
  .footer-imovel ul {
    justify-content: center;
  }
}

/** PG IMOVEL OLD
====================================================== **
.pg-imovel {
  margin-top: 20px;
}

.pg-imovel .galeria-img {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  max-height: 350px;

}

.pg-imovel .galeria-img > div {
  background: #adadad;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.pg-imovel .galeria-img > div img {
  height: 100%;
  width: 100%;
  position: relative;
  object-fit: cover;
  object-position: center;
  transition: all .3s;
}

.pg-imovel .galeria-img > div img:hover {
  opacity: .8;

}

.pg-imovel .galeria-img div.img1  {
  grid-row: 1/3;
  border-radius: 8px 0 0 8px;
}

.pg-imovel .galeria-img div.img3  {
  border-radius: 0 8px 0 0;
}

.pg-imovel .galeria-img div.img5  {
  border-radius: 0 0 8px 0;
}

.pg-imovel .galeria-img .mais-fotos {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 9;
  height: 100%;
  width: 100%;
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  transition: all .3s;
}

.pg-imovel .galeria-img .mais-fotos:hover {
  background: rgba(0, 0, 0, .3);
}

.pg-imovel form {
  background: var(--color-primary);
  border-radius: 16px;
  padding: 24px;
}

.pg-imovel form label,
.pg-imovel form label:focus {
  color: #fff;
}

.pg-imovel form input[type=text],
.pg-imovel form input[type=email] {
  border: 1px solid var(--color-primary);
  border-radius: 8px;

  transition: all .3s;
}

.pg-imovel form input[type=text]:focus,
.pg-imovel form input[type=email]:focus {
  border: 1px solid var(--color-secundary);
}

.pg-imovel form button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secundary);
  border: 2px solid var(--color-secundary);
  font-weight: 600;
  border-radius: 50px;
  width: 100%;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  transition: all .3s;
}

.pg-imovel form button:hover {
  background: var(--color-primary);
  color: var(--color-secundary);
}

.pg-imovel .video {
  background: var(--color-title);
  padding: 40px 0;
  text-align: center;
}

/** MODAL GALLERY IMAGES ======================================== **/
.modal-gallery-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.modal-gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0;
  color: #fff;
  transition: all 0.3s ease;
}

.modal-gallery-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border-radius: 32px;
  height: 32px;
  width: 32px;
  line-height: 32px;
  margin: 10px 10px 0 0;
  background: var(--color-background-secundary);
}

.modal-gallery.modal-gallery-efect {
  animation: modalEfect 0.2s ease;
}

/**
* GALERIA SEGUINDO O MODELO DESTE REPOSITÓRIO
* https://github.com/bushblade/Full-Screen-Touch-Slider/tree/master
*
* CANAL DO YOUTUBE COM O TUTORIAL
* https://www.youtube.com/watch?v=5bxFSOA5JYo&ab_channel=TraversyMedia
*/
.slider-container {
  /* height: calc(100vh - 120px); */
  display: inline-flex;
  overflow: hidden;
  scrollbar-width: none;
  transform: translateX(0);
  will-change: transform;
  transition: transform 0.3s ease-out;
  cursor: grab;
}

.slide {
  max-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding: 0;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease-in-out;
  box-shadow: 5px 5px 50px -1px var(--shadow);
  box-shadow: none;
  border-radius: 4px;
  border-radius: 0;
  user-select: none;
}

.grabbing {
  cursor: grabbing;
}

.grabbing .slide img {
  transform: scale(0.9);
  box-shadow: 5px 5px 40px -1px var(--shadow);
}

/** PAGINACAO
====================================================== **/
.paginacao {
  padding: 20px 0;
  margin: 0;
  border-top: 1px solid #e8edf2;
}

.paginacao .row {
  margin-bottom: 0;
}

.paginacao ul.pagination {
  margin: 0;
}

.paginacao .pagination li.active {
  background-color: #e8edf2;
}

/** ERROR 404
====================================================== **/
.error-page {
  text-align: center;
  margin: 100px 0;
}

.error-page h3 {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--color-primary);
}

.error-page i {
  font-size: 4rem;
  color: var(--color-secundary);
}

/** Termos de Privacidade ======================================== **/
.termos-privacidade {
  padding: 16px 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--color-background-sidebar);
  box-shadow: 7px 0 20px 2px rgb(0 0 0 / 30%);
  bottom: 20px;
  max-width: 1200px;
  position: fixed;
  z-index: 999;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 0.3s;
  display: none;
}

.termos-privacidade h6 {
  font-size: 18px;
  color: var(--color-primary);
}

.termos-privacidade .termos-privacidade-text {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.termos-privacidade .termos-privacidade-text p {
  font-size: 14px;
  line-height: 26px;
  margin-right: 20px;
}

.termos-privacidade .termos-privacidade-text button {
  padding: 10px;
  width: 200px;
}

.termos-privacidade .termos-privacidade-text button:hover {
  cursor: pointer;
}

@media (max-width: 992px) {
  .termos-privacidade {
    width: calc(100% - 40px);
  }

  .termos-privacidade .termos-privacidade-text {
    flex-direction: column;
  }

  .termos-privacidade .termos-privacidade-text button {
    width: 100%;
  }
}

/** MODAL CUSTOM ======================================== **/
.modal-custom-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-custom {
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 20px;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.modal-custom-close {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border-radius: 32px;
  height: 32px;
  width: 32px;
  line-height: 32px;
  margin: 10px 10px 0 0;
  background: var(--color-background-secundary);
}

.modal-custom .modal-custom-header {
  text-align: center;
  padding: 16px 24px;
}

.modal-custom .modal-custom-header h4 {
  color: var(--color-secundary);
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin: 10px 0 0;
  font-weight: 600;
  padding: 0;
}

.modal-custom .modal-custom-footer {
  text-align: center;
  padding: 16px 24px;
  border-top: 2px solid #eaeaea;
}
.modal-custom .modal-custom-footer h4 {
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 8px 0 16px;
  padding: 0;
  margin: 0;
}

.modal-custom .modal-custom-footer h4 {
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1.4rem;
  padding: 8px 0 16px;
  padding: 0;
}

.modal-custom .modal-custom-body {
  text-align: center;
  padding: 16px 32px;
}

.modal-custom input[type="text"],
.modal-custom input[type="email"] {
  border-radius: 50px;
  /* height: 60px; */
  width: calc(100% - 48px);
  padding: 0 24px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.4rem;
}

.modal-custom button {
  background-color: var(--color-secundary);
  border: 0;
  font-weight: 700;
  width: 100%;
  border-radius: 40px;
  color: #fff;
  padding: 16px 52px;
  margin-top: 16px;
  transition: 0.3s;
  cursor: pointer;
}

.modal-custom button:hover {
  background-color: var(--color-primary);
  box-shadow: none;
}

.modal-custom.modal-custom-efect {
  animation: modalEfect 0.2s ease;
}

@keyframes modalEfect {
  0% {
    transform: scale(0.4);
  }

  100% {
    transform: scale(initial);
  }
}

.session-banner-leads {
  display: flex;
  width: 100%;
  background-color: var(--color-primary);
}

.leads-store {
  width: 500px;
  padding: 24px 36px;
  background: #fff;
}

.leads-store h5 {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 600;
  color: var(--color-secundary);
  margin-bottom: 24px;
  text-align: center;
}

.leads-store label {
  color: #1e1e1e;
}

.leads-store input[type="text"],
.leads-store input[type="email"] {
  border: 1px solid #050c3b;
  background: #fff;
  height: auto;
  padding: 16px;
  margin-top: 6px;
  border-radius: 6px;
  width: calc(100% - 34px);
}

.leads-store button {
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  background: var(--color-primary);
  transition: all 0.3s;
}

.leads-store button:hover {
  background: #0f9df5;
}

@media (max-width: 992px) {
  .session-banner-leads {
    flex-direction: column;
    gap: 16px;
  }

  .leads-store {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    border-radius: 16px;
  }
}

/** MODAL POPUP
====================================================== **/
.modal-popup {
  padding: 0;
  max-height: none;
  overflow: initial;
  max-width: 700px;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}

.modal-popup a.modal-link {
  line-height: 0;
  display: block;
}

.modal-popup a.modal-close {
  position: absolute;
  right: 4px;
  top: 4px;
  padding: 2px;
  background: var(--color-title);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 0 #f2f2f2;
  text-align: center;
  border-radius: 100%;
  line-height: 18px;
  height: 25px;
  width: 25px;
}

.modal-popup img {
  max-width: 700px;
}

/** CONTATO
====================================================== **/
.contato {
  padding: 0 16px;
  overflow: hidden;
}

.contato textarea,
.contato input[type="text"],
.contato input[type="email"] {
  border: 1px solid #827ca1;
}

.contato textarea:focus,
.contato input[type="text"]:focus,
.contato input[type="email"]:focus {
  border: 1px solid var(--color-primary);
}

.contato textarea {
  height: 100px;
}

.contato .btn-custom {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  line-height: normal;
  transition: all 0.3s;
}

.contato .btn-custom:hover {
  background: transparent;
  color: var(--color-primary);
}

.contato .logo {
  height: 55px;
  margin: 0 0 20px;
}

.contato ul.rs li {
  display: inline-block;
}

.contato ul.rs li img {
  height: 30px;
  width: 30px;
}

.contato .contatos {
  margin: 45px 0;
}

.contato .contatos li {
  display: block;
  margin-bottom: 16px;
}

.contato .contatos li a {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: var(--color-title);
}

.contato .contatos li a img {
  margin-right: 15px;
  height: 30px;
  width: 30px;
  float: left;
}

.contato .contatos li span {
  font-weight: 600;
  font-size: small;
  color: var(--color-primary);
}

.contato .contatos .redes-sociais li {
  display: inline-block;
}

.contato .contatos li.lgpd {
  border: 0;
}

.contato .contatos li.lgpd a img {
  height: 9px;
  width: 13px;
  transition: margin 0.3s;
}

.contato .contatos li.lgpd a:hover img {
  margin-left: 16px;
}

/** whatsapp
******************************/
.whats-chat {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 999;
}

.whats-chat .whats-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whats-btn .whats-btn-txt {
  background: #f5f7f9;
  position: relative;
  font-size: 12px;
  line-height: 1.5;
  color: #43474e;
  border-radius: 4px;
  padding: 8px 12px;
  height: fit-content;
  opacity: 1;
  transition: all 0.4s ease;
}

.whats-btn .whats-btn-txt.whats-btn-txt-efeito {
  opacity: 0;
  margin-top: 20px;
}

.whats-chat .whats-btn img {
  width: 56px;
  height: 56px;
  cursor: pointer;
  z-index: 999;
}

.whats-popup {
  position: absolute;
  right: 0;
  bottom: 25px;
  background: #f5f7f9;
  width: 300px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  box-shadow: 0 10px 10px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.whats-popup-efeito {
  bottom: 64px;
  visibility: visible;
  opacity: 1;
}

.whats-popup .whats-header {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #e8edf2;
  background: linear-gradient(rgb(11, 179, 47), rgb(3, 177, 61));
}

.whats-popup .whats-header strong {
  font-size: 1.2rem;
  color: #fff;
}

.whats-popup .whats-header span {
  font-size: 0.8rem;
}

.whats-popup .whats-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
}

.whats-content .whats-atendente {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  color: #827ca1;
  background: #e8edf2;
  border-radius: 32px;
  transition: all 0.3s;
}

.whats-content .whats-atendente:hover {
  background: #f2f4f7;
}

/** FOOTER
====================================================== **/
footer .footer-contatos {
  padding: 80px 0;
  background: url(../images/bg_footer_bottom.png) center bottom no-repeat,
    url(../images/bg-tree.png) no-repeat var(--color-background-secundary);
}

footer .footer-contatos ul {
  padding-bottom: 0;
  margin-bottom: 0;
}

footer .footer-contatos ul li {
  display: inline-block;
  margin: 0 0;
  text-align: left;
  padding-left: 40px;
  color: var(--color-text);
}

footer .footer-contatos ul li a {
  color: var(--color-text);
  font-style: normal;
}

footer .footer-contatos ul li.footer-logo {
  padding-left: 0;
  height: 45px;
  margin-right: 30px;
}

footer .footer-contatos ul li.footer-logo a {
  display: block;
  height: 45px;
}

footer .footer-contatos ul li.footer-logo img {
  margin-top: 10px;
}

footer .footer-contatos ul li.email {
  background: url(../images/icone_email.png) 0 5px no-repeat;
  background-size: 30px;
  margin-right: 6 0px;
}

footer .footer-contatos ul li.fone {
  background: url(../images/icone_atendente.png) 0 7px no-repeat;
  background-size: 30px;
  margin-right: 30px;
}

footer .footer-contatos ul li.whatsapp {
  background: url(../images/icone_whatsapp.png) 0 5px no-repeat;
  background-size: 30px;
  margin-right: 30px;
}

footer .footer-contatos ul li.rs {
  padding: 0;
  margin-left: 4px;
  float: right;
}

footer .footer-contatos ul li.rs img {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  transition: all 0.2s;
}

footer .footer-contatos ul li.rs img:hover {
  opacity: 0.9;
}

footer .copy-by {
  background: #fff;
}

footer .row {
  margin-bottom: 0;
}

footer .copy {
  display: flex;
  align-items: center;
  height: 90px;
  color: var(--color-text);
  font-size: 1rem;
}

footer .by {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 90px;
}

footer .by a {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text);
}

@media (max-width: 992px) {
  footer {
    text-align: center;
  }

  footer .footer-contatos ul li,
  footer .footer-contatos ul li.fone,
  footer .footer-contatos ul li.whatsapp,
  footer .footer-contatos ul li.emil {
    display: block;
    margin: 20px 0;
  }

  footer .footer-contatos ul li.rs {
    display: inline-block;
    float: none;
  }

  footer .copy,
  footer .by {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 10px 0;
  }

  footer .copy .logo-footer {
    margin: 10px 0;
  }
}
