/*! RFM - v1.0.0 - 2023-05-10 11:06:15 PM - by PaulaMariano*/
/*! RFM - v1.0.0 - 2023-05-10 11:06:05 PM - by PaulaMariano*/
/*! RFM - v1.0.0 - 2023-05-10 11:05:59 PM - by PaulaMariano*/
/*! RFM - v1.0.0 - 2023-05-10 10:19:27 PM - by PaulaMariano*/
/*! RFM - v1.0.0 - 2022-10-19 10:27:34 AM - by PaulaMariano*/
/**/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
/*em,*/
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
/*strong,*/
sub,
sup,
tt,
var,
b,
u,
/*i,*/
center,
dl,
dt,
dd,
ol,
/*ul,*/
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
div,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
div,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
div,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
div {
  display: block;
}
body {
  line-height: 1;
}
/*ol,*/
/*ul {*/
/*  list-style: none;*/
/*}*/
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  outline: none;
  text-decoration: none;
}
p {
  line-height: 1.5em;
}
.clear {
  clear: both;
  height: 0px;
}
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  /* REM  */
  font-size: 62.5%;
}
input,
select,
textarea,
button {
  outline: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html > object,
body > object {
  display: none;
}
@font-face {
  font-family: "Aktiv Grotesk Ex Trial";
  src: url("../fonts/AktivGroteskEx_Trial_Rg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/
html,
input,
select,
textarea,
button,
select {
  font-family: "aktiv-grotesk-extended", "Aktiv Grotesk Ex Trial", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #374650;
}
html {
  background-color: #ffffff;
}
body {
  background-color: #F2F2F2;
}
a {
  color: inherit;
}
.clear {
  zoom: 1;
}
.clear:before {
  content: "";
  display: block;
}
.clear:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
/*
body{
	&:after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: 999;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #ffffff url('../svg/loading.svg') no-repeat center center;
		background-size: 100px 100px;
	}
}

body.computer, body.tablet, body.smartphone{
	&:after{
		content: none;
	}
}
*/
body > .loader {
  position: fixed;
  z-index: 99;
}
.loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 98;
}
.loader span {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  background: #fff url("../img/ajax-loader.gif") no-repeat center center;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
#wrapper {
  overflow: hidden;
}
.container {
  margin: 0 auto;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  zoom: 1;
}
.container:before {
  content: "";
  display: block;
}
.container:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
#header {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 5px 0px rgba(0, 0, 0, 0.2);
}
#header h1 {
  position: absolute;
}
#header h1 a {
  background: url(../svg/logotipo.svg) no-repeat center center;
  text-indent: -2000px;
  overflow: hidden;
  display: block;
}
#header nav {
  text-transform: uppercase;
  font-weight: 500;
}
#header nav ul li {
  position: relative;
}
#header nav ul li a {
  color: inherit;
}
#header aside {
  background-color: #2D363E;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  position: relative;
}
#header aside a {
  display: inline-block;
  color: inherit;
  padding: 0 20px;
}
#header aside .logged {
  line-height: 16px;
  font-weight: 400;
  padding: 15px 90px 15px 20px;
}
#header aside .logged .account {
  display: block;
  font-weight: 700;
  font-size: 14px;
  padding: 0;
}
#header aside .logged .logoff {
  border-left: 1px solid #536068;
  text-align: center;
  position: absolute;
  top: 15px;
  right: 0;
  height: 34px;
}
#header aside .logged .logoff:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 16px;
  height: 16px;
  background: url(../svg/ico_exit.svg) no-repeat center center;
  margin-bottom: 2px;
}
#header aside .login {
  text-transform: uppercase;
}
#header aside .login a {
  display: inline-block;
  color: #ffffff;
  padding: 0 20px;
}
#footer {
  background-color: #2D363E;
  position: relative;
  color: #ffffff;
  font-size: 11px;
  font-weight: 400;
}
#footer p a {
  text-decoration: underline;
  color: #fff !important;
}
#footer p:first-child {
  margin-bottom: 15px;
}
#footer ul li,
#footer ul a {
  display: block;
}
#footer ul li a {
  background: transparent no-repeat center center;
  width: 36px;
  height: 36px;
  text-indent: -2000px;
  overflow: hidden;
}
#footer ul li a.instagram {
  background-image: url(../svg/social_instagram.svg);
}
#footer ul li a.linkedin {
  background-image: url(../svg/social_linkedin.svg);
}
#footer ul li a.facebook {
  background-image: url(../svg/social_facebook.svg);
}
#footer ul li a.youtube {
  width: 45px;
  background-image: url(../svg/social_youtube.svg);
  margin-right: -10px;
}
#footer ul li a svg {
  fill: red;
}
/*MenuFooter*/
#footer .logo {
  margin-bottom: 20px;
}

#footer .line {
  width: 100%;
  background-color: #fff;
  height: 2px;
  margin: 25px 0;
}
#footer ul.menu-footer {
  position: initial;
  transform: none;
  display: block;
  vertical-align: top;
}
#footer .copy ul {
  position: initial;
  transform: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 100%;
}
body.smartphone #footer ul.item-0 li,
body.smartphone #footer ul.item-0 a,
body.smartphone #footer ul.item-1 li,
body.smartphone #footer ul.item-1 a,
body.smartphone #footer ul.item-3 li,
body.smartphone #footer ul.item-3 a {
  display: block;
}
body.smartphone #footer ul.menu-footer {
  margin-top: 20px;
}

#footer .copy ul li {
  float: none;
  display: inline-block;
  margin: 0 10px;
}

#footer ul.menu-footer.item-0 {
  margin-left: 0;
}
#footer ul.menu-footer.item-language {
  margin-left: 20px;
}
#footer ul.menu-footer.item-language li a {
  display: inline-block;
  width: auto;
  vertical-align: top;
}
#footer ul.menu-footer li {
  display: block;
  font-size: 15px;
  float: none;
  margin: 10px 0;
  line-height: 1.5;
}
#footer ul.menu-footer li a {
  float: none;
  font-size: 15px;
  color: #fff;
  text-indent: initial;
  width: 100%;
  height: auto;
}

#footer ul.menu-footer li a img {
  vertical-align: text-top;
}

#footer ul li a.nolink {
  cursor: default;
}
.d-mob {
  display: none !important;
}
.d-desk {
  display: block !important;
}
@media (max-width: 540px) {
  .d-mob {
    display: inline-block !important;
    float: right;
    margin-top: 0 !important;
  }
  .d-desk {
    display: none !important;
  }
}
/*MenuFooter*/
.topo {
  margin-bottom: 50px;
  overflow: hidden;
}
.topo figure {
  position: relative;
}
.topo figure img {
  display: block;
  width: 100%;
  height: auto;
}
.topo figure figcaption {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.topo figure figcaption strong {
  font-size: 40px;
  font-weight: 300;
  display: block;
  letter-spacing: 5px;
  font-family: "Roboto Slab";
}
.topo figure figcaption strong:after {
  content: "";
  display: block;
  background: #fa002d;
  width: 150px;
  height: 4px;
  margin: 20px auto 0 auto;
}
.topo figure figcaption span {
  line-height: 24px;
  display: block;
  margin-top: 20px;
}
.topo.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.topo.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fa002d;
}
#homepage #tipos {
  clear: both;
  background-color: #f2f2f2;
}
#homepage #tipos .bloco a {
  display: block;
}
#homepage #tipos .bloco a figure {
  position: relative;
}
#homepage #tipos .bloco a figure img {
  border: 1px solid transparent;
  display: block;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#homepage #tipos .bloco a figure figcaption {
  line-height: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #e8e8e8;
  background-color: #f2f2f2;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  top: -25px;
  left: 0;
  padding: 0 35px;
}
#homepage #tipos .bloco a:hover figure img,
#homepage #tipos .bloco a:hover figure figcaption {
  border-color: #e3163b;
}
#homepage #tipos .bloco a:hover figure figcaption {
  background-color: #e3163b;
  color: #ffffff;
}
#fale-conosco .topo strong:after {
  display: none;
}
#fale-conosco .formularios {
  position: relative;
  padding: 30px;
}
#fale-conosco .formularios dl dt {
  position: relative;
  cursor: pointer;
  height: 76px;
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
  text-transform: uppercase;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #bcbcbc;
}
#fale-conosco .formularios dl dt{
  display: flex;
  align-items: center;
  gap: 15px;
}
#fale-conosco .formularios dl dt span{
  display: block;
}
#fale-conosco .formularios dl dt .ico {
/*  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 20px;
  left: 20px;*/
}
#fale-conosco .formularios dl dt .ico rect,
#fale-conosco .formularios dl dt .ico path {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#fale-conosco .formularios dl dt .ico svg {
  width: 35px;
}
#fale-conosco .formularios dl dt:hover .ico rect,
#fale-conosco .formularios dl dt:hover .ico path {
  fill: transparent;
  stroke: #e3163b;
}
#fale-conosco .formularios dl dt:hover .ico path#Caminho_1,
#fale-conosco .formularios dl dt:hover .ico path#Caminho_5,
#fale-conosco .formularios dl dt:hover .ico path#Caminho_6 {
  fill: #e3163b;
  stroke: none;
}
#fale-conosco .formularios dl dd {
  -webkit-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}
#fale-conosco .formularios dl dd p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
#fale-conosco .formularios dl dd p strong {
  font-weight: 700;
}
#fale-conosco .formularios dl.active dt {
  z-index: 2;
  cursor: default;
  background-color: #ffffff;
  color: #374650;
  -webkit-box-shadow: -1px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -1px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: -1px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
#fale-conosco .formularios dl.active dt .ico rect,
#fale-conosco .formularios dl.active dt .ico path {
  fill: transparent;
  stroke: #e3163b;
}
#fale-conosco .formularios dl.active dt .ico path#Caminho_1,
#fale-conosco .formularios dl.active dt .ico path#Caminho_5,
#fale-conosco .formularios dl.active dt .ico path#Caminho_6{
  fill: #e3163b;
  stroke: none;
}
#fale-conosco .formularios dl dt em{
  font-size: 9px;
} 
#fale-conosco .formularios dl.active dt{
  font-weight: 700;
} 
#fale-conosco .formularios dl.active dt:after {
  content: "";
  display: block;
  background-color: #ffffff;
}
#fale-conosco .formularios dl.active dd {
  display: block;
}
#fale-conosco .formularios .wpcf7 .label-file {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#fale-conosco .formularios .wpcf7 .label-file .label,
#fale-conosco .formularios .wpcf7 .label-file .wpcf7-form-control-wrap,
#fale-conosco .formularios .wpcf7 .label-file input {
  line-height: 30px;
  vertical-align: middle;
}
#fale-conosco .formularios .wpcf7 .label-file .label {
  font-size: 14px;
  font-weight: 400;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  left: 5px;
  top: 0;
}
#fale-conosco .formularios .wpcf7 .label-file .wpcf7-form-control-wrap,
#fale-conosco .formularios .wpcf7 .label-file input {
  display: inline-block;
  width: 100%;
}
#fale-conosco .formularios .wpcf7 .label-file input {
  padding: 0;
}
#fale-conosco .formularios .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
#fale-conosco .formularios .wpcf7 .wpcf7-not-valid-tip {
  display: none !important;
}
#fale-conosco .mapa .box-marker {
  padding: 20px;
  font-family: "Roboto Slab";
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}
#fale-conosco .mapa .box-marker .endereco {
  font-weight: 400;
  line-height: 19px;
}
#fale-conosco .mapa .box-marker .telefone,
#fale-conosco .mapa .box-marker .email {
  margin-top: 8px;
  position: relative;
  padding-left: 41px;
}
#fale-conosco .mapa .box-marker .telefone:before,
#fale-conosco .mapa .box-marker .email:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: transparent url() no-repeat center center;
  position: absolute;
  top: 0;
  left: 0;
}
#fale-conosco .mapa .box-marker .telefone:before {
  background-image: url(../svg/ico_phone.svg);
}
#fale-conosco .mapa .box-marker .email:before {
  background-image: url(../svg/ico_mail.svg);
}
#fale-conosco .mapa .gm-ui-hover-effect {
  display: none !important;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}
#empreendimento .topo figure figcaption {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#empreendimento .topo figure figcaption strong {
  margin-top: 20px;
  font-family: "aktiv-grotesk-extended", "Aktiv Grotesk Ex Trial", sans-serif;
  font-weight: 700;
}
#empreendimento .topo figure figcaption strong:after {
  content: none;
  display: none;
}
#empreendimento.publico .sobre {
  background: #ffffff;
}
#empreendimento.publico .sobre .content {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
#empreendimento.publico .sobre .content small {
  font-size: 18px;
  line-height: 24px;
  font-family: "Roboto Slab";
  font-weight: 300;
}
#empreendimento.publico .sobre .content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  margin: 20px 0;
}
#empreendimento.publico .sobre .content div {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
#empreendimento.publico .sobre .content p {
  margin-bottom: 20px;
}
#empreendimento.publico .sobre .content p:last-child {
  margin: 0;
}
#empreendimento.publico .sobre .informacoes-tecnicas {
  background-color: #f2f2f2;
  font-size: 12px;
  font-weight: 300;
  line-height: 19px;
}
#empreendimento.publico .sobre .informacoes-tecnicas .info table {
  width: 100%;
}
#empreendimento.publico .sobre .informacoes-tecnicas .info table tr th,
#empreendimento.publico .sobre .informacoes-tecnicas .info table tr td {
  border-bottom: 1px solid #ededed;
  text-align: left;
  padding: 10px 0;
}
#empreendimento.publico .sobre .informacoes-tecnicas .info table tr th {
  font-weight: 700;
  font-size: 12px;
  line-height: 17px;
  padding-right: 10px;
  vertical-align: top;
}
#empreendimento.publico .sobre .informacoes-tecnicas .info table tr td {
  vertical-align: middle;
  font-family: "Roboto Slab";
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}
#empreendimento.publico
  .sobre
  .informacoes-tecnicas
  .info
  table
  tr:last-child
  th,
#empreendimento.publico
  .sobre
  .informacoes-tecnicas
  .info
  table
  tr:last-child
  td {
  border-bottom: 0;
}
#empreendimento.publico .sobre .informacoes-tecnicas-destacadas {
  clear: both;
}
#empreendimento.publico .sobre .informacoes-tecnicas-destacadas .info ul li {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
#empreendimento.publico .sobre .informacoes-tecnicas-destacadas .info ul li b {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info
  ul
  li
  span {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  font-family: "Roboto Slab";
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
}
#empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info
  ul
  li:before {
  content: "";
  display: block;
  background: transparent url() no-repeat center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
}
#empreendimento.publico .sobre .informacoes-tecnicas-destacadas .info ul {
  list-style: none;
}
#empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info
  ul
  li.area-total:before {
  background-image: url(../svg/ico_area.svg);
}
#empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info
  ul
  li.local:before {
  background-image: url(../svg/ico_local.svg);
}
#empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info
  ul
  li.tipo:before {
  background-image: url(../svg/ico_tipo.svg);
}
#empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info
  ul
  li.status:before {
  background-image: url(../svg/ico_status.svg);
}
#empreendimento.publico .fotos-do-empreendimento {
  background-color: #eef2f4;
}
#empreendimento.publico .fotos-do-empreendimento .galeria {
  position: relative;
}
#empreendimento.publico .fotos-do-empreendimento .swiper-slide img,
#empreendimento.publico .fotos-do-empreendimento .swiper-slide video {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
#empreendimento.publico .fotos-do-empreendimento .swiper-button-next,
#empreendimento.publico .fotos-do-empreendimento .swiper-button-prev {
  width: 30px;
  height: 30px;
  border: 1px solid #374650;
  background-size: 15px 15px;
}
#empreendimento.publico .fotos-do-empreendimento .swiper-button-next {
  right: 0;
}
#empreendimento.publico .fotos-do-empreendimento .swiper-button-prev {
  left: 0;
}
#empreendimento.publico .mapa {
  background-color: #eef2f4;
}
#empreendimento.publico .mapa .box-marker {
  padding: 20px;
  font-family: "Roboto Slab";
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
#empreendimento.publico .mapa .box-marker .endereco {
  font-weight: 400;
  line-height: 19px;
}
#empreendimento.publico .mapa .box-marker .endereco strong {
  font-weight: 700;
}
#empreendimento.publico .mapa .gm-ui-hover-effect {
  display: none !important;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}
#empreendimento.publico .destaques {
  background-color: #eef2f4;
}
#empreendimento.publico .destaques .titulo-descricao iframe {
  width: 100%;
  margin-top: 30px;
}
#empreendimento.publico .destaques .destaque {
  position: relative;
  margin-bottom: 3px;
}
#empreendimento.publico .destaques .destaque .txt {
  z-index: 2;
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e3163b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
#empreendimento.publico .destaques .destaque .txt b,
#empreendimento.publico .destaques .destaque .txt strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}
#empreendimento.publico .destaques .destaque .txt b {
  font-size: 14px;
  line-height: 21px;
}
#empreendimento.publico .destaques .destaque .txt strong {
  font-size: 20px;
  line-height: 30px;
}
#empreendimento.publico .destaques .destaque .txt span {
  display: block;
  color: #374650;
  font-size: 12px;
  background-color: #f2f2f2;
  line-height: 40px;
}
#empreendimento.publico .destaques .destaque ul {
  position: relative;
  z-index: 1;
}
#empreendimento.publico .destaques .destaque ul li {
  display: none;
}
#empreendimento.publico .destaques .destaque ul li figure {
  position: relative;
}
#empreendimento.publico .destaques .destaque ul li figure figcaption {
  color: #ffffff;
  text-transform: uppercase;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}
#empreendimento.publico .destaques .destaque ul li figure:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#empreendimento.publico .destaques .destaque ul li:first-child {
  display: block;
}
#empreendimento.publico .destaques .destaque:nth-child(even) .txt {
  background-color: #374650;
}
#empreendimento.logado {
  background: #f6fafc;
}
#empreendimento.logado .header {
  text-align: center;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}
#empreendimento.logado .header a {
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0 25px;
  display: block;
  line-height: 45px;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  background-color: #e2e2e2;
  font-size: 16px;
  font-weight: 300;
  text-transform: none;
}
#empreendimento.logado .header h2 {
  font-size: 20px;
  line-height: 30px;
}
#empreendimento.logado .sides .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
#empreendimento.logado .sides .left {
  margin-bottom: 15px;
}
@media only screen and (max-width: 1345px) {
  #empreendimento.logado .sides .container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: flex-start;
  }
}
#empreendimento.logado .status-geral {
  position: relative;
  background-color: #f6fafc;
  padding: 20px 20px 20px 24px;
}
#empreendimento.logado .status-geral:before {
  width: 7px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  background-color: #f0899c;
  border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
}
#empreendimento.logado .status-geral strong {
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
#empreendimento.logado .status-geral dl dt {
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
}
#empreendimento.logado .status-geral dl dt .bar {
  width: 100%;
  height: 20px;
  margin: 20px 0;
  background-color: #90a4af;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
#empreendimento.logado .status-geral dl dt .bar .percent {
  height: 20px;
  background-color: #e3163b;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
#empreendimento.logado .status-geral dl dt.status {
  font-family: "Roboto Slab";
}
#empreendimento.logado .status-geral dl dd {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Roboto Slab";
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
}
#empreendimento.logado .status-geral dl dd b {
  font-family: "aktiv-grotesk-extended", "Aktiv Grotesk Ex Trial", sans-serif;
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}
#empreendimento.logado .atividades table {
  width: 100%;
}
#empreendimento.logado .atividades table tr th,
#empreendimento.logado .atividades table tr td {
  line-height: 20px;
  padding: 10px 20px;
}
#empreendimento.logado .atividades table tr th {
  padding: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
#empreendimento.logado .atividades table tr td {
  font-size: 14px;
  font-weight: 300;
}
#empreendimento.logado .atividades table tr td.porcentagem {
  border-left: 1px solid transparent;
  text-align: right;
  width: 45px;
}
#empreendimento.logado .atividades table tr td.status {
  width: 30px;
}
#empreendimento.logado .atividades table tr:nth-child(odd) {
  background-color: #ffffff;
}
#empreendimento.logado .atividades table tr:nth-child(odd) .porcentagem,
#empreendimento.logado .atividades table tr:nth-child(odd) .status {
  border-color: #f3f3f3 !important;
}
#empreendimento.logado .atividades table tr:nth-child(even) {
  background-color: #f6fafc;
}
#empreendimento.logado .atividades table tr:nth-child(even) .porcentagem,
#empreendimento.logado .atividades table tr:nth-child(even) .status {
  border-color: #eaeef0 !important;
}
#empreendimento.logado .atividades table tr:last-child td {
  border-radius: 0 0 0 5px;
  -moz-border-radius: 0 0 0 5px;
  -webkit-border-radius: 0 0 0 5px;
}
#empreendimento.logado .atividades table tr:last-child td.status {
  border-radius: 0 0 5px 0;
  -moz-border-radius: 0 0 5px 0;
  -webkit-border-radius: 0 0 5px 0;
}
#empreendimento.logado .atividades .status {
  text-align: center;
  border-left: 1px solid transparent;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#empreendimento.logado .atividades .status span {
  display: block;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  background: transparent url() no-repeat center center;
  background-size: 19px 19px;
}
#empreendimento.logado .atividades .status span.red {
  background-image: url(../img/status_red.png);
}
#empreendimento.logado .atividades .status span.green {
  background-image: url(../img/status_green.png);
}
#empreendimento.logado .atividades .status span.yellow {
  background-image: url(../img/status_yellow.png);
}
#empreendimento.logado .informacoes-gerais,
#empreendimento.logado .informacoes-empreendimento {
  background: #ffffff;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
}
#empreendimento.logado .informacoes-gerais strong,
#empreendimento.logado .informacoes-empreendimento strong {
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  display: block;
}
#empreendimento.logado .informacoes-gerais ul li,
#empreendimento.logado .informacoes-empreendimento ul li {
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
  font-family: "Roboto Slab";
}
#empreendimento.logado .informacoes-gerais ul li b,
#empreendimento.logado .informacoes-empreendimento ul li b {
  font-family: "aktiv-grotesk-extended", "Aktiv Grotesk Ex Trial", sans-serif;
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}
#empreendimento.logado .informacoes-empreendimento {
  background: #f6fafc;
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
}
#empreendimento.logado .relatorios {
  position: relative;
  background-color: #ffffff;
  padding: 20px 20px 20px 24px;
}
#empreendimento.logado .relatorios:before {
  content: "";
  display: block;
  background-color: #f0899c;
  border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  width: 7px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
#empreendimento.logado .relatorios strong {
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  display: block;
  margin-bottom: 25px;
  text-transform: uppercase;
}
#empreendimento.logado .relatorios ul li {
  margin-bottom: 8px;
}
#empreendimento.logado .relatorios ul li:last-child {
  margin-bottom: 0;
}
#empreendimento.logado .relatorios ul li a {
  background-color: #f6fafc;
  display: block;
  font-size: 14px;
  line-height: 29px;
  font-weight: 300;
  position: relative;
  padding: 0 60px 0 20px;
}
#empreendimento.logado .relatorios ul li a span {
  width: 20px;
  height: 29px;
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  text-indent: -2000px;
  overflow: hidden;
  background: url(../svg/ico_download.svg) no-repeat center center;
}
#empreendimento.logado .graficos figure {
  position: relative;
  background-color: #ffffff;
  padding: 20px 20px 20px 24px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#empreendimento.logado .graficos figure:before {
  content: "";
  display: block;
  background-color: #f0899c;
  border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  width: 7px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
#empreendimento.logado .graficos figure img {
  width: 100%;
  height: auto;
}
#empreendimento.logado .graficos figure figcaption {
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
#empreendimento.logado .galeria {
  background-color: #ffffff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  position: relative;
}
#empreendimento.logado .galeria .title {
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 10px 5px;
}
#empreendimento.logado .galeria ul {
  zoom: 1;
}
#empreendimento.logado .galeria ul:before {
  content: "";
  display: block;
}
#empreendimento.logado .galeria ul:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
#empreendimento.logado .galeria ul li a {
  display: block;
}
#empreendimento.logado .galeria ul li a img {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  width: 100%;
  height: 100%;
}
#empreendimento.logado .galeria .open {
  display: block;
  line-height: 35px;
  border: 1px solid #374650;
  font-size: 16px;
  font-weight: 300;
}
#contato_rodape {
  background-color: #272c31;
  color: #ffffff;
  padding: 50px 0;
  margin-bottom: 3px;
}
#contato_rodape .titulo-descricao p {
  padding: 15px 0 10px 0;
}
#contato_rodape .titulo-descricao button {
  margin-top: 15px;
  line-height: 47px;
  display: inline-block;
  padding: 0 25px;
  font-size: 16px;
  background-color: #e3163b;
  cursor: pointer;
  color: #ffffff;
}
#contato_botao {
  position: fixed;
  right: 50%;
  bottom: 35px;
  z-index: 10;
}
#contato_botao button {
  display: inline-block;
  line-height: 56px;
  background-color: #e3163b;
  color: #ffffff;
  font-size: 14px;
  padding: 0 40px;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  cursor: pointer;
}
#contato_botao button:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../svg/ico_baloon.svg) no-repeat center center;
  vertical-align: middle;
  margin-right: 12px;
}
.admin-bar #contato_formulario {
  top: 32px;
}
#contato_formulario.hidden {
  display: none;
  background: rgba(39, 44, 49, 0);
}
#contato_formulario.hidden .content {
  margin-right: -335px;
}
#contato_formulario {
  z-index: 99;
  background: rgba(39, 44, 49, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#contato_formulario .content {
  margin-right: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 335px;
  padding: 75px 20px 150px 20px;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: #ffffff;
  overflow: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#contato_formulario .content .close {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid #374650;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../svg/close_ico.svg) no-repeat center center;
  cursor: pointer;
}
#contato_formulario .content .heading {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  padding-bottom: 24px;
}
#contato_formulario .content .heading strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #374650;
}
#contato_formulario .content .formulario label {
  color: #374650;
}
#contato_formulario .content .corretor {
  background-color: #374650;
  position: fixed;
  width: 335px;
  bottom: 0;
  right: 0;
  padding: 25px 0;
  color: #ffffff;
}
#contato_formulario .content .corretor p {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding-left: 40px;
  width: 230px;
  margin: 0 auto;
}
#contato_formulario .content .corretor p:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: transparent url(../svg/ico_headset.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
}
#contato_formulario .content .corretor strong {
  display: block;
  font-size: 14px;
  line-height: 21px;
}
#contato_formulario .content .corretor a {
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
}
.admin-bar .zoom {
  top: 32px;
}
.zoom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  clear: both;
  z-index: 99;
  background: rgba(39, 44, 49, 0.8);
}
.zoom .close {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 29px;
  right: 29px;
  background: url(../svg/close_ico_white.svg) no-repeat center center;
  cursor: pointer;
}
.zoom .swiper-container {
  height: 100%;
  overflow: visible;
}
.zoom .swiper-slide {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.zoom .swiper-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.zoom .swiper-slide .legend {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  text-align: center;
}
.zoom .swiper-slide .legend span {
  background-color: #ffffff;
  padding: 10px 20px;
  display: inline-block;
  font-family: "Roboto Slab";
  font-weight: 500;
  font-size: 16px;
}
.zoom .swiper-slide.swiper-slide-active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.zoom#galeria-0 .swiper-container {
  overflow: hidden;
}
.zoom#galeria-0 .swiper-slide {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.zoom .swiper-button-next,
.zoom .swiper-button-prev {
  border: 1px solid #ffffff;
  width: 30px;
  height: 30px;
}
.zoom .swiper-button-next {
  right: 35px;
  background-image: url(../svg/ico-arrow-next_white.svg);
}
.zoom .swiper-button-prev {
  left: 35px;
  background-image: url(../svg/ico-arrow-prev_white.svg);
}
body.computer .avancamento-obra .columns-obra {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}
.avancamento-obra {
  background-color: #667a86;
  color: #fff;
}
.avancamento-obra .obra-section-title {
  margin-bottom: 1.3em;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
}
.avancamento-obra .obra-section-title-small {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}
.avancamento-obra .descricao .label {
  font-weight: 300;
}
.avancamento-obra .descricao .date {
  font-weight: 500;
  text-transform: uppercase;
}
.avancamento-obra .galleryObra {
  margin: 0 60px;
  position: relative;
  height: 100%;
}
.avancamento-obra .galleryObra .galeria {
  height: 100%;
  max-height: 510px;
}
.avancamento-obra .galleryObra .swiper-container {
  height: 100%;
}
.avancamento-obra .galleryObra .swiper-wrapper {
  height: 100%;
}
.avancamento-obra .galleryObra .swiper-wrapper .obra-text {
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: flex-start;
  background: rgba(55, 70, 80, 0.5);
  background: linear-gradient(
    180deg,
    rgba(55, 70, 80, 0.09847689) 0%,
    rgba(55, 70, 80, 0.49903711) 100%
  );
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s ease;
  overflow: hidden;
  border-radius: 5px;
}
.avancamento-obra .galleryObra .swiper-wrapper .obra-text .title {
  font-size: 20px;
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.avancamento-obra .galleryObra .swiper-wrapper .obra-text .text {
  font-size: 14px;
  font-weight: 300;
  font-family: "Roboto Slab";
}
.avancamento-obra .galleryObra .swiper-wrapper .swiper-slide {
  height: 100% !important;
}
.avancamento-obra .galleryObra .swiper-wrapper .swiper-slide img,
.avancamento-obra .galleryObra .swiper-wrapper .swiper-slide video {
  border-radius: 5px;
}
.avancamento-obra .galleryObra .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avancamento-obra .galleryObra .swiper-wrapper .swiper-slide:hover .obra-text {
  height: 90px;
}
.avancamento-obra .galleryObra .swiper-wrapper .swiper-slide a {
  height: 100%;
  display: block;
}
.avancamento-obra .galleryObra .swiper-button-next,
.avancamento-obra .galleryObra .swiper-button-prev {
  transform: translate(0px, 25%);
  width: 30px;
  height: 30px;
  border: 1px solid #374650;
  background-size: 15px 15px;
  background-color: #fff;
}
.avancamento-obra .galleryObra .swiper-button-next {
  right: -60px;
}
.avancamento-obra .galleryObra .swiper-button-prev {
  left: -60px;
}
.avancamento-obra .container {
  padding: 60px;
}
.avancamento-obra .container .titulo-descricao {
  width: 100%;
  margin-bottom: 1em;
}
.avancamento-obra .data {
  width: 100%;
  max-width: 370px;
  min-width: 240px;
}
.avancamento-obra .galeria-obra {
  overflow: hidden;
  position: relative;
  margin-left: 5%;
  max-width: 815px;
}
.avancamento-obra .constuction-detail {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto Slab";
  font-weight: 300;
  font-size: 14px;
}
.avancamento-obra .constuction-detail .label {
  width: 50%;
}
.avancamento-obra .constuction-detail .bar-container {
  display: block;
  flex-grow: 1;
  background-color: white;
  border-radius: 60px;
  overflow: hidden;
  width: 40%;
  margin: 0.5em;
  height: 18px;
}
.avancamento-obra .constuction-detail .bar-container span {
  display: block;
  background-color: #f70e35;
  height: 100%;
  border-radius: 60px;
  transform: translateX(-100%);
  width: 100%;
}
.avancamento-obra .constuction-detail .value {
  width: 10%;
}
.avancamento-obra .svg-item {
  max-width: 250px;
  width: 100%;
  font-size: 16px;
  margin: 0 auto 2em;
}
.avancamento-obra .donut-ring {
  stroke: #ebebeb;
}
.avancamento-obra .donut-segment {
  transform-origin: center;
  stroke: #f70e35;
}
.avancamento-obra .donut-text {
  font-family: Arial, Helvetica, sans-serif;
  fill: #ff6200;
}
.avancamento-obra .donut-text-1 {
  fill: #eef2f4;
}
.avancamento-obra .donut-label {
  font-size: 0.28em;
  font-weight: 700;
  line-height: 1;
  fill: #000;
  transform: translateY(0.25em);
}
.avancamento-obra .donut-percent {
  font-size: 0.5em;
  line-height: 1;
  transform: translateY(0.5em);
  font-weight: bold;
}
.avancamento-obra .donut-data {
  font-size: 0.12em;
  line-height: 1;
  transform: translateY(0.5em);
  text-align: center;
  text-anchor: middle;
  color: #666;
  fill: #666;
}
#noticias-destaques {
  background-color: #b6b6b6;
  clear: both;
}
#noticias-destaques h3,
#noticias-destaques h2 {
  color: #ffffff;
}
#noticias-destaques .swiper-button-next {
  background-image: url(../svg/ico-arrow-next_white.svg);
}
#noticias-destaques .swiper-button-prev {
  background-image: url(../svg/ico-arrow-prev_white.svg);
}
#noticias-destaques .swiper-button-next,
#noticias-destaques .swiper-button-prev {
  border: 1px solid #ffffff;
  width: 50px;
  height: 50px;
}
#noticias-destaques .noticia {
  position: relative;
}
#noticias-destaques .noticia a {
  display: block;
}
#noticias-destaques .noticia figure {
  background-color: #ffffff;
  position: relative;
}
#noticias-destaques .noticia figure img {
  display: block;
}
#noticias-destaques .noticia figure figcaption {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}
#noticias-destaques .noticia figure figcaption strong {
  display: block;
  text-transform: uppercase;
  position: relative;
  font-size: 17px;
  line-height: 32px;
  color: #374650;
}
#noticias-destaques .noticia figure figcaption strong:after {
  content: "";
  display: block;
  background-color: #fa002d;
}
#noticias-destaques .noticia figure figcaption span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}
#noticias-destaques .noticia:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  background-color: #000000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
#noticias-destaques .noticia.swiper-slide-active:after {
  content: none;
}
.title-line {
  font-weight: 300;
  font-family: "Aktiv Grotesk Ex Trial";
}
.title-line:before {
  content: "";
  display: inline-block;
  height: 3px;
  background-color: #fa002d;
  vertical-align: middle;
}
.title-content .left {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.title-content .right {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.conteudo_titulo-texto-imagem .clear {
  clear: both;
}
.participacoes_conteudo_titulo-texto-imagem a {
  display: block;
}
.participacoes_conteudo_titulo-texto-imagem figure {
  position: relative;
  display: block;
  zoom: 1;
}
.participacoes_conteudo_titulo-texto-imagem figure:before {
  content: "";
  display: block;
}
.participacoes_conteudo_titulo-texto-imagem figure:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
.participacoes_conteudo_titulo-texto-imagem figure img {
  display: block;
}
.participacoes_conteudo_titulo-texto-imagem figure figcaption {
  background-color: #f2f2f2;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.participacoes_conteudo_titulo-texto-imagem figure figcaption .title-line {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: "aktiv-grotesk-extended", "Aktiv Grotesk Ex Trial", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}
.participacoes_conteudo_titulo-texto-imagem figure figcaption strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 2px;
}
.participacoes_conteudo_titulo-texto-imagem figure figcaption p {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}
#atuacao-sobre {
  background-color: #f2f2f2;
}
#atuacao-sobre .bloco {
  background-color: #ffffff;
}
#atuacao-sobre .bloco a {
  display: block;
}
#atuacao-sobre .bloco figure img {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
#atuacao-sobre .bloco figure figcaption {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  text-align: center;
}
#atuacao-sobre .bloco figure figcaption strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#premiacoes {
  background-color: #ffffff;
}
#premiacoes .premios {
  padding: 25px 0;
}
#premiacoes .premios .swiper-container {
  margin: 0 auto;
}
#premiacoes .premios .swiper-container .swiper-wrapper {
  padding: 6px 0;
}
#premiacoes .premios .swiper-button-prev,
#premiacoes .premios .swiper-button-next {
  width: 52px;
  height: 52px;
  display: block;
  border: 1px solid #374650;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#premiacoes .premio {
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f2f2f2;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  padding: 30px;
}
#premiacoes .premio figure {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
#premiacoes .premio figure img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}
#premiacoes .premio.swiper-slide {
  margin: 27px 0;
}
#premiacoes .premio.active,
#premiacoes .premio.swiper-slide-active {
  font-size: 20px;
  line-height: 28px;
  margin: 0;
}
#premiacoes .premio.active img,
#premiacoes .premio.swiper-slide-active img {
  width: auto;
}
#premiacoes .premio.active:after,
#premiacoes .premio.swiper-slide-active:after,
#premiacoes .premio.active:before,
#premiacoes .premio.swiper-slide-active:before {
  content: "";
  display: block;
  height: 6px;
  background-color: #e3163b;
  position: absolute;
  left: 50%;
  width: 200px;
  margin-left: -100px;
}
#premiacoes .premio.active:before,
#premiacoes .premio.swiper-slide-active:before {
  top: -6px;
}
#premiacoes .premio.active:after,
#premiacoes .premio.swiper-slide-active:after {
  bottom: -6px;
}
#incorporadora #portfolio-destaque figure img,
#incorporadora #portfolio-destaque figure figcaption span {
  background-color: #2D363E;
}
#incorporadora .content-split {
  color: #ffffff;
  background: #2D363E;
}
#incorporadora .content-split .title-line {
  position: relative;
}
#incorporadora .content-split .title-line:before {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#portfolio-destaque a {
  display: block;
}
#portfolio-destaque figure {
  position: relative;
}
#portfolio-destaque figure img {
  display: block;
  background-color: #e3163b;
}
#portfolio-destaque figure figcaption {
  background-color: #F2F2F2;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}
#portfolio-destaque figure figcaption strong {
  display: block;
  font-size: 37px;
  line-height: 49px;
  font-family: "Roboto Slab";
}
#portfolio-destaque figure figcaption strong:before {
  content: "";
  display: inline-block;
  height: 3px;
  background-color: #fa002d;
  vertical-align: middle;
}
#portfolio-destaque figure figcaption span {
  padding: 0 40px;
  margin-top: 20px;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  background-color: #e3163b;
  line-height: 40px;
}
#timeline {
  background-color: #f2f2f2;
}
#timeline h3,
#timeline p {
  text-align: center;
}
#timeline h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#timeline p {
  font-size: 14px;
  font-weight: 300;
}
#timeline .years {
  position: relative;
}
#timeline .years .clear {
  clear: both;
}
#timeline .years .year {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  position: relative;
}
#timeline .years .year .content {
  position: relative;
}
#timeline .years .year strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}
#timeline .years .year:after {
  content: "";
  display: block;
  background-color: #e3163b;
}
#timeline .years .swiper-button-next,
#timeline .years .swiper-button-prev {
  width: 30px;
  height: 30px;
  border: 1px solid #374650;
  top: 30px;
  margin-top: 0;
}
#timeline .years .swiper-button-next {
  right: 10px;
}
#timeline .years .swiper-button-prev {
  left: 10px;
}
#timeline .years:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #707070;
}
#socios .socios {
  position: relative;
}
#socios .socios .clear {
  clear: both;
}
#socios .socios .socio {
  float: left;
  width: 200px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 8px;
  font-size: 14px;
  font-weight: 300;
  line-height: 35px;
  position: relative;
  text-align: center;
}
#socios .socios .socio figure {
  padding-bottom: 20px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-box-shadow: 0px 60px 68px -1px #f2f2f2;
  -moz-box-shadow: 0px 60px 68px -1px #f2f2f2;
  box-shadow: 0px 60px 68px -1px #f2f2f2;
}
#socios .socios .socio figure img {
  width: 150px;
  height: 150px;
  border-radius: 150px;
  -moz-border-radius: 150px;
  -webkit-border-radius: 150px;
  margin: -20px auto 0 auto;
}
#socios .socios .socio figure figcaption {
  padding-top: 20px;
}
#socios .socios .socio strong {
  display: block;
  font-weight: 700;
}
#socios .socios .socio a {
  text-indent: -2000px;
  overflow: hidden;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../svg/socios_linkedin.svg) no-repeat center center;
  background-size: contain;
  margin: 0 auto;
}
#atuacao .heading {
  zoom: 1;
}
#atuacao .heading:before {
  content: "";
  display: block;
}
#atuacao .heading:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
#atuacao .heading h3 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#atuacao .heading p {
  font-size: 14px;
  font-weight: 500;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#atuacao .bloco.construtora .img:before {
  background-color: #e3163b;
}
#atuacao .bloco.incorporadora .img:before {
  background-color: #b6b6b6;
}
#atuacao .bloco.participa-es .img:before {
  background-color: #374650;
}
.titulo-descricao {
  text-align: center;
}
.titulo-descricao h2,
.titulo-descricao h3 {
  font-family: "Aktiv Grotesk Ex Trial";
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 30px;
}
.titulo-descricao p {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
}
.titulo-descricao .clear {
  clear: both;
}
#nossas-participacoes {
  padding-bottom: 0;
}
#nossas-participacoes .participacoes .participacao {
  position: relative;
  margin-bottom: 3px;
}
#nossas-participacoes .participacoes .participacao a,
#nossas-participacoes .participacoes .participacao div {
  z-index: 2;
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e3163b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
#nossas-participacoes .participacoes .participacao a strong,
#nossas-participacoes .participacoes .participacao div strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#nossas-participacoes .participacoes .participacao a span,
#nossas-participacoes .participacoes .participacao div span {
  margin-top: 20px;
  display: block;
  float: left;
  padding: 0 25px;
  color: #374650;
  font-size: 12px;
  background-color: #f2f2f2;
  line-height: 40px;
}
#nossas-participacoes .participacoes .participacao div span {
  display: none;
}
#nossas-participacoes .participacoes .participacao ul {
  position: relative;
  z-index: 1;
}
#nossas-participacoes .participacoes .participacao ul li {
  display: none;
}
#nossas-participacoes .participacoes .participacao ul li figure {
  position: relative;
}
#nossas-participacoes .participacoes .participacao ul li figure figcaption {
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 2px;
}
#nossas-participacoes .participacoes .participacao ul li figure:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#nossas-participacoes .participacoes .participacao ul li:first-child {
  display: block;
}
#nossas-participacoes .participacoes .participacao:nth-child(even) a,
#nossas-participacoes .participacoes .participacao:nth-child(even) div {
  background-color: #374650;
}
#construtora .titleH3 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  font-size: 28px;
  line-height: 39px;
  font-weight: 700;
  text-align: center;
}
#construtora .titleH3:after,
#construtora .titleH3:before {
  content: "";
  display: block;
  background: #e3163b;
  position: absolute;
  width: 3px;
  top: 0;
  bottom: 0;
}
#construtora .titleH3:before {
  left: 0;
}
#construtora .titleH3:after {
  right: 0;
}
#construtora .galeria .swiper-button-next {
  right: -26px;
  background: transparent url(../svg/ico-arrow-next_white.svg) no-repeat center
    center;
}
#construtora .galeria .swiper-button-next:hover {
  background-position: 26px center;
}
#construtora .galeria .swiper-button-prev {
  left: -26px;
  background: transparent url(../svg/ico-arrow-prev_white.svg) no-repeat center
    center;
}
#construtora .galeria .swiper-button-prev:hover {
  background-position: 16px center;
}
#construtora .galeria .swiper-button-next,
#construtora .galeria .swiper-button-prev {
  width: 52px;
  height: 52px;
  background-color: #e3163b;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#construtora .content-split {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
}
.content-split .content {
  position: relative;
}
.content-split-galeria {
  position: relative;
}
.content-split-galeria:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #f2f2f2;
}
#empreendimentos-iconicos {
  position: relative;
}
#empreendimentos-iconicos h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Roboto Slab";
}
#empreendimentos-iconicos figure {
  position: relative;
}
#empreendimentos-iconicos figure img {
  display: block;
}
#empreendimentos-iconicos figure figcaption {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
#empreendimentos-iconicos figure figcaption strong {
  font-family: "Aktiv Grotesk Ex Trial";
  display: block;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 39px;
  margin-bottom: 20px;
}
#empreendimentos-iconicos figure figcaption .local,
#empreendimentos-iconicos figure figcaption .status {
  font-size: 12px;
  line-height: 16px;
}
#empreendimentos-iconicos figure figcaption .local b,
#empreendimentos-iconicos figure figcaption .status b {
  font-family: "Aktiv Grotesk Ex Trial";
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
#empreendimentos-iconicos figure figcaption .local span,
#empreendimentos-iconicos figure figcaption .status span {
  font-family: "Ivy Journal";
  font-size: 13px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
#empreendimentos-iconicos figure figcaption .local:before,
#empreendimentos-iconicos figure figcaption .status:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
}
#empreendimentos-iconicos figure figcaption .local:before {
  background: url(../svg/ico_local.svg) no-repeat center center;
}
#empreendimentos-iconicos figure figcaption .status:before {
  background: url(../svg/ico_status.svg) no-repeat center center;
}
#empreendimentos-iconicos .swiper-button-next {
  right: 25px;
  background: transparent url(../svg/ico-arrow-next.svg) no-repeat center center;
}
#empreendimentos-iconicos .swiper-button-next:hover {
  background-position: 25px center;
}
#empreendimentos-iconicos .swiper-button-prev {
  left: 25px;
  background: transparent url(../svg/ico-arrow-prev.svg) no-repeat center center;
}
#empreendimentos-iconicos .swiper-button-prev:hover {
  background-position: 15px center;
}
#empreendimentos-iconicos .swiper-button-next,
#empreendimentos-iconicos .swiper-button-prev {
  width: 52px;
  height: 52px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #374650;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#numeros {
  clear: both;
  background-color: #b6b6b6;
}
#numeros .title-line {
  color: #ffffff;
}
#numeros .numeros .numero {
  text-align: center;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  position: relative;
}
#numeros .numeros .numero .cnt .title {
  text-transform: uppercase;
}
#numeros .numeros .numero .cnt .title p {
  height: auto;
}
#numeros .numeros .numero .cnt .title strong {
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}
#numeros .numeros .numero .cnt .title:after {
  content: "";
  display: block;
  margin: 20px auto;
  width: 50px;
  height: 3px;
  background: #e3163b;
}
#numeros .numeros .numero:nth-child(odd) {
  background-color: #ffffff;
}
#numeros .numeros .numero:nth-child(even) {
  background-color: #f2f2f2;
}
.admin-bar #filtro {
  top: 32px;
}
#filtro.hidden {
  display: none;
  background: rgba(39, 44, 49, 0);
}
#filtro.hidden .filtro {
  margin-right: -285px;
}
#filtro {
  z-index: 99;
  position: fixed;
  background: rgba(39, 44, 49, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#filtro .filtro {
  width: 285px;
  margin-right: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  right: 0;
  background: #ffffff;
  padding-top: 75px;
  padding-bottom: 75px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  overflow: auto;
}
#filtro .filtro .close {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid #374650;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../svg/close_ico.svg) no-repeat center center;
  cursor: pointer;
}
#filtro .filtro button {
  display: block;
  width: 100%;
  line-height: 69px;
  background-color: #374650;
  color: #ffffff;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 285px;
}
#filtro .filtro dl {
  border-bottom: 1px solid #bcbcbc;
  padding: 40px 20px;
  font-size: 16px;
  font-weight: 300;
}
#filtro .filtro dl:last-of-type {
  border-bottom: 0;
}
#filtro .filtro dl dt {
  font-family: "Roboto Slab";
  line-height: 21px;
  padding-bottom: 20px;
}
#filtro .filtro dl dd {
  line-height: 23px;
}
#filtro .filtro dl dd label {
  display: inline-block;
  cursor: pointer;
  padding: 5px 0;
  position: relative;
}
#filtro .filtro dl dd label:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #374650;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#filtro .filtro dl dd label.active:before {
  background-color: #374650;
}
#filtro .filtro dl dd input {
  visibility: hidden;
  width: 30px;
}
.openFilter {
  display: block;
  line-height: 52px;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 300;
  text-transform: none;
  cursor: pointer;
}
.openFilter:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 15px;
  background: url(../svg/filter_ico.svg) no-repeat center center;
}
.listagem-empreendimentos {
  clear: both;
}
.listagem-empreendimentos .zero {
  text-align: center;
}
.box-empreendimento {
  float: left;
}
.box-empreendimento a {
  display: block;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
}
.box-empreendimento figure {
  position: relative;
}
.box-empreendimento figure img {
  display: block;
}
.box-empreendimento figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.box-empreendimento figure figcaption b {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  display: inline-block;
  padding-bottom: 10px;
}
.box-empreendimento figure figcaption span {
  font-family: "Roboto Slab";
  display: block;
  padding-left: 10px;
  position: relative;
}
.box-empreendimento figure figcaption span:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #e3163b;
  position: absolute;
  left: 0;
  top: 5px;
}
.box-empreendimento figure figcaption .txt {
  font-family: "Aktiv Grotesk Ex Trial";
  position: relative;
  padding: 20px;
  color: #ffffff;
}
.box-empreendimento figure figcaption:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent url(../svg/shadow_empreendimentos-listagem.svg)
    no-repeat center bottom;
  background-size: cover;
}
#noticias article {
  font-weight: 300;
}
#noticias article .info {
  position: relative;
  margin-bottom: 20px;
}
#noticias article .info h2 {
  font-family: "Roboto Slab";
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}
#noticias article .info h3 {
  font-size: 33px;
  line-height: 49px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#noticias article .info date {
  font-size: 14px;
}
#noticias article .info .social {
  position: absolute;
  bottom: 0;
  right: 0;
}
#noticias article .info .social a {
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  margin-left: 15px;
  text-indent: -2000px;
  overflow: hidden;
}
#noticias article .info .social a.instagram {
  background: url(../svg/social_instagram_blue.svg) no-repeat center center;
}
#noticias article .info .social a.linkedin {
  background: url(../svg/social_linkedin_blue.svg) no-repeat center center;
}
#noticias article .info .social a.facebook {
  background: url(../svg/social_facebook_blue.svg) no-repeat center center;
}
#noticias article content {
  background-color: #f2f2f2;
  font-size: 14px;
  line-height: 24px;
  display: block;
}
#noticias article content figure figcaption {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
}
#noticias article content p {
  margin-bottom: 24px;
}
.wpcf7 {
  position: relative;
}
.wpcf7 .label-input {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  position: relative;
  margin-bottom: 21px;
}
#fale-conosco .wpcf7 .label-input{
  margin-bottom: 0;
}
#fale-conosco .wpcf7 .label-file span:first-child {
  position:relative;
  height: 40px;
}
#fale-conosco .wpcf7 .label-file span:first-child:before {
  content:'';
  position:absolute;
  background: url('../img/Icon feather-file.svg') no-repeat center #f2f2f2;
  left:0;
  right: 0;
  background-size: 20px;
  padding:5px;
  color:#fff;
  width: 30px;
  height: 35px;
  text-align:center;
  border-radius:5px;
  cursor:pointer;
}
#fale-conosco .wpcf7 .label-file span:first-child > input {
  opacity: 0;
  cursor:pointer;
  height: 44px;
}

/* Estilizar o botão personalizado */
#fale-conosco .wpcf7 .file-label {
  padding: 20px 10px;
  background-color: #333;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-top: 10px;
  cursor: pointer;
}

/* Estilizar o ícone do botão */
.custom-file-icon {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.wpcf7 .label-input .label {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: 5px;
  left: 25px;
  font-size: 10px;
  line-height: 10px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
.wpcf7 .label-input input,
.wpcf7 .label-input textarea {
  background-color: #f2f2f2;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 25px 0 25px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  line-height: 35px;
}
.wpcf7 .label-input input.wpcf7-not-valid,
.wpcf7 .label-input textarea.wpcf7-not-valid {
  border: 1px solid red;
}
.wpcf7 .label-input textarea {
  height: 177px;
}
.wpcf7 .submit {
  clear: both;
  text-align: center;
}
.wpcf7 .submit input {
  display: inline-block;
  background-color: #e3163b;
  color: #ffffff;
  padding: 10px 25px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
}
#politica .the_content {
  background-color: #f2f2f2;
  font-size: 16px;
  line-height: 21px;
}
#politica .the_content p {
  margin-bottom: 21px;
}
#politica .the_content p:first-child {
  margin-bottom: 0;
}
#politica .the_content h2 {
  font-size: 20px;
}
#politica .the_content .txt h2 {
  font-size: 19px;
}
#politica .the_content .txt h3 {
  font-size: 18px;
}
#politica .the_content .txt h4 {
  font-size: 17px;
}
#politica .the_content .txt h5,
#politica .the_content .txt h6 {
  font-size: 16px;
}
#politica .the_content h2,
#politica .the_content h3,
#politica .the_content h4,
#politica .the_content h5,
#politica .the_content h6 {
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 35px;
  text-transform: uppercase;
}
#politica .the_content a {
  text-decoration: underline;
}
#politica .the_content strong {
  font-weight: 700;
}
/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  z-index: 10;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background: url("../svg/ico-arrow-prev.svg") no-repeat center center;
  left: 0;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background: url("../svg/ico-arrow-next.svg") no-repeat center center;
  right: 0;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
  text-align: center;
  bottom: 40px;
  left: 0;
  right: 0;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #bcbcbc;
  margin: 0 5px;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fa002d;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl
  .swiper-pagination-progress
  .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white
  .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black
  .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
body.computer {
  overflow-y: scroll;
}
body.computer #wrapper {
  min-width: 900px;
}
body.computer .container {
  max-width: 1366px;
  min-width: 900px;
}
@media only screen and (min-width: 1051px) {
  body.computer #header {
    padding: 0 25px;
    height: 62px;
    line-height: 62px;
    z-index: 2;
  }

  body.computer #header h1 {
    top: 17px;
    left: 25px;
  }
  body.computer #header h1 a {
    width: 85px;
    height: 29px;
  }
  body.computer #header nav {
    letter-spacing: 1px;
    text-align: center;
    padding-left: 95px;
    padding-right: 150px;
  }
  body.computer #header .language {
    display: inline-block;
    line-height: 62px;
    font-size: 10px;
    margin-left: 20px;
  }
  body.computer #header .language a {
    display: inline-block;
  }
  body.computer #header .language a.active {
    color: #e3163b;
    font-weight: 700;
  }
  body.computer #header nav {
    text-align: center;
    font-size: 10px;
  }
  body.computer #header nav ul,
  body.computer #header nav li,
  body.computer #header nav a {
    display: inline-block;
  }
  body.computer #header nav ul li a {
    padding: 0 10px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  body.computer #header nav ul li a:after {
    content: "";
    display: block;
    background-color: #e3163b;
    pointer-events: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 0;
    height: 4px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: 0;
  }
  body.computer #header nav ul li a:hover:after {
    width: 8px;
    margin-left: -4px;
  }
  body.computer #header nav ul li.current-menu-item {
    color: #e3163b;
    font-weight: 700;
  }
  body.computer #header nav ul li.current-menu-item a:after {
    width: 8px;
    margin-left: -4px;
  }
  body.computer #header aside {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
  }
  body.computer #header nav ul li.current-menu-item a:after{
    bottom: 0;
  }
  body.computer #header nav ul, 
  body.computer #header nav li, 
  body.computer #header nav a{
    margin-bottom:0;
  }

}
@media only screen and (max-width: 1200px) {
  body.computer #header {
    height: 42px;
    z-index: 50;
    background-color: #ffffff;
    margin: 0 auto;
    text-align: left;
  }
  body.computer #header .hamburguer {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    display: block;
    width: 42px;
    height: 42px;
    background: #374650 url(../svg/ico_hamburger.svg) no-repeat center center;
    cursor: pointer;
  }
  body.computer #header h1 {
    top: 6px;
    left: 9px;
  }
  body.computer #header h1 a {
    width: 85px;
    height: 30px;
  }
  body.computer #header .aside {
    display: block;
    z-index: 99;
    position: fixed;
    background: rgba(39, 44, 49, 0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
  }
  body.computer #header .aside .close {
    display: block;
    width: 42px;
    height: 42px;
    border: 1px solid #ffffff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 20px;
    right: 20px;
    background: url(../svg/close_ico_white.svg) no-repeat center center;
    cursor: pointer;
  }
  body.computer #header .aside .content {
    width: 285px;
    overflow: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
    padding-top: 100px;
    background-color: #e3163b;
    margin: 5px;
  }
  body.computer #header .aside .language {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 15px 0;
  }
  body.computer #header .aside .language a {
    display: inline-block;
  }
  body.computer #header .aside .language a.active:after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #ffffff;
  }
  body.computer #header .aside nav {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 62px;
    color: #ffffff;
  }
  body.computer #header .aside aside {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 2px;
  }
  body.computer #header .aside aside .login {
    line-height: 69px;
    text-align: center;
  }
  body.computer #header .aside.hidden {
    display: none;
  }
}
body.computer #footer .container {
  /*padding: 100px 300px 100px 140px;*/
  padding: 30px 80px;
}


body.computer #footer ul {
  position: absolute;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 150px;
}
body.computer #footer ul li,
body.computer #footer ul a {
  display: block;
  float: left;
}
/*MenuFooter*/
body.computer #footer .logo {
  margin-bottom: 20px;
}
body.computer #footer .menu {
  display: flex;
}
body.computer #footer .line {
  width: 100%;
  background-color: #fff;
  height: 2px;
  margin: 25px 0;
}
body.computer #footer ul.menu-footer {
  position: initial;
  transform: none;
  display: inline-block;
  vertical-align: top;
  flex: 0 0 12.666667%;
  max-width: 12.666667%;
}
body.computer #footer .copy ul {
  position: initial;
  transform: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 100%;
}
body.computer #footer .copy ul li {
  float: none;
  display: inline-block;
  margin: 0 10px;
}

body.computer #footer .copy ul li a {
  display: inline-block;
  width: auto;
  vertical-align: middle;
  height: auto;
  text-indent: initial;
  float: none;
  margin-bottom: 0;
  color: #fff;
}

body.computer #footer ul.menu-footer.item-0 {
  margin-left: 0;
}
body.computer #footer ul.menu-footer.item-1 {
  flex: 0 0 18.666667%;
  max-width: 18.666667%;
}
body.computer #footer ul.menu-footer.item-2 {
  flex: 0 0 25.666667%;
  max-width: 25.666667%;
}
body.computer #footer ul.menu-footer.item-3 {
  flex: 0 0 20.666667%;
  max-width: 20.666667%;
}
/*body.computer #footer ul.menu-footer.end{
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}*/
body.computer #footer ul.menu-footer.item-language {
  margin-left: 20px;
  text-align: center;
}
body.computer #footer ul.menu-footer.item-language li a {
  display: inline-block;
  width: auto;
  vertical-align: text-top;
}
body.computer #footer ul.menu-footer li {
  display: block;
  font-size: 13px;
  float: none;
  margin: 10px 0;
  line-height: 1.5;
}
body.computer #footer ul.menu-footer li a {
  float: none;
  font-size: 13px;
  color: #fff;
  text-indent: initial;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
body.computer #footer ul.menu-footer li a span {
  display: block;
}

body.computer #footer ul.menu-footer li a img {
  vertical-align: text-top;
}

body.computer #footer ul li a.nolink {
  cursor: default;
}
/*MenuFooter*/
body.computer .topo figure:after {
  content: "";
  display: block;
  width: 100%;
  height: 486px;
  background: url(../svg/shadow_7.svg) no-repeat bottom center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: repeat-x;
}
body.computer .topo figure figcaption {
  z-index: 2;
}
body.computer .topo.swiper figure figcaption {
  margin-top: -30px;
}
body.computer .topo.swiper .swiper-pagination {
  bottom: 65px !important;
}
body.computer #homepage #tipos {
  padding: 60px 0 20px 0;
}
body.computer #homepage #tipos .blocos {
  margin: 20px 2% 0 2%;
}
body.computer #homepage #tipos .bloco {
  width: 20%;
  padding: 0 1%;
  margin-bottom: 40px;
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.computer #homepage #tipos .bloco a figure img {
  width: 100%;
  height: auto;
}
body.computer #fale-conosco .formularios {
  margin-top: 40px;
  margin-bottom: 80px;
}
body.computer #fale-conosco .formularios .container {
  width: 830px;
  min-width: 830px;
  min-height: 412px;
}
body.computer #fale-conosco .formularios dl dt {
  width: 205px;
  padding: 20px;
  margin-bottom: 8px;
  background-color: #f2f2f2;
}
body.computer #fale-conosco .formularios dl dd {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 625px;
  padding: 25px 45px;
}
body.computer #fale-conosco .formularios dl dd p {
  margin-bottom: 20px;
}
body.computer #fale-conosco .formularios dl.active dt {
  background-color: #ffffff;
}
body.computer #fale-conosco .formularios dl.active dt:after {
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -5px;
}
body.computer #fale-conosco .formularios .wpcf7 .label-message {
  position: absolute;
  top: 0;
  right: 0;
}
body.computer #fale-conosco .formularios .wpcf7 .label-input {
  width: 49%;
  float: left;
  clear: left;
}
body.computer #fale-conosco .formularios .wpcf7 .files{
  display: inline-flex;
  gap: 10px;
}
body.computer #fale-conosco .formularios .enviar_curriculo .wpcf7 .label-email {
  width: 40%;
}
body.computer #fale-conosco .formularios .wpcf7 .label-file {
  width: 7%;
}
body.computer #empreendimento .topo figure figcaption strong {
  margin-top: 20px;
  font-size: 24px;
  line-height: 36px;
}
body.computer #empreendimento.publico .sobre {
  background: #ffffff;
}
body.computer #empreendimento.publico .sobre .container {
  padding: 0 210px 60px;
}
body.computer #empreendimento.publico .sobre .content {
  width: 47.5%;
  float: left;
}
body.computer #empreendimento.publico .sobre .content:before {
  position: absolute;
  top: 28px;
  left: 0;
  width: 110px;
  height: 3px;
  content: "";
  display: block;
  background-color: #fa002d;
}
body.computer #empreendimento.publico .sobre .informacoes-tecnicas {
  width: 50.5%;
  float: right;
}
body.computer #empreendimento.publico .sobre .informacoes-tecnicas .info {
  padding: 10px 35px;
}
body.computer
  #empreendimento.publico
  .sobre
  .informacoes-tecnicas
  .info
  table
  tr
  th {
  width: 150px;
}
@media only screen and (max-width: 1200px) {
  body.computer #empreendimento.publico .sobre .content {
    margin-bottom: 30px;
  }
  body.computer #empreendimento.publico .sobre .content,
  body.computer #empreendimento.publico .sobre .informacoes-tecnicas {
    width: 100%;
  }
}
body.computer #empreendimento.publico .sobre .informacoes-tecnicas-destacadas {
  padding-top: 50px;
}
body.computer
  #empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info {
  margin-right: -40px;
}
body.computer
  #empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info
  ul
  li {
  padding: 0 40px;
  width: 25%;
  float: left;
}
body.computer #empreendimento.publico .fotos-do-empreendimento .container {
  padding: 60px 0;
}
body.computer #empreendimento.publico .fotos-do-empreendimento .galeria {
  padding: 0 60px;
}
body.computer
  #empreendimento.publico
  .fotos-do-empreendimento
  .galeria
  .swiper-slide {
  width: auto;
}
body.computer
  #empreendimento.publico
  .fotos-do-empreendimento
  .swiper-slide
  img,
body.computer
  #empreendimento.publico
  .fotos-do-empreendimento
  .swiper-slide
  video {
  height: 485px;
  width: auto;
}
body.computer #empreendimento.publico .mapa {
  padding: 60px 0;
}
body.computer #empreendimento.publico .mapa .titulo-descricao {
  padding-bottom: 0;
}
body.computer #empreendimento.publico .destaques {
  padding-top: 60px;
}
body.computer #empreendimento.publico .destaques .titulo-descricao {
  max-width: 100%;
}
body.computer #empreendimento.publico .destaques .titulo-descricao h3 {
  max-width: 830px;
  margin: 0 auto;
}
body.computer #empreendimento.publico .destaques .titulo-descricao iframe {
  height: 600px;
}
body.computer #empreendimento.publico .destaques .destaque .txt {
  position: absolute;
  top: 30px;
  width: 370px;
  height: 460px;
  padding: 90px 40px;
}
body.computer #empreendimento.publico .destaques .destaque .txt b {
  margin-bottom: 5px;
}
body.computer #empreendimento.publico .destaques .destaque .txt strong {
  margin-bottom: 20px;
}
body.computer #empreendimento.publico .destaques .destaque ul li figure img {
  width: 1366px;
  height: 525px;
  position: relative;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
body.computer #empreendimento.publico .destaques .destaque ul li figure:after {
  height: 328px;
  background: url(../svg/shadow_4.svg) no-repeat bottom center;
}
body.computer
  #empreendimento.publico
  .destaques
  .destaque:nth-child(even)
  .txt {
  left: 50px;
}
body.computer
  #empreendimento.publico
  .destaques
  .destaque:nth-child(even)
  ul
  li
  figcaption {
  padding-left: 420px;
}
body.computer #empreendimento.publico .destaques .destaque:nth-child(odd) .txt {
  right: 50px;
}
body.computer
  #empreendimento.publico
  .destaques
  .destaque:nth-child(odd)
  ul
  li
  figcaption {
  padding-right: 420px;
}
body.computer #empreendimento.logado {
  padding: 0 140px;
}
body.computer #empreendimento.logado .header {
  padding: 50px 0;
}
body.computer #empreendimento.logado .header h2 {
  padding: 0 150px;
}
body.computer #empreendimento.logado .sides {
  margin: 0 -10px;
}
body.computer #empreendimento.logado .sides .left {
  width: 535px;
}
body.computer #empreendimento.logado .sides .right {
  width: 535px;
}
body.computer #empreendimento.logado .status-geral dl dd {
  width: 33%;
  float: left;
  margin-right: 0.5%;
  padding-right: 10px;
}
body.computer #empreendimento.logado .status-geral dl dd:last-child {
  margin-right: 0;
}
body.computer #empreendimento.logado .atividades {
  margin-bottom: 15px;
}
body.computer #empreendimento.logado .informacoes-gerais,
body.computer #empreendimento.logado .informacoes-empreendimento {
  padding: 20px;
}
body.computer #empreendimento.logado .informacoes-gerais strong,
body.computer #empreendimento.logado .informacoes-empreendimento strong {
  margin-bottom: 25px;
}
body.computer #empreendimento.logado .informacoes-gerais ul li,
body.computer #empreendimento.logado .informacoes-empreendimento ul li {
  width: 50%;
  float: left;
  height: 55px;
}
body.computer #empreendimento.logado .graficos {
  margin-bottom: 15px;
}
body.computer #empreendimento.logado .graficos ul li {
  margin-bottom: 8px;
}
body.computer #empreendimento.logado .graficos ul li:last-child {
  margin-bottom: 0;
}
body.computer #empreendimento.logado .graficos .one {
  float: left;
  width: 100%;
}
body.computer #empreendimento.logado .graficos .two {
  float: left;
  width: 100%;
}
body.computer #empreendimento.logado .graficos .two figure {
  width: 263px;
  float: left;
}
body.computer #empreendimento.logado .graficos .two figure:first-child {
  margin-right: 8px;
}
body.computer #empreendimento.logado .galeria {
  padding: 5px;
}
body.computer #empreendimento.logado .galeria ul li {
  width: 121px;
  height: 121px;
  float: left;
  margin: 5px;
}
body.computer #empreendimento.logado .galeria .open {
  float: right;
  padding: 0 25px;
  margin: 5px 0;
}
body.computer #contato_rodape .titulo-descricao {
  width: 500px;
}
body.computer #contato_botao {
  margin-right: -49%;
}
body.computer .zoom {
  padding: 100px;
}
body.computer #noticias-destaques {
  padding: 60px 0;
}
body.computer #noticias-destaques .swiper-slide {
  width: 790px;
}
body.computer #noticias-destaques .mountSwiper {
  position: relative;
}
body.computer #noticias-destaques .swiper-button-next,
body.computer #noticias-destaques .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.5);
}
body.computer #noticias-destaques .swiper-button-next {
  right: 110px;
}
body.computer #noticias-destaques .swiper-button-prev {
  left: 110px;
}
body.computer #noticias-destaques .noticia figure img {
  width: 420px;
  height: 335px;
}
body.computer #noticias-destaques .noticia figure figcaption {
  position: absolute;
  width: 370px;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 0;
  padding: 30px;
}
body.computer #noticias-destaques .noticia figure figcaption h3 {
  color: #374650;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
body.computer #noticias-destaques .noticia figure figcaption h3:after {
  width: 170px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: -115px;
}
body.computer #noticias-destaques .noticia figure figcaption span {
  margin-top: 30px;
}
body.computer .title-line {
  padding-left: 150px;
  font-size: 37px;
  line-height: 37px;
  margin-bottom: 50px;
}
body.computer .title-line:before {
  width: 110px;
  margin-left: -150px;
  margin-right: 40px;
}
body.computer .title-content .left {
  float: left;
  width: 50%;
  padding-right: 5%;
}
body.computer .title-content .right {
  float: right;
  width: 50%;
  padding: 0 5%;
}
body.computer .conteudo_titulo-texto-imagem {
  zoom: 1;
}
body.computer .conteudo_titulo-texto-imagem:before {
  content: "";
  display: block;
}
body.computer .conteudo_titulo-texto-imagem:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
body.computer .conteudo_titulo-texto-imagem .bloco {
  margin: 60px 0;
  display: block;
  width: 100%;
  zoom: 1;
}
body.computer .conteudo_titulo-texto-imagem .bloco:before {
  content: "";
  display: block;
}
body.computer .conteudo_titulo-texto-imagem .bloco:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
body.computer .conteudo_titulo-texto-imagem .bloco .img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 52%;
}
body.computer .conteudo_titulo-texto-imagem .bloco .img img {
  width: 100%;
  height: auto;
}
body.computer .conteudo_titulo-texto-imagem .bloco .cnt {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 48%;
  /*position: relative;
				top: 50%;
				.transform(translate(0,-50%));*/
}
body.computer .conteudo_titulo-texto-imagem .bloco .cnt strong {
  display: block;
  padding-bottom: 30px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  text-align: center;
}
body.computer .conteudo_titulo-texto-imagem .bloco .cnt strong:after {
  content: "";
  display: block;
  width: 280px;
  position: absolute;
  bottom: -1px;
  height: 2px;
  background-color: #e3163b;
}
body.computer .conteudo_titulo-texto-imagem .bloco .cnt .txt {
  background-color: #f2f2f2;
  padding: 50px 70px;
  font-size: 14px;
  line-height: 24px;
}
body.computer .conteudo_titulo-texto-imagem .bloco .cnt .txt span {
  margin-top: 30px;
  display: inline-block;
  line-height: 41px;
  color: #ffffff;
  background-color: #e3163b;
  padding: 0 25px;
  cursor: pointer;
  font-size: 12px;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(even) .img {
  float: left;
  text-align: left;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(even) .img:before {
  left: 0;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(even) .cnt {
  float: right;
  left: 52%;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(even) .cnt strong {
  padding-right: 85px;
}
body.computer
  .conteudo_titulo-texto-imagem
  .bloco:nth-child(even)
  .cnt
  strong:after {
  left: -140px;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(even) .cnt .txt {
  margin-right: 85px;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(odd) .img {
  float: right;
  text-align: right;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(odd) .img:before {
  right: 0;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(odd) .cnt {
  float: left;
  left: 0;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(odd) .cnt strong {
  padding-left: 85px;
}
body.computer
  .conteudo_titulo-texto-imagem
  .bloco:nth-child(odd)
  .cnt
  strong:after {
  right: -140px;
}
body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(odd) .cnt .txt {
  margin-left: 85px;
}
@media only screen and (max-width: 1000px) {
  body.computer
    .conteudo_titulo-texto-imagem
    .bloco:nth-child(odd)
    .cnt
    strong {
    padding-left: 25px;
  }
  body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(odd) .cnt .txt {
    margin-left: 25px;
  }
  body.computer
    .conteudo_titulo-texto-imagem
    .bloco:nth-child(even)
    .cnt
    strong {
    padding-right: 25px;
  }
  body.computer .conteudo_titulo-texto-imagem .bloco:nth-child(even) .cnt .txt {
    margin-right: 25px;
  }
}
body.computer .participacoes_conteudo_titulo-texto-imagem {
  margin-bottom: 40px;
}
body.computer .participacoes_conteudo_titulo-texto-imagem .bloco {
  max-width: 1092px;
  margin: 0 auto;
  zoom: 1;
}
body.computer .participacoes_conteudo_titulo-texto-imagem .bloco:before {
  content: "";
  display: block;
}
body.computer .participacoes_conteudo_titulo-texto-imagem .bloco:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
body.computer .participacoes_conteudo_titulo-texto-imagem .bloco figure img {
  width: 50%;
  height: auto;
}
body.computer
  .participacoes_conteudo_titulo-texto-imagem
  .bloco
  figure
  figcaption {
  width: 50%;
  position: absolute;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 60px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.computer
  .participacoes_conteudo_titulo-texto-imagem
  .bloco
  figure
  figcaption
  .title-line {
  margin-left: -200px;
}
body.computer
  .participacoes_conteudo_titulo-texto-imagem
  .bloco
  figure
  figcaption
  .title-line:before {
  margin-right: 90px;
}
body.computer
  .participacoes_conteudo_titulo-texto-imagem
  .bloco:nth-child(odd)
  figure
  img {
  float: right;
}
body.computer
  .participacoes_conteudo_titulo-texto-imagem
  .bloco:nth-child(odd)
  figure
  figcaption {
  left: 0;
}
body.computer
  .participacoes_conteudo_titulo-texto-imagem
  .bloco:nth-child(even)
  figure
  img {
  float: left;
}
body.computer
  .participacoes_conteudo_titulo-texto-imagem
  .bloco:nth-child(even)
  figure
  figcaption {
  right: 0;
}
@media only screen and (max-width: 1000px) {
  body.computer .participacoes_conteudo_titulo-texto-imagem .bloco figure img {
    float: right;
  }
  body.computer
    .participacoes_conteudo_titulo-texto-imagem
    .bloco
    figure
    figcaption {
    position: static;
    top: auto;
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  body.computer
    .participacoes_conteudo_titulo-texto-imagem
    .bloco:nth-child(odd)
    figure
    figcaption {
    float: left;
  }
  body.computer
    .participacoes_conteudo_titulo-texto-imagem
    .bloco:nth-child(even)
    figure
    figcaption {
    float: right;
  }
}
body.computer #atuacao-sobre {
  padding: 60px 0;
  padding-bottom: 0;
}
body.computer #atuacao-sobre .bloco {
  float: left;
  width: 33%;
  margin-right: 3px;
}
body.computer #atuacao-sobre .bloco:last-of-type {
  margin-right: 0;
}
body.computer #atuacao-sobre .bloco figure img {
  width: 100%;
  height: auto;
}
body.computer #atuacao-sobre .bloco figure figcaption {
  padding: 30px;
}
body.computer #premiacoes {
  padding: 60px 0;
}
body.computer #premiacoes .premios .swiper-container {
  margin: 0 120px;
}
body.computer #premiacoes .premio {
  width: 330px;
}
body.computer #premiacoes .premio figure img {
  max-height: 180px;
}
body.computer #premiacoes .premio.active,
body.computer #premiacoes .premio.swiper-slide-active {
  width: 425px;
  height: auto;
}
body.computer #premiacoes .premio.active img,
body.computer #premiacoes .premio.swiper-slide-active img {
  max-height: 235px;
}
body.computer #incorporadora .content-split {
  padding: 60px 0;
  margin: -50px 0 60px 0;
}
body.computer #incorporadora .content-split .title-line {
  padding-left: 108px;
  width: 50%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.computer #incorporadora .content-split .title-line:before {
  width: 70px;
}
body.computer #portfolio-destaque > .container {
  max-width: none;
}
body.computer #portfolio-destaque figure img {
  padding: 36px;
  width: 100%;
  height: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.computer #portfolio-destaque figure figcaption {
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 500px;
  padding: 65px;
  padding-left: 160px;
}
body.computer #portfolio-destaque figure figcaption strong {
  font-family: "Aktiv Grotesk Ex Trial";
  margin-bottom: 20px;
}
body.computer #portfolio-destaque figure figcaption strong:before {
  width: 110px;
  margin-left: -160px;
  margin-right: 50px;
}
body.computer #timeline {
  padding: 60px 0;
  position: relative;
}
body.computer #timeline:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #707070;
  width: 100%;
  top: 207px;
  left: 0;
  right: 0;
  height: 1px;
}
body.computer #timeline .years {
  padding-top: 50px;
}
body.computer #timeline .years .swiper-container {
  margin: 0 100px;
}
body.computer #timeline .years .year {
  width: 20%;
  padding-right: 30px;
}
body.computer #timeline .years .year .content strong {
  margin-bottom: 40px;
}
body.computer #timeline .years .year:after {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  position: absolute;
  top: 35px;
  left: 0;
}
body.computer #timeline .years:before {
  content: "";
}
body.computer #socios {
  padding: 60px 0;
}
body.computer #socios .socios {
  padding: 50px 0;
  width: 650px;
  margin: 0 auto;
}
body.computer #atuacao .heading {
  margin-bottom: 60px;
}
body.computer #atuacao .heading h3 {
  float: left;
  width: 50%;
  margin-bottom: 0;
  padding-right: 80px;
}
body.computer #atuacao .heading p {
  float: right;
  width: 50%;
  padding-right: 110px;
}
body.computer #atuacao .bloco {
  position: relative;
  zoom: 1;
  margin-bottom: 60px;
}
body.computer #atuacao .bloco:before {
  content: "";
  display: block;
}
body.computer #atuacao .bloco:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
body.computer #atuacao .bloco a {
  display: block;
  width: 100%;
}
body.computer #atuacao .bloco a .img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 52%;
}
body.computer #atuacao .bloco a .img:before {
  content: "";
  display: block;
  width: 65px;
  position: absolute;
  top: 60px;
  bottom: 60px;
}
body.computer #atuacao .bloco a .img img {
  width: 100%;
  height: auto;
}
body.computer #atuacao .bloco a .cnt {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 48%;
  /*position: relative;
					top: 50%;
					.transform(translate(0,-50%));*/
}
body.computer #atuacao .bloco a .cnt strong {
  display: block;
  padding-bottom: 30px;
  font-size: 28px;
  line-height: 39px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  margin-left: 70px;
}
body.computer #atuacao .bloco a .cnt strong:after {
  content: "";
  display: block;
  width: 280px;
  position: absolute;
  bottom: -1px;
  height: 2px;
  background-color: #e3163b;
}
body.computer #atuacao .bloco a .cnt .txt {
  background-color: #f2f2f2;
  padding: 50px 70px;
  font-size: 14px;
  line-height: 24px;
}
body.computer #atuacao .bloco a .cnt .txt span {
  margin-top: 30px;
  display: inline-block;
  line-height: 41px;
  color: #ffffff;
  background-color: #e3163b;
  padding: 0 25px;
  cursor: pointer;
  font-size: 12px;
}
body.computer #atuacao .bloco:nth-child(even) a .img {
  float: left;
  text-align: left;
  padding-left: 65px;
}
body.computer #atuacao .bloco:nth-child(even) a .img:before {
  left: 0;
}
body.computer #atuacao .bloco:nth-child(even) a .cnt {
  float: right;
  left: 52%;
}
body.computer #atuacao .bloco:nth-child(even) a .cnt strong:after {
  left: -210px;
}
body.computer #atuacao .bloco:nth-child(even) a .cnt .txt {
  margin-right: 85px;
}
body.computer #atuacao .bloco:nth-child(odd) a .img {
  float: right;
  text-align: right;
  padding-right: 65px;
}
body.computer #atuacao .bloco:nth-child(odd) a .img:before {
  right: 0;
}
body.computer #atuacao .bloco:nth-child(odd) a .cnt {
  float: left;
  left: 0;
}
body.computer #atuacao .bloco:nth-child(odd) a .cnt strong {
  padding-left: 85px;
}
body.computer #atuacao .bloco:nth-child(odd) a .cnt strong:after {
  right: -210px;
}
body.computer #atuacao .bloco:nth-child(odd) a .cnt .txt {
  margin-left: 85px;
}
@media only screen and (max-width: 1000px) {
  body.computer #atuacao .bloco:nth-child(odd) a .cnt strong {
    padding-left: 25px;
  }
  body.computer #atuacao .bloco:nth-child(odd) a .cnt .txt {
    margin-left: 25px;
  }
  body.computer #atuacao .bloco:nth-child(even) a .cnt strong {
    padding-right: 25px;
  }
  body.computer #atuacao .bloco:nth-child(even) a .cnt .txt {
    margin-right: 25px;
  }
}
body.computer .titulo-descricao {
  font-family: "Ivy Journal";
  font-size: 16px;
  padding-bottom: 30px;
  max-width: 830px;
  margin: 0 auto;
}
body.computer #nossas-participacoes {
  background-color: #f2f2f2;
  padding: 60px 0;
}
body.computer #nossas-participacoes .participacoes .participacao a,
body.computer #nossas-participacoes .participacoes .participacao div {
  position: absolute;
  top: 30px;
  width: 370px;
  height: 460px;
  padding: 90px 40px;
}
body.computer
  #nossas-participacoes
  .participacoes
  .participacao
  ul
  li
  figure
  img {
  width: 1366px;
  height: 525px;
  position: relative;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
body.computer
  #nossas-participacoes
  .participacoes
  .participacao
  ul
  li
  figure
  figcaption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}
body.computer
  #nossas-participacoes
  .participacoes
  .participacao
  ul
  li
  figure:before {
  z-index: 2;
  width: 100%;
  height: 400px;
  background: url(../svg/shadow_2.svg) no-repeat center bottom;
  background-size: cover;
}
body.computer
  #nossas-participacoes
  .participacoes
  .participacao:nth-child(odd)
  a,
body.computer
  #nossas-participacoes
  .participacoes
  .participacao:nth-child(odd)
  div {
  left: 50px;
}
body.computer
  #nossas-participacoes
  .participacoes
  .participacao:nth-child(odd)
  ul
  li
  figcaption {
  padding-left: 420px;
}
body.computer
  #nossas-participacoes
  .participacoes
  .participacao:nth-child(even)
  a,
body.computer
  #nossas-participacoes
  .participacoes
  .participacao:nth-child(even)
  div {
  right: 50px;
}
body.computer
  #nossas-participacoes
  .participacoes
  .participacao:nth-child(even)
  ul
  li
  figcaption {
  padding-right: 420px;
}
body.computer #construtora .titleH3 {
  margin: 45px 325px;
  padding: 0 70px;
}
body.computer #construtora .galeria .container {
  padding: 0 108px;
}
body.computer #construtora .galeria img {
  width: 100%;
  height: auto;
}
body.computer .content-split {
  padding-bottom: 50px;
}
body.computer .content-split .content {
  margin: 50px 108px;
  font-family: "Ivy Journal";
  font-size: 16px;
}
body.computer .content-split .left,
body.computer .content-split .right {
  width: 45%;
  float: left;
}
body.computer .content-split .right {
  width: 45%;
  float: right;
}
body.computer .content-split-galeria:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: -335px;
}
body.computer #empreendimentos-iconicos {
  padding: 45px 0;
}
body.computer #empreendimentos-iconicos h4 {
  margin-bottom: 20px;
}
body.computer #empreendimentos-iconicos figure {
  zoom: 1;
  margin: 0 133px;
}
body.computer #empreendimentos-iconicos figure:before {
  content: "";
  display: block;
}
body.computer #empreendimentos-iconicos figure:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
body.computer #empreendimentos-iconicos figure img {
  width: 50%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
body.computer #empreendimentos-iconicos figure figcaption {
  width: 50%;
  float: right;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 30px;
  margin-top: 70px;
}
body.computer #empreendimentos-iconicos figure figcaption .local,
body.computer #empreendimentos-iconicos figure figcaption .status {
  float: left;
  padding: 40px 80px 0 0;
  max-width: 230px;
  width: 50%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 1000px) {
  body.computer #empreendimentos-iconicos figure {
    margin-bottom: 60px;
  }
  body.computer #empreendimentos-iconicos figure img {
    float: none;
    width: 100%;
    position: static;
    top: auto;
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  body.computer #empreendimentos-iconicos figure figcaption {
    zoom: 1;
    float: none;
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }
  body.computer #empreendimentos-iconicos figure figcaption:before {
    content: "";
    display: block;
  }
  body.computer #empreendimentos-iconicos figure figcaption:after {
    content: "";
    display: table;
    clear: both;
    border-collapse: collapse;
  }
}
body.computer #numeros {
  padding: 60px 0;
}
body.computer #numeros .numeros {
  margin: 0 50px 0 50px;
  text-align: center;
}
body.computer #numeros .numeros .numero {
  height: 240px;
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0.4% 0.8% 0.4%;
  width: 32.3%;
  height: 250px;
}
body.computer #numeros .numeros .numero .cnt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 20px 20px;
}
body.computer #numeros .numeros .numero .cnt > p {
  height: 63px;
}
@media only screen and (max-width: 1200px) {
  body.computer #numeros .numeros .numero {
    width: 49.2%;
    height: 240px;
  }
  body.computer #numeros .numeros .numero .cnt > p {
    height: 43px;
  }
}
body.computer .openFilter {
  margin-top: -120px;
  position: absolute;
  right: 0;
  top: 0;
}
body.computer #empreendimentos {
  padding: 60px 0 45px 0;
}
body.computer.page-template-page_empreendimentos-php .listagem-empreendimentos {
  text-align: center;
}
body.computer .listagem-empreendimentos {
  font-size: 0;
}
body.computer .listagem-empreendimentos .zero {
  padding-bottom: 50px;
}
body.computer .box-empreendimento {
  display: inline-block;
  float: none;
  text-align: left;
  width: 24.2%;
  overflow: hidden;
  position: relative;
  font-size: 14px;
  margin: 0 0.4% 0.8% 0.4%;
}
body.computer .box-empreendimento img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1240px) {
  body.computer .box-empreendimento {
    width: 32.5%;
  }
}
@media only screen and (max-width: 920px) {
  body.computer .box-empreendimento {
    width: 49.2%;
  }
}
body.computer #noticias article {
  padding-top: 20px;
  width: 820px;
  margin: 0 auto;
}
body.computer #noticias article content {
  padding: 0 90px 40px 90px;
  margin-bottom: 25px;
}
body.computer #noticias article content figure {
  margin: 0 -90px;
}
body.computer #noticias article content figure img {
  width: 100%;
  height: auto;
}
body.computer #noticias article content figure figcaption {
  padding: 75px 90px 30px 90px;
}
body.computer #politica .container {
  padding: 60px;
}
body.computer #politica .the_content {
  padding: 60px 140px;
  margin-bottom: 50px;
}
body.smartphone {
  background: #ccc;
}
body.smartphone #wrapper {
  width: 375px;
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
}
body.smartphone .container {
  max-width: 375px;
}
body.smartphone section {
  padding-top: 42px;
}
body.smartphone.admin-bar #header {
  top: 32px;
}
body.smartphone #header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  z-index: 50;
  background-color: #ffffff;
  width: 375px;
  margin: 0 auto;
  text-align: left;
}
body.smartphone #header .hamburguer {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background: #374650 url(../svg/ico_hamburger.svg) no-repeat center center;
  cursor: pointer;
}
body.smartphone #header h1 {
  top: 6px;
  left: 9px;
}
body.smartphone #header h1 a {
  width: 85px;
  height: 30px;
}
body.smartphone #header .aside {
  display: block;
  z-index: 99;
  position: fixed;
  background: rgba(39, 44, 49, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
}
body.smartphone #header .aside .close {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../svg/close_ico_white.svg) no-repeat center center;
  cursor: pointer;
}
body.smartphone #header .aside .content {
  width: 285px;
  overflow: auto;
  position: absolute;
  top: 0;
  right: 5px;
  height: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  padding-bottom: 100px;
  padding-top: 100px;
  background-color: #e3163b;
  margin: 0;
}
body.smartphone #header .aside .language {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 15px 0;
}
body.smartphone #header .aside .language a {
  display: inline-block;
}
body.smartphone #header .aside .language a.active:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #ffffff;
}
body.smartphone #header .aside nav {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 62px;
  color: #ffffff;
}
body.smartphone #header .aside aside {
  position: fixed;
  bottom: 0;
  right: 5px;
  width: 285px;
}
body.smartphone #header .aside aside .login {
  line-height: 69px;
  text-align: center;
}
body.smartphone #header .aside.hidden {
  display: none;
}
body.smartphone.admin-bar #header .aside {
  top: 32px;
}
body.smartphone #footer {
  padding: 50px 15px 150px;
}
body.smartphone #footer ul {
  margin-top: 40px;
}
body.smartphone #footer ul li,
body.smartphone #footer ul a {
  display: inline-block;
}
body.smartphone #footer .copy ul li,
body.smartphone #footer .copy ul a {
  line-height: 1.5;
  display: inline-block;
  width: auto;
  vertical-align: middle;
  height: auto;
  text-indent: initial;
  float: none;
  color: #fff;
  margin-bottom: 0;
  font-size: 11px;
}
body.smartphone #footer ul.menu-footer {
  margin-left: 0;
}
body.smartphone .topo figure:after {
  content: "";
  display: block;
  width: 100%;
  height: 221px;
  background: url(../svg/shadow_6.svg) no-repeat bottom center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
body.smartphone .topo figure img {
  width: 375px;
  height: auto;
}
body.smartphone .topo figure figcaption {
  z-index: 2;
  width: 80%;
}
body.smartphone .topo.swiper figure img {
  width: 375px;
  height: 500px;
}
body.smartphone #homepage #tipos {
  padding: 40px 0 0 0;
}
body.smartphone #homepage #tipos .blocos {
  padding-bottom: 70px;
}
body.smartphone #homepage #tipos .bloco {
  width: 285px;
  padding: 50px 0 0 0;
}
body.smartphone #fale-conosco .wpcf7 .label-input {
  margin-bottom: 12px;
}
body.smartphone #fale-conosco .formularios dl {
  margin-bottom: 8px;
}
body.smartphone #fale-conosco .formularios dl dt {
  -webkit-box-shadow: 0px 0px 20px 0px #f7f7f7;
  -moz-box-shadow: 0px 0px 20px 0px #f7f7f7;
  box-shadow: 0px 0px 20px 0px #f7f7f7;
  color: #374650;
  padding-left: 90px;
}
body.smartphone #fale-conosco .formularios dl dt .ico {
  left: 30px;
}
body.smartphone #fale-conosco .formularios dl dt .ico rect,
body.smartphone #fale-conosco .formularios dl dt .ico path {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  fill: transparent;
  stroke: #BCBCBC;
}
body.smartphone #fale-conosco .formularios dl dt .ico path#Caminho_1,
body.smartphone #fale-conosco .formularios dl dt .ico path#Caminho_5,
body.smartphone #fale-conosco .formularios dl dt .ico path#Caminho_6{
  fill: #BCBCBC;
}
body.smartphone #fale-conosco .formularios dl dt:hover .ico path{
  stroke: #e3163b;
  fill: none;
}
body.smartphone #fale-conosco .formularios dl dt:hover .ico path#Caminho_1,
body.smartphone #fale-conosco .formularios dl dt:hover .ico path#Caminho_5,
body.smartphone #fale-conosco .formularios dl dt:hover .ico path#Caminho_6{
  fill: #e3163b;
  stroke: none;
}
body.smartphone #fale-conosco .formularios dl dd {
  -webkit-box-shadow: 0px 0px 20px 0px #f7f7f7;
  -moz-box-shadow: 0px 0px 20px 0px #f7f7f7;
  box-shadow: 0px 0px 20px 0px #f7f7f7;
  padding: 20px;
}
body.smartphone #fale-conosco .formularios dl.active dt:after {
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
}
body.smartphone #fale-conosco .formularios .wpcf7 {
  padding-top: 20px;
}
body.smartphone #fale-conosco .formularios .wpcf7 .label-file .label {
  position: relative;
}
body.smartphone #empreendimento .topo figure figcaption strong {
  font-size: 18px;
  line-height: 27px;
}
body.smartphone #empreendimento.publico .sobre .content {
  padding: 0 30px 30px 30px;
}
body.smartphone #empreendimento.publico .sobre .content small:after {
  margin: 20px 0;
  width: 110px;
  height: 3px;
  content: "";
  display: block;
  background-color: #fa002d;
}
body.smartphone #empreendimento.publico .sobre .content h3 {
  font-size: 20px;
  line-height: 30px;
  margin-top: 0;
}
body.smartphone #empreendimento.publico .sobre .informacoes-tecnicas {
  margin: 0 20px;
  padding: 10px 20px;
}
body.smartphone
  #empreendimento.publico
  .sobre
  .informacoes-tecnicas
  .info
  table
  tr
  th {
  width: 110px;
}
body.smartphone
  #empreendimento.publico
  .sobre
  .informacoes-tecnicas
  .info
  ul
  li {
  padding: 10px 0;
  padding-left: 150px;
}
body.smartphone
  #empreendimento.publico
  .sobre
  .informacoes-tecnicas
  .info
  ul
  li
  b {
  width: 110px;
}
body.smartphone
  #empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas {
  padding: 30px;
}
body.smartphone
  #empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info
  ul
  li {
  padding: 0 40px 0 60px;
  margin-bottom: 40px;
}
body.smartphone
  #empreendimento.publico
  .sobre
  .informacoes-tecnicas-destacadas
  .info
  ul
  li:last-child {
  margin-bottom: 0;
}
body.smartphone #empreendimento.publico .fotos-do-empreendimento {
  padding: 30px 0;
}
body.smartphone #empreendimento.publico .fotos-do-empreendimento .swiper-slide {
  width: auto;
}
body.smartphone
  #empreendimento.publico
  .fotos-do-empreendimento
  .swiper-button-next,
body.smartphone
  #empreendimento.publico
  .fotos-do-empreendimento
  .swiper-button-prev {
  border: 1px solid #ffffff;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
}
body.smartphone
  #empreendimento.publico
  .fotos-do-empreendimento
  .swiper-button-next {
  right: 15px;
  background-image: url(../svg/ico-arrow-next_white.svg);
}
body.smartphone
  #empreendimento.publico
  .fotos-do-empreendimento
  .swiper-button-prev {
  left: 15px;
  background-image: url(../svg/ico-arrow-prev_white.svg);
}
body.smartphone #empreendimento.publico .destaques {
  padding-top: 30px;
}
body.smartphone #empreendimento.publico .destaques .destaque {
  padding: 10px 20px;
}
body.smartphone #empreendimento.publico .destaques .destaque .txt {
  position: relative;
  margin-top: -50px;
  padding: 40px 20px;
}
body.smartphone #empreendimento.publico .destaques .destaque .txt b,
body.smartphone #empreendimento.publico .destaques .destaque .txt strong {
  margin-bottom: 15px;
}
body.smartphone #empreendimento.publico .destaques .destaque ul {
  margin: 0 -20px;
}
body.smartphone #empreendimento.publico .destaques .destaque ul li figure img {
  width: 375px;
  height: 445px;
}
body.smartphone
  #empreendimento.publico
  .destaques
  .destaque
  ul
  li
  figure
  figcaption {
  bottom: 80px;
}
body.smartphone
  #empreendimento.publico
  .destaques
  .destaque
  ul
  li
  figure:after {
  height: 318px;
  background: url(../svg/shadow_5.svg) no-repeat bottom center;
}
body.smartphone #empreendimento.logado {
  background-color: #ffffff;
}
body.smartphone #empreendimento.logado .header {
  padding: 40px 20px;
}
body.smartphone #empreendimento.logado .header h2 {
  font-size: 20px;
  line-height: 27px;
}
body.smartphone #empreendimento.logado .status-geral,
body.smartphone #empreendimento.logado .atividades {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
}
body.smartphone #empreendimento.logado .status-geral {
  margin: 0 20px;
}
body.smartphone #empreendimento.logado .status-geral:before {
  z-index: 5;
}
body.smartphone #empreendimento.logado .status-geral dl dd {
  margin-bottom: 25px;
}
body.smartphone #empreendimento.logado .status-geral dl dd b {
  margin-bottom: 8px;
}
body.smartphone #empreendimento.logado .status-geral dl dd:last-child {
  margin-bottom: 0;
}
body.smartphone #empreendimento.logado .atividades {
  position: relative;
  margin: 0 20px 20px 20px;
}
body.smartphone #empreendimento.logado .atividades:before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  background-color: #f6fafc;
}
body.smartphone #empreendimento.logado .informacoes-gerais,
body.smartphone #empreendimento.logado .informacoes-empreendimento {
  margin: 0 20px;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  position: relative;
}
body.smartphone #empreendimento.logado .informacoes-gerais strong,
body.smartphone #empreendimento.logado .informacoes-empreendimento strong {
  margin-bottom: 30px;
}
body.smartphone #empreendimento.logado .informacoes-gerais ul li,
body.smartphone #empreendimento.logado .informacoes-empreendimento ul li {
  margin-bottom: 20px;
}
body.smartphone #empreendimento.logado .informacoes-gerais ul li:last-child,
body.smartphone
  #empreendimento.logado
  .informacoes-empreendimento
  ul
  li:last-child {
  margin-bottom: 0;
}
body.smartphone #empreendimento.logado .informacoes-gerais {
  background-color: #ffffff;
}
body.smartphone #empreendimento.logado .informacoes-empreendimento {
  margin-bottom: 20px;
  background-color: #f6fafc;
}
body.smartphone #empreendimento.logado .informacoes-empreendimento:before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  background-color: #ffffff;
}
body.smartphone #empreendimento.logado .relatorios {
  margin: 0 20px 20px 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
}
body.smartphone #empreendimento.logado .graficos {
  margin: 0 20px;
}
body.smartphone #empreendimento.logado .graficos figure {
  display: block;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
}
body.smartphone #empreendimento.logado .graficos figure img {
  width: 100%;
  height: auto;
}
body.smartphone #empreendimento.logado .galeria {
  margin: 0 20px 20px 20px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(62, 62, 62, 0.2);
}
body.smartphone #empreendimento.logado .galeria ul {
  padding-top: 10px;
  margin-left: 10px;
  padding-bottom: 2px;
  zoom: 1;
}
body.smartphone #empreendimento.logado .galeria ul:before {
  content: "";
  display: block;
}
body.smartphone #empreendimento.logado .galeria ul:after {
  content: "";
  display: table;
  clear: both;
  border-collapse: collapse;
}
body.smartphone #empreendimento.logado .galeria ul li {
  float: left;
  width: 100px;
  height: 100px;
  margin: 0 8px 8px 0;
}
body.smartphone #empreendimento.logado .galeria ul li a img {
  width: 100px;
  height: 100px;
}
body.smartphone #empreendimento.logado .galeria .open {
  float: right;
  padding: 0 25px;
  margin-right: 10px;
  border-radius: 23px;
  -moz-border-radius: 23px;
  -webkit-border-radius: 23px;
  line-height: 37px;
}
body.smartphone #contato_rodape .titulo-descricao {
  padding: 0 50px;
}
body.smartphone #contato_botao {
  margin-right: -185px;
}
body.smartphone.admin-bar .zoom {
  top: 32px;
}
body.smartphone .zoom {
  padding: 50px;
}
body.smartphone .zoom .close {
  width: 32px;
  height: 32px;
}
body.smartphone #noticias-destaques {
  padding: 60px 0 0 0;
}
body.smartphone #noticias-destaques .mountSwiper {
  position: relative;
}
body.smartphone #noticias-destaques .swiper-container {
  padding-bottom: 70px;
}
body.smartphone #noticias-destaques .swiper-slide {
  width: 295px;
}
body.smartphone #noticias-destaques .swiper-pagination-bullet {
  background-color: #ffffff;
}
body.smartphone #noticias-destaques .swiper-pagination-bullet-active {
  background-color: #fa002d;
}
body.smartphone #noticias-destaques .noticia figure img {
  width: 295px;
  height: 235px;
}
body.smartphone #noticias-destaques .noticia figure figcaption {
  padding: 20px;
}
body.smartphone #noticias-destaques .noticia figure figcaption strong:after {
  width: 170px;
  height: 3px;
  margin: 20px 0;
}
body.smartphone #noticias-destaques .noticia figure figcaption span {
  margin-top: 25px;
}
body.smartphone .title-line {
  padding-left: 90px;
  font-size: 28px;
  line-height: 37px;
  margin-bottom: 20px;
}
body.smartphone .title-line:before {
  margin-left: -90px;
  width: 60px;
  margin-right: 30px;
}
body.smartphone .title-content .right {
  padding: 0 30px;
  padding-bottom: 60px;
}
body.smartphone .conteudo_titulo-texto-imagem {
  background-color: #f2f2f2;
}
body.smartphone .conteudo_titulo-texto-imagem .bloco strong {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 30px 0;
  display: block;
  position: relative;
  margin: 0 30px;
}
body.smartphone .conteudo_titulo-texto-imagem .bloco strong:after {
  content: "";
  display: block;
  height: 3px;
  background-color: #e3163b;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
body.smartphone .conteudo_titulo-texto-imagem .bloco .img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}
body.smartphone .conteudo_titulo-texto-imagem .bloco .img img {
  width: 100%;
  height: auto;
}
body.smartphone .conteudo_titulo-texto-imagem .bloco .cnt {
  padding: 20px 30px 30px 30px;
}
body.smartphone .conteudo_titulo-texto-imagem .bloco .cnt .txt {
  font-size: 14px;
  line-height: 24px;
}
body.smartphone .participacoes_conteudo_titulo-texto-imagem .bloco {
  margin: 20px 0;
}
body.smartphone .participacoes_conteudo_titulo-texto-imagem .bloco .title-line {
  position: relative;
  padding: 0;
}
body.smartphone
  .participacoes_conteudo_titulo-texto-imagem
  .bloco
  .title-line:before {
  content: none;
}
body.smartphone .participacoes_conteudo_titulo-texto-imagem .bloco figure img {
  width: 375px;
  height: 285px;
}
body.smartphone
  .participacoes_conteudo_titulo-texto-imagem
  .bloco
  figure
  figcaption {
  padding: 20px;
  margin: 0 20px;
  background-color: #f2f2f2;
}
body.smartphone
  .participacoes_conteudo_titulo-texto-imagem
  .bloco
  figure
  figcaption
  > strong:after {
  content: "";
  display: block;
  margin: 20px 0;
  width: 110px;
  height: 4px;
  background: #fa002d;
}
body.smartphone #atuacao-sobre {
  padding: 30px 0 70px 0;
}
body.smartphone #atuacao-sobre .titulo-descricao {
  padding: 20px;
  line-height: 24px;
}
body.smartphone #atuacao-sobre .blocos .swiper-pagination {
  bottom: -40px;
}
body.smartphone #atuacao-sobre .bloco {
  width: 295px;
}
body.smartphone #atuacao-sobre .bloco figure img {
  width: 295px;
  height: 270px;
}
body.smartphone #atuacao-sobre .bloco figure figcaption {
  padding: 20px;
  height: 165px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.smartphone #atuacao-sobre .bloco figure figcaption strong {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}
body.smartphone #premiacoes {
  padding-top: 40px;
}
body.smartphone #premiacoes .premio {
  width: 335px;
  font-size: 16px;
  line-height: 26px;
}
body.smartphone #premiacoes .premio.active,
body.smartphone #premiacoes .premio.swiper-slide-active {
  font-size: 18px;
  line-height: 28px;
}
body.smartphone #incorporadora .content-split {
  margin-top: -50px;
  padding-top: 50px;
}
body.smartphone #incorporadora .content-split .title-line {
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}
body.smartphone #incorporadora .content-split .title-line:before {
  width: 30px;
}
body.smartphone #incorporadora .content-split .content {
  padding: 30px;
}
body.smartphone #incorporadora .empreendimentos-venda .titulo-descricao {
  padding: 40px 20px;
  line-height: 24px;
}
body.smartphone #incorporadora #portfolio-destaque a,
body.smartphone #incorporadora #portfolio-destaque span {
  background-color: #657a86;
}
body.smartphone #portfolio-destaque a {
  display: block;
  padding: 20px;
  background-color: #fa002d;
}
body.smartphone #portfolio-destaque figure {
  background-color: #ffffff;
}
body.smartphone #portfolio-destaque figure img {
  width: 335px;
  height: 175px;
}
body.smartphone #portfolio-destaque figure figcaption {
  padding: 40px 20px;
}
body.smartphone #portfolio-destaque figure figcaption strong:after {
  content: "";
  display: block;
  height: 3px;
  background-color: #fa002d;
  vertical-align: middle;
  width: 110px;
  margin: 20px 0;
}
body.smartphone #portfolio-destaque figure figcaption span {
  background-color: #fa002d;
}
body.smartphone #timeline {
  margin: 30px 20px 0 20px;
  padding: 35px 15px 0 15px;
}
body.smartphone #timeline h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
body.smartphone #timeline .years {
  margin-top: 30px;
  margin: 30px -15px 0;
  height: auto;
}
body.smartphone #timeline .years .year {
  padding-left: 100px;
  padding-right: 20px;
  padding-bottom: 20px;
}
body.smartphone #timeline .years .year:first-child {
  padding-bottom: 0;
}
body.smartphone #timeline .years .year:after {
  border-radius: 13px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  position: absolute;
  width: 13px;
  height: 13px;
  left: 43px;
  top: 0;
  bottom: auto;
}
body.smartphone #timeline .years:before {
  top: 0;
  left: 50px;
  bottom: 35px;
  height: auto;
  width: 1px;
}
body.smartphone #timeline .years .listYears {
  height: 900px;
  overflow: hidden;
  padding-bottom: 35px;
}
body.smartphone #timeline .years .listYears:after {
  content: "";
  display: block;
  width: 100%;
  height: 301px;
  background: url(../svg/shadow_8.svg) no-repeat bottom center;
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
}
body.smartphone #timeline .years .listYears.openned {
  height: auto;
}
body.smartphone #timeline .years .listYears.openned:after {
  content: none;
}
body.smartphone #timeline .years .listYears.openned .openYears {
  display: none;
}
body.smartphone #timeline .years .openYears {
  background-color: #e3163b;
  line-height: 47px;
  cursor: pointer;
  font-size: 16px;
  color: #ffffff;
  padding: 0 25px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  white-space: nowrap;
  z-index: 2;
}
body.smartphone #socios {
  padding: 30px 0 0 0;
}
body.smartphone #socios .titulo-descricao {
  padding: 0 20px;
  margin-bottom: 50px;
}
body.smartphone #socios .socios .socio {
  float: none;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 80px;
}
body.smartphone #atuacao .heading {
  margin-bottom: 40px;
}
body.smartphone #atuacao .heading p {
  width: 335px;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
}
body.smartphone #atuacao .bloco {
  margin-bottom: 20px;
}
body.smartphone #atuacao .bloco a .img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}
body.smartphone #atuacao .bloco a .img:before {
  content: "";
  display: block;
  width: 20px;
  position: absolute;
  top: 60px;
  bottom: 60px;
}
body.smartphone #atuacao .bloco a .img img {
  width: 100%;
  height: auto;
}
body.smartphone #atuacao .bloco a .cnt {
  margin: 0 20px;
  padding: 30px 20px 20px 20px;
  background-color: #f2f2f2;
  text-align: center;
}
body.smartphone #atuacao .bloco a .cnt strong {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: block;
  position: relative;
}
body.smartphone #atuacao .bloco a .cnt strong:after {
  content: "";
  display: block;
  height: 2px;
  background-color: #e3163b;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
body.smartphone #atuacao .bloco a .cnt .txt {
  font-size: 14px;
  line-height: 24px;
}
body.smartphone #atuacao .bloco a .cnt .txt span {
  margin-top: 20px;
  font-size: 16px;
  line-height: 47px;
  display: inline-block;
  padding: 0 25px;
  background-color: #e3163b;
  color: #ffffff;
}
body.smartphone #atuacao .bloco:nth-child(even) a .img {
  padding-left: 20px;
}
body.smartphone #atuacao .bloco:nth-child(even) a .img:before {
  left: 0;
}
body.smartphone #atuacao .bloco:nth-child(odd) a .img {
  padding-right: 20px;
}
body.smartphone #atuacao .bloco:nth-child(odd) a .img:before {
  right: 0;
}
body.smartphone .titulo-descricao {
  text-align: center;
  padding: 20px;
}
body.smartphone #nossas-participacoes .titulo-descricao {
  padding: 25px 35px;
}
body.smartphone #nossas-participacoes .participacoes .participacao a,
body.smartphone #nossas-participacoes .participacoes .participacao div {
  padding: 20px;
  margin: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}
body.smartphone #nossas-participacoes .participacoes .participacao a span,
body.smartphone #nossas-participacoes .participacoes .participacao div span {
  float: none;
  display: inline-block;
}
body.smartphone
  #nossas-participacoes
  .participacoes
  .participacao
  ul
  li
  figure {
  position: relative;
}
body.smartphone
  #nossas-participacoes
  .participacoes
  .participacao
  ul
  li
  figure
  img {
  width: 375px;
  height: 445px;
}
body.smartphone
  #nossas-participacoes
  .participacoes
  .participacao
  ul
  li
  figure
  figcaption {
  position: absolute;
  bottom: 80px;
  padding: 0 20px;
  text-align: center;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
body.smartphone
  #nossas-participacoes
  .participacoes
  .participacao
  ul
  li
  figure:before {
  content: "";
  display: block;
  background: url(../svg/shadow_3.svg) no-repeat bottom center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 318px;
}
body.smartphone #construtora .titleH3 {
  width: 330px;
  margin: 40px auto;
  padding: 0 40px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 24px;
  line-height: 36px;
}
body.smartphone #construtora .galeria img {
  width: 375px;
  height: auto;
}
body.smartphone .content-split-galeria {
  padding: 30px;
  background: #f2f2f2;
}
body.smartphone #empreendimentos-iconicos {
  width: 335px;
  background: #f2f2f2;
  margin: 20px auto;
}
body.smartphone #empreendimentos-iconicos h4 {
  text-align: center;
  padding: 20px 50px;
}
body.smartphone #empreendimentos-iconicos figure img {
  width: 375px;
  margin: 0 -20px;
}
body.smartphone #empreendimentos-iconicos figure figcaption {
  padding: 20px;
}
body.smartphone #empreendimentos-iconicos figure figcaption strong {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  padding: 0 30px;
}
body.smartphone #empreendimentos-iconicos figure figcaption strong:after {
  content: "";
  display: block;
  width: 65px;
  margin: 20px auto;
  height: 4px;
  background-color: #fa002d;
}
body.smartphone #empreendimentos-iconicos figure figcaption .local,
body.smartphone #empreendimentos-iconicos figure figcaption .status {
  background-color: #ffffff;
  padding: 40px 0;
  position: relative;
  padding-left: 90px;
}
body.smartphone #empreendimentos-iconicos figure figcaption .local:before,
body.smartphone #empreendimentos-iconicos figure figcaption .status:before {
  position: absolute;
  top: 50%;
  left: 40px;
  -moz-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
body.smartphone #empreendimentos-iconicos figure figcaption .local {
  margin-top: 20px;
}
body.smartphone #empreendimentos-iconicos figure figcaption .status {
  margin-top: -40px;
}
body.smartphone #numeros {
  padding: 40px 0;
}
body.smartphone #numeros .numeros {
  margin-left: 20px;
}
body.smartphone #numeros .numeros .numero {
  width: 165px;
  height: 280px;
  margin: 0 5px 5px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}
body.smartphone #numeros .numeros .numero .cnt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
body.smartphone #numeros .numeros .numero .cnt .title {
  font-size: 12px;
  line-height: 17px;
}
body.smartphone #numeros .numeros .numero .cnt .title strong {
  font-size: 35px;
  line-height: 36px;
  font-weight: 700;
}
body.smartphone #numeros .numeros .numero .cnt > p {
  font-size: 11px;
  line-height: 16px;
}
body.smartphone .openFilter {
  text-align: center;
  margin: -30px 20px 20px 20px;
  background-color: #374650;
  color: #ffffff;
}
body.smartphone .openFilter:after {
  background-image: url(../svg/filter_ico_white.svg);
}
body.smartphone .listagem-empreendimentos {
  margin-left: 15px;
}
body.smartphone .box-empreendimento {
  width: 168px;
  margin: 0 10px 10px 0;
  float: left;
  height: 280px;
}
body.smartphone .box-empreendimento figure img {
  width: 168px;
  height: 280px;
}
body.smartphone .box-empreendimento figure figcaption b {
  font-size: 16px;
  line-height: 23px;
}
body.smartphone .box-empreendimento figure figcaption .atuacao,
body.smartphone .box-empreendimento figure figcaption br {
  display: none;
}
body.smartphone #noticias article .info {
  margin: 20px;
}
body.smartphone #noticias article .info h2 {
  font-size: 20px;
  line-height: 26px;
}
body.smartphone #noticias article .info h3 {
  font-size: 24px;
  line-height: 36px;
}
body.smartphone #noticias article content {
  background-color: #f2f2f2;
  padding: 20px;
}
body.smartphone #noticias article content figure img {
  margin: -20px;
  margin-bottom: 0;
  width: 375px;
  height: auto;
}
body.smartphone #noticias article content figure figcaption {
  margin: 40px 0 20px 0;
}
body.smartphone #noticias article content img {
  width: 100%;
  height: auto;
}
body.smartphone #politica {
  padding: 20px;
  padding-top: 60px;
}
body.smartphone #politica .the_content {
  padding: 35px 20px 20px 20px;
}
body.smartphone .avancamento-obra .container {
  max-width: 100%;
  padding: 0 0 30px;
  width: 100%;
}
body.smartphone .avancamento-obra .container .titulo-descricao {
  box-sizing: border-box;
  padding-top: 60px;
}
body.smartphone .avancamento-obra .columns-obra {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
body.smartphone .avancamento-obra .columns-obra .data {
  padding: 20px;
  box-sizing: border-box;
}
body.smartphone .avancamento-obra .columns-obra .galeria-obra {
  width: 100%;
  margin: 0;
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .obra-section-title {
  padding: 20px;
  margin-top: 1.4em;
}
body.smartphone .avancamento-obra .columns-obra .galeria-obra .galleryObra {
  margin: 0 0;
  position: relative;
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .swiper-wrapper
  .obra-text {
  height: 80px;
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .swiper-wrapper
  .obra-text
  .title {
  font-size: 16px !important;
  margin-bottom: 0.6rem;
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .swiper-wrapper
  .obra-text
  .body {
  font-size: 14px !important;
  margin-bottom: 0.6rem;
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .swiper-wrapper
  .obra-text,
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .swiper-wrapper
  .swiper-slide {
  border-radius: 0;
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .swiper-wrapper
  .obra-text
  img,
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .swiper-wrapper
  .swiper-slide
  img,
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .swiper-wrapper
  .obra-text
  video,
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .swiper-wrapper
  .swiper-slide
  video {
  border-radius: 0;
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .galleryObra
  .galeria {
  position: relative;
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .swiper-button-next,
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .swiper-button-prev {
  border: 1px solid #ffffff;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .swiper-button-next {
  right: 20px;
  background-image: url(../svg/ico-arrow-next_white.svg);
}
body.smartphone
  .avancamento-obra
  .columns-obra
  .galeria-obra
  .swiper-button-prev {
  left: 20px;
  background-image: url(../svg/ico-arrow-prev_white.svg);
}

/* GET IN TOUCH MOBILE */
body.smartphone .get-in-touch-mobile {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  background: white;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  z-index: 2;
}
body.smartphone .get-in-touch-mobile li {
  width: 50%;
  box-sizing: border-box;
}
body.smartphone .get-in-touch-mobile li:last-child {
  border-left: 1px solid #eee;
}
body.smartphone .get-in-touch-mobile li.get-in-touch_title {
  position: relative;
  text-align: center;
  padding: 20px;
  background-color: #e53238;
  color: white;
  text-transform: uppercase;
  width: 100%;
}
body.smartphone .get-in-touch-mobile li.get-in-touch_title:after {
  content: "";
  border-bottom: 1px solid white;
  width: 100px;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
}
body.smartphone .get-in-touch-mobile li .get-in-touch_ico {
  display: flex;
  overflow: hidden;
}
body.smartphone .get-in-touch-mobile li:not(.get-in-touch_title) a {
  display: flex;
  padding: 15px 20px;
  text-align: center;
  justify-content: center;
}
body.smartphone .get-in-touch-mobile li.text-red {
  color: #e53238;
}
body.smartphone #header .get-in-touch {
  display: none;
}
.contatosmob {
  padding: 25px;
  margin: 0 auto;
}
.contatosmob a {
  margin: 0 15px;
}
/* GET IN TOUCH DESKTOP */
body.computer #header .get-in-touch {
  position: relative;
  margin: 0;
  display: inline-block;
  padding-left: 10px;
}
body.computer #header .get-in-touch a:after {
  display: none;
}
body.computer #header .get-in-touch.text-red {
  color: #e53238;
}
body.computer #header .get-in-touch:before {
  content: "";
  width: 1px;
  border-left: 1px solid #e53238;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
body.computer #header .get-in-touch li a {
  vertical-align: middle;
}
body.computer #header .get-in-touch li a.get-in-touch_ico {
  padding-left: 4px;
  padding-right: 4px;
}
body.computer #header .get-in-touch li a.get-in-touch_ico:after {
  display: none;
}
body.computer #header .get-in-touch li a#email .get-in-touch_tooltip,
body.computer #header .get-in-touch li a#emailSec .get-in-touch_tooltip,
body.computer #header .get-in-touch li a#whatsapp .get-in-touch_tooltip {
  display: none;
}
body.computer #header .get-in-touch .get-in-touch_tooltip {
  display: none;
  position: absolute;
  top: 4rem;
  left: -8px;
  transform: translateX(0);
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px;
  min-width: 157px;
  background: #ffffff;
  border-radius: 4px;
}
body.computer #header .get-in-touch .get-in-touch_tooltip:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid white;
  position: absolute;
  top: -10px;
}
body.computer #header .get-in-touch a:hover .get-in-touch_tooltip {
  display: flex;
}
body.computer #header .get-in-touch a:hover .get-in-touch_tooltip-title {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}
body.computer #header .get-in-touch a:hover .get-in-touch_tooltip-description {
  color: #3a464f;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
@media all and (max-width: 1420px) {
  body.computer #header .get-in-touch {
    padding-left: 8px;
  }
  body.computer #header .get-in-touch .get-in-touch_title {
    display: none !important;
  }
}
@media all and (max-width: 1520px) {
  body.computer #header .get-in-touch .get-in-touch_title {
    display: none !important;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 1051px) {
  body.computer #header nav ul.get-in-touch li a {
    padding: 0 10px;
  }
}
body.computer .get-in-touch-mobile {
  display: none;
}

/* LAUNCH LABEL */
body.computer .topo figure .launch {
  padding: 0 15px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-size: 12px;
  position: absolute;
  top: 22px;
  left: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  width: fit-content;
}

@media only screen and (min-width: 1051px) {
  body.computer .topo figure .launch {
    left: 25px;
  }
}

body.smartphone .topo figure figcaption .launch {
  background-color: #e53238;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-size: 12px;
}

.relative {
  position: relative;
}

#form-contact {
  position: absolute;
  left: 0;
  align-items: center;
  width: 375px;
  height: 670px;
  z-index: 99;
  margin: 0 auto;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
}

#form-contact .wpcf7 .label-input textarea {
  height: auto;
}

#form-contact .wpcf7-spinner {
  display: none;
}

.form-contact {
  background-color: #fff;
  padding: 30px 40px 20px 40px;
  margin: 0 auto;
  max-width: 448px;
  align-items: center;
}

.form-contact .h4 {
  color: #3a464f;
  font-size: 24px;
  font-family: "Roboto Slab";
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 16px;
  text-align: end;
  cursor: pointer;
}

.form-contact .label-contact {
  font-weight: 500;
  font-size: 14px;
  color: #3e3e3e;
  margin-bottom: 5px;
}

.form-contact .wpcf7 .label-input input {
  padding-bottom: 10px;
}

.form-contact .wpcf7 .submit input:hover {
  background-color: #b50f2d;
  transition-duration: 500ms;
}

#form-contact.window-360px {
  height: 830px;
}

#form-contact.window-414px {
  height: 670px;
}

#form-contact.window-768px {
  height: 500px;
}

#form-contact.window-768px .overflow-scroll {
  height: 400px;
  overflow-y: scroll;
}

@media all and (min-width: 1024px) {
  #form-contact {
    width: 100%;
    height: 100vh;
    right: 0;
    z-index: 10;
    display: block;
  }
  .form-contact {
    margin-top: 30px;
  }
  .overflow-scroll.h-25rem {
    overflow-y: inherit;
    height: auto;
  }
}
