@charset "iso-8859-2";
/* CSS Document */

html {

	font-family: 'Roboto', sans-serif;
	overflow-x: hidden;
}


a {
	text-decoration: none;
}

img {
	border: none;

}

.clean {
	clear: both;
}

body {
	margin: 0 auto;
	font-size: 12px;
	overflow-y: hidden;
}

#content-geral {
	width: 100%;
	margin: 0 auto;
}

.content-menu {
	width: 100%;
}


@media only screen and (min-width: 0px) and (max-width: 681px) {

	/* Navigation Button
	-------------------------------------------------------- */

	.nav-button {
		display: block;
		position: absolute;
		border: 1px solid #CCC;
		top: 8px;
		left: 82%;
		width: 50px;
		height: 35px;
		background: url('../images/menu-icon-large.png'), -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/menu-icon-large.png'),    -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/menu-icon-large.png'),     -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/menu-icon-large.png'),      -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
		cursor: pointer;
		border: 0 none;
		border-bottom: 1px solid rgba(255,255,255,.1);
		box-shadow: 0 0 4px rgba(0,0,0,.7) inset;
		border-radius: 5px;
		z-index: 999;
		text-indent: -9999px;
	}
	.nav-button:hover { 
		background-color: rgba(0,0,0,.1); 
	}
	.nav-button.open {
		background: url('../images/close-icon-large.png'), -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/close-icon-large.png'),    -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/close-icon-large.png'),     -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background: url('../images/close-icon-large.png'),      -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.2));
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
	}

	/* Navigation Bar
	-------------------------------------------------------- */

	.menu {
		width: 100%;
		display: block;
		height: 40px;
		margin: 0;
		padding: 0;
		overflow: hidden;
		position: absolute;
		top: 0px;
		left: 0px;
		font-size: 12px !important;
		z-index: 9999999999999999999999;
		clear: both;
		background: #000;
		margin-left: 0 important; 
	}

	.menu ul {
		width: 100%; 
		margin-left: 0 !important;
		padding-top: 25px !important;
		height: auto;
	}

	.menu li {
		display: none;
		width: 100%;
		padding-right: 0;
		padding-left: 0;
		padding-top: 0;
		height: auto;
		font-family: Arial;
	}
	.menu li span{
		display: none;
	}
	.menu li a {
		display: block;
		width: 100%;
		padding: 16px 2%;
		font-weight: bold;
		font-size: 13px;
		text-shadow: -1px -1px 0 rgba(0,0,0,.15);
		color: white;
		text-decoration: none;
		border-bottom: 1px solid rgba(0,0,0,.2);
		border-top: 1px solid rgba(255,255,255,.1); 
	}
	.menu li a:hover {
		background-color: #ffed00;
		border-top-color: transparent;
		color: #000;
	}
	.menu > li:first-child {
		border-top: 1px solid rgba(0,0,0,.2);
	}

	/* Toggle the navigation bar open  */

	.menu.open { 
		height: auto; 
		padding-top: 50px;
		background: #000; /* Escolher a cor de fundo do menu */
	}
	.menu.open li {
		display: block;
		margin-bottom: 0 !important;
	}

	/* Submenus – optional .parent class indicates dropdowns */

	.menu > li:hover > a {
		background: rgba(0,0,0,.5);
		border-bottom-color: transparent;
	}
	.menu li.parent > a:after {
		content: "?";
		color: rgba(255,255,255,.5);
		float: right;
	}
	.menu li.parent > a:hover {
		background: rgba(0,0,0,.75);
	}
	.menu li ul {
		display: none;
		background: rgba(0,0,0,.5);
		border-top: 0 none;
		padding: 0;
	}
	.menu li ul a {
		border: 0 none;
		font-size: 13px;
		padding: 10px 5%;
		font-weight: normal;
	}
	.menu li:hover ul {
		display: block;
		border-top: 0 none;
	}
	

	
	/* MENU MOBILE
	-------------------------------------------------------- */

	.menu-mobile {
		width: 100%;
		display: block;
		height: 50px;
		margin: 0;
		padding: 0;
		overflow: hidden;
		position: absolute;
		top: 0px;
		left: 0px;
		font-size: 12px !important;
		z-index: 9999999999999999999999;
		clear: both;
		background: #000;
		margin-left: 0 important; 
	}

	.menu-mobile ul {
		width: 100%; 
		margin-left: 0 !important;
		padding-top: 25px !important;
		height: auto;
	}

	.menu-mobile li {
		display: none;
		width: 100%;
		padding-right: 0;
		padding-left: 0;
		padding-top: 0;
		height: auto;
		font-family: Arial;
	}
	.menu-mobile li span{
		display: none;
	}
	.menu-mobile li a {
		display: block;
		width: 100%;
		padding: 16px 2%;
		font-weight: bold;
		font-size: 13px;
		text-shadow: -1px -1px 0 rgba(0,0,0,.15);
		color: white;
		text-decoration: none;
		border-bottom: 1px solid rgba(0,0,0,.2);
		border-top: 1px solid rgba(255,255,255,.1); 
	}
	.menu-mobile li a:hover {
		background-color: #ffed00;
		border-top-color: transparent;
		color: #000;
	}
	.menu-mobile > li:first-child {
		border-top: 1px solid rgba(0,0,0,.2);
	}

	/* Toggle the navigation bar open  */

	.menu-mobile.open { 
		height: auto; 
		padding-top: 50px;
		background: #000; /* Escolher a cor de fundo do menu */
	}
	.menu-mobile.open li {
		display: block;
		margin-bottom: 0 !important;
	}

	/* Submenus – optional .parent class indicates dropdowns */

	.menu-mobile > li:hover > a {
		background: rgba(0,0,0,.5);
		border-bottom-color: transparent;
	}
	.menu-mobile li.parent > a:after {
		content: "?";
		color: rgba(255,255,255,.5);
		float: right;
	}
	.menu-mobile li.parent > a:hover {
		background: rgba(0,0,0,.75);
	}
	.menu-mobile li ul {
		display: none;
		background: rgba(0,0,0,.5);
		border-top: 0 none;
		padding: 0;
	}
	.menu-mobile li ul a {
		border: 0 none;
		font-size: 13px;
		padding: 10px 5%;
		font-weight: normal;
	}
	.menu-mobile li:hover ul {
		display: block;
		border-top: 0 none;
	}

} 

.slider-home{
	margin-top: 20px;
}

.logo {
	display: none;
}

.logo-mobile {
	width: 100%;
	height: 50px;
	margin-top: 70px;
	text-align: center;
	display: table !important;
}

.content-menu ul{
	margin: 0;
	padding: 0;
	margin-left:  290px;
	list-style: none;
	float: left;
	margin-top:  -30px;
}

.content-menu-mobile ul{
	margin: 0;
	padding: 0;
	margin-left:  290px;
	list-style: none;
	float: left;
	margin-top:  -30px;
}

.content-menu li{
	height:  50px;
	margin-right:  50px;
	float:  left;
}

.content-menu-mobile li{
	height:  50px;
	margin-right:  50px;
	float:  left;
}

.menu a {
	color: #000;
}

.menu {
	display: none;
}

.menu a:hover {
	color: #7e7e7e;
}

.menu-mobile a {
	color: #000;
}

.menu-mobile a:hover {
	color: #7e7e7e;
}

.berlin-home {
	width: 100%;
	height: auto;
	display: table !important;
	background: #FFF;
}

.content-berlin-home {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.col1-berlin-home {
	width: 55%;
	margin-top: -100px !important;
	margin: 0 auto;
	float: none;
}

.col1-berlin-home img{
	width: 100% !important;
	height: auto !important; /* Mínimo da altura, por padrao "auto" */
	background-size: 100% !important;
	background-repeat: no-repeat !important;
	text-align: center !important;
	margin: 0 auto !important;
	margin-left: 0 !important;
}

.col1-berlin-home p {
	float: none;
	text-align: center;
}

.col2-berlin-home {
	width: 100%;
	height: auto;
	line-height: 15px;
	padding-bottom: 20px;
	float: none;
}

.col2-berlin-home p{
	width: 80%;
	margin: 0 auto;
	font-family: 'Roboto', sans-serif;
	font-size:  14px;
	margin-top:  15px;
	text-align: center;
}

.col2-berlin-home h3{
	font-size:  19px;
	color: #8a732a;
	text-align: center;
}

.content-berlin-home2 {
	width: 100%;
	height: 486px;
	margin: 0 auto;
}

.col3-berlin-home {
	width: 24%;
	padding-left: 15%;
	height:  486px;
	display: table;
	float: left;
}

.col4-berlin-home {
	width: 61%;
	height: 486px;
	background: url(../img/duplex-home.jpg) no-repeat;
	float: left;
}

.col3-berlin-home h3{
	font-size:  19px;
	text-align: left;
}

.col3-berlin-home ul{
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.col3-berlin-home li{
	float: left;
	height: 96px;
	width: 96px;
	margin-right: 15px;
	margin-bottom: 15px;
	border: 1px solid #9e9e9e;
}

.empresa-home {
	width: 100%;
	float: none;
	display: table;
	height: auto;
	background: url(../img/background-empresa.jpg) center top;
}

.content-empresa-home {
	width: 100%;
	height: auto;
	display: table;
	margin: 0 auto;
}

.content-empresa-home h1{
	text-align: center;
	margin: 0;
}

.content-empresa-home p{
	width: 95%;
	font-size: 12px;
	margin-top: 30px;
	padding-top: 30px;
	padding-bottom: 30px;
	color: #FFF;
	text-align: center;
	margin: 0 auto;
}

.obras-home {
	display: none;
}

.content-obras-home {
	width: 100%;
	height: 386px;
	margin: 0 auto;
}

.content-obras-home ul{
	list-style: none;
	padding-top: 110px !important;
	padding: 0;
	margin: 0;
}

.content-obras-home li{
	float: left;
	margin-right: 5px;
	margin-bottom: 2px;
}

.contato-home {
	width: 100%;
	height: 800px;
	background: #FFF;
	margin-top: -15px;
}

.content-contato-home{
	width: 100%;
	height: 800px;
	margin: 0 auto;
}

.content-contato-home h4{
	text-align: center;
	padding-top: 30px;
}

.coluna1-solicite-info{
	width: 90%;
	height: auto;
	float: left;
	font-size: 15px;
	margin-left: 20px;
	margin-top: 20px;
}

.coluna1-solicite-info ul{
	width: 100%;
	height: auto;
	list-style: none;
	margin: 0;
	padding: 0;
}

.coluna1-solicite-info input{
	width: 95%;
	height: 30px;
	background: #FFF;
	border: 1px solid #d0d0d0;
	padding-left: 10px;
	font-size: 14px;
	color: #000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.coluna1-solicite-info li{
	margin-top: 10px;
}

.coluna2-solicite-info {
	width: 100%;
	height: auto;
	float: left;
	text-align: center;
	margin-left: 0;
	margin-top: 30px;
}

.coluna2-solicite-info p{
	margin-top: 30px;
	font-size: 15px;
}

.coluna1-solicite-info textarea{
	width: 95%;
	height: 100px;
	background: #FFF;
	border: 1px solid #d0d0d0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding-left: 10px;
	font-size: 14px;
	font-family: 'Roboto', serif;
	padding-top: 10px;
	color: #000;
}

.btnenviar{
	width: 109px !important;
	height: 39px !important;
	background: url(../img/bt-enviar.png) no-repeat !important;
	margin-right: 10px;
	border: 0 !important;
	margin-top: 20px;
	text-align: center;
	cursor: pointer;
}

.codigo {
	width: 70px !important;
	height: 30px !important;
	margin-top: 20px;
	border: 1px solid #d0d0d0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-size: 14px;
	padding-left: 10px;
}

.rodape {
	width: 100%;
	height: 60px;
	bottom: 0;
	background: #959595;
	display: inline-block;
}

.content-rodape {
	width: 100%;
	height: 20px;
	color: #FFF;
	margin: 0 auto;
	text-align: center;
	margin-top: 0;
}

.slider-obra {
	width: 100%;
	height: auto;
	display: table;
	background: none;
}

.slider-obra-berlin {
	width: 100% !important;
	height: auto;
	display: table;
	background: none;
}

.content-slider-obra {
	width: 100%;
	height: auto;
	padding-top: 20px;
	margin: 0 auto;
	text-align: center;
}

.content-obras-construcao {
	width: 100%;
	height: auto;
	display: table; 
	margin: 0 auto;
}

.content-obras-construcao h1{
	width: 100%;
	text-align: center;
	margin: 0 auto;
	margin-top: 20px;
}

.coluna1-obras-construcao{
	font-family: 'Roboto', sans-serif;
	width: 100% !important;
	height: auto;
	display: table;
	margin-top: 20px;
	float: left;
}

.coluna2-obras-construcao{
	font-family: 'Roboto', sans-serif;
	width: 90%;
	font-size: 14px;
	margin-top: 40px;
	margin-left: 10px;
	float: none;
	line-height: 20px;
	height: auto;
}

.logo-obras{
	text-align: center;
	margin: 0 auto;
}

.foto-obras{
	text-align: center;
	margin: 0 auto;
	margin-top: 30px;
}

.localizacao-obras{
	margin: 0 auto;
	margin-top: 20px;
}

.localizacao-obras p{
	font-size: 18px;
	margin-left: 10px;
	font-weight: bold;
}

.localizacao-obras h2{
	margin-left: 10px;
	font-weight: lighter;
	font-size: 13px;
}

.localizacao-obras h2 a{
	text-decoration: underline;
	color: #666;
}

.localizacao-obras h3{
	margin-left: 10px;
	font-weight: lighter;
	font-size: 11px;
}

.coluna2-obras-construcao p{
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	margin: 0;
	font-weight: bold;
	font-size: 18px;
}

.galeria-obras {
	display: none;
}

.galeria-obras p{
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.galeria-obras ul{
	height: 100%;
	margin-left: 90px;
	padding: 0;
	list-style: none;
}

.galeria-obras li{
	width: 148px;
	margin-bottom: 20px;
	margin-right: 20px;
	height: 101px;
	float: left;
	border: 1px solid #666;
}

.andamento-obra {
	width: 90%;
	height: auto;
	float: none;
	display: table; 
	margin: 0 auto;
}

.andamento-obra p{
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.cronograma{
	width: 90%;
	margin-top: 10px;
	margin-bottom: 20px;
	float: left;
	margin-left: 20px;
	font-size: 1.8vw;
}

.cronograma ul{
	width: 90%;
	list-style: none;
	margin-left: 20px;
	padding: 0;
}

.cronograma li{
	width: 18%;
	display: inline-table;
	margin-right: 40px;
	margin-bottom: 20px;
}

.porcentagem {
	background-image: url(../img/bg-porcentagem.png);
	width: 100px;
	margin-top: 5px;
	padding-top: 0;
	line-height: 0;
	height: 8px;
}

.porcentagem span{
	color: #272a6e;
	padding-top: 10px;
}

.fotos-andamento {
	width: 100%;
	height: auto;
	float: left;
	display: table; 
	margin: 0 auto;
}

.fotos-andamento {
	display: none;
}

.fotos-andamento p{
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.fotos-andamento ul{
	height: 200px;
	margin-left: 90px;
	padding: 0;
	list-style: none;
}

.fotos-andamento li{
	width: 144px;
	margin-bottom: 20px;
	margin-right: 20px;
	height: 109px;
	float: left;
}

.slider-obras {
	width: 100%;
	height: 500px;
	display: table;
	background: none; 
}

.slider-obras p{
	width: 100%;
	display: table;
	color: #000;
	font-size: 22px;
	text-align: center;
}

.slider-obras ul{
	width: 100%;
	margin: 0 auto;
	height: auto;
	margin-top: 20px;
	list-style: none;
	padding: 0;
}

.slider-obras li{
	float: none;
	margin-right: 0;
	margin-left: 0;
}

.obras-home-mobile {
	width: 100%;
	height: auto;
	background: url(../img/background-obras-entregues-mobile.jpg) center;
	display: table;
}

.obras-home-mobile h1{
	padding-top: 20px;
	text-align: center;
}

.slider2 img {
	width: 100% !important;
	height: auto !important; /* Mínimo da altura, por padrao "auto" */
	background-size: 100% !important;
	background-repeat: no-repeat !important;
	text-align: center !important;
	margin: 0 auto !important;
	margin-left: 0 !important;
}

.descritivo-novidades-mobile{
	color: #FFF;
	padding-top: 10px;
	text-align: center;
	font-size: 15px;
}

.slider-obras img {
	width: 100% !important;
	height: auto !important; /* Mínimo da altura, por padrao "auto" */
	background-size: 100% !important;
	background-repeat: no-repeat !important;
	text-align: center !important;
	margin: 0 auto !important;
	margin-left: 0 !important;
}

.content-slider-obra img {
	width: 100% !important;
	height: auto !important; /* Mínimo da altura, por padrao "auto" */
	background-size: 100% !important;
	background-repeat: no-repeat !important;
	text-align: center !important;
	margin: 0 auto !important;
	margin-left: 0 !important;
}

.foto-obras img {
	width: 100% !important;
	height: auto !important; /* Mínimo da altura, por padrao "auto" */
	background-size: 100% !important;
	background-repeat: no-repeat !important;
	text-align: center !important;
	margin: 0 auto !important;
	margin-left: 0 !important;
}

.galeria-obras-mobile img{
	width: 100%;
	height: auto;
	float: none;
	display: table !important; 
	margin: 0 auto;
}

.galeria-obras-mobile {
	width: 100%;
	height: auto;
	float: none;
	display: table !important; 
	margin: 0 auto;
}

.galeria-obras-mobile  p{
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.galeria-obras-mobile  ul{
	height: 100%;
	margin-left: 0;
	padding: 0;
	list-style: none;
}

.galeria-obras-mobile  li{
	width: 100%;
	margin-bottom: 20px;
	margin-right: 0;
	float: none;
	border: 0;
}

.fotos-andamento-mobile {
	width: 100%;
	height: auto;
	float: left;
	display: table !important; 
	margin: 0 auto;
}

.fotos-andamento-mobile p{
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
}

.fotos-andamento-mobile ul{
	height: 100%;
	margin-left: 0;
	padding: 0;
	list-style: none;
}

.fotos-andamento-mobile li{
	width: 100%;
	margin-bottom: 20px;
	margin-right: 0;
	float: none;
}

.fotos-andamento-mobile img {
	width: 100% !important;
	height: auto !important; /* Mínimo da altura, por padrao "auto" */
	background-size: 100% !important;
	background-repeat: no-repeat !important;
	text-align: center !important;
	margin: 0 auto !important;
	margin-left: 0 !important;
}

.obrigado {
	width: 100%;
	margin: 0 auto;
	height: auto;
	display: table;
}

.obrigado p{
	font-size: 20px;
	padding-top: 20px;
	text-align: center;
}

.obrigado img {
	width: 100% !important;
	height: auto !important; /* Mínimo da altura, por padrao "auto" */
	background-size: 100% !important;
	background-repeat: no-repeat !important;
	text-align: center !important;
	margin: 0 auto !important;
	margin-left: 0 !important;
}

.lei-breve-lancamento {
	width: 90%;
	margin: 0 auto;
	display: table;
	margin-top: 20px;
	font-size: 16px;
	text-align: center;
}