* {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
}

html {
	height: auto;
	min-height: 100%;
	padding-top: 60px;
}

body {
	-webkit-font-smoothing: antialiased;
	background-color: #fff;
	overflow-x: hidden;
	position: relative;
	padding-bottom: 80px;
	min-height: calc(100vh - 60px);
}

.full_banner_home {
	height: calc(100vw * 0.41);
    width: 100%;
    background-image: url(../img/banner_home_novo.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}

.full_banner_home img {
	display: none;
	width: 20%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
       -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
         -o-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

#custom_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 99;
	display: none;
}

#cabecalho {
	height: 60px;
	width: 100vw;
	background: #328fea;
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

#cabecalho a#logo {
	display: block;
	height: 60px;
	padding: 5px 0;
	text-align: center;
}

#cabecalho a#logo > img {
	height: 50px;
	display: inline-block;
	position: relative;
}

#btn_menu_mobile {
	display: inline-block;
	color: #fff;
	height: 60px;
	padding: 0 20px;
	text-align: center;
	-webkit-transition: all linear 0.2s;
	-moz-transition: all linear 0.2s;
	-ms-transition: all linear 0.2s;
	-o-transition: all linear 0.2s;
	transition: all linear 0.2s;
	position: absolute;
	right: 0;
}

#btn_menu_mobile > span {
	line-height: 60px;
	font-size: 28pt;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	right: 0;
}

#btn_menu_mobile > span.icone_menu {
	opacity: 1;
}

#btn_menu_mobile > span.icone_fechar {
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

#btn_menu_mobile.menu_aberto .icone_fechar {
	transform: rotate(0deg) scale(1);
	opacity: 1;
	/*color: #328fea;*/
}
#btn_menu_mobile.menu_aberto .icone_menu {
	transform: rotate(180deg) scale(.5);
	opacity: 0;
}

#cabecalho #menu_desk {
	position: relative;
	right: 50%;
	-webkit-transform: translateX(50%);
	-moz-transform: translateX(50%);
	-ms-transform: translateX(50%);
	-o-transform: translateX(50%);
	transform: translateX(50%);
	float: right;
}

#cabecalho #menu_desk > .item_menu_desk {
    font-family: Roboto;
    font-size: 12pt;
    display: inline-block;
    font-weight: 500;
}

#cabecalho #menu_desk > .item_menu_desk > a {
	color: #fff;
	display: inline-block;
	line-height: 57px;
	border-bottom: 3px solid transparent;
	padding: 0 20px;
	text-align: center;
	-webkit-transition: all linear 0.2s;
	-moz-transition: all linear 0.2s;
	-ms-transition: all linear 0.2s;
	-o-transition: all linear 0.2s;
	transition: all linear 0.2s;
}

#cabecalho #menu_desk > .item_menu_desk:hover > a {
	color: #0051a0;
	/*border-bottom: 3px solid #328fea;*/
}

/* Slider da Home */
#slider_home {
	/*height: calc(100vh - 60px);*/
	height: calc(100vw * 0.41);
	width: 100%;
	position: relative;
	overflow: hidden;
	/*background: linear-gradient(to bottom left, #69439A, #2e1e44);*/
}

#slider_home #controles {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	padding-bottom: 10px;
}

#slider_home #controles .controle {
	display: inline-block;
	height: 13px;
	width: 13px;
	border-radius: 50%;
	background-color: #fff;
	margin-right: 5px;
	cursor: pointer;
	box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.5);
	transition: all linear 0.2s;
}

#slider_home #controles .controle:hover, #slider_home #controles .controle.current {
	background-color: #328fea;
}

#slider_home #controles .controle:last-child {
	margin-right: 0;
}

#slider_home #proxima_img, #slider_home #anterior_img {
	display: inline-block;
	position: absolute;
	height: 100%;
	top: 0;
	width: 70px;
	cursor: pointer;
}

#slider_home #proxima_img i, #slider_home #anterior_img i {
	color: #fff;
	font-size: 60pt;
	position: absolute;
	top: 50%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-shadow: 0px 5px 2px rgba(0, 0, 0, 0.5);
}

#slider_home #proxima_img {
	right: 0;
}

#slider_home #proxima_img i {
	right: 50%;
	transform: translate(50%,-50%);
}

#slider_home #anterior_img {
	left: 0;
}

#slider_home #anterior_img i {
	left: 50%;
	transform: translate(-50%,-50%);
}

#imagens_slider img {
	/*height: calc(100vh - 60px);*/
	height: calc(100vw * 0.41);
	width: 100vw;
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

#imagens_slider a:not(.current) {
	display: none;
}
/* Fim do Slider da Home */

#mapa_google {
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
	border:0;
	width: 100%;
	height: 300px;
}

.section_header {
	width: 100%;
	min-height: 100px;
	background-color: #fff;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
}

.section_header > .section_title {
	font-family: Roboto;
    font-size: 21pt;
    color: #328fea;
    display: inline-block;
    vertical-align: text-top;
    font-weight: bold;
}

.section_header > .section_title > .material-icons
, .section_header > .section_title > i {
	font-size: 22pt;
    padding: 0px 10px;
    vertical-align: text-top;
}

.section_header > .section_title > i {
	padding: 0px 15px;
}

#page_content_container {
	padding-bottom: 30px;
}

#rodape {
	width: 100vw;
	height: 80px;
	background-color: #328fea;
	position: absolute;
	bottom: 0;
	left: 0;
}

#rodape > .container {
	z-index: 998;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

#rodape a#marca_dev
, #rodape a#logo_rodape {
	display: block;
}

#rodape a#marca_dev {
	text-align: right;
	height: 80px;
	padding: 20px 0;
}

#rodape a#logo_rodape {
	text-align: center;
	padding: 10px 0;
	height: 80px;
}

#rodape a#marca_dev > img 
, #rodape a#logo_rodape > img {
	display: inline-block;
	position: relative;
}

#rodape a#marca_dev > img {
	height: 40px;
}

#rodape a#logo_rodape > img {
	height: 60px;
}

#container_icones_rodape {
	width: auto;
	height: 80px;
	padding: 25px 0;
	text-align: center;
}

#container_icones_rodape a {
	margin: 0 10px;
	line-height: 30px;
	vertical-align: middle;
	display: inline-block;
}

#container_icones_rodape .icone_rodape {
	font-size: 23pt;
	color: #fff;
	-webkit-transition: all linear 0.1s;
	-moz-transition: all linear 0.1s;
	-ms-transition: all linear 0.1s;
	-o-transition: all linear 0.1s;
	transition: all linear 0.1s;
	/*vertical-align: middle;*/
}

#container_icones_rodape a:hover .icone_rodape {
	color: #328fea;
}

.anuncio_home.col.s6.m4.l3 {
	position: relative;
	padding: 0 0.5rem;
	margin-bottom: 20px;
}

.anuncio_box {
	width: 100%;
	height: 275px;
	padding: 15px;
	box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.37);
	background-color: #fbfbfb;
	transition: all linear 0.1s;
}

.anuncio_box:hover {
	box-shadow: 0 7px 5px 0px rgba(0,0,0,0.37);
}

.anuncio_box p.titulo_anuncio {
	font-family: "Roboto";
	font-weight: bold;
	font-size: 13pt;
	text-align: left;
	margin-bottom: 10px;
	height: 22px;
	display: inline-block;
}

.anuncio_box .img_anuncio {
	width: 100%;
	height: 60%;
	/*background-color: #333;*/
	margin-bottom: 20px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.anuncio_box a.btn_acessa_anuncio {
	width: 100%;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 40px;
    background-color: #328fea;
    color: #fff;
    font-family: Roboto;
    font-size: 15pt;
    font-weight: 500;
    letter-spacing: 1px;
    word-spacing: 5px;
    -webkit-transition: all linear 0.1s;
    -moz-transition: all linear 0.1s;
    -ms-transition: all linear 0.1s;
    -o-transition: all linear 0.1s;
    transition: all linear 0.1s;
}

.anuncio_box a.btn_acessa_anuncio i {
	font-size: 13pt;
	vertical-align: middle;
}

.anuncio_box a.btn_acessa_anuncio:hover {
	background-color: #7ab9f7;
}

.minor_button {
	font-family: Roboto;
    color: #fff;
    background-color: #328fea;
    padding: 5px 10px;
    border-radius: 3px;
    line-height: 20px;
    display: inline-block;
    vertical-align: middle;
    font-size: 10pt;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-transition: all linear 0.1s;
    -moz-transition: all linear 0.1s;
    -ms-transition: all linear 0.1s;
    -o-transition: all linear 0.1s;
    transition: all linear 0.1s;
}

.minor_button i {
	vertical-align: middle;
	font-size: 10pt;
}

.section_header .minor_button {
	margin-left: 20px;
}

.minor_button:hover {
	background-color: #7ab9f7;
}

.info_pag_anuncio {
	position: relative;
	padding-top: 66px;
}

.preco_pag_anuncio {
	font-family: Roboto;
    font-size: 27pt;
    color: #328fea;
    text-align: left;
    padding: 10px 10px 20px 0;
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-table;
    font-weight: 600;
}

.detalhe_preco_pag_anuncio {
	height: 36px;
	width: 100%;
	position: absolute;
	top: 10px;
	right: 0;
	background-color: #328fea;
}

.linha_info_anuncio {
	font-family: Roboto;
	padding: 5px 0;
	font-size: 13pt;
	color: #383838;
	font-weight: 500;
}

.linha_info_anuncio b {
	color: #328fea;
}

.linha_info_anuncio.desc_anuncio {
	padding-top: 20px;
}

.container_img_pag_anuncio {
	width: 100%;
	height: 500px;
	/*background-color: #222;*/
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	border-radius: 3px;
}

.container_img_pag_anuncio .img_pag_anun {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.slider-container:not(.normal-size) {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	z-index: 99999999999999;
}

.slider-container.normal-size {
	position: relative;
}

.slider {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,1);
	height: 40vh;
}

.slider-container:not(.normal-size) .slider,
.slider-container:not(.normal-size) .slider-image {
	height: 85vh;
}

.slider-container:not(.normal-size) .slider-thumbnails {
	height: 15vh;
  align-items: center;
}

.slider-container.normal-size .slider {
	background-color: transparent;
}

.slider-image {
  flex-shrink: 0;
  scroll-snap-align: start;
  height: 40vh;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.slider-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.slider-thumbnails {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  display: flex;
  justify-content: start;
  padding: 10px 5px;
  width: 100%;
  overflow: hidden;
  background-color: rgb(22, 22, 22);
  position: relative;
}

.slider-container.normal-size .slider-thumbnails {
	background-color: transparent;
}

.zoom-icon-slider,
.close-icon-slider {
	color: #fff;
	position: absolute;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.7);
	cursor: pointer;
}

.zoom-icon-slider {
	color: rgba(255,255,255,0.7);
	font-size: 60px;
	top: 45%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: color linear 0.1s;
}

.zoom-icon-slider:hover {
	color: rgba(255,255,255,1);
}

.close-icon-slider {
	font-size: 40px;
	top: 20px;
	right: 20px;
}

.slider-container:not(.normal-size) .zoom-icon-slider {
	display: none;
}

.slider-container.normal-size .close-icon-slider {
	display: none;
}

.slider-thumbnails img {
  width: auto;
  height: 10vh;
  margin: 0 2px;
  cursor: pointer;
  filter: grayscale(1);
  transition: all linear 0.2;
}

.slider-container.normal-size .slider-thumbnails img {
	height: 50px;
}

.slider-thumbnails img.active {
  filter: grayscale(0);
}

.prev-button,
.next-button {
  position: absolute;
	top: 50%;
	transform: translateY(-70%);
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	font-size: 40px;
	cursor: pointer;
	border-radius: 50%;
	padding: 0 18px 8px 18px;
}

.slider-container.normal-size .prev-button,
.slider-container.normal-size .next-button {
	/* color: #000 !important; */
	background-color: transparent;
	font-weight: bold;
	font-size: 80px;
	color: #328fea !important;
}

.slider-container:not(.normal-size) button.prev-button:focus,
.slider-container:not(.normal-size) button.next-button:focus {
	outline: none;
	background-color: rgba(0, 0, 0, 0.5);
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

.miniaturas_pag_anuncio {
	display: flex;
	width: 100%;
	position: relative;
	justify-content: center;
}

.miniaturas_pag_anuncio img {
	height: 70px;
	width: auto;
	margin-right: 1px;
	margin-bottom: 3px;
	/* border-radius: 3px; */
	cursor: pointer;
	-webkit-transition: all linear 0.1s;
	-moz-transition: all linear 0.1s;
	-ms-transition: all linear 0.1s;
	-o-transition: all linear 0.1s;
	transition: all linear 0.1s;
	display: flex;
	filter: grayscale(1);
}

.miniaturas_pag_anuncio img:hover {
	/* box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.4); */
	filter: grayscale(0);
}

.g-recaptcha {
    display: inline-block;
    margin: 0 0 10px 0;
}

.btn-message-whatsapp {
	text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    box-sizing: content-box;
    font-weight: bold;
    border-radius: 5px;
}

.btn-with-icon i {
	margin-right: 5px;
    vertical-align: bottom;
}

.contact-form-btn-container .btn {
	margin: 5px 0;
}

@media (min-width: 601px) {
	.m-text-right {
		text-align: right !important;
	}

	.m-text-center {
		text-align: center !important;
	}

	.m-text-left {
		text-align: left !important;
	}
}

@media (max-width: 992px) {
	#imagens_slider img
	, #slider_home {
		height: calc(100vw * 0.41);
		width: 100vw !important;
	}

	.full_banner_home img {
		width: 60%;
	}

	#menu_mob {
		display: block;
		padding-top: 120px;
		position: fixed;
		top: -100%;
		left: 0;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		width: 100vw;
		height: auto;
		background-color: #328fea;
		z-index: 998;
		box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
		-webkit-transition: all cubic-bezier(0.68, -0.55, 0.49, 1.49) 0.4s;
		-moz-transition: all cubic-bezier(0.68, -0.55, 0.49, 1.49) 0.4s;
		-ms-transition: all cubic-bezier(0.68, -0.55, 0.49, 1.49) 0.4s;
		-o-transition: all cubic-bezier(0.68, -0.55, 0.49, 1.49) 0.4s;
		transition: all cubic-bezier(0.68, -0.55, 0.49, 1.49) 0.4s;
	}

	#menu_mob.menu_on {
		top: -60px !important;
	}

	#menu_mob > .item_menu_mob {
		font-family: Roboto;
		font-size: 12pt;
		display: block;
		text-align: right;
		font-weight: 500;
	}

	#menu_mob > .item_menu_mob > a {
		color: #fff;
		display: block;
		line-height: 57px;
		border-right: 3px solid transparent;
		border-bottom: 0px solid transparent;
		padding: 0 40px;
		text-align: right;
	}

	#menu_mob > .item_menu_mob:hover > a {
		color: #0051a0;
		/*border-right: 3px solid #328fea;*/
		background: #7ab9f7;
	}

	.section_header {
		min-height: 70px;
	}

	.section_header > .section_title {
		/*line-height: 70px;*/
	}

	.section_header > .section_title
	, .section_header > .section_title > .material-icons {
		font-size: 22pt;
	}

	#rodape a#marca_dev {
		padding: 25px 0;
	}

	#rodape a#marca_dev > img {
		height: 30px;
	}

	#rodape a#logo_rodape {
		padding: 20px 0;
	}

	#rodape a#logo_rodape > img {
		height: 40px;
	}

	#container_icones_rodape a {
		margin: 0px 5px;
	}

	#container_icones_rodape .icone_rodape {
		font-size: 21pt;
	}

	.anuncio_box .img_anuncio {
		margin-bottom: 10px;
	}

	.anuncio_box p.titulo_anuncio {
		height: 34px;
		margin-bottom: 5px;
	}
}

@media (max-width: 600px) {

	.s-text-right {
		text-align: right !important;
	}

	.s-text-center {
		text-align: center !important;
	}

	.s-text-left {
		text-align: left !important;
	}

	.anuncio_box {
		height: 225px;
	}
	
	.anuncio_box .img_anuncio {
		height: 50%;
	}

	.preco_pag_anuncio {
		left: 50%;
		transform: translateX(-50%);
		padding: 10px 10px 20px 10px;
	}

	.minor_button.hide-on-med-and-up {
		display: inline-block !important;
		margin-bottom: 10px;
	}

	.contact-form-btn-container .btn {
		display: block;
	}
}
