/************GERAL*/
html, body{
	scroll-behavior: smooth;
}
body{
	font-family: "Open Sans",sans-serif;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
	background-color: #fff;
    position: relative;
    z-index: 1;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: "Poppins",sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: inherit;
}
h2, .h2 {
    font-size: 1.8rem;
}
h1{
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    color: #BCD144;
}
h2{
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
    color: #ECA227;
}
a{
    text-decoration: none;
    color: inherit;
}
.btn {
    font-weight: 400;
    border: 1px solid transparent;
    padding: 0.4rem 1.8rem;
    font-size: .9rem;
    line-height: 1.5;
    border-radius: 2rem;
    -webkit-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
}
.btn-success{
    background-color: #7EBC79;
    font-weight: bold;
    text-transform: uppercase;
}
.btn-link{
    font-weight: bold;
    color: #d49123;
    transition: .4s;
}
.btn-link:hover{
    color: #7ebc79;
}
.text-base {
    font-size: .9rem !important;
}
.text-primary {
    color: #ECA227 !important;
}
.text-muted {
    color: #6c757d!important;
}
.btn-primary{
	background-color: #ECA227;
	border-color: #ECA227;
}
.btn-primary:hover{
	background-color: #ECA227;
	border-color: #ECA227;
}
.form-control{
    padding: 12px;
    font-size: 0.8rem;
}
.form-control-lg {
    padding: 0.5rem 1.2rem;
    font-size: 1.125rem;
    line-height: 1.5;
    border-radius: 2rem;
	color: #495057;
    background-color: #fff;
	height: calc(2.875rem + 2px);
}
header{
	display: flex;
	align-items: center;
	background-color: #fff;
    padding: 8px 0;
}
header img{
	max-height: 40px;
}
.btn-menu {
    background-color: #fff;
}
.btn-menu img{
    min-width: 22px;
    margin-left: 4px;
}
.btn-menu i{
    color: #828282;
}
.navbar-expand-lg .navbar-nav .nav-link{
    padding-right: 24px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #828282;
}
/************PÁGINA LOGIN*/
section.login{
	min-height: calc(100vh - 72px);
	display: flex;
	align-items: center;
}
section.login .custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}
section.login .custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
section.login .custom-control-label {
    position: relative;
    margin-bottom: 0;
}
section.login .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #ff6846;
}
section.login .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{
	top:.1rem;
	background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
section.login .custom-checkbox .custom-control-label::before {
    top: 0.1rem;
    border-radius: 0.3rem;
}
section.login .custom-control-label::before {
    position: absolute;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	background-color: #dee2e6;
}
section.login .custom-control-label::after {
    position: absolute;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
/*FIM PÁGINA LOGIN*/
/************PÁGINA INICIAL*/
section.inicio{
    background-color: #BCD144;
    padding: 64px 0 196px 0;
}
section.inicio h2{
    font-weight: 300;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
    display: inline-block;
}
section.inicio i{
    color: #fff;
    font-size: 24px;
    margin-right: 16px;
}
section.inicio .form-select{
    background-color: transparent;
    border: 0px none;
    height: 150px;
    overflow-y: scroll;
}
section.inicio .form-select:focus{
    border: 0px none;
    box-shadow: 0 0 0 0.1rem rgba(255,255,255,.25);
}
.botao-submit{
    margin-top: 16px;
    background-color: #d49123;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    border: 0px none; 
    padding: 8px 32px;
    
}
section.inicio .form-select option{
    font-weight: 300;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
}
section.inicio .borda-branca{
    border-bottom: 1px solid #fff;
    margin-bottom: 16px;
}
.form-select::-webkit-scrollbar {
  width: 7px;
}
.form-select::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 2px;
}
section.plantas{
    border-radius: 127px 127px 0 0;
    margin-top: -96px; 
    background-color: #fff;
    padding: 64px 0;
}
section.plantas div.owl-carousel .owl-nav.disabled {
    display: block;
}
section.plantas h3{
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
    color: #BCD144;
}
div.card-planta{
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    margin: 15px; 
}
div.card-planta img{
    border-radius: 10px;
}
div.card-planta .corpo{
    padding: 32px; 
}
div.card-planta .corpo h4{
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: #828282;
}
div.card-planta .corpo .divisorias{
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #828282;
}
div.card-planta .corpo .divisorias .row{
    margin-bottom: 16px;
}
div.card-planta .corpo .divisorias img{
    max-width: 26px;
    margin-right: 4px;
    border-radius: 0px;
}
div.card-planta .corpo .divisorias .row .col-4{
    display: flex;
    align-items: center;
}
/******CARROSSEL*/
section.plantas .owl-carousel .owl-nav {
    overflow: hidden;
    height: 0px;
}
section.plantas .owl-theme .owl-dots .owl-dot.active span,
section.plantas .owl-theme .owl-dots .owl-dot:hover span {
    background: #5110e9;
}

section.plantas .owl-carousel .item {
    text-align: center;
}
section.plantas .owl-carousel .nav-button {
    height: 50px;
    width: 25px;
    cursor: pointer;
    position: absolute;
    top: 180px !important;
}
section.plantas .owl-carousel .owl-prev.disabled,
section.plantas .owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.25;
}
section.plantas .owl-carousel .owl-prev {
    left: -35px;
}
section.plantas .owl-carousel .owl-next {
    right: -35px;
}
section.plantas .owl-carousel .prev-carousel:hover {
    background-position: 0px -53px;
}
section.plantas .owl-carousel .next-carousel:hover {
    background-position: -24px -53px;
}
section.plantas .owl-theme .owl-nav [class*=owl-] {
    color: #b9d150;
    font-size: 39px;
    border-radius: 3px;
    background-color: transparent;
    transition: .4s;
}
section.plantas .owl-theme .owl-nav [class*=owl-]:hover {
    color: #c9c9c9;
    background: transparent;
    text-decoration: none;
}
/*FIM CARROSSEL*/
/*FIM PÁGINA INICIAL*/

/************PÁGINA HOME*/
section.filtro{
    padding: 16px 0;
    background-color: #BCD144;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
}
section.filtro select{
    padding: 8px; 
    border-radius: 8px;
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    color: #525C18;
    border: 0px none; 
    width: 100%;
}
section.filtro input[type=submit]{
    background: #525C18;
    border-radius: 8px;
    border: 1px solid #525C18; 
    padding: 8px 32px;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #FFFFFF;
    transition: .4s;
}
section.filtro input[type=submit]:hover{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}
section.banner .carousel-control-next, .carousel-control-prev{
    width: unset; 
}
.carousel-control-prev-icon{
    background-color: #000;
    padding: 25px 14px 25px 8px;
    border-radius: 0px 24px 24px 0px;
}
.carousel-control-next-icon{
    background-color: #000;
    padding: 25px 8px 25px 14px;
    border-radius: 24px 0px 0px 24px;
}
section.precisa{
    margin-top: 64px;
}
section.precisa h4{
    font-weight: 700;
    font-size: 35px;
    line-height: 32px;
    color: #828282;
}
section.precisa div.card-p{
    background-color: #F9F9F9;
    font-weight: 600;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
    color: #7EBC79;
    padding: 32px 12px;
    margin-right: 32px;
    width: 150px;
    border-radius: 8px;
}
section.construtoras{
    padding: 64px 0;
}
.modal.login {
    --bs-modal-width: 700px;
}
.modal.login .modal-header{
    border-bottom: 0px none; 
    padding: 16px 16px 0 0;
    margin-bottom: -32px;
    z-index: 999;
}
.modal.login .nav-link.active{
    background-color: #7ebc79;
    color: #fff;
}
.modal.login .nav-link{
    color: #7ebc79;
}
.displayBadge{
    margin-top: 5%; 
    display: none; 
    text-align :center;
}
/*****************CARD CONSTRUTORAS*/
div.card-cons{
    padding: 32px 16px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 0px 30px 30px 30px;
    margin-bottom: 32px;
}
div.card-cons .topo img{
    border-radius: 100px;
}
div.card-cons .topo p.mini{
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    color: #525C18;
    margin-bottom: 0px;
}
div.card-cons .topo h4{
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: #828282;
}
div.card-cons .serv{
    display: flex;
    align-items: center;
}
div.card-cons .serv{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
div.card-cons .servicos{
    margin-top: 16px;
}
div.card-cons .serv p{
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    color: #999999;
    margin-bottom: 0px;
}
div.card-cons .serv img{
    max-width: 35px;
}
/*FIM CARDS CONSTRUTORA*/
/*****************CARD TERRENOS*/
div.card-terreno{
    position: relative; 
    overflow: hidden;
    border-radius: 15px; 
}
div.card-terreno img{
    z-index: 1;
}
div.card-terreno .info{
    background: linear-gradient(179.86deg, rgba(0, 0, 0, 0) 29.27%, #000000 99.88%);
    position: absolute;
    top: 0px; 
    left: 0px;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}
div.card-terreno .info .descricao{
    display: flex;
    justify-content: space-between;
}
div.card-terreno .info p{
    color: #fff;
}
div.card-terreno .info p.cidade{
    width: 100%;
}
div.card-terreno .info p.area img{
    height: auto; 
    width: unset;
    display: inline-block !important;
}
/*FIM CARDS TERRENOS*/
section.terreno{
    background: #FCFCFC;
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.02);
    border-radius: 0px 0px 100px 0px;
    padding: 64px 0;
}
section.terreno div.terrenos .owl-dots{
    display: flex;
    justify-content: flex-end;
}
section.terreno div.terrenos .owl-dots .owl-dot span{
    background-color: #BCD144;   
}
section.terreno div.terrenos .owl-dots .owl-dot.active span{
    width: 25px;
}
section.plantas-inicio{
    padding-bottom: 64px;
}
/*FIM PÁGINA HOME*/
/*************FOOTER*/
footer{
    background-color: #BCD144;
    padding: 64px 0;
}
footer ul{
    list-style-type: none;
    padding-left: 8px;
}
footer h5{
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #525C18;
}
footer ul li a{
    margin-top: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    transition: .4s;
}
footer ul li a:hover{
    color: #525C18;
}
footer ul.social li{
    display: inline-block;
    padding-right: 8px;
}
footer ul.social li i{
    font-size: 1.5rem;
}
div.copy{
    background-color: #f9f9f9;
    padding: 8px;
    text-align: center;
}
div.copy p{
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #828282;
    margin-bottom: 0px;
}
/*FIM FOOTER*/
/***************************PÁGINA CONSTRUTORAS*/
section.filtro-pg{
    background-color: #f4f4f4;
    padding: 16px 0;
}
section.filtro-pg p{
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #999999;
    margin-bottom: 0px;
}
section.filtro-pg select{
    padding: 8px; 
    width: 100%;
    border: 0px none;
    background-color: #fff;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #828282;
    border-radius: 8px;
}
section.filtro-pg .carrossel{
    position: relative;
}
section.filtro-pg .carrossel .owl-item img{
    max-width: 35px !important;
    margin: 0 auto;
}
section.filtro-pg .carrossel a p{
    font-weight: 400;
    font-size: 12px;
    line-height: 13px;
    text-align: center;
    color: #828282;
    margin-bottom: 0px;
}
section.filtro-pg .carrossel a div.fil-serv{
    padding: 8px;
    min-height: 80px;
    border-radius: 8px;
    border: 1px solid #f4f4f4;
}
section.filtro-pg .carrossel div.fil-serv.active{
    background-color: transparent;
    border: 1px solid #7ebc79;
}
section.filtro-pg .carrossel a div.fil-serv.active p{
    color: #7ebc79;
}
section.filtro-pg .owl-carousel .owl-nav img{
    position: absolute;
    top: 35px !important;
}
section.filtro-pg .owl-carousel .owl-prev{
    display: none;
}
section.filtro-pg .owl-carousel .owl-next img{
    right: -24px;
}
section.filtro-pg .owl-theme .owl-nav {
    margin-top: -22px;
}
div.paginacao li.page-item.active a.page-link{
    background-color: #b9d250;
    color: #fff; 
    border: 1px solid #b9d250;
    border-color: #b9d250;
}
div.paginacao li.page-item .page-link{
    background-color: #D9D9D9;
    color: #999999; 
    border: 1px solid #c3c3c3;
    border-color: #c3c3c3;

}
section.galeria div.cut-gallery{
    width: 100%;
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.galeria div.cut-gallery img{
    width: 100%;
}
section.galeria .owl-carousel .nav-button {
    height: 75px;
    width: 25px;
    cursor: pointer;
    position: absolute;
    top: 100px !important;
}
section.galeria .owl-carousel .owl-prev.disabled,
section.galeria .owl-carousel .owl-next.disabled {
    pointer-events: none;
    opacity: 0.25;
}
section.galeria .owl-carousel .owl-prev {
    left: 0px;
}
section.galeria .owl-carousel .owl-next {
    right: 0px;
}
section.galeria .owl-carousel .prev-carousel:hover {
    background-position: 0px -53px;
}
section.galeria .owl-carousel .next-carousel:hover {
    background-position: -24px -53px;
}
section.galeria .owl-theme .owl-nav [class*=owl-] {
    color: #b9d150;
    font-size: 39px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.45);
    transition: .4s;
    z-index: 999;
}
section.galeria .owl-theme .owl-nav [class*=owl-]:hover {
    color: #c9c9c9;
    background-color: rgba(0, 0, 0, 0.45);
    text-decoration: none;
}
/*FIM CONSTRUTORAS*/
/*****************CONSTRUTORA SINGLE*/
section.breadcrumbi{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3015) 0%, rgba(0, 0, 0, 0.67) 100%);
    background-image: url('../img/background/breadcrumb-default.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08);
    padding: 48px 0;
    position: relative;
    z-index: -1;
}
section.breadcrumbi div.infos{
    display: flex;
    align-items: flex-start;
}
section.breadcrumbi div.row > div{
    z-index:999;
}
section.breadcrumbi div.infos img{
    border-radius: 100px;
    margin-right: 16px;
}
section.breadcrumbi div.infos p.cidade{
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 0px;
}
section.breadcrumbi div.infos p.nome{
    font-weight: 600;
    font-size: 30px;
    line-height: 41px;
    color: #FFFFFF;
    margin-bottom: 0px;
}
section.breadcrumbi div.infos p.contato{
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0px;
}
section.breadcrumbi div.infos p.endereco{
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
    margin-bottom: 0px;
}
section.breadcrumbi div.overlay{
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3015) 0%, rgba(0, 0, 0, 0.67) 100%);
    z-index: 2;
}
section.obras {
    padding: 64px 0;
}
section.obras h2{
    font-weight: 700;
    font-size: 50px;
    line-height: 30px;
    color: #F4F4F4;
    text-align: center;
}
section.obras h2 span{
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    color: #BCD144;
    text-transform: uppercase;
}
section.descricao{
    padding: 32px 0 64px 0;
}
section.descricao p{
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #828282;
}
div.box-form{
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 32px 16px;
    margin-top: -96px;
    z-index: 9;
}
div.box-form p{
    font-weight: 400;
    font-size: 15px;
    line-height: 13px;
    color: #828282;
}
div.box-form input[type=text], div.box-form input[type=email], div.box-form textarea{
    background: #FFFFFF;
    border: 1px solid #E1E1E1;
    border-radius: 5px;
    width: 100%;
    padding: 8px; 
    margin-bottom: 16px;
}
div.box-form input[type=submit]{
    background-color: #BCD144;
    color: #fff;
    padding: 4px 24px;
    border: 0px none;
}
/******************CARD OBRA CONSTRUTORA*/
div.card-obra{
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 32px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}
div.card-obra a{
    margin-top: auto;
}
div.card-obra .topo{
    position: relative;
    margin-bottom: 16px;
}
div.card-obra .topo .tag{
    position: absolute;
    right: 0px;
    top: 0px; 
    padding: 8px 12px; 
    border-radius: 0px 10px 0px 0px;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px
}
div.card-obra .topo .tag.finalizado{
    background: #BCD144;
}
div.card-obra .topo .tag{
    background: #ECA227;
}
div.card-obra .topo .info-obra{
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    display: flex;
    align-items: baseline;
    flex-direction: column-reverse;
    border-radius: 10px;
    padding: 0px 16px 16px 16px;
}
div.card-obra .topo .info-obra .bairro{
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 0px;
}
div.card-obra .topo .info-obra .cidade{
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 0px;
}
div.card-obra .topo .info-obra .endereco{
    font-weight: 600;
    font-size: 13px;
    line-height: 13px;
    color: #FFFFFF;
    margin-bottom: 0px;
}
div.card-obra .topo img{
    border-radius: 10px;
}
.progress-bar{
    background: linear-gradient(90deg, #ECA227 -0.11%, #BCD144 99.82%);
}
div.card-obra .corpo{
    margin-bottom: 16px;
}
div.card-obra .divisorias{
    text-align: center;
}
div.card-obra .divisorias .row{
    margin-bottom: 16px;
}
div.card-obra .botao{
    margin-top: 16px;
    background-color: #BCD144;
    text-align: center;
    padding: 12px 0;
    border-radius: 0px 0px 10px 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
}
div.card-obra a .botao{
    transition: .4s;
}
div.card-obra a:hover .botao{
    color: #fff;
    background-color: #d49123;
}
div.card-obra .divisorias{
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #828282;
}
/*FIM CARD OBRA CONSTRUTORA*/
/*FIM CONSTRUTORA SINGLE*/
/***********************PÁGINA OBRA*/
section.planta-obra h2{
    font-weight: 700;
    font-size: 50px;
    line-height: 30px;
    color: #F4F4F4;
    text-align: center;
}
section.planta-obra h2 span{
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    color: #BCD144;
    text-transform: uppercase;
}
section.descricao-obra{
    padding-bottom: 32px;
}
section.descricao-obra div.m2, section.descricao-obra div.status{
    display: inline-block;
    padding: 4px 16px; 
    margin-right: 16px;
}
section.descricao-obra div.m2{
    background-color: #BCD144;
    color: #fff;
    border-radius: 0px 0px 0px 8px;
}
section.descricao-obra div.status{
    background-color: #ECA227;
    color: #fff;
    border-radius: 0px 0px 8px 0px;
}
section.descricao-obra .termino{
    text-align: center;
    color: #828282;
}
section.descricao-obra .termino p{
    margin-bottom: 0px;
}
section.descricao-obra .adicionais{
    margin: 16px 0;
}
section.descricao-obra .adicionais .box-add{
    padding: 8px 16px; 
    border: 1px solid #999999;
    display: inline-block;
    margin-bottom: 16px;
}
section.planta-obra{
    padding: 0px 0px 32px 0;
}
/*FIM PÁGINA OBRA*/
/*************************PÁGINA PLANTA*/
section.descricao-planta div.dados-planta{
    display: inline-block;
    padding: 4px 8px; 
    border: 1px solid #999;
    min-height: 36px;
    border-radius: 0px 0px 12px 0px;
    margin-top: -1px;
}
section.descricao-planta .adicionais .box-add{
    padding: 8px 16px;
    border: 1px solid #999999;
    display: inline-block;
    margin-bottom: 16px;
}
/*FIM PÁGINA PLANTA*/
/**************************PÁGINA TERRENOS*/
section.terrenos-pg div.card-terreno{
    margin-bottom: 32px;
}
/*FIM PÁGINA TERRENOS*/
/**************************PÁGINA MINHA CONTA*/
section.minha-conta{
    padding: 64px 0;
}
section.minha-conta .nav-pills .nav-link.active, section.minha-conta .nav-pills .show>.nav-link {
    background-color: #BCD144;
}
section.minha-conta .nav-link{
    color: #BCD144;
}
div.agendamento{
    padding: 32px;
    background-color: #f9f9f9; 
    border-radius: 5px;
}
div.agendamento .btn{
    background-color: #BCD144;
    border-color: #BCD144;
}
/*FIM MINHA CONTA*/
/****************************SEJA PARCEIRO*/
section.arg{
    padding: 64px 0;
    color: #aaa;
}
section.arg img{
    border-radius: 10px;
    box-shadow: 0px 4px 8px 4px rgba(0,0,0,.12);
}
section.arg h3{
    font-size: 1.5rem;
    font-weight: 600;
    color: #ECA227;
}
section.parceiro{
    padding: 64px 0;
    color: #aaa;
    background-image: linear-gradient(#e5edbc, #f9f9f9);
}
section.parceiro h3{
    font-weight: bold;
    text-transform: uppercase;
    color: #ECA227;
    font-size: 1.15rem;
}
section.planos {
    background-color: #f9f9f9;
    padding: 64px 0;
}
section.planos h2{
    margin-bottom: 48px;
}
section.planos div.cardPlano{
    background-color: #fff;
    padding: 16px;
}
section.planos div.cardPlano h4{
    font-weight: 400;
    color: #6c757d;
}
section.planos div.cardPlano p.preco{
    font-weight: 700;
    font-size: 30px;
    color: #7EBC79;
}
section.planos div.cardPlano p.preco span.mes{
    font-size: 16px;
    font-weight: 400;
}
section.planos div.cardPlano ul{
    list-style-type: none;
    padding-left: 0px;
    margin-top: 32px;
}
section.planos div.cardPlano ul li{
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 16px;
    color:#828282;
}
section.cadastro{
    padding: 64px 0;
    color: #aaa;
}
section.cadastro input.btn{
    background-color: #BCD144 !important;
    padding: 12px 48px !important;
    font-size: 1.15rem;
}
section.cadastro input.btn:hover{
    background-color: #ECA227 !important;
    border: 1px solid #ECA227 !important;
}
.sys-notification{
    position: fixed;
    right: 40px;
    top: calc(100vh - 80%);
    max-width: 450px;
    z-index: 99999;
}
/*FIM SEJA PARCEIRO*/
/*INICIO CHECKOUT*/
div.compra{
    background-color: #f9f9f9;
}
section.checkout{
    padding: 32px 0;
    background-color: #fff;
    border-top: 1px solid #e6ebef;
}
section.checkout a{
    padding: 8px 32px; 
    border: 1px solid #7EBC79;
    border-radius: 5px;
    color: #7EBC79;
}
section.checkout a.active{
    background-color: #7EBC79;
    color: #fff;
}
section.identificacao div.col-lg-8{
    padding: 64px 0;
}
div.compra .nav-pills li.cinzinha{
    color: #ccc;
    margin-bottom: 16px;
}
div.compra .nav-pills li button{
    color: #333;
    font-weight: 600;
    padding: 0px 16px;
    margin-bottom: 16px;
}
div.compra .nav-pills li button.active{
    background-color: transparent;
    font-weight: 900;
    color: #d49123;
    padding: 0px;
    padding: 0px 16px;
}
section.identificacao div.cadastrar{
    background-color: #fff;
    padding: 8px 32px;
}
section.identificacao div.cadastrar form{
    padding: 16px 0;
}
section.identificacao label {
    color: rgb(133, 133, 133);
}
section.identificacao label a{
    color: #2e93ee;
}
div.resumo-pedido{
    background-color: #fff;
    padding: 32px 16px;
}
div.resumo-pedido div.detalhesPlano{
    padding: 16px 0;
}
div.resumo-pedido div.nomePlano p.nome{
    font-weight: 900;
    color: #5a7c58;
    margin-bottom: 0px;
}
div.resumo-pedido div.nomePlano p.descricao{
    font-weight: 400;
    color: #5a7c58;
    font-size: 0.725rem;
}
div.resumo-pedido div.detalhesPlano p.preco{
    color: #5a7c58;
    font-weight: 900;
    font-size: 1.25rem;
}
div.resumo-pedido div.total p.infoSub{
    font-weight: normal;
}
div.resumo-pedido div.total p.precoSub{
    font-weight: normal;
    font-size: 1rem;
}
div.resumo-pedido div.total p.infoTotal{
    font-weight: bold;
}
div.resumo-pedido div.total p.precoTotal{
    color: #5a7c58;
    font-weight: 900;
    font-size: 1.25rem;
}
section.checkout div.navegacao{
    display: flex;
    justify-content: space-between;
}
div.compra section.endereco div.dados{
    background-color: #fff;
    padding: 16px 32px;
}
section.endereco div.col-lg-8 {
    padding: 64px 0;
}
div.compra section.pagamento div.metodos{
    background-color: #fff;
    padding: 16px 32px;
}
section.pagamento div.col-lg-8 {
    padding: 64px 0;
}
div.compra h3{
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    color: rgb(110, 110, 110);
}
div.compra div.pagamento-seguro{
    background-color: #c6e4c4;
    text-align: center;
    padding: 16px;
    margin-bottom: 16px;
}
div.compra div.pagamento-seguro p{
    color: #333; 
    font-weight: 900; 
    font-size: 1rem;
    margin-bottom: 0px;
}
div.compra div.pagamento-seguro span{
    font-size: 0.725rem;
}
div.compra div.renovacao{
    margin-bottom: 32px;
    text-align: center;
}
div.compra div.renovacao p{
    font-size: 0.75rem;
    color: #333;
}
div.compra div.renovacao ul{
    text-align: left;
}
div.compra div.renovacao ul li p{
    font-size: 0.9rem;
}
div.compra div.renovacao p.info-boleto{
    font-size: 1rem;
}
div.dados label{
    font-size: 0.875rem;
    color: #999;
    font-weight: bold;
}
/*FIM CHECKOUT*/
/***************MOBILE*/
@media screen and (max-width: 1275px){
    section.precisa div.col-lg-9{
        display: block !important;
    }
    section.precisa div.card-p{
        display: inline-block;
        width: calc(33% - 48px);
    }
}
@media screen and (max-width: 992px){
    section.precisa div.col-lg-9{
        display: block !important;
    }
    section.precisa div.card-p{
        display: inline-block;
        width: calc(50% - 48px);
    }
    section.descricao div.box-form{
        margin-top: 32px;
    }
    div.box-form{
        margin-top: 0px;
    }
    section.checkout div.navegacao{
        display: block;
        justify-content: uset;
    }
    section.checkout div.navegacao a{
        display: block;
        text-align: center;
        margin-bottom: 16px;
    }
    div.compra div.min-vh-100{
        min-height: unset !important;
    }
}
@media screen and (max-width: 768px){
    section.filtro-pg .owl-carousel .owl-next img{
        right: 0px;
    }
}
/*FIM MOBILE*/