@charset "UTF-8";
@font-face {
  font-family: montserrat;
  src: url("../fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: montserrat;
  src: url("../fonts/montserrat/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: montserrat;
  src: url("../fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: montserrat;
  src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: montserrat;
  src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: montserrat;
  src: url("../fonts/montserrat/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@-webkit-keyframes circle_animate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(3600deg);
            transform: rotate(3600deg);
  }
}
@keyframes circle_animate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(3600deg);
            transform: rotate(3600deg);
  }
}
input[type=submit], input[type=radio], input[type=checkbox] {
  cursor: pointer;
}

* {
  outline: none !important;
}

select,
input,
textarea {
  -webkit-appearance: none;
}

*[data-load=on] {
  color: transparent !important;
  pointer-events: none;
  position: sticky;
  -webkit-filter: opacity(0.9);
          filter: opacity(0.9);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
*[data-load=on]:before {
  content: "";
  position: absolute;
  background: url(../img/loading.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-name: rotate_load;
          animation-name: rotate_load;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
*[data-load=on]:after {
  content: "Carregando";
  position: absolute;
  color: white;
  font-family: ubuntu;
  font-size: 10px;
  top: calc(50% + 10px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-name: text_load;
          animation-name: text_load;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes rotate_load {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg);
            transform: translate(-50%, -50%) rotate(1080deg);
  }
}

@keyframes rotate_load {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg);
            transform: translate(-50%, -50%) rotate(1080deg);
  }
}
@-webkit-keyframes text_load {
  0% {
    content: "Carregando";
  }
  25% {
    content: "Carregando.";
  }
  50% {
    content: "Carregando..";
  }
  75% {
    content: "Carregando...";
  }
  100% {
    content: "Carregando";
  }
}
@keyframes text_load {
  0% {
    content: "Carregando";
  }
  25% {
    content: "Carregando.";
  }
  50% {
    content: "Carregando..";
  }
  75% {
    content: "Carregando...";
  }
  100% {
    content: "Carregando";
  }
}
body * {
  font-family: "Kanit", sans-serif;
}

.clear {
  clear: both;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 4;
  pointer-events: none;
}
header .content {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 90px;
  left: 0;
  top: 0;
}
header .content button.menu {
  width: 107px;
  height: 100%;
  border: none;
  background: #005787;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: all;
}
header .content .paginas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
header .content .paginas a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0f1121;
  height: 100%;
  font-size: 14px;
  font-family: "Kanit", sans-serif;
  color: white;
  padding: 0 38px;
  pointer-events: all;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
header .content .paginas a:hover {
  background: #19528c;
}
header .content .paginas a:first-child:before {
  display: none;
}
header .content .paginas a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 27px;
  background: white;
  opacity: 0.36;
}
header a.logo {
  display: block;
  margin: 33px auto 0;
  width: 145px;
  height: 85px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: all;
}
@media (max-width: 1550px) {
  header {
    height: 150px;
  }
  header .content {
    height: 80px;
  }
  header .content button.menu {
    width: 90px;
  }
  header .content button.menu svg {
    width: 37px;
    height: auto;
  }
  header .content .paginas a {
    padding: 0 35px;
  }
  header a.logo {
    margin: 30px auto 0;
    width: 130px;
    height: 75px;
  }
}
@media (max-width: 1300px) {
  header {
    height: 125px;
  }
  header .content {
    left: initial;
    right: 0;
  }
  header .content button.menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  header a.logo {
    margin: 20px auto 0 30px;
    width: 110px;
    height: 65px;
  }
}
@media (max-width: 800px) {
  header .content {
    height: 76px;
  }
  header .content button.menu {
    width: 85px;
  }
  header .content button.menu svg {
    width: 33px;
  }
  header .content .paginas {
    display: none;
  }
}
@media (max-width: 550px) {
  header a.logo {
    margin: 20px auto 0 25px;
    width: 95px;
    height: 56px;
  }
}

section.drop_menu {
  background: #0f1121;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-image: url(./../img/header/drop_logo.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 245px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.drop_menu[active=false] {
  opacity: 0;
  pointer-events: none;
}
section.drop_menu button.fechar {
  border: none;
  width: 50px;
  height: 50px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  position: absolute;
  left: 29px;
  top: 20px;
}
section.drop_menu a.logo {
  display: block;
  position: absolute;
  top: 33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 145px;
  height: 85px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
section.drop_menu .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 1600px;
  margin: 0 auto;
  font-family: "Kanit", sans-serif !important;
  font-weight: 500 !important;
}
section.drop_menu .content .paginas h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  color: white;
}
section.drop_menu .content .paginas a:nth-child(4),
section.drop_menu .content .paginas a:nth-child(5) {
  display: none;
}
section.drop_menu .content .paginas a {
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  display: block;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: white;
  margin: 0 0 10px;
  position: relative;
}
section.drop_menu .content .paginas a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
section.drop_menu .content .paginas a:hover:before {
  opacity: 0.4;
}
section.drop_menu .content .paginas_mobile {
  display: none;
}
section.drop_menu .content .paginas_mobile a {
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  display: block;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: white;
  margin: 0 0 10px;
}
section.drop_menu .content .portais {
  width: 285px;
  border: 1px solid #61879c;
  border-bottom: none;
}
section.drop_menu .content .portais a {
  display: block;
  font-size: 16px;
  line-height: 64px;
  font-weight: 600;
  color: white;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #61879c;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Kanit", sans-serif !important;
}
section.drop_menu .content .portais a:hover {
  background: #ffffff;
  color: #004165;
}
@media (max-width: 1700px) {
  section.drop_menu .content {
    width: 1250px;
  }
  section.drop_menu .content .portais {
    width: 250px;
  }
}
@media (max-width: 1550px) {
  section.drop_menu {
    background-size: 600px;
    padding: 210px 0 0;
  }
  section.drop_menu button.fechar {
    left: 20px;
    top: 16px;
  }
  section.drop_menu a.logo {
    top: 30px;
    width: 130px;
    height: 75px;
  }
  section.drop_menu .content {
    width: 1150px;
  }
  section.drop_menu .content .paginas h3 {
    font-size: 18px;
  }
  section.drop_menu .content .paginas a {
    font-size: 18px;
    margin: 0 0 5px;
  }
  section.drop_menu .content .portais {
    width: 200px;
  }
  section.drop_menu .content .portais a {
    font-size: 14px;
    line-height: 56px;
  }
}
@media (max-width: 1300px) {
  section.drop_menu {
    padding: 170px 0 0;
  }
  section.drop_menu button.fechar {
    left: initial;
    right: 20px;
  }
  section.drop_menu a.logo {
    left: 30px;
    top: 20px;
    width: 110px;
    height: 65px;
    -webkit-transform: initial;
            transform: initial;
  }
  section.drop_menu .content {
    width: 100%;
    padding: 0 50px;
  }
  section.drop_menu .content .paginas {
    display: none;
  }
  section.drop_menu .content .paginas_mobile {
    display: block;
  }
}
@media (max-width: 800px) {
  section.drop_menu .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.drop_menu .content .paginas_mobile {
    margin: 0 0 20px;
  }
}
@media (max-width: 550px) {
  section.drop_menu {
    background-image: initial;
    padding: 130px 0 0;
  }
  section.drop_menu button.fechar {
    right: 18px;
    top: 13px;
  }
  section.drop_menu button.fechar svg {
    width: 23px;
    height: auto;
  }
  section.drop_menu a.logo {
    top: 20px;
    left: 25px;
    width: 95px;
    height: 56px;
  }
  section.drop_menu .content {
    padding: 0 25px;
  }
  section.drop_menu .content .paginas_mobile a {
    font-size: 18px;
    margin: 0 0 20px;
  }
  section.drop_menu .content .portais {
    width: 265px;
  }
}

footer {
  background: #0f1121;
  padding: 0 0 110px;
  font-family: "Kanit", sans-serif !important;
}
footer .content {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 100px 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .content a.logo {
  display: block;
  width: 190px;
  height: 112px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}
footer .content .contato {
  width: 275px;
  padding: 5px 0 0;
}
footer .content .contato p.telefone {
  position: relative;
  font-size: 20px;
  line-height: 23px;
  color: white;
  margin: 0 0 25px;
  padding: 0 0 0 40px;
  font-family: "Kanit", sans-serif !important;
}
footer .content .contato p.telefone svg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
footer .content .contato p.endereco {
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0 0 12px;
  font-family: "Kanit", sans-serif !important;
}
footer .content .contato a.como_chegar {
  display: block;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  font-size: 11px;
  line-height: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0;
  border-bottom: 1px solid white;
  padding: 0 0 7px;
  font-family: "Kanit", sans-serif !important;
}
footer .content .paginas {
  width: 320px;
  padding: 5px 0 0 45px;
}
footer .content .paginas a {
  display: block;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  font-size: 15px;
  letter-spacing: 1px;
  color: #ffffff;
  margin: 0 0 5px;
  font-family: "Kanit", sans-serif !important;
}
footer .content .paginas a:hover {
  -webkit-text-decoration: revert;
          text-decoration: revert;
}
footer .content .paginas a:last-child {
  margin: 0;
}
footer .content .redes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 30px 0 0;
}
footer .content .redes a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  background: #1c203b;
  margin: 0 0 0 3px;
}
footer .content .redes a:first-child {
  margin: 0;
}
footer .content .redes a:hover svg * {
  fill: #ffffff;
}
footer .content .redes a svg * {
  fill: #19528c;
}
footer .content a.logo_hibrida {
  position: absolute;
  right: 0;
  bottom: 0;
}
footer .content a.logo_zig {
  position: absolute;
  right: 0;
  bottom: -37px;
}
@media (max-width: 1500px) {
  footer .content a.logo_zig {
    right: 100px;
  }
}
@media (max-width: 1250px) {
  footer .content {
    width: calc(100% - 80px);
    padding: 80px 0 25px;
  }
  footer .content a.logo {
    width: 145px;
    height: 85px;
  }
  footer .content .paginas {
    width: auto;
    padding: 5px 0 0 0;
    min-width: 200px;
  }
}
@media (max-width: 1000px) {
  footer .content {
    width: calc(100% - 60px);
    padding: 70px 0 25px;
  }
  footer .content a.logo {
    width: 190px;
    height: 112px;
  }
  footer .content .paginas {
    padding: 5px 0 30px 0;
    min-width: 0px;
  }
  footer .content .paginas a {
    margin: 0 auto !important;
  }
  footer .content .paginas a:nth-child(1),
  footer .content .paginas a:nth-child(2),
  footer .content .paginas a:nth-child(3),
  footer .content .paginas a:nth-child(4),
  footer .content .paginas a:nth-child(5),
  footer .content .paginas a:nth-child(6),
  footer .content .paginas a:nth-child(7) {
    display: none;
  }
  footer .content a.logo_zig {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media (max-width: 800px) {
  footer {
    padding: 0 0 100px;
  }
  footer .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 70px 0 110px;
  }
  footer .content a.logo {
    background-position: center;
    margin: 0 0 65px;
  }
  footer .content .contato {
    margin: 0 0 40px;
  }
  footer .content .contato p.telefone {
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: -o-fit-content;
    margin: 0 auto 23px;
  }
  footer .content .contato p.endereco {
    text-align: center;
  }
  footer .content .contato a.como_chegar {
    margin: 0 auto;
  }
  footer .content .redes {
    padding: 0;
  }
  footer .content a.logo_hibrida {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  footer .content a.logo_zig {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    bottom: 0;
  }
}
@media (max-width: 550px) {
  footer .content {
    padding: 85px 0 110px;
  }
  footer .content a.logo {
    width: 157px;
    height: 93px;
  }
  footer .content a.logo_zig {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    bottom: 0;
  }
}

section.footer_contact {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #a6281c;
  z-index: 5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*&[scroll="false"]{
      transform: translateY(100%);
  }*/
}
section.footer_contact .content {
  height: 65px;
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.footer_contact .content a {
  cursor: pointer;
  padding: 0 0 0 30px;
  position: relative;
}
section.footer_contact .content a.central svg {
  width: 19px;
}
section.footer_contact .content a.whatsapp svg {
  width: 16px;
}
section.footer_contact .content a.chat {
  padding: 0 0 0 33px;
}
section.footer_contact .content a svg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: auto;
}
section.footer_contact .content a svg * {
  fill: white;
}
section.footer_contact .content a span {
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  display: block;
  font-family: "Kanit", sans-serif;
}
section.footer_contact .content a span.title {
  letter-spacing: 0;
  font-weight: normal;
  line-height: 12px;
}
section.footer_contact .content a span.text {
  letter-spacing: 0;
  font-size: 15px;
  line-height: 15px;
}
@media (max-width: 1300px) {
  section.footer_contact .content {
    width: 1000px;
  }
}
@media (max-width: 1050px) {
  section.footer_contact .content {
    width: 850px;
  }
  section.footer_contact .content a span {
    font-size: 10px;
  }
}
@media (max-width: 900px) {
  section.footer_contact .content {
    width: 500px;
    height: 50px;
  }
  section.footer_contact .content a {
    padding: 0 !important;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.footer_contact .content a svg {
    position: relative;
    -webkit-transform: initial;
            transform: initial;
    top: initial;
    left: initial;
  }
  section.footer_contact .content a span {
    display: none;
  }
}
@media (max-width: 550px) {
  section.footer_contact .content {
    width: 100%;
    padding: 0 25px;
  }
}

section.home_banner_topo {
  width: 100%;
  height: 675px;
  position: relative;
}
section.home_banner_topo .carousel_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}
section.home_banner_topo .carousel_bg .slick-list,
section.home_banner_topo .carousel_bg .slick-track {
  height: 100%;
}
section.home_banner_topo .carousel_bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1100px;
  height: 100%;
  /*background-image: linear-gradient(to right, #004165 , transparent);*/
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}
section.home_banner_topo .carousel_bg .item {
  height: 100%;
  background-position: center;
  background-size: cover;
}
section.home_banner_topo .carousel_bg .item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(2, 0, 36);
  background: -webkit-gradient(linear, left top, right top, from(rgba(2, 0, 36, 0.8659838936)), to(rgba(0, 0, 0, 0.4822303922)));
  background: linear-gradient(90deg, rgba(2, 0, 36, 0.8659838936) 0%, rgba(0, 0, 0, 0.4822303922) 100%);
  opacity: 0.6;
}
section.home_banner_topo .carousel_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  z-index: 1;
}
section.home_banner_topo .carousel_content:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border: 2px solid #338bbb;
  border-top: none;
  border-right: none;
  width: 565px;
  height: 425px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  pointer-events: none;
}
section.home_banner_topo .carousel_content .dots {
  width: 110px;
  padding: 110px 0 0;
}
section.home_banner_topo .carousel_content .dots ul {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  display: -webkit-flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
section.home_banner_topo .carousel_content .dots ul li {
  margin: 15px 0;
  width: 13px;
  height: 13px;
}
section.home_banner_topo .carousel_content .dots ul li.slick-active button {
  border-color: #0089d5;
  background: #0089d5;
  opacity: 1;
}
section.home_banner_topo .carousel_content .dots ul li button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #ffffff;
  opacity: 0.7;
}
section.home_banner_topo .carousel_content .dots ul li button:before {
  display: none;
}
section.home_banner_topo .carousel_content .carousel {
  width: 565px;
  overflow: hidden;
  border: 2px solid #719da3;
  border-bottom: none;
  margin: 0;
}
section.home_banner_topo .carousel_content .carousel .item {
  height: 465px;
  padding: 95px 50px 0 85px;
}
section.home_banner_topo .carousel_content .carousel .item h2 {
  color: white;
  font-size: 56px;
  line-height: 56px;
  font-weight: bold;
  margin: 0 0 30px;
  font-family: "Kanit", sans-serif !important;
}
section.home_banner_topo .carousel_content .carousel .item p.bairro {
  color: white;
  font-size: 12px;
  font-weight: bold;
  line-height: 15px;
  margin: 0;
  letter-spacing: 1px;
  font-family: "Kanit", sans-serif !important;
}
section.home_banner_topo .carousel_content .carousel .item p.descricao_home {
  color: white;
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin: 0;
  letter-spacing: 1px;
  font-family: "Kanit", sans-serif !important;
}
section.home_banner_topo .carousel_content .carousel .item .dados {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 1px;
  color: white;
}
section.home_banner_topo .carousel_content .carousel .item .dados span {
  font-family: "Kanit", sans-serif !important;
}
section.home_banner_topo .carousel_content .carousel .item .dados span:first-child::before {
  display: none;
}
section.home_banner_topo .carousel_content .carousel .item .dados span:before {
  content: "|";
  margin: 0 15px 0 10px;
}
section.home_banner_topo .carousel_content .carousel .item a.link {
  background: #25588b;
  display: block;
  font-size: 19px;
  letter-spacing: 2px;
  font-weight: 400;
  color: white;
  padding: 12px 35px 12px 35px;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  position: relative;
  margin: 20px 0 0;
}
section.home_banner_topo .carousel_content .carousel .item a.link:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #19528C;
  text-decoration: none;
}
section.home_banner_topo .carousel_content .arrows {
  position: absolute;
  width: 142px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  right: 0;
  bottom: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
section.home_banner_topo .carousel_content .arrows button {
  width: 50%;
  height: 100%;
  border: 2px solid #719da3;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.home_banner_topo .carousel_content .arrows button:hover {
  background: #19528c;
}
section.home_banner_topo .carousel_content .arrows button.next {
  border-left: none;
}
section.home_banner_topo .carousel_content .arrows button.next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 1300px) {
  section.home_banner_topo {
    height: 600px;
  }
  section.home_banner_topo .carousel_content:before {
    width: 500px;
    height: 300px;
  }
  section.home_banner_topo .carousel_content .dots {
    width: 80px;
  }
  section.home_banner_topo .carousel_content .carousel {
    width: 500px;
  }
  section.home_banner_topo .carousel_content .carousel .item {
    height: 400px;
    padding: 70px 30px 0 60px;
  }
  section.home_banner_topo .carousel_content .carousel .item h2 {
    font-size: 50px;
    line-height: 50px;
    margin: 0 0 25px;
  }
}
@media (max-width: 1000px) {
  section.home_banner_topo {
    height: 550px;
  }
  section.home_banner_topo .carousel_content:before {
    display: none;
  }
}
@media (max-width: 800px) {
  section.home_banner_topo {
    height: 500px;
  }
  section.home_banner_topo .carousel_bg:before {
    width: 100%;
    height: 100%;
    /*background-image: linear-gradient(to right, rgba(0, 65, 101, 0.9), rgba(0, 65, 101, 0.7));*/
  }
  section.home_banner_topo .carousel_content {
    width: 100%;
    height: 100%;
  }
  section.home_banner_topo .carousel_content .dots {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    padding: 0 0 35px;
  }
  section.home_banner_topo .carousel_content .dots ul {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.home_banner_topo .carousel_content .dots ul li {
    margin: 0 10px;
  }
  section.home_banner_topo .carousel_content .carousel {
    width: 100%;
    border: none;
  }
  section.home_banner_topo .carousel_content .carousel .slick-list,
  section.home_banner_topo .carousel_content .carousel .slick-track {
    height: 100%;
  }
  section.home_banner_topo .carousel_content .carousel .item {
    width: 100%;
    height: 100%;
    padding: 170px 35px 70px;
  }
  section.home_banner_topo .carousel_content .carousel .item h2 {
    text-align: center;
  }
  section.home_banner_topo .carousel_content .carousel .item p.bairro {
    text-align: center;
  }
  section.home_banner_topo .carousel_content .carousel .item .dados {
    text-align: center;
  }
  section.home_banner_topo .carousel_content .carousel .item a.link {
    margin: 40px auto 0;
  }
  section.home_banner_topo .carousel_content .arrows {
    display: none;
  }
}
@media (max-width: 600px) {
  section.home_banner_topo {
    height: 480px;
  }
  section.home_banner_topo .carousel_content .dots {
    padding: 0 0 30px;
  }
  section.home_banner_topo .carousel_content .carousel .item {
    padding: 175px 25px 55px;
  }
  section.home_banner_topo .carousel_content .carousel .item p.descricao_home {
    text-align: center;
    font-size: 19px;
  }
  section.home_banner_topo .carousel_content .carousel .item h2 {
    font-size: 30px;
    line-height: 30px;
  }
  section.home_banner_topo .carousel_content .carousel .item a.link {
    font-size: 13px;
    margin: 30px auto 0;
  }
}
section.home_institucional {
  position: relative;
  z-index: 1;
}
section.home_institucional .content {
  width: 1560px;
  margin: 0 auto;
  padding: 155px 0 100px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.home_institucional .content .image {
  position: relative;
  width: 850px;
  height: 430px;
  background-position: center;
  background-size: cover;
  border-radius: 100px 0 0 0;
}
section.home_institucional .content .text {
  width: calc(100% - 850px);
  padding: 35px 0 0 100px;
}
section.home_institucional .content .text h2 {
  font-size: 34px;
  line-height: 42px;
  color: #000000;
  margin: 0 0 40px;
  font-family: "Kanit", sans-serif;
}
section.home_institucional .content .text p {
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  margin: 0 0 70px;
  font-family: "Kanit", sans-serif;
}
section.home_institucional .content .text a {
  display: block;
  width: 235px;
  border: 1px solid #005787;
  border-radius: 50px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #004165;
  padding: 15px 0;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.home_institucional .content .text a:hover {
  background: #005787;
  color: white;
}
@media (max-width: 1650px) {
  section.home_institucional .content {
    width: 1300px;
    padding: 155px 0 100px;
  }
  section.home_institucional .content .image {
    width: 750px;
    height: 380px;
  }
  section.home_institucional .content .image svg.icon_1 {
    right: 200px;
    top: -55px;
    width: 180px;
  }
  section.home_institucional .content .image svg.icon_2 {
    bottom: -60px;
    width: 500px;
  }
  section.home_institucional .content .text {
    width: calc(100% - 750px);
    padding: 30px 0 0 80px;
  }
}
@media (max-width: 1400px) {
  section.home_institucional .content {
    width: 1200px;
    padding: 130px 0 80px;
  }
  section.home_institucional .content .image {
    width: 650px;
    height: 330px;
  }
  section.home_institucional .content .image svg.icon_1 {
    right: 170px;
    top: -45px;
    width: 150px;
  }
  section.home_institucional .content .image svg.icon_2 {
    bottom: -50px;
    width: 400px;
  }
  section.home_institucional .content .text {
    width: calc(100% - 650px);
  }
  section.home_institucional .content .text h2 {
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 25px;
  }
  section.home_institucional .content .text p {
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 40px;
  }
}
@media (max-width: 1250px) {
  section.home_institucional .content {
    width: 750px;
  }
  section.home_institucional .content .image {
    width: 100%;
    height: 380px;
  }
  section.home_institucional .content .image svg.icon_1 {
    right: 200px;
    top: -55px;
    width: 180px;
  }
  section.home_institucional .content .image svg.icon_2 {
    bottom: -60px;
    width: 500px;
  }
  section.home_institucional .content .text {
    width: 100%;
    padding: 100px 0 0 0;
  }
  section.home_institucional .content .text h2 {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 25px;
  }
  section.home_institucional .content .text p {
    text-align: center;
  }
  section.home_institucional .content .text a {
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  section.home_institucional .content {
    width: 650px;
  }
  section.home_institucional .content .image {
    height: 330px;
  }
  section.home_institucional .content .image svg.icon_1 {
    right: 170px;
    top: -45px;
    width: 150px;
  }
  section.home_institucional .content .image svg.icon_2 {
    bottom: -50px;
    width: 400px;
  }
}
@media (max-width: 750px) {
  section.home_institucional .content {
    width: 500px;
    padding: 100px 0 60px;
  }
  section.home_institucional .content .image {
    height: 255px;
  }
  section.home_institucional .content .image svg.icon_1 {
    right: 120px;
    top: -41px;
    width: 130px;
  }
  section.home_institucional .content .image svg.icon_2 {
    bottom: -45px;
    width: 320px;
    right: -22px;
  }
  section.home_institucional .content .text {
    padding: 80px 0 0 0;
  }
  section.home_institucional .content .text h2 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 auto 20px;
  }
  section.home_institucional .content .text p {
    line-height: 26px;
    margin: 0 0 35px;
  }
}
@media (max-width: 550px) {
  section.home_institucional .content {
    width: 100%;
    padding: 95px 25px 70px;
  }
  section.home_institucional .content .image {
    width: 85.556vw;
    height: 43.056vw;
    margin: 0 auto;
  }
  section.home_institucional .content .image svg.icon_1 {
    width: 20.278vw;
    top: -6.667vw;
    right: 22.222vw;
  }
  section.home_institucional .content .image svg.icon_2 {
    width: 62.5vw;
    right: -4.167vw;
    bottom: -8.333vw;
  }
  section.home_institucional .content .text {
    padding: 60px 0 0 0;
  }
  section.home_institucional .content .text h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
section.home_empreendimentos .content {
  width: 1675px;
  margin: 0 auto;
  padding: 100px 0 30px;
}
section.home_empreendimentos .content h2 {
  border-left: 8px solid #a6281c;
  font-size: 36px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
  margin: 0 0 55px;
  padding: 0 0 0 45px;
  font-family: "Kanit", sans-serif;
}
section.home_empreendimentos .content .carousel_content .carousel {
  overflow: hidden;
  margin: 0 0 65px;
}
section.home_empreendimentos .content .carousel_content .carousel .item {
  width: 525px;
  margin: 0 25px;
  position: relative;
}
section.home_empreendimentos .content .carousel_content .carousel .item:hover * {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
section.home_empreendimentos .content .carousel_content .carousel .item:hover .image {
  border-radius: 0 40px 0 40px;
  -webkit-box-shadow: 2px 2px 2px #19528c;
          box-shadow: 2px 2px 2px #19528c;
}
section.home_empreendimentos .content .carousel_content .carousel .item:hover p.setor {
  color: #19528c;
}
section.home_empreendimentos .content .carousel_content .carousel .item:hover h3 {
  color: #19528c;
}
section.home_empreendimentos .content .carousel_content .carousel .item:hover .dados {
  color: #19528c;
}
section.home_empreendimentos .content .carousel_content .carousel .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
section.home_empreendimentos .content .carousel_content .carousel .item .image {
  position: relative;
  width: 100%;
  height: 385px;
  background-position: center;
  background-size: cover;
  margin: 0 0 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.home_empreendimentos .content .carousel_content .carousel .item .image p.categoria {
  position: absolute;
  left: 0;
  top: 0;
  background: #19528c;
  color: white;
  border-radius: 0 0 50px 0;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 35px 5px 25px;
  min-width: 180px;
  font-family: "Kanit", sans-serif;
}
section.home_empreendimentos .content .carousel_content .carousel .item p.setor {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1px;
  color: #4b4b4b;
  margin: 0 0 10px;
  padding: 0 0 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Kanit", sans-serif;
}
section.home_empreendimentos .content .carousel_content .carousel .item p.setor:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: #19528c;
}
section.home_empreendimentos .content .carousel_content .carousel .item h3 {
  color: #4b4b4b;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  margin: 0 0 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Kanit", sans-serif;
}
section.home_empreendimentos .content .carousel_content .carousel .item .dados {
  color: #919191;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1px;
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.home_empreendimentos .content .carousel_content .carousel .item .dados span {
  font-family: "Kanit", sans-serif !important;
}
section.home_empreendimentos .content .carousel_content .carousel .item .dados span:first-child:before {
  display: none;
}
section.home_empreendimentos .content .carousel_content .carousel .item .dados span:before {
  content: "|";
  margin: 0 13px 0 10px;
}
section.home_empreendimentos .content .carousel_content .dots ul li {
  width: 13px;
  height: 13px;
  margin: 0 10px;
}
section.home_empreendimentos .content .carousel_content .dots ul li.slick-active button {
  border-color: #19528C;
  background: #19528C;
}
section.home_empreendimentos .content .carousel_content .dots ul li button {
  width: 100%;
  height: 100%;
  border: 1px solid #878787;
  border-radius: 50%;
}
section.home_empreendimentos .content .carousel_content .dots ul li button:before {
  display: none;
}
section.home_empreendimentos .content a.ver_todos {
  display: block;
  width: 235px;
  border: 1px solid #005787;
  border-radius: 40px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 15px 0;
  margin: 0 auto;
  text-align: center;
  color: #004165;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.home_empreendimentos .content a.ver_todos:hover {
  background: #005787;
  color: white;
}
@media (max-width: 1920px) {
  section.home_empreendimentos .content {
    width: 1410px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item {
    margin: 0 15px;
    width: 350px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item .image {
    height: 500px;
  }
}
@media (max-width: 1500px) {
  section.home_empreendimentos .content {
    padding: 50px 0;
    width: 1260px;
  }
  section.home_empreendimentos .content h2 {
    font-size: 34px;
    line-height: 40px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item {
    width: 300px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item .image {
    height: 400px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item h3 {
    font-size: 26px;
    line-height: 32px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item .dados {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (max-width: 1300px) {
  section.home_empreendimentos .content {
    width: 100%;
    padding: 50px 0 80px 50px;
  }
  section.home_empreendimentos .content .carousel_content .carousel {
    margin: 0 0 40px;
  }
  section.home_empreendimentos .content .carousel_content .dots {
    margin: 0 0 50px;
  }
}
@media (max-width: 550px) {
  section.home_empreendimentos .content {
    padding: 60px 0 80px 25px;
  }
  section.home_empreendimentos .content h2 {
    font-size: 24px;
    padding: 0 0 0 25px;
    margin: 0 0 40px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item {
    width: 220px;
    margin: 0 7px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item .image {
    height: 290px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item .image p.categoria {
    font-size: 10px;
    padding: 5px 25px 4px 20px;
    min-width: 145px;
    font-weight: 600;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item p.setor {
    font-size: 12px;
    line-height: 15px;
    margin: 0 0 15px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item p.setor:before {
    width: 14px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item h3 {
    font-size: 22px;
    line-height: 27px;
    margin: 0 0 5px;
  }
  section.home_empreendimentos .content .carousel_content .carousel .item .dados {
    font-size: 13px;
    line-height: 16px;
  }
}
@media (min-width: 450px) {
  section.home_empreendimentos .carousel_content .carousel .item {
    width: 220px;
    margin: 0 7px;
  }
  section.home_empreendimentos .carousel_content .carousel .item .image {
    height: 290px;
  }
}
section.home_blog {
  padding: 105px 0 140px;
}
section.home_blog h2 {
  position: relative;
  background: #19528c;
  color: white;
  width: 80.7vw;
  margin: 0 0 0 auto;
  height: 330px;
  font-size: 40px;
  font-weight: 400;
  border-radius: 35px 0 0 0;
  padding: 40px 0 0 60px;
  font-family: "Kanit", sans-serif;
}
section.home_blog h2 img {
  position: absolute;
  right: 0;
  top: -105px;
}
section.home_blog .carousel {
  overflow: hidden;
  margin: -215px 0 45px;
}
section.home_blog .carousel .item {
  width: 33vw;
  max-width: 635px;
  margin: 0 0.25vw;
}
section.home_blog .carousel .item:hover .image {
  border-radius: 0 40px 0 40px;
  -webkit-box-shadow: 2px 2px 2px #19528c;
          box-shadow: 2px 2px 2px #19528c;
}
section.home_blog .carousel .item .image {
  width: 100%;
  height: 17.7vw;
  max-height: 340px;
  position: relative;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.home_blog .carousel .item .image a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
section.home_blog .carousel .item .content {
  padding: 30px 50px;
}
section.home_blog .carousel .item .content p.data {
  font-size: 12px;
  color: #005787;
  line-height: 15px;
  margin: 0 0 25px;
  font-family: "Kanit", sans-serif;
}
section.home_blog .carousel .item .content h3 {
  font-size: 22px;
  line-height: 24px;
  color: #858585;
  margin: 0 0 30px;
  font-family: "Kanit", sans-serif;
}
section.home_blog .carousel .item .content a.ler_noticia {
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  position: relative;
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 16px;
  color: #004165;
  font-weight: 400;
  padding: 5px 10px 5px 80px;
  font-family: "Kanit", sans-serif;
}
section.home_blog .carousel .item .content a.ler_noticia:before {
  content: "";
  position: absolute;
  width: 63px;
  height: 1px;
  background: #000000;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
section.home_blog .dots ul li {
  width: 13px;
  height: 13px;
  margin: 0 10px;
}
section.home_blog .dots ul li.slick-active button {
  border-color: #19528C;
  background: #19528C;
}
section.home_blog .dots ul li button {
  width: 100%;
  height: 100%;
  border: 1px solid #878787;
  border-radius: 50%;
}
section.home_blog .dots ul li button:before {
  display: none;
}
section.home_blog a.ver_todas {
  width: 235px;
  border: 1px solid #19528c;
  border-radius: 50px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #19528c;
  letter-spacing: 2px;
  display: block;
  text-align: center;
  padding: 15px 0;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Kanit", sans-serif;
}
section.home_blog a.ver_todas:hover {
  background: #19528c;
  color: white;
}
@media (max-width: 1550px) {
  section.home_blog h2 svg {
    width: 650px;
    height: auto;
    top: -80px;
  }
  section.home_blog .carousel {
    margin: -215px 0 30px;
  }
  section.home_blog .carousel .item .content {
    padding: 30px;
  }
  section.home_blog .carousel .item .content p.data {
    margin: 0 0 20px;
  }
  section.home_blog .carousel .item .content h3 {
    font-size: 20px;
    line-height: 22px;
    margin: 0 0 25px;
  }
}
@media (max-width: 1300px) {
  section.home_blog {
    padding: 50px 0 100px;
  }
  section.home_blog h2 {
    width: 85vw;
    font-size: 36px;
    padding: 35px 0 0 55px;
  }
  section.home_blog h2 svg {
    width: 500px;
    height: auto;
    top: -40px;
  }
  section.home_blog .carousel {
    padding: 0 0 0 35px;
    margin: -230px 0 15px;
  }
  section.home_blog .carousel .item {
    width: 430px;
  }
  section.home_blog .carousel .item .image {
    height: 230px;
  }
  section.home_blog .carousel .item .content {
    padding: 25px;
  }
  section.home_blog .dots {
    margin: 0 0 40px;
  }
}
@media (max-width: 950px) {
  section.home_blog {
    padding: 0 0 100px;
  }
  section.home_blog h2 {
    width: 100%;
    padding: 35px 0 0 0;
    text-align: center;
    height: 235px;
    font-size: 32px;
  }
  section.home_blog h2 svg {
    display: none;
  }
  section.home_blog .carousel {
    margin: -140px 0 15px;
  }
  section.home_blog .carousel .item {
    width: 350px;
    margin: 0 10px 0 0;
  }
  section.home_blog .carousel .item .image {
    height: 188px;
  }
  section.home_blog .carousel .item .content {
    padding: 25px 15px 25px 0px;
  }
  section.home_blog .carousel .item .content h3 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 20px;
  }
}
@media (max-width: 550px) {
  section.home_blog {
    padding: 0 0 125px;
  }
  section.home_blog h2 {
    height: 200px;
    font-size: 28px;
  }
  section.home_blog .carousel {
    margin: -110px 0 0;
    padding: 0 0 0 25px;
  }
  section.home_blog .carousel .item {
    width: 280px;
  }
  section.home_blog .carousel .item .image {
    height: 150px;
  }
  section.home_blog .carousel .item .content {
    padding: 20px 10px 20px 0px;
  }
  section.home_blog .carousel .item .content p.data {
    font-size: 11px;
  }
  section.home_blog .carousel .item .content h3 {
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 15px;
  }
  section.home_blog .carousel .item .content a.ler_noticia {
    font-size: 11px;
  }
  section.home_blog .carousel .item .content a.ler_noticia:before {
    width: 58px;
  }
}

section.institucional_header {
  overflow: hidden;
}
section.institucional_header .imagem {
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  position: relative;
}
section.institucional_header .imagem:before {
  content: "";
  position: absolute;
  background: black;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
section.institucional_header .content {
  margin: -20px 0 0 0;
  position: relative;
  font-family: "Kanit", sans-serif;
}
section.institucional_header .content h1 {
  font-size: 34px;
  line-height: 42px;
  color: white;
  -webkit-transform: translateY(-95px);
          transform: translateY(-95px);
  position: relative;
  z-index: 1;
  text-align: center;
}
section.institucional_header .content h1 span {
  color: #19528c;
  border-bottom: 2px solid #27b2ff;
}
section.institucional_header .content img {
  position: absolute;
}
section.institucional_header .content img.icone {
  top: -140px;
  left: 915px;
}
@media (max-width: 1550px) {
  section.institucional_header .imagem {
    height: 300px;
  }
  section.institucional_header .content h1 {
    font-size: 34px;
    line-height: 42px;
  }
  section.institucional_header .content h1 span {
    padding: 0 0 15px;
  }
  section.institucional_header .content svg {
    height: auto;
  }
  section.institucional_header .content svg.icone {
    width: 650px;
    top: -90px;
    left: 830px;
  }
  section.institucional_header .content svg.circles {
    width: 170px;
    top: 55px;
    left: 800px;
  }
}
@media (max-width: 1300px) {
  section.institucional_header .imagem {
    height: 250px;
  }
  section.institucional_header .content h1 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 1000px) {
  section.institucional_header .content h1 {
    font-size: 34px;
    line-height: 42px;
  }
  section.institucional_header .content svg.icone {
    width: 500px;
    top: -80px;
    left: 700px;
  }
  section.institucional_header .content svg.circles {
    width: 140px;
    top: 45px;
    left: 700px;
  }
}
@media (max-width: 800px) {
  section.institucional_header .content h1 {
    font-size: 45px;
    line-height: 45px;
  }
  section.institucional_header .content h1 span {
    padding: 0 0 10px;
  }
  section.institucional_header .content svg.icone {
    display: none;
  }
  section.institucional_header .content svg.circles {
    left: initial;
    right: -35px;
    width: 205px;
  }
}
@media (max-width: 600px) {
  section.institucional_header .imagem {
    height: 250px;
  }
  section.institucional_header .content {
    padding: 0;
  }
  section.institucional_header .content h1 {
    font-size: 32px;
    line-height: 38px;
  }
  section.institucional_header .content h1 span {
    border-bottom: 2px solid rgba(0, 0, 0, 0);
  }
  section.institucional_header .content h1 br {
    display: none;
  }
}
section.institucional_content .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0 60px;
}
section.institucional_content .content .paginas {
  width: 565px;
}
section.institucional_content .content .paginas a:nth-child(1),
section.institucional_content .content .paginas a:nth-child(2) {
  display: none;
}
section.institucional_content .content .paginas a {
  position: relative;
  display: block;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  color: #b8b8b8;
  padding: 5px 10px 5px 140px;
  margin: 0 0 40px;
  font-family: "Kanit", sans-serif;
}
section.institucional_content .content .paginas a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 103px;
  height: 6px;
  background: #b8b8b8;
}
section.institucional_content .content .paginas a.active {
  color: #000000;
}
section.institucional_content .content .paginas a.active:before {
  background: #19528c;
}
section.institucional_content .content .paginas a:hover {
  color: #000000;
}
section.institucional_content .content .text_content {
  width: 940px;
}
section.institucional_content .content .text_content .editable-content {
  margin: 0 0 50px;
}
section.institucional_content .content .text_content .editable-content h2 {
  font-size: 34px;
  line-height: 42px;
  color: #000000;
  margin: 0 0 30px;
}
section.institucional_content .content .text_content .editable-content h3 {
  font-size: 28px;
  line-height: 36px;
  color: #000000;
  margin: 0 0 25px;
}
section.institucional_content .content .text_content .editable-content h4 {
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin: 0 0 20px;
}
section.institucional_content .content .text_content .editable-content p {
  font-size: 16px;
  line-height: 30px;
  color: #505050;
  font-weight: 300;
}
section.institucional_content .content .text_content .editable-content img {
  max-width: 100%;
  max-height: 100%;
  margin: 10px auto 10px;
  display: block;
  height: auto;
}
section.institucional_content .content .text_content .editable-content img.imgFull {
  height: auto;
  margin: 20px auto;
}
section.institucional_content .content .text_content .editable-content img.imgRight {
  float: right;
  margin: 0 0 10px 20px;
  max-width: 50%;
}
section.institucional_content .content .text_content .editable-content img.imgLeft {
  float: left;
  margin: 0 20px 10px 0;
  max-width: 50%;
}
section.institucional_content .content .text_content .editable-content iframe.video-youtube {
  width: 100%;
  height: 478px;
}
section.institucional_content .content .text_content .galeria {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.institucional_content .content .text_content .galeria a {
  display: block;
  width: 300px;
  height: 170px;
  margin: 0 20px 25px 0;
  background-position: center;
  background-size: cover;
}
section.institucional_content .content .text_content .galeria a:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1600px) {
  section.institucional_content .content .paginas {
    width: 480px;
  }
  section.institucional_content .content .text_content {
    width: 750px;
  }
  section.institucional_content .content .text_content .galeria a {
    width: 243px;
    height: 145px;
    margin: 0 10px 15px 0;
  }
}
@media (max-width: 1300px) {
  section.institucional_content .content .paginas {
    width: 400px;
  }
  section.institucional_content .content .paginas a {
    padding: 5px 10px 5px 95px;
    font-size: 18px;
    line-height: 22px;
  }
  section.institucional_content .content .paginas a:before {
    width: 70px;
    height: 4px;
  }
  section.institucional_content .content .text_content {
    width: 650px;
  }
  section.institucional_content .content .text_content .editable-content {
    margin: 0 0 35px;
  }
  section.institucional_content .content .text_content .editable-content h2 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 25px;
  }
  section.institucional_content .content .text_content .editable-content h3 {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 20px;
  }
  section.institucional_content .content .text_content .editable-content h4 {
    font-size: 18px;
    line-height: 25px;
    margin: 0 0 15px;
  }
  section.institucional_content .content .text_content .editable-content p {
    font-size: 14px;
    line-height: 26px;
  }
  section.institucional_content .content .text_content .editable-content img {
    max-width: 100%;
    max-height: 100%;
    margin: 10px auto 10px;
    display: block;
    height: auto;
  }
  section.institucional_content .content .text_content .editable-content img.imgFull {
    height: auto;
    margin: 20px auto;
  }
  section.institucional_content .content .text_content .editable-content img.imgRight {
    float: initial;
    margin: 10px auto 10px;
    max-width: 100%;
  }
  section.institucional_content .content .text_content .editable-content img.imgLeft {
    float: initial;
    margin: 10px auto 10px;
    max-width: 100%;
  }
  section.institucional_content .content .text_content .galeria a {
    width: 210px;
    height: 130px;
    margin: 0 10px 10px 0;
  }
}
@media (max-width: 1100px) {
  section.institucional_content .content {
    padding: 20px 0 60px;
  }
  section.institucional_content .content .paginas {
    width: 450px;
    padding-top: 50px;
    overflow: hidden;
    border: 1px solid #707070;
    margin: 0 0 60px;
    background: white;
    position: relative;
  }
  section.institucional_content .content .paginas[active=false] {
    height: 0;
  }
  section.institucional_content .content .paginas a {
    width: 100%;
    padding: 14px 40px 14px 30px;
    margin: 0;
  }
  section.institucional_content .content .paginas a:before {
    display: none;
  }
  section.institucional_content .content .paginas a.active {
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(./../img/select_1.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    pointer-events: none;
  }
  section.institucional_content .content .text_content {
    width: 850px;
  }
  section.institucional_content .content .text_content .editable-content img.imgRight {
    float: right;
    margin: 0 0 10px 20px;
    max-width: 50%;
  }
  section.institucional_content .content .text_content .editable-content img.imgLeft {
    float: left;
    margin: 0 20px 10px 0;
    max-width: 50%;
  }
  section.institucional_content .content .text_content .galeria a {
    width: 276px;
    height: 150px;
    margin: 0 11px 10px 0;
  }
}
@media (max-width: 950px) {
  section.institucional_content .content .paginas {
    width: 400px;
  }
  section.institucional_content .content .text_content {
    width: 700px;
  }
  section.institucional_content .content .text_content .galeria a {
    width: 230px;
    height: 140px;
    margin: 0 5px 10px 0;
  }
}
@media (max-width: 750px) {
  section.institucional_content .content .text_content {
    width: 100%;
    padding: 0 25px;
  }
  section.institucional_content .content .text_content .editable-content {
    margin: 0 0 35px;
  }
  section.institucional_content .content .text_content .editable-content h2 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 25px;
  }
  section.institucional_content .content .text_content .editable-content h3 {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 20px;
  }
  section.institucional_content .content .text_content .editable-content h4 {
    font-size: 18px;
    line-height: 25px;
    margin: 0 0 15px;
  }
  section.institucional_content .content .text_content .editable-content p {
    font-size: 14px;
    line-height: 26px;
  }
  section.institucional_content .content .text_content .editable-content img {
    max-width: 100%;
    max-height: 100%;
    margin: 10px auto 10px;
    display: block;
    height: auto;
  }
  section.institucional_content .content .text_content .editable-content img.imgFull {
    height: auto;
    margin: 20px auto;
  }
  section.institucional_content .content .text_content .editable-content img.imgRight {
    float: initial;
    margin: 10px auto 10px;
    max-width: 100%;
  }
  section.institucional_content .content .text_content .editable-content img.imgLeft {
    float: initial;
    margin: 10px auto 10px;
    max-width: 100%;
  }
  section.institucional_content .content .text_content .galeria a {
    width: 41.667vw;
    height: 23.611vw;
    margin: 0 5px 10px !important;
  }
}
@media (max-width: 450px) {
  section.institucional_content .content {
    padding: 20px 0 50px;
  }
  section.institucional_content .content .paginas {
    padding-top: 46px;
    width: 310px;
  }
  section.institucional_content .content .paginas a {
    padding: 14px 30px 14px 20px;
    font-size: 14px;
    line-height: 18px;
  }
  section.institucional_content .content .paginas a.active {
    background-position: calc(100% - 10px) center;
  }
  section.institucional_content .content .text_content .editable-content h2 {
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 20px;
  }
  section.institucional_content .content .text_content .editable-content h3 {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 15px;
  }
  section.institucional_content .content .text_content .editable-content h4 {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 10px;
  }
  section.institucional_content .content .text_content .galeria a {
    margin: 0 2px 7px !important;
  }
}

section.busca_header {
  position: relative;
  width: 100%;
  height: 400px;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px 0 0;
}
section.busca_header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.35;
}
section.busca_header h1 {
  font-size: 34px;
  line-height: 42px;
  color: #ffffff;
  margin: 0;
  text-align: center;
  position: relative;
  width: 100%;
  padding: 0 0 13px;
}
section.busca_header h1:before {
  content: "";
  position: absolute;
  width: 19px;
  height: 2px;
  background: #27b2ff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 550px) {
  section.busca_header h1 {
    font-size: 28px;
    line-height: 34px;
    padding: 0 0 7px;
  }
}
section.busca_categorias .content {
  margin: 0 auto;
  width: 1270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.17);
          box-shadow: 0 3px 30px rgba(0, 0, 0, 0.17);
  padding: 0 60px;
  border-radius: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: white;
}
section.busca_categorias .content a {
  position: relative;
  display: block;
  min-width: 157px;
  font-size: 16px;
  line-height: 20px;
  color: #19528c;
  text-align: center;
  padding: 28px 0 27px;
}
section.busca_categorias .content a.active:before {
  content: "";
  position: absolute;
  width: 157px;
  height: 4px;
  background: #19528c;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
@media (max-width: 1550px) {
  section.busca_categorias .content {
    padding: 0 40px;
    width: 1000px;
  }
}
@media (max-width: 1100px) {
  section.busca_categorias .content {
    padding: 0 25px;
    width: 800px;
  }
  section.busca_categorias .content a {
    min-width: 140px;
  }
  section.busca_categorias .content a.active:before {
    width: 140px;
  }
}
@media (max-width: 850px) {
  section.busca_categorias .content {
    padding: 0;
    padding-top: 70px;
    -webkit-transform: initial;
            transform: initial;
    position: relative;
    margin: -35px auto 0;
    width: 400px;
  }
  section.busca_categorias .content[active=false] {
    height: 0;
    overflow: hidden;
  }
  section.busca_categorias .content a {
    width: 100%;
    text-align: left;
    padding: 25px 55px 25px 25px;
    color: #000000;
  }
  section.busca_categorias .content a.active {
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(./../img/select_1.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    pointer-events: none;
  }
  section.busca_categorias .content a.active:before {
    display: none;
  }
}
@media (max-width: 550px) {
  section.busca_categorias .content {
    width: 310px;
  }
  section.busca_categorias .content a {
    font-size: 14px;
    padding: 15px 55px 15px 25px;
  }
  section.busca_categorias .content a.active {
    padding: 25px 55px 25px 25px;
  }
}
section.busca_lista .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1725px;
  margin: 0 auto;
  padding: 65px 0 0;
}
section.busca_lista .content .item {
  width: 525px;
  max-width: 525px;
  margin: 0 25px 120px;
  position: relative;
}
section.busca_lista .content .item:hover * {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
section.busca_lista .content .item:hover .image {
  border-radius: 0 40px 0 40px;
  -webkit-box-shadow: 2px 2px 2px #19528c;
          box-shadow: 2px 2px 2px #19528c;
}
section.busca_lista .content .item:hover p.setor {
  color: #19528c;
}
section.busca_lista .content .item:hover h3 {
  color: #19528c;
}
section.busca_lista .content .item:hover .dados {
  color: #19528c;
}
section.busca_lista .content .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
section.busca_lista .content .item .image {
  position: relative;
  width: 100%;
  height: 385px;
  background-position: center;
  background-size: cover;
  margin: 0 0 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.busca_lista .content .item .image p.categoria {
  position: absolute;
  left: 0;
  top: 0;
  background: #19528c;
  color: white;
  border-radius: 0 0 50px 0;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 35px 5px 25px;
  min-width: 180px;
}
section.busca_lista .content .item p.setor {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1px;
  color: #4b4b4b;
  margin: 0 0 10px;
  padding: 0 0 10px;
}
section.busca_lista .content .item p.setor:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: #19528c;
}
section.busca_lista .content .item h3 {
  color: #4b4b4b;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  margin: 0 0 10px;
}
section.busca_lista .content .item .dados {
  color: #919191;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 1px;
  margin: 0;
}
section.busca_lista .content .item .dados span:first-child:before {
  display: none;
}
section.busca_lista .content .item .dados span:before {
  content: "|";
  margin: 0 13px 0 10px;
}
@media (max-width: 1920px) {
  section.busca_lista .content {
    width: 80%;
  }
  section.busca_lista .content .item {
    max-width: 100%;
    width: 22%;
    margin: 0 1.38% 6.957vw;
  }
  section.busca_lista .content .item .image {
    height: 25.319vw;
  }
}
@media (max-width: 1725px) {
  section.busca_lista .content {
    width: 100%;
  }
  section.busca_lista .content .item {
    width: 30.4%;
    margin: 0 1.38% 6.957vw;
  }
  section.busca_lista .content .item .image {
    height: 37.319vw;
  }
}
@media (max-width: 1500px) {
  section.busca_lista .content .item h3 {
    font-size: 26px;
    line-height: 32px;
  }
  section.busca_lista .content .item h3 .image {
    height: 200px;
  }
  section.busca_lista .content .item .dados {
    font-size: 15px;
    line-height: 17px;
  }
}
@media (max-width: 1360px) {
  section.busca_lista .content {
    width: 800px;
    padding: 50px 0 0;
  }
  section.busca_lista .content .item {
    width: 350px;
    margin: 0 15px 70px;
  }
  section.busca_lista .content .item .image {
    height: 400px;
  }
}
@media (max-width: 900px) {
  section.busca_lista .content {
    width: 100%;
    padding: 50px 2.778vw 0;
  }
  section.busca_lista .content .item {
    width: 40.889vw;
    margin: 0 1.667vw 7.778vw;
  }
  section.busca_lista .content .item .image {
    height: 50.222vw;
  }
}
@media (max-width: 700px) {
  section.busca_lista .content {
    width: 100%;
    padding: 50px 0 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.busca_lista .content .item {
    width: 525px;
    margin: 0 0 50px;
  }
  section.busca_lista .content .item .image {
    height: 485px;
  }
}
@media (max-width: 600px) {
  section.busca_lista .content {
    padding: 65px 0 0;
  }
  section.busca_lista .content .item {
    width: 86.111vw;
    margin: 0 0 45px;
  }
  section.busca_lista .content .item .image {
    height: 100.056vw;
  }
  section.busca_lista .content .item .image p.categoria {
    font-size: 10px;
    min-width: 153px;
  }
  section.busca_lista .content .item p.setor {
    font-size: 12px;
    line-height: 15px;
    padding: 0 0 8px;
    margin: 0 0 15px;
  }
  section.busca_lista .content .item p.setor:before {
    width: 15px;
  }
  section.busca_lista .content .item h3 {
    font-size: 22px;
    line-height: 27px;
    margin: 0 0 5px;
  }
  section.busca_lista .content .item .dados {
    font-size: 13px;
    line-height: 16px;
  }
  section.busca_lista .content .item .dados span:before {
    margin: 0 12px 0 5px;
  }
}
section.paginacao {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 105px;
}
section.paginacao a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 47px;
  height: 47px;
  font-size: 22px;
  line-height: 47px;
  color: #404040;
  border-radius: 10px;
  margin: 0 10px;
}
section.paginacao a.active {
  background: #e4e4e4;
}
section.paginacao span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 47px;
  height: 47px;
  font-size: 22px;
  line-height: 47px;
  color: #404040;
  border-radius: 10px;
  pointer-events: none;
}
@media (max-width: 1300px) {
  section.paginacao {
    padding: 40px 0 105px;
  }
}
@media (max-width: 550px) {
  section.paginacao {
    padding: 40px 0 90px;
  }
  section.paginacao a {
    width: 43px;
    height: 43px;
    font-size: 20px;
    line-height: 43px;
    margin: 0 5px;
  }
  section.paginacao span {
    width: 25px;
    height: 43px;
    font-size: 20px;
    line-height: 43px;
  }
}

body#imovel section.footer_contact {
  display: block;
}

section.change_section_height {
  height: 750px !important;
}
section.imovel_header {
  position: relative;
  width: 100%;
  height: 650px;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 160px 0 0;
}
section.imovel_header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.7;
}
section.imovel_header .content {
  position: relative;
  width: 1200px;
  padding: 0 70px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.imovel_header .content .left_content {
  width: 580px;
}
section.imovel_header .content .left_content .link-360-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.imovel_header .content .left_content .section_torre_02 {
  margin-top: 30px;
}
section.imovel_header .content .left_content .torre-titulo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.imovel_header .content .left_content .torre-titulo h2 {
  padding-right: 6px;
  font-size: 20px;
  font-weight: 400;
  color: #07a7ff;
  margin: 0 0 10px;
  text-transform: uppercase;
}
section.imovel_header .content .left_content .torre-titulo p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 10px;
  text-transform: uppercase;
}
section.imovel_header .content .left_content h1 {
  font-size: 34px;
  line-height: 40px;
  font-weight: bold;
  margin: 0 0 20px;
  color: #ffffff;
  text-transform: uppercase;
}
section.imovel_header .content .left_content h2 {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 10px;
  text-transform: uppercase;
}
section.imovel_header .content .left_content p.desc {
  font-size: 32px;
  line-height: 36px;
  color: #ffffff;
  margin: 0 0 50px;
}
section.imovel_header .content .left_content .dados {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 25px 0 0;
}
section.imovel_header .content .left_content .dados .item h3 {
  font-size: 14px;
  font-weight: 400;
  color: #07a7ff;
  margin: 0 0 10px;
  text-transform: uppercase;
}
section.imovel_header .content .left_content .dados .item p {
  font-size: 16px;
  line-height: 19px;
  color: white;
  margin: 0;
}
section.imovel_header .content .left_content a.tuor {
  display: block;
  position: relative;
  z-index: 1;
  width: 200px;
  height: 45px;
  border: 1px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  color: white;
  border-radius: 10px;
  margin: 40px 0 0;
}
section.imovel_header .content .left_content a.tuor svg {
  margin-right: 10px;
}
section.imovel_header .content .right_content {
  width: 390px;
  margin-bottom: 40px;
}
section.imovel_header .content .right_content form {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.25);
  padding: 30px 35px 35px;
}
section.imovel_header .content .right_content form button.fechar {
  display: none;
  border: none;
  background: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  padding: 2px 10px;
  position: absolute;
  right: 25px;
  top: 12px;
}
section.imovel_header .content .right_content form button.fechar svg {
  height: auto;
  width: 10px;
  margin: 0 5px 0 0;
}
section.imovel_header .content .right_content form button.fechar svg * {
  fill: white;
}
section.imovel_header .content .right_content form h3 {
  font-size: 16px;
  line-height: 18px;
  color: white;
  margin: 0 0 18px;
  text-align: center;
}
section.imovel_header .content .right_content form input {
  width: 100%;
  height: 50px;
  background: rgba(109, 109, 109, 0.5);
  font-size: 13px;
  color: white;
  border-radius: 6px;
  border: none;
  padding: 0 20px;
  margin: 0 0 10px;
}
section.imovel_header .content .right_content form input::-webkit-input-placeholder {
  color: white;
}
section.imovel_header .content .right_content form input::-moz-placeholder {
  color: white;
}
section.imovel_header .content .right_content form input:-ms-input-placeholder {
  color: white;
}
section.imovel_header .content .right_content form input::-ms-input-placeholder {
  color: white;
}
section.imovel_header .content .right_content form input::placeholder {
  color: white;
}
section.imovel_header .content .right_content form input[type=checkbox] {
  display: none;
}
section.imovel_header .content .right_content form input[type=checkbox]:checked + label:before {
  background-image: url(./../img/checked.svg);
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
section.imovel_header .content .right_content form label {
  font-size: 11px;
  line-height: 12px;
  color: #d5d5d5;
  margin: 5px 0 15px;
  padding: 0 0 0 35px;
  position: relative;
}
section.imovel_header .content .right_content form label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #979797;
}
section.imovel_header .content .right_content form button.enviar {
  width: 100%;
  height: 50px;
  background: #19528c;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
}
section.imovel_header button.open_form {
  display: none;
  position: fixed;
  bottom: 75px;
  right: 30px;
  border: none;
  background: #25D366;
  color: white;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  width: 300px;
  height: 45px;
  z-index: 9;
  border-radius: 50px;
}
section.imovel_header button.open_form:hover {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0.7;
}
@media (max-width: 1300px) {
  section.imovel_header[active=true] .content .right_content {
    opacity: 1;
    pointer-events: all;
  }
  section.imovel_header .content {
    width: 100%;
    padding: 0 0 0 80px;
  }
  section.imovel_header .content .right_content {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.imovel_header .content .right_content form {
    max-width: 500px;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 50px 35px 35px;
  }
  section.imovel_header .content .right_content form button.fechar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  section.imovel_header button.open_form {
    display: block;
  }
}
@media (max-width: 900px) {
  section.imovel_header {
    height: 575px;
    padding: 110px 0 0;
  }
  section.imovel_header button.open_form {
    bottom: 60px;
  }
  section.imovel_header .content {
    padding: 0 20px;
    max-width: 560px;
  }
  section.imovel_header .content .left_content {
    width: 100%;
  }
  section.imovel_header .content .left_content h1 {
    text-align: center;
  }
  section.imovel_header .content .left_content p.desc {
    font-size: 26px;
    line-height: 28px;
    text-align: center;
  }
  section.imovel_header .content .left_content .dados {
    padding: 0;
  }
  section.imovel_header .content .left_content .dados .item {
    text-align: center;
  }
  section.imovel_header .content .left_content a.tuor {
    margin: 40px auto 0;
  }
  section.imovel_header button.open_form {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 285px;
    height: 40px;
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  section.imovel_header {
    height: 600px;
    padding: 100px 0 0;
  }
  section.imovel_header.change_section_height {
    height: 900px !important;
  }
  section.imovel_header button.open_form {
    bottom: 60px;
  }
  section.imovel_header .content .left_content .link-360-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  section.imovel_header .content .left_content .section_torre_02 {
    margin-top: 10px;
  }
  section.imovel_header .content .left_content .torre-titulo {
    width: 270px;
    margin: 0 auto;
  }
  section.imovel_header .content .left_content p.desc {
    font-size: 24px;
    line-height: 26px;
    margin: 0 0 35px;
  }
  section.imovel_header .content .left_content .dados {
    width: 270px;
    margin: 0 auto;
  }
  section.imovel_header .content .left_content .dados .item {
    min-width: 90px;
    text-align: left;
    margin: 0 0 40px;
  }
  section.imovel_header .content .left_content .dados .item:nth-child(2n) {
    margin-left: 50px;
  }
  section.imovel_header .content .left_content a.tuor {
    margin: 0 auto;
  }
  section.imovel_header .content .right_content form {
    padding: 50px 20px 35px;
  }
  section.imovel_header .content .right_content form button.fechar {
    right: 10px;
  }
}
section.imovel_description .content {
  width: 1200px;
  padding: 60px 40px 125px 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.imovel_description .content .image {
  width: 545px;
  height: 600px;
  max-width: 545px;
  max-height: 670px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
section.imovel_description .content .text {
  width: calc(100% - 545px);
  padding: 0 0 0 30px;
}
section.imovel_description .content .text .logo {
  width: 325px;
  height: 100px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0 35px;
}
section.imovel_description .content .text h2 {
  font-size: 34px;
  line-height: 42px;
  color: #131313;
  margin: 0 0 35px;
}
section.imovel_description .content .text p {
  font-size: 16px;
  line-height: 30px;
  color: #131313;
  margin: 0;
}
@media (max-width: 1920px) {
  section.imovel_description .content {
    padding: 50px 0 100px;
    width: 1500px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.imovel_description .content .image {
    width: 100%;
    height: 650px;
    background-size: cover;
  }
  section.imovel_description .content .text {
    width: calc(100% - 500px);
    padding: 0 0 0 80px;
  }
  section.imovel_description .content .text video {
    width: 600px;
    height: 300px;
  }
}
@media (max-width: 1536px) {
  section.imovel_description .content {
    padding: 50px 0 100px;
    width: 1300px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.imovel_description .content .image {
    width: 100%;
    height: 650px;
    background-size: cover;
  }
  section.imovel_description .content .text {
    width: calc(100% - 500px);
    padding: 0 0 0 80px;
  }
  section.imovel_description .content .text video {
    width: 550px;
    height: 300px;
  }
}
@media (max-width: 1300px) {
  section.imovel_description .content {
    padding: 50px 0 100px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.imovel_description .content .image {
    width: 100%;
    height: 650px;
    background-size: cover;
  }
  section.imovel_description .content .text {
    width: calc(100% - 500px);
    padding: 0 0 0 60px;
  }
}
@media (max-width: 1100px) {
  section.imovel_description .content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 50px 30px 100px;
  }
  section.imovel_description .content .image {
    width: 545px;
    height: 650px;
  }
  section.imovel_description .content .text {
    width: 545px;
    padding: 50px 0 0;
  }
  section.imovel_description .content .text .logo {
    margin: 0 auto 35px;
    background-position: center;
  }
  section.imovel_description .content .text h2 {
    text-align: center;
  }
  section.imovel_description .content .text p {
    text-align: center;
  }
}
@media (max-width: 650px) {
  section.imovel_description .content {
    padding: 40px 25px 40px;
  }
  section.imovel_description .content .image {
    width: 86.111vw;
    height: 98.056vw;
  }
  section.imovel_description .content .text {
    width: 100%;
  }
  section.imovel_description .content .text .logo {
    width: 200px;
  }
  section.imovel_description .content .text video {
    height: 250px;
    width: 300px;
  }
  section.imovel_description .content .text h2 {
    font-size: 24px;
    line-height: 26px;
    margin: 0 0 15px;
  }
}
section.imovel_galeria {
  background: rgba(86, 124, 145, 0.11);
  padding: 55px 0;
}
section.imovel_galeria .header_galeria {
  width: 790px;
  margin: 0 auto 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.imovel_galeria .header_galeria h2 {
  position: relative;
  font-size: 34px;
  line-height: 42px;
  color: #131313;
  margin: 0;
  padding: 0 0 5px;
}
section.imovel_galeria .header_galeria h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #19528c;
}
section.imovel_galeria .header_galeria select {
  background-color: #19528c;
  background-image: url(./../img/select_white.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  width: 230px;
  height: 43px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  color: white;
  padding: 0 35px 0 18px;
  cursor: pointer;
}
section.imovel_galeria .carousel_content {
  position: relative;
}
section.imovel_galeria .carousel_content .carousel {
  overflow: hidden;
}
section.imovel_galeria .carousel_content .carousel .item {
  width: 790px;
  max-width: 790px;
  margin: 0 17px;
}
section.imovel_galeria .carousel_content .carousel .item .image {
  position: relative;
  width: 100%;
  height: 485px;
  max-height: 485px;
  background-position: center;
  background-size: cover;
  margin: 0 0 15px;
}
section.imovel_galeria .carousel_content .carousel .item .image a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
section.imovel_galeria .carousel_content .carousel .item p {
  font-size: 15px;
  line-height: 19px;
  color: #131313;
  margin: 0;
}
section.imovel_galeria .carousel_content .dots {
  display: none;
}
section.imovel_galeria .carousel_content .dots ul li {
  width: 13px;
  height: 13px;
  margin: 0 10px;
}
section.imovel_galeria .carousel_content .dots ul li.slick-active button {
  border-color: #19528C;
  background: #19528C;
}
section.imovel_galeria .carousel_content .dots ul li button {
  width: 100%;
  height: 100%;
  border: 1px solid #878787;
  border-radius: 50%;
}
section.imovel_galeria .carousel_content .dots ul li button:before {
  display: none;
}
section.imovel_galeria .carousel_content .arrows {
  position: absolute;
  left: 0;
  top: 150px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}
section.imovel_galeria .carousel_content .arrows button {
  pointer-events: all;
  width: 90px;
  height: 180px;
  position: relative;
  overflow: hidden;
  border: none;
  background: transparent;
}
section.imovel_galeria .carousel_content .arrows button:before {
  content: "";
  position: absolute;
  background: #000000;
  opacity: 0.5;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: 0;
}
section.imovel_galeria .carousel_content .arrows button.prev:before {
  right: 0;
}
section.imovel_galeria .carousel_content .arrows button.prev svg {
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  left: 23px;
}
section.imovel_galeria .carousel_content .arrows button.next:before {
  left: 0;
}
section.imovel_galeria .carousel_content .arrows button.next svg {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 23px;
}
section.imovel_galeria .carousel_content .arrows button svg {
  position: absolute;
  top: 50%;
}
@media (max-width: 1100px) {
  section.imovel_galeria .header_galeria {
    width: 550px;
  }
  section.imovel_galeria .carousel_content .carousel .item {
    width: 550px;
    margin: 0 15px;
  }
  section.imovel_galeria .carousel_content .carousel .item .image {
    height: 337px;
  }
  section.imovel_galeria .carousel_content .arrows {
    top: 100px;
  }
  section.imovel_galeria .carousel_content .arrows button {
    width: 70px;
    height: 140px;
  }
  section.imovel_galeria .carousel_content .arrows button:before {
    width: 140px;
    height: 140px;
  }
  section.imovel_galeria .carousel_content .arrows button.prev svg {
    left: 15px;
  }
  section.imovel_galeria .carousel_content .arrows button.next svg {
    right: 15px;
  }
}
@media (max-width: 800px) {
  section.imovel_galeria .header_galeria {
    width: 100%;
    padding: 0 30px;
  }
  section.imovel_galeria .carousel_content .carousel {
    padding: 0 0 0 30px;
  }
  section.imovel_galeria .carousel_content .arrows {
    display: none;
  }
}
@media (max-width: 650px) {
  section.imovel_galeria {
    padding: 40px 0 35px;
  }
  section.imovel_galeria .header_galeria {
    margin: 0 auto 35px;
  }
  section.imovel_galeria .header_galeria h2 {
    width: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 34px;
    padding: 0 0 8px;
    margin: 0 0 35px;
  }
  section.imovel_galeria .header_galeria h2:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  section.imovel_galeria .header_galeria select {
    width: 203px;
    margin: 0 auto;
  }
  section.imovel_galeria .carousel_content .carousel {
    padding: 0;
    margin: 0 0 35px;
  }
  section.imovel_galeria .carousel_content .carousel .item {
    width: 78.333vw;
    margin: 0 1.667vw;
  }
  section.imovel_galeria .carousel_content .carousel .item .image {
    height: 48.333vw;
    margin: 0 0 10px;
  }
  section.imovel_galeria .carousel_content .carousel .item p {
    font-size: 13px;
    line-height: 16px;
  }
}
section.imovel_plantas .content {
  width: 1257px;
  margin: 0 auto;
  padding: 110px 0 70px;
}
section.imovel_plantas .content .header_plantas {
  width: 790px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.imovel_plantas .content .header_plantas h2 {
  position: relative;
  font-size: 34px;
  line-height: 42px;
  margin: 0 0 35px;
  padding: 0 0 10px;
}
section.imovel_plantas .content .header_plantas h2:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #19528c;
  bottom: 0;
  left: 0;
}
section.imovel_plantas .content .header_plantas select {
  background: transparent;
  border: 1px solid #a8a8a8;
  width: 230px;
  height: 43px;
  border-radius: 10px;
  font-size: 14px;
  color: #6d6d6d;
  padding: 0 30px 0 17px;
  background-image: url(./../img/select_1.svg);
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
}
section.imovel_plantas .content .list_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.imovel_plantas .content .list_content .item {
  width: 365px;
  margin: 0 27px 55px;
}
section.imovel_plantas .content .list_content .item a.image {
  display: block;
  width: 100%;
  height: 225px;
  border: 1px solid #dbdbdb;
  margin: 0 0 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.imovel_plantas .content .list_content .item p {
  font-size: 15px;
  line-height: 19px;
  color: #7d7d7d;
  margin: 0;
}
@media (max-width: 1300px) {
  section.imovel_plantas .content {
    width: 838px;
  }
}
@media (max-width: 850px) {
  section.imovel_plantas .content {
    width: 660px;
    padding: 80px 0 40px;
  }
  section.imovel_plantas .content .header_plantas {
    width: 100%;
  }
  section.imovel_plantas .content .list_content .item {
    width: 300px;
    margin: 0 15px 40px;
  }
  section.imovel_plantas .content .list_content .item a.image {
    height: 200px;
  }
}
@media (max-width: 700px) {
  section.imovel_plantas .content {
    width: 86.111vw;
    padding: 90px 0 55px;
  }
  section.imovel_plantas .content .header_plantas h2 {
    width: 100%;
    font-size: 28px;
    line-height: 34px;
    padding: 0 0 7px;
    margin: 0 0 20px;
  }
  section.imovel_plantas .content .header_plantas select {
    margin: 0 0 25px;
  }
  section.imovel_plantas .content .list_content .item {
    width: 100%;
    margin: 0 0 40px;
  }
  section.imovel_plantas .content .list_content .item a.image {
    height: 52.778vw;
    margin: 0 0 5px;
  }
}
section.imovel_obra {
  position: relative;
  background-color: #0f1121;
  min-height: 570px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
section.imovel_obra::before {
  content: "";
  position: absolute;
  background-image: url(./../img/imovel/section-obras-background-02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.22;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
section.imovel_obra .content {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.imovel_obra .content .title {
  position: relative;
  width: 30%;
  margin: 0 auto;
  margin-top: 30px;
  padding-bottom: 30px;
}
section.imovel_obra .content .title h2 {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 0 0 35px;
  font-size: 34px;
  color: white;
  border-bottom: 1px solid rgba(207, 207, 207, 0.6);
}
section.imovel_obra .content .title h2:before {
  content: "";
  position: absolute;
  background: #ff3f2d;
  width: 57px;
  height: 3px;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
section.imovel_obra .content .list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 55px;
}
section.imovel_obra .content .list_item .item {
  width: 12%;
  padding: 0 20px;
  margin: 20px 0;
}
section.imovel_obra .content .list_item .item .barra {
  width: 90px;
  height: 90px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}
section.imovel_obra .content .list_item .item .barra[porcentagem="100"] span {
  background: #013754;
}
section.imovel_obra .content .list_item .item .barra:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 2px solid #cbcbcb;
  border-radius: 50%;
}
section.imovel_obra .content .list_item .item .barra .left {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
section.imovel_obra .content .list_item .item .barra .left div {
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
  border-radius: 50%;
  overflow: hidden;
}
section.imovel_obra .content .list_item .item .barra .left div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  width: 50%;
  height: 100%;
}
section.imovel_obra .content .list_item .item .barra .left div:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0%;
  width: 50%;
  height: 100%;
  background: #0089d5;
}
section.imovel_obra .content .list_item .item .barra .right {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
section.imovel_obra .content .list_item .item .barra .right div {
  position: absolute;
  width: 200%;
  height: 100%;
  right: 0;
  top: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  border-radius: 50%;
  overflow: hidden;
}
section.imovel_obra .content .list_item .item .barra .right div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  width: 50%;
  height: 100%;
  background: #0089d5;
}
section.imovel_obra .content .list_item .item .barra .right div:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0%;
  width: 50%;
  height: 100%;
}
section.imovel_obra .content .list_item .item .barra span {
  position: absolute;
  width: 70px;
  height: 70px;
  font-size: 18px;
  background: #0f1121;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}
section.imovel_obra .content .list_item .item p {
  font-size: 16px;
  color: white;
  text-align: center;
  margin: 0;
}
@media (max-width: 1200px) {
  section.imovel_obra {
    height: 500px;
  }
  section.imovel_obra::before {
    width: 40vw;
  }
  section.imovel_obra .content {
    padding: 0;
    width: 900px;
  }
  section.imovel_obra .content .title {
    width: 400px;
  }
  section.imovel_obra .content .list_item {
    width: calc(100% - 400px);
    padding: 0 0 0 40px;
  }
  section.imovel_obra .content .list_item .item {
    margin: 15px 0;
  }
}
@media (max-width: 950px) {
  section.imovel_obra {
    height: auto;
  }
  section.imovel_obra::before {
    width: 100%;
    opacity: 0.22;
    background-position: center;
  }
  section.imovel_obra .content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 600px;
    padding: 55px 0 50px;
  }
  section.imovel_obra .content .title {
    width: 315px;
    margin: 0 0 40px;
  }
  section.imovel_obra .content .title h2 {
    padding: 0 0 20px;
    font-size: 30px;
  }
  section.imovel_obra .content .title svg {
    display: none;
  }
  section.imovel_obra .content .list_item {
    width: 100%;
    padding: 0;
  }
  section.imovel_obra .content .list_item .item {
    width: 33%;
  }
}
@media (max-width: 600px) {
  section.imovel_obra .content {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding: 70px 0 40px;
  }
  section.imovel_obra .content .title {
    width: 315px;
    padding: 0 25px;
  }
  section.imovel_obra .content .title h2 {
    padding: 0 0 15px;
    font-size: 28px;
  }
  section.imovel_obra .content .list_item .item {
    width: 50%;
    margin: 25px 0;
  }
}
section.imovel_media_obra .content {
  width: 1200px;
  margin: 0 auto;
  padding: 85px 0;
}
section.imovel_media_obra .content .top_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 40px;
}
section.imovel_media_obra .content .top_content h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #111111;
  width: 285px;
}
section.imovel_media_obra .content .top_content .filtros {
  width: 304px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.imovel_media_obra .content .top_content .filtros button {
  width: 50%;
  height: 100%;
  font-size: 15px;
  color: #8e8e8e;
  background: #ececec;
  border: 1px solid #ececec;
}
section.imovel_media_obra .content .top_content .filtros button.active {
  color: #111111;
  border-color: #0089d5;
  background: transparent;
}
section.imovel_media_obra .content .carousel_content {
  position: relative;
}
section.imovel_media_obra .content .carousel_content .carousel {
  overflow: hidden;
  margin: 0 auto 15px;
  width: 1060px;
}
section.imovel_media_obra .content .carousel_content .carousel .item {
  position: relative;
  width: 350px;
  height: 490px !important;
  margin: 0 10px;
}
section.imovel_media_obra .content .carousel_content .carousel .item a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
section.imovel_media_obra .content .carousel_content .carousel .item iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.imovel_media_obra .content .carousel_content .carousel .item iframe .html5-video-container video {
  width: 350px;
  height: 490px;
  left: 0;
}
section.imovel_media_obra .content .carousel_content .arrows {
  position: absolute;
  top: 45%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}
section.imovel_media_obra .content .carousel_content .arrows button {
  pointer-events: all;
  border: none;
  background: transparent;
  padding: 0;
  width: 30px;
  height: 40px;
}
section.imovel_media_obra .content .carousel_content .arrows button.next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
section.imovel_media_obra .content .carousel_content .dots ul li {
  width: 13px;
  height: 13px;
  margin: 0 10px;
}
section.imovel_media_obra .content .carousel_content .dots ul li.slick-active button {
  border-color: #19528C;
  background: #19528C;
}
section.imovel_media_obra .content .carousel_content .dots ul li button {
  width: 100%;
  height: 100%;
  border: 1px solid #878787;
  border-radius: 50%;
}
section.imovel_media_obra .content .carousel_content .dots ul li button:before {
  display: none;
}
@media (max-width: 1300px) {
  section.imovel_media_obra .content {
    width: 850px;
  }
  section.imovel_media_obra .content .carousel_content .carousel {
    width: 700px;
  }
}
@media (max-width: 900px) {
  section.imovel_media_obra .content {
    width: 470px;
  }
  section.imovel_media_obra .content .top_content h2 {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }
  section.imovel_media_obra .content .carousel_content .carousel {
    width: 340px;
  }
}
@media (max-width: 550px) {
  section.imovel_media_obra .content {
    width: 100%;
    padding: 75px 15px 115px;
  }
  section.imovel_media_obra .content .top_content {
    margin: 0 0 50px;
  }
  section.imovel_media_obra .content .carousel_content .carousel {
    width: 80.389vw;
  }
  section.imovel_media_obra .content .carousel_content .carousel .item {
    width: 80.389vw;
    height: 42.222vw;
  }
  section.imovel_media_obra .content .carousel_content .arrows {
    top: 43%;
  }
  section.imovel_media_obra .content .carousel_content .arrows button svg {
    width: 8px;
    height: auto;
  }
}
section.imovel_endereco {
  background: #eeeeee;
}
section.imovel_endereco .content {
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 205px;
}
section.imovel_endereco .content .left_content {
  width: 280px;
}
section.imovel_endereco .content .left_content h2 {
  position: relative;
  font-size: 34px;
  line-height: 42px;
  color: #19528c;
  margin: 0 0 20px;
  padding: 0 0 5px;
}
section.imovel_endereco .content .left_content h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background: #a6281c;
}
section.imovel_endereco .content .left_content p {
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  color: #000000;
  margin: 0;
}
section.imovel_endereco .content .center_content {
  width: 550px;
}
section.imovel_endereco .content .center_content p {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}
section.imovel_endereco .content .right_content a {
  display: block;
  width: 225px;
  border: 1px solid #004165;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  letter-spacing: 1px;
  color: #004165;
  padding: 15px 0;
  text-align: center;
  border-radius: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.imovel_endereco .content .right_content a:hover {
  background: #004165;
  color: white;
}
@media (max-width: 1300px) {
  section.imovel_endereco .content {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 55px 25px;
  }
  section.imovel_endereco .content .left_content {
    width: 100%;
    max-width: 500px;
    margin: 0 0 25px;
  }
  section.imovel_endereco .content .left_content h2 {
    text-align: center;
  }
  section.imovel_endereco .content .left_content h2:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  section.imovel_endereco .content .left_content p {
    text-align: center;
  }
  section.imovel_endereco .content .center_content {
    width: 100%;
    max-width: 500px;
    margin: 0 0 30px;
  }
  section.imovel_endereco .content .center_content p {
    text-align: center;
  }
  section.imovel_endereco .content .right_content {
    width: 100%;
    max-width: 500px;
  }
  section.imovel_endereco .content .right_content a {
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  section.imovel_endereco .content {
    padding: 55px 25px 70px;
  }
  section.imovel_endereco .content .left_content {
    margin: 0 0 20px;
  }
  section.imovel_endereco .content .center_content {
    margin: 0 0 25px;
  }
}
section.imovel_mapa {
  width: 100%;
  height: 350px;
}

section.blog_header {
  position: relative;
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 135px 0 0;
  margin-bottom: 160px;
}
section.blog_header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000000;
  opacity: 0.36;
}
section.blog_header h1,
section.blog_header h2 {
  margin-bottom: 50px;
  position: relative;
  font-size: 34px;
  line-height: 42px;
  width: 100%;
  text-align: center;
  color: white;
  padding: 0 0 15px;
}
section.blog_header h1:before,
section.blog_header h2:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #27b2ff;
}
@media (max-width: 900px) {
  section.blog_header {
    height: 250px;
  }
  section.blog_header h1,
  section.blog_header h2 {
    margin-bottom: 50px;
  }
}
@media (max-width: 550px) {
  section.blog_header {
    display: none;
    height: 250px;
    padding: 75px 0 0;
  }
  section.blog_header h1,
  section.blog_header h2 {
    font-size: 28px;
    line-height: 34px;
    padding: 0 0 10px;
  }
}
section.blog_header_img {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 300px;
  background-color: #000;
  z-index: 10;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: -250px;
  -webkit-box-shadow: 1px -8px 35px -2px rgba(0, 0, 0, 0.63);
  box-shadow: 1px -8px 35px -2px rgba(0, 0, 0, 0.63);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1024px) {
  section.blog_header_img {
    width: 90%;
  }
}
@media (max-width: 600px) {
  section.blog_header_img {
    width: 100%;
    margin-top: 0px;
    border-radius: 0px;
    z-index: 0;
  }
  section.blog_header_img:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000000;
    opacity: 0.36;
  }
}
section.blog_busca form {
  width: 590px;
  height: 65px;
  border-radius: 20px;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 25px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.blog_busca form input {
  border: none;
  width: calc(100% - 70px);
  font-size: 14px;
  color: #000000;
  padding: 0 20px 0 40px;
}
section.blog_busca form input::-webkit-input-placeholder {
  color: #000000;
}
section.blog_busca form input::-moz-placeholder {
  color: #000000;
}
section.blog_busca form input:-ms-input-placeholder {
  color: #000000;
}
section.blog_busca form input::-ms-input-placeholder {
  color: #000000;
}
section.blog_busca form input::placeholder {
  color: #000000;
}
section.blog_busca form button {
  width: 70px;
  height: 100%;
  border: none;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
@media (max-width: 650px) {
  section.blog_busca {
    padding: 0 20px;
  }
  section.blog_busca form {
    width: 100%;
  }
}
section.blog_lista .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  padding: 80px 0 0;
  width: 1443px;
}
section.blog_lista .content .item {
  width: 445px;
  margin: 0 18px 100px;
}
section.blog_lista .content .item .image {
  position: relative;
  width: 100%;
  height: 265px;
  background-size: cover;
  background-position: center;
  margin: 0 0 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.blog_lista .content .item .image:hover {
  border-radius: 0 40px 0 40px;
  -webkit-box-shadow: 2px 2px 2px #19528c;
          box-shadow: 2px 2px 2px #19528c;
}
section.blog_lista .content .item .image a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
section.blog_lista .content .item .text p.data {
  margin: 0 0 25px;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: #005787;
  cursor: default;
}
section.blog_lista .content .item .text h2 {
  margin: 0 0 25px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 600;
  color: #858585;
  cursor: default;
}
section.blog_lista .content .item .text a {
  position: relative;
  display: block;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  color: #005787;
  padding: 5px 10px 5px 80px;
  letter-spacing: 1px;
}
section.blog_lista .content .item .text a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 63px;
  height: 1px;
  background: #000000;
}
@media (max-width: 1450px) {
  section.blog_lista .content {
    width: 100%;
    padding: 60px 0 0;
  }
  section.blog_lista .content .item {
    width: 30.69vw;
    margin: 0 1.1351666667vw 6.9vw;
  }
  section.blog_lista .content .item .image {
    height: 18.276vw;
  }
}
@media (max-width: 1300px) {
  section.blog_lista .content {
    width: 962px;
  }
  section.blog_lista .content .item {
    width: 445px;
    margin: 0 18px 100px;
  }
  section.blog_lista .content .item .image {
    height: 265px;
  }
}
@media (max-width: 1000px) {
  section.blog_lista .content {
    width: 100%;
  }
  section.blog_lista .content .item {
    width: 44.5vw;
    margin: 0 2.75vw 6.9vw;
  }
  section.blog_lista .content .item .image {
    height: 26.5vw;
    margin: 0 0 20px;
  }
  section.blog_lista .content .item .text {
    margin: 0 0 20px;
  }
  section.blog_lista .content .item .text p.data {
    margin: 0 0 20px;
  }
  section.blog_lista .content .item .text h2 {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 650px) {
  section.blog_lista .content {
    width: 86.111vw;
    max-width: 445px;
    padding: 30px 0 0;
  }
  section.blog_lista .content .item {
    width: 100%;
    margin: 0 0 40px;
  }
  section.blog_lista .content .item .image {
    height: 51.389vw;
    max-height: 265px;
  }
  section.blog_lista .content .item .text h2 {
    font-size: 18px;
    line-height: 20px;
  }
}
section.blog_interno .content {
  width: 1000px;
  margin: 0 auto;
  padding: 65px 0 135px;
}
section.blog_interno .content p.data {
  margin: 0 0 40px;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: #005787;
}
section.blog_interno .content h1 {
  font-size: 44px;
  font-weight: 500;
  line-height: 50px;
  margin: 0;
  color: #000000;
}
section.blog_interno .content .editable-content {
  color: #131313;
  padding: 50px 0 25px;
}
section.blog_interno .content .editable-content p {
  font-size: 16px;
  line-height: 30px;
  color: #131313;
}
section.blog_interno .content .editable-content img {
  max-width: 100%;
  max-height: 100%;
  margin: 10px auto;
  display: block;
  height: auto;
}
section.blog_interno .content .editable-content img.imgFull {
  margin: 20px auto;
}
section.blog_interno .content .editable-content img.imgRight {
  float: right;
  margin: 0 0 10px 20px;
  max-width: 50%;
}
section.blog_interno .content .editable-content img.imgLeft {
  float: left;
  margin: 0 20px 10px 0;
  max-width: 50%;
}
section.blog_interno .content .editable-content iframe.video-youtube {
  width: 100%;
  height: 478px;
}
section.blog_interno .content a.voltar {
  position: relative;
  display: block;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: -o-fit-content;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  color: #005787;
  padding: 5px 10px 5px 80px;
  letter-spacing: 1px;
}
section.blog_interno .content a.voltar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 63px;
  height: 1px;
  background: #000000;
}
@media (max-width: 1100px) {
  section.blog_interno .content {
    width: 100%;
    padding: 65px 40px 135px;
  }
}
@media (max-width: 900px) {
  section.blog_interno .content p.data {
    margin: 0 0 30px;
  }
  section.blog_interno .content h1 {
    font-size: 37px;
    line-height: 42px;
  }
  section.blog_interno .content .editable-content {
    padding: 30px 0 25px;
  }
  section.blog_interno .content .editable-content p {
    font-size: 15px;
    line-height: 28px;
  }
  section.blog_interno .content .editable-content img.imgRight {
    float: initial;
    max-width: 100%;
    margin: 20px auto;
  }
  section.blog_interno .content .editable-content img.imgLeft {
    float: initial;
    max-width: 100%;
    margin: 20px auto;
  }
}
@media (max-width: 600px) {
  section.blog_interno .content {
    padding: 40px 25px 105px;
  }
  section.blog_interno .content p.data {
    margin: 0 0 22px;
  }
  section.blog_interno .content h1 {
    font-size: 26px;
    line-height: 28px;
  }
  section.blog_interno .content .editable-content {
    padding: 10px 0;
  }
  section.blog_interno .content .editable-content h2 {
    font-size: 26px;
    line-height: 28px;
  }
  section.blog_interno .content .editable-content h3 {
    font-size: 24px;
    line-height: 26px;
  }
  section.blog_interno .content .editable-content h4 {
    font-size: 22px;
    line-height: 24px;
  }
}

section.contato_header {
  position: relative;
  width: 100%;
  height: 300px;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0 0;
}
section.contato_header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000000;
  opacity: 0.43;
}
section.contato_header h1,
section.contato_header h2 {
  position: relative;
  font-size: 34px;
  line-height: 42px;
  width: 100%;
  text-align: center;
  color: white;
  padding: 0 0 5px;
}
section.contato_header h1:before,
section.contato_header h2:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #27b2ff;
}
@media (max-width: 1200px) {
  section.contato_header {
    height: 300px;
  }
}
@media (max-width: 900px) {
  section.contato_header {
    height: 250px;
  }
}
@media (max-width: 550px) {
  section.contato_header {
    height: 250px;
    padding: 40px 0 0;
  }
  section.contato_header h1,
  section.contato_header h2 {
    font-size: 28px;
    line-height: 34px;
  }
}
section.contato_paginas {
  position: relative;
}
section.contato_paginas .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1140px;
  margin: -38px auto 0;
}
section.contato_paginas .content a {
  scale: 0.9;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 360px;
  min-height: 70px;
  background: white;
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
}
section.contato_paginas .content a.active svg * {
  fill: #000000;
}
section.contato_paginas .content a.active p {
  color: #000000;
}
section.contato_paginas .content a.active p:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.contato_paginas .content a:hover {
  -webkit-box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 60px rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.contato_paginas .content a:hover * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.contato_paginas .content a:hover svg * {
  fill: #000000;
}
section.contato_paginas .content a:hover p {
  color: #000000;
}
section.contato_paginas .content a svg {
  width: 40px;
  height: 40px;
  position: block;
}
section.contato_paginas .content a svg * {
  fill: #777777;
}
section.contato_paginas .content a p {
  margin: 0;
  font-size: 22px;
  line-height: 24px;
  color: #777777;
  position: relative;
  padding-left: 10px;
}
section.contato_paginas .content a p:before {
  display: none;
  content: "";
  position: absolute;
  left: 13px;
  bottom: -10px;
  width: 90%;
  height: 2px;
  background: #a6281c;
}
@media (max-width: 1200px) {
  section.contato_paginas .content {
    width: 940px;
    margin: -43px auto 0;
  }
  section.contato_paginas .content a {
    width: 300px;
    min-height: 80px;
  }
  section.contato_paginas .content a svg {
    top: 30px;
    left: 30px;
    height: auto;
    width: 40px;
  }
}
@media (max-width: 1000px) {
  section.contato_paginas .content {
    width: 780px;
  }
  section.contato_paginas .content a {
    min-height: 80px;
    width: 250px;
  }
  section.contato_paginas .content a svg {
    top: 25px;
    left: 25px;
    width: 35px;
  }
  section.contato_paginas .content a p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 800px) {
  section.contato_paginas .content {
    scale: 0.9;
    width: 100%;
    margin: -50px auto 0;
  }
  section.contato_paginas .content a {
    min-height: 70px;
    width: 200px;
  }
  section.contato_paginas .content a.active p:before {
    display: none;
  }
  section.contato_paginas .content a svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  section.contato_paginas .content a p {
    text-align: center;
    padding: 0;
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 550px) {
  section.contato_paginas .content {
    width: 310px;
    margin: -55px auto 0;
  }
  section.contato_paginas .content a {
    scale: 1;
    display: block;
    padding: 60px 10px 10px;
    min-height: 100px;
    width: 95px;
  }
  section.contato_paginas .content a.active svg * {
    fill: #000000;
  }
  section.contato_paginas .content a.active p {
    color: #000000;
  }
  section.contato_paginas .content a.active p:before {
    display: block;
  }
  section.contato_paginas .content a svg {
    position: absolute;
    top: 17px;
    width: 32px;
  }
  section.contato_paginas .content a p {
    font-size: 13px;
    line-height: 14px;
  }
  section.contato_paginas .content a p:before {
    display: none !important;
  }
}
section.contato_content .content {
  width: 1040px;
  margin: 0 auto;
  padding: 40px 0 145px;
}
section.contato_content .content h2 {
  display: none;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
  color: #3b3b3b;
  padding-top: 50px;
  margin: 0 0 45px;
}
section.contato_content .content .dados_contato {
  padding: 40px 195px 65px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
section.contato_content .content .dados_contato .telefone {
  width: 290px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  padding: 13px 0 0 0;
}
section.contato_content .content .dados_contato .telefone svg {
  margin: 0 15px 0 0;
}
section.contato_content .content .dados_contato .endereco {
  width: 330px;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1px;
  color: #000000;
}
section.contato_content .content .dados_contato a.como_chegar {
  display: block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000000;
  border-bottom: 1px solid #0089d5;
  padding: 0 0 5px;
}
section.contato_content .content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.contato_content .content form .item {
  width: 100%;
  margin: 0 0 20px;
}
section.contato_content .content form .item.half_item {
  width: calc((100% - 15px) / 2);
}
section.contato_content .content form .item input {
  width: 100%;
  height: 60px;
  border: 1px solid #a8a8a8;
  font-size: 14px;
  color: #303030;
  padding: 0 25px;
}
section.contato_content .content form .item input::-webkit-input-placeholder {
  color: #303030;
}
section.contato_content .content form .item input::-moz-placeholder {
  color: #303030;
}
section.contato_content .content form .item input:-ms-input-placeholder {
  color: #303030;
}
section.contato_content .content form .item input::-ms-input-placeholder {
  color: #303030;
}
section.contato_content .content form .item input::placeholder {
  color: #303030;
}
section.contato_content .content form .item input[type=file] {
  display: none;
}
section.contato_content .content form .item input[type=checkbox] {
  display: none;
}
section.contato_content .content form .item input[type=checkbox]:checked + label:before {
  background-image: url(./../img/checked.svg);
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
section.contato_content .content form .item select {
  width: 100%;
  height: 60px;
  border: 1px solid #a8a8a8;
  font-size: 14px;
  padding: 0 40px 0 25px;
  color: #303030;
  background-image: url(./../img/select_1.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}
section.contato_content .content form .item label.checkbox {
  position: relative;
  display: block;
  font-size: 13px;
  color: black;
  padding: 0 0 0 28px;
}
section.contato_content .content form .item label.checkbox:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid #7b7b7b;
  left: 0;
  top: 2px;
}
section.contato_content .content form .item label.anexo {
  width: 100%;
  height: 60px;
  border: 2px dotted #000000;
  font-size: 14px;
  color: #303030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
section.contato_content .content form .item label svg {
  margin: 0 10px 0 0;
}
section.contato_content .content form .item label span {
  max-width: calc(100% - 30px);
}
section.contato_content .content form .item textarea {
  width: 100%;
  height: 110px;
  border: 1px solid #a8a8a8;
  font-size: 14px;
  padding: 15px 25px;
  color: #303030;
}
section.contato_content .content form .item textarea::-webkit-input-placeholder {
  color: #303030;
}
section.contato_content .content form .item textarea::-moz-placeholder {
  color: #303030;
}
section.contato_content .content form .item textarea:-ms-input-placeholder {
  color: #303030;
}
section.contato_content .content form .item textarea::-ms-input-placeholder {
  color: #303030;
}
section.contato_content .content form .item textarea::placeholder {
  color: #303030;
}
section.contato_content .content form button {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  width: 100%;
  height: 60px;
  background: #19528c;
  border: none;
}
@media (max-width: 1100px) {
  section.contato_content .content {
    width: 850px;
  }
  section.contato_content .content h2 {
    font-size: 30px;
    line-height: 38px;
  }
  section.contato_content .content .dados_contato {
    padding: 0 0 65px 0;
  }
}
@media (max-width: 900px) {
  section.contato_content .content {
    width: 450px;
    padding: 50px 0 100px;
  }
  section.contato_content .content h2 {
    margin: 0 0 25px;
  }
  section.contato_content .content .dados_contato {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.contato_content .content .dados_contato .telefone {
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: -o-fit-content;
    max-width: 100%;
    margin: 0 0 20px;
  }
  section.contato_content .content .dados_contato .endereco {
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: -o-fit-content;
    max-width: 100%;
    text-align: center;
    margin: 0 0 25px;
  }
  section.contato_content .content .dados_contato a.como_chegar {
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: -o-fit-content;
    max-width: 100%;
  }
  section.contato_content .content form .item {
    margin: 0 0 15px;
  }
  section.contato_content .content form .item.half_item {
    width: 100%;
  }
}
@media (max-width: 550px) {
  section.contato_content .content {
    width: 100%;
    padding: 40px 25px 100px;
  }
  section.contato_content .content h2 {
    font-size: 24px;
    line-height: 26px;
  }
  section.contato_content .content form .item {
    margin: 0 0 12px;
  }
}

section.modal_content {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.modal_content .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  min-height: 100vh;
}
section.modal_content .content form {
  max-width: 420px;
  width: 100%;
  border-radius: 15px;
  background: white;
  -webkit-box-shadow: 0 3px 35px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 35px rgba(0, 0, 0, 0.16);
  position: relative;
}
section.modal_content .content form button._close {
  border: none;
  background: transparent;
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 45px;
  padding: 0;
  width: 30px;
  height: 45px;
  line-height: 45px;
}
section.modal_content .content form h3 {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 22px;
  color: #19528c;
}
section.modal_content .content form input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(165, 165, 165, 0.8);
  font-size: 13px;
  line-height: 20px;
  color: #000000;
  border-radius: 6px;
  padding: 0 20px;
  margin: 0 0 10px;
}
section.modal_content .content form input::-webkit-input-placeholder {
  color: #000000;
}
section.modal_content .content form input::-moz-placeholder {
  color: #000000;
}
section.modal_content .content form input:-ms-input-placeholder {
  color: #000000;
}
section.modal_content .content form input::-ms-input-placeholder {
  color: #000000;
}
section.modal_content .content form input::placeholder {
  color: #000000;
}
section.modal_content .content form input[type=checkbox] {
  display: none;
}
section.modal_content .content form input[type=checkbox]:checked + label:before {
  background-image: url(./../img/checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
section.modal_content .content form select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(165, 165, 165, 0.8);
  font-size: 13px;
  line-height: 20px;
  color: #000000;
  border-radius: 6px;
  padding: 0 20px;
  margin: 0 0 10px;
  background-image: url(./../img/select_1.svg);
  background-position: calc(100% - 15px) center;
  background-repeat: no-repeat;
}
section.modal_content .content form label {
  padding: 0 0 0 30px;
  position: relative;
  font-size: 11px;
  line-height: 12px;
  color: #787878;
  margin: 10px 0;
}
section.modal_content .content form label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #979797;
}
section.modal_content .content form button.clickformsubmit {
  width: 100%;
  height: 50px;
  background: #19528c;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
}
section.modal_content[active=false] {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 550px) {
  section.modal_content .content form {
    padding: 30px 20px 35px;
  }
  section.modal_content .content form h3 {
    font-size: 22px;
  }
}

section.politica_modal {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #19528c;
  z-index: 20;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
section.politica_modal[active=false] {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
section.politica_modal .content {
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
section.politica_modal .content p {
  color: white;
  font-size: 12px;
  margin: 0;
  width: 800px;
}
section.politica_modal .content p a {
  color: white;
  -webkit-text-decoration: revert;
          text-decoration: revert;
}
section.politica_modal .content button {
  border: none;
  padding: 10px 30px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  background: #19528c;
  color: white;
}
@media (max-width: 1250px) {
  section.politica_modal .content {
    width: 950px;
  }
  section.politica_modal .content p {
    width: 700px;
  }
}
@media (max-width: 1000px) {
  section.politica_modal .content {
    width: 750px;
  }
  section.politica_modal .content p {
    width: 590px;
  }
}
@media (max-width: 800px) {
  section.politica_modal .content {
    width: 600px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section.politica_modal .content p {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }
}
@media (max-width: 650px) {
  section.politica_modal .content {
    width: 100%;
    padding: 20px;
  }
  section.politica_modal .content p {
    font-size: 11px;
    margin: 0 0 15px;
  }
  section.politica_modal .content button {
    padding: 10px 25px;
    font-size: 12px;
  }
}

/* Video size página interna do empreendimento*/
.text video {
  width: 100%;
  height: 300px;
}

.carousel_content .dots ul {
  position: relative;
}

/*Custom Buttons pagina imovel*/
html {
  scroll-behavior: smooth;
}

.btn_sections_wrapper {
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 390px;
  margin: 0 auto;
}
.btn_sections_wrapper .btn_sections_link {
  margin-right: 10px;
  margin-left: 10px;
  background-color: #19528c;
  width: 200px;
  height: 40px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  color: white !important;
  text-align: center;
  padding: 10px 30px 10px 30px;
  cursor: pointer;
}
.btn_sections_wrapper :hover {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .btn_sections_wrapper .btn_sections_link {
    margin-right: 3px;
    margin-left: 3px;
    font-size: 13px;
    width: 100px;
    height: 40px;
    padding: 10px 15px 10px 15px;
  }
}
.selecionar_form {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.selecionar_form a {
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 260px;
  min-height: 50px;
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  border: solid 1px #007bff;
}
.selecionar_form a.is-active {
  background: #007bff;
}
.selecionar_form a.is-active svg * {
  fill: #007bff;
  stroke: #fff;
}
.selecionar_form a.is-active p {
  color: #fff;
}
.selecionar_form a.is-active p:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.selecionar_form a:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.selecionar_form a:hover * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.7;
}
.selecionar_form a svg * {
  fill: #fff;
  stroke: #007bff;
}
.selecionar_form a p {
  margin: 0;
  font-size: 19px;
  line-height: 24px;
  color: #007bff;
  position: relative;
  padding-left: 10px;
}

@media (max-width: 600px) {
  .selecionar_form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .selecionar_form a {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
/* SHOW MODAL LIGAMOS PRA VOCÊ  */
.modal_content {
  display: none !important;
}

.modal_content.show_modal {
  display: block !important;
}

/* PORTAL DO CLIENTE */
.customer-portal-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(/website/img/portal-do-cliente/background-img.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 1077px;
}
.customer-portal-section .main-div-cp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 120px;
  margin: 90px auto 0;
}
.customer-portal-section .main-div-cp .left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.customer-portal-section .main-div-cp .left-content .btn-go-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-family: "Poppins", "Arial", "Helvetica", sans-serif;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
.customer-portal-section .main-div-cp .left-content .btn-go-back:hover {
  opacity: 0.8;
}
.customer-portal-section .main-div-cp .left-content .logo {
  display: block;
  width: 145px;
  height: 85px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: all;
}
.customer-portal-section .main-div-cp .left-content h1 {
  font-size: 54px;
  font-weight: 500;
  color: #FFF;
  line-height: 54px;
}
.customer-portal-section .main-div-cp .left-content p {
  font-size: 20px;
  font-weight: 400;
  color: #FFF;
  max-width: 383px;
}
.customer-portal-section .main-div-cp .left-content .icon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  text-align: center;
}
.customer-portal-section .main-div-cp .left-content .icon-list .icon-item p {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}
.customer-portal-section .main-div-cp .right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.customer-portal-section .main-div-cp .right-content .form-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 70px;
  border: 2px solid rgba(216, 216, 216, 0.18);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.customer-portal-section .main-div-cp .right-content .form-content h2 {
  color: #FFF;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #81CEE0;
  border-radius: 60px;
  gap: 7px;
  height: 60px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div svg {
  margin-left: -25px;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div #usuarioUau,
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div #senhaUau {
  height: inherit;
  opacity: 1;
  background-color: inherit;
  color: #FFF;
  border: none;
  font-size: 18px;
  font-weight: 500;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div #usuarioUau::-webkit-input-placeholder, .customer-portal-section .main-div-cp .right-content .form-content .form-cp div #senhaUau::-webkit-input-placeholder {
  color: #81CEE0 !important;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div #usuarioUau::-moz-placeholder, .customer-portal-section .main-div-cp .right-content .form-content .form-cp div #senhaUau::-moz-placeholder {
  color: #81CEE0 !important;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div #usuarioUau:-ms-input-placeholder, .customer-portal-section .main-div-cp .right-content .form-content .form-cp div #senhaUau:-ms-input-placeholder {
  color: #81CEE0 !important;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div #usuarioUau::-ms-input-placeholder, .customer-portal-section .main-div-cp .right-content .form-content .form-cp div #senhaUau::-ms-input-placeholder {
  color: #81CEE0 !important;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div #usuarioUau::placeholder,
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div #senhaUau::placeholder {
  color: #81CEE0 !important;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div input:-webkit-autofill,
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div input:-webkit-autofill:hover,
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div input:-webkit-autofill:focus,
.customer-portal-section .main-div-cp .right-content .form-content .form-cp div input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp label {
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  color: #FFF;
  margin: 5px auto;
  padding-bottom: 10px;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp label .accept-checkbox {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp #submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #07BF71;
  border: none;
  border-radius: 60px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  height: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp #submit:hover {
  opacity: 0.8;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp span {
  border: 1px solid #FFFFFF;
  opacity: 0.15;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp p {
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
  text-align: center;
  margin-top: 10px;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp p a {
  font-weight: bolder;
  text-decoration: underline;
  color: #FFF;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp #sing-up {
  width: 100%;
  max-width: 261px;
  margin: 0 auto;
  background-color: #FFF;
  border: none;
  border-radius: 60px;
  font-size: 18px;
  font-weight: bold;
  color: #15558C;
  height: 44px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.customer-portal-section .main-div-cp .right-content .form-content .form-cp #sing-up:hover {
  opacity: 0.8;
}
.customer-portal-section .main-div-cp .right-content .icon-list-mobile {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  text-align: center;
}
.customer-portal-section .main-div-cp .right-content .icon-list-mobile .icon-item {
  width: 30%;
}
.customer-portal-section .main-div-cp .right-content .icon-list-mobile .icon-item p {
  color: #FFF;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}
.customer-portal-section .main-div-cp .right-content .btn-go-back-notebook {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-family: "Poppins", "Arial", "Helvetica", sans-serif;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 40px;
}
.customer-portal-section .main-div-cp .right-content .btn-go-back-notebook:hover {
  opacity: 0.8;
}

@media (min-width: 1500px) {
  .customer-portal-section .main-div-cp .right-content .icon-list-mobile {
    display: none;
  }
  .customer-portal-section .main-div-cp .right-content .form-content {
    min-width: 500px;
    margin-top: 175px;
  }
}
@media (min-width: 1025px) and (max-width: 1500px) {
  .customer-portal-section {
    min-height: 600px;
  }
  .customer-portal-section .main-div-cp {
    margin: 10px auto 0;
  }
  .customer-portal-section .main-div-cp .left-content {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    gap: 40px;
  }
  .customer-portal-section .main-div-cp .right-content .icon-list-mobile {
    display: none;
  }
  .customer-portal-section .main-div-cp .right-content .form-content {
    min-width: 500px;
    margin-top: 80px !important;
  }
}
@media (max-width: 1024px) {
  .customer-portal-section .main-div-cp {
    margin-top: 40px;
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .customer-portal-section .main-div-cp .left-content {
    gap: 40px;
    padding: 0px 20px;
  }
  .customer-portal-section .main-div-cp .left-content .btn-go-back {
    display: none !important;
  }
  .customer-portal-section .main-div-cp .left-content .icon-list {
    display: none;
  }
  .customer-portal-section .main-div-cp .right-content .btn-go-back-notebook {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin: 30px auto 0;
  }
}
@media (max-width: 600px) {
  .customer-portal-section {
    background-image: url(/website/img/portal-do-cliente/backbround-mobile.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    background-color: #06243E;
  }
  .customer-portal-section .main-div-cp .left-content {
    padding: 0px 20px;
    margin-bottom: -70px;
    margin-top: 30px;
  }
  .customer-portal-section .main-div-cp .left-content .btn-go-back {
    display: none !important;
  }
  .customer-portal-section .main-div-cp .left-content .logo {
    margin-top: -37px;
  }
  .customer-portal-section .main-div-cp .left-content h1 {
    font-size: 48px;
  }
  .customer-portal-section .main-div-cp .left-content p {
    font-size: 18px;
  }
  .customer-portal-section .main-div-cp .left-content .icon-list {
    display: none;
  }
  .customer-portal-section .main-div-cp .right-content .form-content {
    background-color: #233c56;
    padding: 40px 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 40px;
  }
  .customer-portal-section .main-div-cp .right-content .form-content h2 {
    font-size: 18px;
  }
  .customer-portal-section .main-div-cp .right-content .form-content .form-cp #usuarioUau,
  .customer-portal-section .main-div-cp .right-content .form-content .form-cp #senhaUau {
    font-size: 16px;
  }
  .customer-portal-section .main-div-cp .right-content .form-content .form-cp label {
    font-size: 12px;
  }
  .customer-portal-section .main-div-cp .right-content .form-content .form-cp p {
    font-size: 16px;
  }
  .customer-portal-section .main-div-cp .right-content .form-content .form-cp #sing-up {
    font-size: 16px;
  }
  .customer-portal-section .main-div-cp .right-content .btn-go-back-notebook {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-top: 30px;
    padding-left: 20px;
  }
}
@-webkit-keyframes horizontal_animate {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
@keyframes horizontal_animate {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
.lupa {
  position: relative;
}
.lupa:hover:before {
  opacity: 1;
}
.lupa:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(./../img/lupa.svg);
  background-position: center;
  background-size: 50px;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

section.content_404 {
  padding: 120px 0 110px;
  border-top: 160px solid #004165;
}
section.content_404 svg {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 5px;
}
section.content_404 svg * {
  fill: #004165;
}
section.content_404 p {
  font-size: 25px;
  font-weight: 300;
  color: #004165;
  text-align: center;
  margin: 0;
}
@media (max-width: 600px) {
  section.content_404 {
    padding: 50px 0;
    border-top: 120px solid #004165;
  }
  section.content_404 svg {
    width: 120px;
  }
  section.content_404 p {
    font-size: 20px;
  }
}
/*# sourceMappingURL=principal.css.map */