/**
* Author: Thyago França
* Version: 1.0
**/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
.row:before, .row:after {display: none!important;}
/*
regra para uso das fontes
tipos de format()
opentype (otf)
truetype (ttf)
*/
@font-face {
	font-family: 'BinaryitcBold';
	src: url("../fonts/binaryitcstd-bold.otf") format("opentype");
	font-weight: normal;
}
@font-face {
	font-family: "BinaryitcLight";
	src: url("../fonts/binaryitc-light.ttf") format("truetype");
	font-weight: normal;
}
@font-face {
	font-family: "GothamRegular";
	src: url("../fonts/GothamOffice-Regular.otf") format("opentype");
	font-weight: normal;
}
@font-face {
	font-family: "GothamThin";
	src: url("../fonts/Gotham-Thin.otf") format("opentype");
	font-weight: normal;
}
@font-face {
	font-family: "GothamBook";
	src: url("../fonts/Gotham-Book.otf") format("opentype");
	font-weight: normal;
}
html, body {
	height: 100%;
	font-family: "BinaryitcLight";
}
/* painel */
#sign {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
#sign .wrap #formLogin {
    padding: 50px 25px;
    border: 1px solid #007bff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #212525;
    background-image: linear-gradient(150deg, #18124a 35%, #112d78 60%);
}
#sign .wrap #formLogin input[type=email] {
    padding: 23px 0px 23px 15px;
    background-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0;
    color: #fafafa;
    border-radius: 0.25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
#sign .wrap #formLogin input[type=password] {
    padding: 23px 0px 23px 15px;
    background-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0;
    color: #fafafa;
    border-radius: 0.25rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
#sign .wrap #formLogin ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fafafa;
    font-size: 15px;
}
#sign .wrap #formLogin ::-ms-input-placeholder { /* Microsoft Edge */
    color: #fafafa;
    font-size: 15px;
}
#sign .wrap #formLogin .btn-custom {
    border: 1px solid #ced4da;
    background-color: transparent;
    font-weight: bold;
    width: 35%;
    color: #fff;
    padding: 10px 0;
    letter-spacing: 1px;
}
#sign .wrap #formLogin .btn-custom:hover {
    background-color: #007bff;
    transition: .3s linear;
    box-shadow: 0 0 10px #fff;
}
/* dashboard */
#main-content {
	width: 100%;
	height: 100vh;
    padding-top: 60px;
	background-color: #fafafa;
}
.logout {
	display: flex;
	align-items: center;
	padding-right: 50px;
}
.logout .sair {
	font-size: 17px;
	color: #fff;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    padding: 0;
    background-color: #112d78;
}
.menu-top {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
}
.menu-top .logo {
    width: 258px;
    text-align: center;
    padding: 5px 0;
    background-color: #18124a;
}
.menu-top .logo .navbar-brand {
    padding: 0;
    margin: 0;
}
.menu-top .logo .logotipo {
    width: 115px;
    height: auto;
    border-radius: 0;
}
.menu-top #logout {
    width: 100%;
    box-shadow: 2px 0 10px #ccc;
    display: flex;
    justify-content: space-between;
    padding: 10px 25px 10px 15px;
}
.menu-top #logout-user {
    width: 100%;
    box-shadow: 2px 0 10px #ccc;
    display: flex;
    justify-content: space-between;
    padding: 10px 25px 10px 15px;
}
.menu-top #logout-user .box-bar-right {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.dropdown-menu {
    position: absolute;
    top: 50px;
    left: -15px;
    z-index: 1000;
    display: none;
    float: right;
    min-width: 11rem;
    padding: 10px 5px;
    margin: 0px 0px;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}
.menu-top #logout-user .box-bar-right .dropdown .nav-link {
    font-size: 15px;
    color: #727272;
    text-decoration: none;
}
.menu-top #logout-user .box-bar-right .dropdown-menu .dropdown-item {
    font-size: 15px;
    color: #727272;
    padding: 10px 15px;
    text-decoration: none;
}
.menu-top #logout .dropdown-menu .dropdown-item i,
.menu-top #logout-user .box-bar-right .dropdown-menu .dropdown-item i {
    font-size: 15px;
    padding-right: 10px;
}
/* home */
#menu {
	width: 100%;
	padding: 5px 5px;
	position: fixed;
	top: 0;
	z-index: 100;
	overflow: hidden;
	background-color: #565550;
}
#menu #top-bar .logo-header {
	width: 140px;
	height: auto;
}
#menu #top-bar .logo-frei {
	width: 140px;
	height: auto;
	margin-left: 20px;
}
#menu #top-bar .btn-custom {
	padding: 5px 40px;
	background-color: #F5F5F5;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
	color: #2E305F;
	font-size: 18px;
	font-weight: 500;
	font-family: 'GothamBook';
}
#menu #top-bar .btn-custom:hover {
	box-shadow: 0px 0px 5px #fff;
}
#menu #top-bar .btn-custom .apiwhats {
	width: 30px;
}
#box-frei {
	position: fixed;
	bottom: 5%;
	right: 5%;
	z-index: 1000;
}
#box-frei .frei-gilson {
	width: 150px;
	height: auto;
}
#formulario {
	width: 100%;
	height: auto;
	margin-top: 80px;
	background-color: #F5F5F5;
}
#formulario article {
	margin-top: -170px;
}
#formulario article .title {
	font-size: 65px;
	font-weight: 300;
	line-height: 75px;
	color: #3C354B;
}
#formulario article .title span {
	display: block;
}
#formulario article .desc {
	font-size: 25px;
	line-height: 35px;
	font-weight: 300;
	color: #3C354B;
	padding-top: 15px;
	font-family: GothamRegular;
}
#formulario article .desc span {
	font-size: 25px;
	line-height: 35px;
	font-weight: bold;
	color: #3C354B;
	font-family: GothamRegular;
}
#formulario .form {
	width: 100%;
	height: auto;
	margin-top: -160px;
}
#formulario .form input[type="text"],
#formulario .form input[type="email"] {
	background-color: #fff;
	border-radius: 20px;
    padding: 25px 0px 25px 15px;
    outline: 0;
	border: 0;
	font-weight: 400;
	font-family: 'GothamBook';
	color: #494440;
	font-size: 16px;
}
#formulario .form select {
	height: 52px;
    padding: 0 20px;
	background-color: #fff;
	border-radius: 20px;
    outline: 0;
	border: 0;
	color: #494440;
	font-size: 16px;
	font-family: 'GothamBook';
}
#formulario .form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	font-size: 15px;
	color: #494440;
}
#formulario .form ::-ms-input-placeholder { /* Microsoft Edge */
	font-size: 15px;
	color: #494440;
}
#formulario .form .desc {
	font-weight: 500;
	font-size: 23px;
	line-height: 30px;
	color: #494440;
	font-family: 'GothamBook';
}
/* inicio custom checkbox */
#formulario .form .wrap-radio {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
/* remove o quadrado padrão do checkbox */
/* #formulario .form input[type='checkbox'] {
	position: relative;
	cursor: pointer;
	width: 0;
	height: 0;
} */
#formulario .form .wrap-radio label .wrap {
	margin-left: 5px;
	margin-top: -5px;
}
#formulario .form .wrap-radio label .wrap span,
#formulario .form .wrap-radio label .wrap .lgpd {
	font-family: 'GothamBook';
	font-size: 15px;
	line-height: 20px;
	color: #3F3A3B;
}
/* #formulario .form input[type=checkbox]::before {
	content: "";
	display: block;
	position: absolute;
	top: -6px;
	left: -8px;
	width: 28px;
	height: 25px;
	box-sizing: border-box;
	border: 4px solid #D9D9D9;
	border-radius: 50%;
} */
/* #formulario .form input[type=checkbox]:checked::before {
	content: "";
	display: block;
	position: absolute;
	top: -6px;
	left: -8px;
	width: 28px;
	height: 25px;
	background-color: #B7833D;
} */
/* fim custom checkbox */
#formulario .form .btn-send {
	padding: 20px 70px;
	border-radius: 40px;
	font-weight: 500;
	font-size: 20px;
	line-height: 18px;
	font-family: 'GothamBook';
	color: #fff;
	background-color: #B7833D;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
	margin-top: 50px;
}
#formulario .form .btn-send:hover {
	background-color: #a36615;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
#formulario #msgtks {
	font-size: 17px;
	color: #fff;
	margin-top: 20px;
	padding: 10px 10px;
	font-family: 'GothamBook';
	background-color: #539845;
	border-radius: 5px;
	transition: 1s ease-in-out;
}
#formulario #msgtks.mostrar {
	opacity: 1!important;
}
#rahamim {
	width: 100%;
	height: auto;
	background-image: url("../images/bg-green.png");
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: -260px;
}
#rahamim .box {
	padding-top: 500px;
}
#rahamim .wrap .celula {
	font-weight: bold;
	font-size: 42px;
	line-height: 50px;
	color: #fff;
	font-family: 'GothamBook';
}
#rahamim .wrap .desc {
	font-weight: 400;
	font-size: 17px;
	line-height: 20px;
	color: #fff;
	font-family: 'GothamBook';
}
#rahamim .wrap .desc span {
	font-size: 17px;
	line-height: 20px;
	color: #fff;
	font-family: 'GothamBook';
	font-weight: bold;
}
#doe {
	width: 100%;
	height: auto;
	margin-top: 30px;
	position: relative;
}
#doe .img-brown {
	position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
}
#doe .desk .title {
	font-weight: bold;
	font-size: 45px;
	line-height: 50px;
	color: #fff;
	text-align: center;
	font-family: 'GothamBook';
}
#doe .desk .borda {
	border-right: 5px solid #D9D9D9;
}
#doe .desk .pix {
	text-align: center;
	padding-top: 10px;
}
#doe .desk .pix .email {
	display: inline-block;
	font-size: 25px;
	line-height: 25px;
	color: #53402F;
	padding: 13px 70px;
	font-family: 'GothamBook';
	font-weight: bold;
	background-color: #D9D9D9;
}
#doe .desk .pix .btn-copy-pix {
	padding: 15px 70px;
	border-radius: 40px;
	font-weight: 500;
	font-size: 17px;
	line-height: 18px;
	font-family: 'GothamBook';
	color: #fff;
	background-color: #CB2620;
}
#doe .desk .btn-copy-pix:hover {
	box-shadow: 0px 0px 10px #ccc;
}
#doe .desk .qrcode {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#doe .desk .qrcode .texto .desc {
    font-size: 25px;
	line-height: 35px;
	color: #fff;
	margin-top: -10px;
	font-family: 'GothamBook';
}
#doe .desk .qrcode .texto .arrow-qrcode {
    float: right;
	width: 70px;
}
#doe .desk .qrcode .img .qrcode-doe {
    width: 150px;
	height: auto;
}
#espaco {
	width: 100%;
	height: 300px;
	margin-top: 435px;
	background-color: #fff;
}
#cidade {
	width: 100%;
	height: auto;
	background-color: #F2F1E5;
	background-image: url("../images/bg-trans.png");
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 160px;
	background-position-y: -150px;
}
#cidade .main {
	width: 100%;
	height: auto;
	margin-top: -470px;
	padding: 20px 10px;
	box-shadow: 0 0 15px #ccc;
	border-radius: 20px;
	background-color: #fff;
}
#cidade .mobile-reverse {
    margin-top: 185px!important;
}
#cidade .main .title {
	font-size: 43px;
	color: #539845;
	text-align: center;
	line-height: 40px;
	font-weight: 700;
	font-family: 'GothamBook';
}
#cidade .main .wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
#cidade .main .wrapper .wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#cidade .main .wrapper .wrap .box-one {
	width: 100%;
	height: 250px;
	margin: 0 3px;
	padding: 20px 10px;
	text-align: center;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	background-color: #93A746;
	text-decoration: none;
}
#cidade .main .wrapper .wrap .box-two {
	width: 100%;
	height: 250px;
	margin: 0 3px;
	padding: 20px 10px;
	text-align: center;
	text-decoration: none;
	background-color: #93A746;
}
#cidade .main .wrapper .wrap .box-three {
	width: 100%;
	height: 250px;
	margin: 0 3px;
	padding: 20px 10px;
	text-align: center;
	text-decoration: none;
	background-color: #93A746;
}
#cidade .main .wrapper .wrap .box-four {
	width: 100%;
	height: 250px;
	margin: 0 3px;
	padding: 20px 10px;
	text-align: center;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	background-color: #93A746;
	text-decoration: none;
}
#cidade .main .wrapper .wrap .box-one:hover,
#cidade .main .wrapper .wrap .box-two:hover,
#cidade .main .wrapper .wrap .box-three:hover,
#cidade .main .wrapper .wrap .box-four:hover {
	transform: scaleY(1.03);
	background-color: #B54623;
}
#cidade .main .wrapper .wrap .img-cidade {
	width: 80px;
	height: auto;
}
#cidade .main .wrapper .wrap .title {
	font-size: 21px;
	color: #fff;
	text-align: center;
	line-height: 25px;
	font-weight: 700;
	font-family: 'GothamBook';
}
#cidade .main .wrapper .wrap .desc {
	font-size: 18px;
	color: #fff;
	text-align: center;
	line-height: 25px;
	font-weight: 500;
	font-family: 'GothamBook';
}
#cidade .modal .modal-content .header .close {
    margin-right: 10px;
    margin-top: 10px;
}
#cidade .sub-title {
	font-size: 43px;
	color: #93A746;
	line-height: 45px;
	font-weight: 700;
	font-family: 'GothamBook';
}
#cidade ul li {
	font-size: 17px;
	color: #5A5F47;
	line-height: 20px;
	font-weight: 500;
	font-family: 'GothamBook';
}
#cidade .botao {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 10px 0 25px 0;
}
#cidade .botao .btn-custom {
	padding: 12px 50px 8px 50px;
	background-color: #539845;
	border-radius: 40px;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	font-family: 'GothamBook';
}
#cidade .botao .btn-custom:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}
#cidade .botao .btn-custom .apiwhats {
	width: 30px;
}
#about {
	width: 100%;
	height: auto;
	padding-top: 200px;
	padding-bottom: 80px;
	background-color: #F2F1E5;
}
#about .wrap .title {
	font-size: 43px;
	color: #539845;
	line-height: 40px;
	font-weight: 700;
	font-family: 'GothamBook';
}
#about .wrap .desc {
	font-size: 18px;
	color: #5A5F47;
	line-height: 25px;
	font-weight: 500;
	font-family: 'GothamBook';
}
#galeria {
	width: 100%;
	height: auto;
	padding-top: 130px;
	padding-bottom: 90px;
}
#galeria .title {
	font-size: 43px;
	color: #539845;
	line-height: 40px;
	font-weight: 700;
	text-align: center;
	font-family: 'GothamBook';
}
#galeria .wrap-one,
#galeria .wrap-two {
	display: flex;
	justify-content: center;
	align-items: center;
}
#galeria .wrap-one .box-img,
#galeria .wrap-two .box-img {
	margin: 5px 5px;
	cursor: pointer;
	position: relative;
}
#galeria .wrap-one .box-img .img-galeria,
#galeria .wrap-two .box-img .img-galeria {
	width: 350px;
	height: auto;
}
#galeria .wrap-one .box-img .overlay,
#galeria .wrap-two .box-img .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 1;
	transition: .5s ease;
	background-color: rgba(0, 0, 0, 0.5);
}
#galeria .wrap-one .box-img:hover .overlay,
#galeria .wrap-two .box-img:hover .overlay {
	opacity: 0;
}
/* Remove a máscara da primeira imagem */
/* #galeria .wrap-one .box-img:first-child .overlay {
	opacity: 0;
} */
/* Mantém a máscara ativada para as demais imagens */
/* #galeria .wrap-one .box-img:not(:first-child) .overlay {
	opacity: 1;
} */
#galeria .modal .modal-content .modal-body .img-galeria {
    width: 100%;
    height: auto;
}
#duvidas {
	width: 100%;
	height: auto;
	background-color: #F2F1E5;
	background-image: url("../images/bg-trans.png");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 150px;
	padding-bottom: 50px;
}
#duvidas .title {
	font-size: 43px;
	color: #539845;
	text-align: center;
	line-height: 40px;
	font-weight: 700;
	font-family: 'GothamBook';
}
#duvidas .wrap {
	width: 100%;
	height: 380px;
	border: 1px solid #539845;
	padding: 25px 25px;
}
#duvidas .wrap .sub-title {
	font-size: 25px;
	color: #565550;
	line-height: 35px;
	font-weight: 700;
	font-family: 'GothamBook';
}
#duvidas .wrap .desc {
	font-size: 19px;
	color: #565550;
	line-height: 22px;
	font-weight: 500;
	font-family: 'GothamBook';
}
#duvidas .botao {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}
#duvidas .botao .btn-custom {
	padding: 12px 50px 8px 50px;
	background-color: #539845;
	border-radius: 40px;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	font-family: 'GothamBook';
}
#duvidas .botao .btn-custom:hover {
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}
#duvidas .botao .btn-custom .apiwhats {
	width: 30px;
}
#rodape {
	width: 100%;
	height: 300px;
	position: relative;
	background-color: #565550;
}
#rodape .pd {
    padding-top: 80px;
}
#rodape .wid-one ul .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
}
#rodape .wid-two ul li a,
#rodape .wid-two ul li span {
	font-weight: 700;
	font-size: 17px;
	line-height: 110.7%;
	color: #D9D9D9;
	font-family: 'GothamThin';
}
#rodape .wid-two ul li:nth-of-type(1) {
	font-weight: 700;
	font-size: 17px;
	line-height: 110.7%;
	color: #D9D9D9;
	font-family: 'GothamBook';
}
#rodape .wid-three .btn-custom {
	padding: 5px 20px;
	background-color: #F5F5F5;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
	border-radius: 20px;
	color: #2E305F;
	font-size: 17px;
	font-weight: 500;
	font-family: 'GothamBook';
}
#rodape .wid-three .btn-custom:hover {
	box-shadow: 0px 0px 5px #fff;
}
#rodape .wid-three .btn-custom .apiwhats {
	width: 30px;
}
#rodape .copyright {
	position: absolute;
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
#rodape .copyright {
	font-size: 13px;
	color: #fff;
	font-weight: 500;
	font-family: 'GothamBook';
}
@media only screen and (max-width: 768px) {
	#formulario .img-efeito-top {
		display: none;
	}
	#formulario article {
		margin-top: 60px;
	}
	#formulario .form {
		width: 100%;
		height: auto;
		margin-top: 80px;
	}
	#box-frei {
		position: fixed;
		top: 75%;
		right: 5%;
	}
	#box-frei .frei-gilson {
		width: 150px;
		height: auto;
	}
	#rahamim .box {
		padding-top: 350px;
	}
	#doe {
		width: 100%;
		height: auto;
		margin-top: 20px;
	}
	#doe .img-brown {
		width: 100%;
		height: 300px;
	}
	#doe .desk .title {
		font-size: 30px;
		line-height: 40px;
	}
	#doe .desk .desc {
		font-size: 17px;
		line-height: 30px;
	}
	#doe .desk .pix .email {
		font-size: 19px;
		padding: 13px 25px;
	}
	#doe .desk .qrcode .texto .desc {
		font-size: 17px;
		line-height: 30px;
		margin-top: 15px;
	}
	#doe .desk .qrcode .texto .desc br {
		display: none;
	}
	#doe .desk .qrcode .texto .arrow-qrcode {
		float: right;
		width: 70px;
		margin-right: 45px;
	}
}
@media only screen and (max-width: 767px) {
	#menu #top-bar .logo-header {
		width: 100px;
		height: auto;
	}
	#menu #top-bar .logo-frei {
		width: 100px;
		height: auto;
		margin-left: 20px;
	}
	#box-frei {
		display: none;
	}
	#box-frei .frei-gilson {
		width: 110px;
		height: auto;
	}
	#menu #top-bar .btn-custom {
		font-size: 15px;
		padding: 5px 15px;
	}
	#menu #top-bar .btn-custom .apiwhats {
		width: 25px;
	}
	#formulario {
		width: 100%;
		height: auto;
		margin-top: 65px;
	}
	#formulario .livreto {
		display: none;
	}
	#formulario .livreto-mobile {
		width: 100%;
		height: auto;
		display: block!important;
	}
	#formulario article {
		text-align: center;
	}
	#formulario article .title {
		font-size: 40px;
		line-height: 45px;
	}
	#formulario article .title span {
		display: inline-block;
	}
	#formulario article .desc {
		font-size: 17px;
		line-height: 25px;
		padding-top: 15px;
	}
	#formulario article .desc span {
		font-size: 17px;
		line-height: 25px;
	}
	#formulario .form input[type="text"],
	#formulario .form input[type="email"] {
		font-size: 14px;
	}
	#formulario .form select {
		font-size: 13px;
	}
	#formulario .botao {
		text-align: center;
		margin-bottom: 20px;
	}
	#formulario .form .btn-send {
		padding: 15px 70px;
		font-size: 15px;
		line-height: 18px;
	}
	#formulario .form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
		font-size: 13px;
		color: #494440;
	}
	#formulario .form ::-ms-input-placeholder { /* Microsoft Edge */
		font-size: 13px;
		color: #494440;
	}
	#formulario .form .wrap-radio label::before {
		content: "";
		width: 30px;
		height: 23px;
	}
	#rahamim {
		width: 100%;
		height: auto;
		background-image: url("../images/bg-green-mobile.png");
		background-repeat: no-repeat;
		background-size: cover;
		margin-top: -1px;
	}
	#rahamim article {
		text-align: center;
		margin-top: -200px;
	}
	#rahamim .img-acolhidos {
		display: none;
	}
	#rahamim .img-acolhidos-mobile {
		width: 100%;
		height: auto;
		display: block!important;
	}
	#doe .img-brown {
		display: none;
	}
	#doe .desk {
		display: none;
	}
	#doe .img-brown-mobile {
		width: 100%;
		height: 700px;
		display: block!important;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	#doe .mobile {
		display: block!important;
	}
	#doe .mobile .wrap {
		margin: 0 auto;
		text-align: center;
	}
	#doe .mobile .wrap .frei-gilson {
		width: 200px;
		height: auto;
		text-align: center;
		display: inline-block!important;
	}
	#doe .mobile .title {
		font-weight: bold;
		font-size: 30px;
		line-height: 40px;
		color: #fff;
		font-family: 'GothamBook';
	}
	#doe .mobile .desc {
		font-size: 19px;
		line-height: 20px;
		display: initial;
		color: #fff;
		font-weight: 500;
		font-family: 'GothamBook';
	}
	#doe .mobile .pix {
		text-align: center;
	}
	#doe .mobile .pix .btn-copy-pix {
		padding: 15px 70px;
		border-radius: 40px;
		font-weight: 500;
		font-size: 17px;
		line-height: 18px;
		font-family: 'GothamBook';
		color: #fff;
		background-color: #CB2620;
	}
	#doe .mobile .pix .email {
		color: #53402F;
		line-height: 25px;
		margin-top: 30px;
		font-size: 21px;
		padding: 10px 15px;
		font-family: 'GothamBook';
		font-weight: bold;
		background-color: #D9D9D9;
		text-align: center;
	}
	#espaco {
		width: 100%;
		height: 250px;
		margin-top: 0px;
	}
	#cidade {
		width: 100%;
		height: auto;
		background-image: url("../images/bg-trans.png");
		background-repeat: no-repeat;
		background-size: cover;
		padding-bottom: 80px;
		background-position-y: 230px;
		background-color: transparent;
	}
	#cidade .main {
		width: 100%;
		height: auto;
		margin-top: -150px;
		box-shadow: 0 0 15px transparent;
		border-radius: 0px;
		background-color: transparent;
	}
	#cidade .main .title {
		font-size: 30px;
		line-height: 40px;
	}
	#cidade .main .wrapper .wrap {
		width: 50%;
		margin: 0 5px;
		display: block;
	}
	#cidade .main .wrapper .wrap .body {
		margin-top: 15px;
	}
	#cidade .main .wrapper .wrap .title {
		font-size: 19px;
		line-height: 20px;
	}
	#cidade .main .wrapper .wrap .desc {
		display: none;
	}
	#cidade .main .wrapper .wrap .box-one {
		width: 100%;
		height: 170px;
		border-top-left-radius: 20px;
		border-bottom-left-radius: 0px;
		margin-bottom: 10px;
	}
	#cidade .main .wrapper .wrap .box-two {
		width: 100%;
		height: 170px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 20px;
	}
	#cidade .main .wrapper .wrap .box-three {
		width: 100%;
		height: 170px;
		border-top-right-radius: 20px;
		border-bottom-left-radius: 0px;
		margin-bottom: 10px;
	}
	#cidade .main .wrapper .wrap .box-four {
		width: 100%;
		height: 170px;
		border-top-right-radius: 0px;
		border-bottom-right-radius: 20px;
	}
	#cidade .main .wrapper .wrap .img-cidade {
		width: 70px;
		height: auto;
	}
	#cidade .main .wrapper .wrap .btn-open {
		font-size: 15px;
	}
	#cidade iframe {
		width: 100%;
		height: 270px;
	}
	#cidade .botao-mobile {
		text-align: center;
		margin-top: 40px!important;
		display: block!important;
	}
	#cidade .botao-mobile .btn-custom-mobile {
		padding: 12px 35px 8px 35px;
		background-color: #539845;
		border-radius: 40px;
		color: #fff;
		font-size: 15px;
		font-weight: 500;
		font-family: 'GothamBook';
	}
	#cidade .botao-mobile .btn-custom-mobile .apiwhats {
		width: 25px;
	}
	#cidade .mobile-reverse { /* reverter as divs */
		display: flex;
		flex-direction: column-reverse;
	}
	#cidade .mobile-reverse {
		margin-top: 50px!important;
	}
	#cidade .lista {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		padding-bottom: 20px;
	}
	#cidade .sub-title {
		font-size: 33px;
		line-height: 40px;
		text-align: center;
	}
	#about {
		width: 100%;
		height: auto;
		padding: 0 15px;
		padding-top: 150px;
		padding-bottom: 50px;
		background-color: #fff;
	}
	#about .wrap {
		text-align: center;
	}
	#galeria {
		width: 100%;
		height: auto;
		padding-top: 50px;
		padding-bottom: 90px;
	}
	#galeria .wrap-one,
	#galeria .wrap-two {
		display: none;
	}
	#galeria .carousel-galeria {
		display: block!important;
	}
	#galeria .carousel-galeria .item .img-slide {
		width: 100%;
		height: 380px;
		object-fit: cover;
	}
	#galeria .arrow {
		display: inline-block;
		width: 35px;
		height: 35px;
		cursor: pointer;
		background-size: cover;
		background-repeat: no-repeat;
	}
	#galeria #arrowPrev {
		position: absolute;
		top: 59%;
		left: 10px;
		z-index: 1000;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		background-image: url("../images/seta-right.png");
	}
	#galeria #arrowNext {
		position: absolute;
		top: 59%;
		right: 10px;
		z-index: 1000;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		background-image: url("../images/seta-left.png");
	}
	#duvidas .wrap {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	#rodape {
		width: 100%;
		height: 300px;
	}
	#rodape .pd {
		padding-top: 30px;
	}
	#rodape .mobile {
		display: flex;
		flex-direction: column;
	}
	#rodape .wid-three {
		order: 1;
	}
	#rodape .wid-two {
		order: 3;
	}
	#rodape .wid-one {
		order: 2;
	}
	#rodape .wid-three .btn-custom {
		display: none;
	}
	#rodape .wid-three .btn-mobile {
		width: 120px;
		display: block!important;
		padding: 5px 20px;
		background-color: #F5F5F5;
		box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
		border-radius: 20px;
		color: #2E305F;
		font-size: 17px;
		font-weight: 500;
		font-family: 'GothamBook';
		margin-bottom: 30px;
	}
	#rodape .wid-three .btn-mobile:hover {
		box-shadow: 0px 0px 5px #fff;
	}
	#rodape .wid-one {
		margin-bottom: 10px;
	}
	#rodape .wid-one ul .list-inline-item:not(:last-child) {
		margin-right: 0.5rem;
	}
}
@media only screen and (max-width: 375px) {

}
@media only screen and (max-width: 360px) {

}