@charset "utf-8";

/* fontes */ 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,200;1,400;1,600;1,700&display=swap');


/* Reset CSS */ 

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;	
}

li {
    list-style-type: none;	
}

/* Reset CSS */


body {
    background-color: #1E3460;
    color: #BFBEAC;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
	font-size: 20px;
	
	overflow-x: hidden;    
}
p {
	margin-bottom: 5vh;
	line-height: 1.5em;
}
bold{
	font-weight: 600;
}

.pagina {
    width: auto;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    /* display: block; */
    -webkit-box-shadow: 0px 0px 6px hsla(0,0%,0%,0.20);
    box-shadow: 0px 0px 6px hsla(0,0%,0%,0.20);
	background-color: #fff;
	
	margin-top: 120px;
	
	color: #1E3460;
}
.barraTopo{
    width: 100%;
    height: 120px;
    max-width: 1200px;
    position: fixed;
    top: 0;
    z-index: 100;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 6px hsla(0,0%,0%,0.40);
    box-shadow: 0px 0px 6px hsla(0,0%,0%,0.40);
	overflow: hidden;
}
.barraTopo .bgLogo{
    width: 332px;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../imgs/bg-logo.svg");
    z-index: 10;
    background-repeat: no-repeat;
    background-position: left top;
	
}
.barraTopo .bgLogo .logo{
	width: auto;
	height: 100px;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 20;
}
.barraTitulo{
    width: 926px;
    height: 120px;
    position: absolute;
    top: 0;
    left: 300px;
    right: 0;
    background-image: url("../imgs/bg-cabecalho.svg");
    z-index: 1;
    background-repeat: no-repeat;
    background-position: left top;
    padding-left: 54px;
    padding-top: 24px;
}
.barraTitulo h1 {
    color: #94927F;
    font-size: 30px;
    letter-spacing: 0.035rem;
    font-weight: 400;
}
.barraMenu{
    width: 100%;
	height: 43px;
	position: absolute;
	bottom: 0;
	right: 0;	
	
	background-color: #BFBEAC;
	z-index: 2;
	
}

ul.menuTopo{
	width: 100%;
	height: 43px;
	position: relative;
	
	padding-left: 330px;
	padding-right: 30px;
	
	background-color: #BFBEAC;
	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
ul.menuTopo li a{
	text-decoration: none;
	color: #001840;
	font-size: 16px;
	font-weight: 600;
	
	padding: 5px 10px;
	border-radius: 8px;
}
ul.menuTopo li.menuDestaque a {
    background-color: #ABA992;
}
ul.menuTopo li a:hover {
    background-color: #E9E8E3;
}
ul.menuTopo li.active a {
	color: #FFF;
    background-color: #001840;
}

.banner{
    width: 100%;
    height: calc(100vh - 120px);
	min-height: 550px;
	padding: 10px 40px;
	position: relative;
}
.banner .chamada{
	font-size: 26px;
	color: #001840;
	
	width: 100%;
	margin-top: 9vh;
	margin-bottom: 7vh;
	text-align: center;
	text-shadow: 1px 1px 4px hsla(0,0%,0%,0.40);
	position: absolute;
	z-index: 50;
}
.banner .chamada span{
	font-size: 36px;
	font-weight: 600;
}
.boxComunidades {
    width: 300px;
    height: auto;
    float: none;
    background-color: hsla(218,100%,13%,0.75);
    border: 3px solid #FFFCCE;
    -webkit-box-shadow: 0 3px 6px hsla(0,0%,0%,0.75);    
    box-shadow: 0 3px 6px hsla(0,0%,0%,0.75);
	border-radius: 10px;	
	padding: 0px;	
	margin: 28vh auto 20px auto;
	position: relative;
	z-index: 50;
}
.boxComunidades::after{
	content: url("../imgs/seta-local.svg");
	width: 20px;
	height: 113px;
	
	position: absolute;
	left: 50%;
	bottom: 6px;
	transform: translateX(-50%) translateY(100%);
}
.boxComunidades .boxDescricao{
    color: #FFFCCE;
    text-shadow: 0px 3px 6px hsla(0,0%,0%,0.75);
    font-size: 20px;
    letter-spacing: 0.035rem;
    font-weight: 400;
	padding: 4px 20px;
    width: 100%;
	height: 150px;
	
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
}
.boxComunidades .boxDescricao p{
	margin-bottom: 0px;
	text-align: left;
	width: 80%;
}

.boxComunidades .boxTitulo{
    background-color: #FFFCCE;
    color: #001840;
    font-size: 20px;
    letter-spacing: 0.035rem;
    text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	width: 100%;
	padding: 6px;
}
.banner .legendaLocal{
    position: absolute;
    bottom: 20px;
    right: 40px;
    color: #FFFCCE;
    text-shadow: 1px 1px 4px hsla(0,0%,0%,0.85);
    font-size: 18px;
	text-align: right;
}
.boxConteudo {
	display: block;
	padding: 4vh 4vw;
	width: 100%;
	height: auto;
	position: relative;
}
.boxConteudo p{
	margin-left: 40px;
	margin-right: 40px;
}
.boxConteudo div p{
	margin-left: 0;
	margin-right: 0;
}
a.ancora{
	position: absolute;
	top: -120px;
}
.boxConteudo.cinza {
	background-color: #EFEFEA;
}
.boxConteudo.branco h2 {
	color: #9C9A88;
}
h2{
	font-size: 36px;
	font-weight: 400;
	
	margin-top: 2vh;
	margin-bottom: 7vh;
}
.vantagem{
	position: relative;
	max-width: 635px;
	margin: 7vh auto;
	float: none;
	clear: both;	
	display: block;
	height: 150px;
	padding: 30px 0;
}
.a-direita{
	float: right;
}
.a-esquerda{
	float: left;
}

.vantagem h3{
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 20px;
}

.vantagem img{
	height: 150px;
	width: auto;
}


.vantagem.esquerda img{
	float: left;
	margin-right: 60px;
}
.vantagem.direita{
	text-align: right;
}
.vantagem.direita img{
	float: right;
	margin-left: 60px;
}
.logoMori{
	margin-top: -30px;
	max-height: 120px;
	width: auto;
}
iframe.videoYT{
	width: 70vw;
	height: 40vw;
	max-width: 1024px;
	max-height: 576px;
	margin: 40px auto 20px auto;
	float: none;
	display: block;	
}
.publico{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	
	text-align: center;
	margin-top: 100px;
}
.publico h3{
	font-size: 20px;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 10px;
}
.publico p{
	text-align: center;
}
.publico img{
	width: 100px;
	height: auto;
}
table.tabValores {
	margin: 40px auto 10px auto;
	letter-spacing: 0.01rem;
	font-size: 18px;
	font-weight: 600;
	width: calc(100% - 120px);
}
table.tabValores th{
    background-color: #001840;
    color: #fff;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1rem;
}
table.tabValores td {
    padding: 15px 20px;
    white-space: nowrap;
}
table.tabValores td.valores {
    font-size: 22px;
}
table.tabValores .cabTabela td {
	background-color: #1E3460;
	color: #fff;
	letter-spacing: 0.12rem;
}
table.tabValores .linhaCinza td {
    background-color: hsla(57,13%,71%,0.51);
}
table.tabValores .linhaCancelamento td {
    background-color: hsla(0,78%,82%,0.50);
	line-height: 0.95em;
}
table.tabValores .linhaCancelamento td em {
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
}
table.tabValores .linhaCancelamento td:first-child{
    border-bottom-left-radius: 10px;    
}
table.tabValores .linhaCancelamento td:last-child{
    border-bottom-right-radius: 10px;    
}
table.tabValores .linhaTraco{
    border-bottom: 2px solid #D9D9D9;
}
.legendaTabelas{
	font-size: 16px;
	font-weight: 600;
	margin-left: 65px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.cadastro{
	background-color: #DFDED5;
	border-radius: 10px;
	padding: 30px;
	margin: 0px auto;
	max-width: 720px;
	
	text-align: center;
}
.cadastro h3{
	margin-bottom: 40px;
	letter-spacing: 0.05rem;	
}
.cadastro input,
.cadastro select,
.cadastro option{
	font-size: 20px;
	padding: 10px 20px;
	border-radius: 8px;
	width: 100%;
	margin: 8px 0px;
	border: none;
	color: #001840;
	
	clear: both;
}
.cadastro select{
	margin-bottom: 30px;
}
.cadastro .escolha{
	color: #768398;
}
.cadastro .destaque{
	border: solid 2px #1E3460;
	margin: 14px 0;
}
.cadastro select {
	margin-bottom: 30px;
}
.cadastro .divisao{
	float: left; 
	clear: both;
	width: 100%;
	position: relative;
	height: 2px;
	background-color: #BFBEAC;
	margin-top: 20px;
}
.cadastro .btEnviar{
    background-color: #001840;
    color: #fff;
    width: auto;
    text-transform: uppercase;
    margin-top: 40px;
    padding: 10px 30px;
    border: solid 3px #1E3460;
    letter-spacing: 0.1rem;	
	clear: left;
}
.cadastro .btEnviar:hover{
	background-color: #1E3460;
	border: solid 3px #001840;
	cursor: pointer;
}
.cadastro label {
  color: #1E3460;
  cursor: pointer;
    text-align: right;
  padding: 6px 20px;
	margin: 20px auto;
	clear: left;
    margin-top: 20px;
    float: left;	
    margin-bottom: 0px;
    width: 34%;
}
.cadastro label:hover{
	text-decoration: underline;
    
}
/* Esconde o input */
.cadastro input[type='file'] {
  /* display: none */
    float: right;
    width: 65%;
    clear: right;
    margin-top: 25px;
}

.cadastro h4{
    margin-top: 30px;
    margin-bottom: 10px;
    
    font-size: 20px;
    color: #001840;
}

.cadastro p.descricao{
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #1E3460;
}

.rodape{
    width: 100%;
    height: 60px;
    background-color: #BFBEAC;
    font-size: 16px;
    font-weight: 600;
    
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    
    padding: 10px 40px;
}
.rodape a{
    color: #1E3460;
    text-decoration: none;
}
.rodape a:hover {
    text-decoration: underline;
}
.rodape a img{
    margin-right: 8px;
    margin-bottom: -3px;
    
    width: 20px;
    height: auto;
}
.rodape .menu-contato{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.rodape .menu-contato a{
    margin: 0px 20px;
}
.rodape .desenvolvido{
    font-size: 12px;
}
#contratar {
    min-height: calc(100vh - 180px);
}

/* não mobile */
.cancelamento,
.btMenuMobile{
    display: none;
}

/* faq */
.faq h3{
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 20px;
    
    text-align: center;
}

.faq h3 + p{
    font-size: 20px;    
    text-align: center;
}
.perguntas{
    background-color: hsla(54,9%,57%,0.15);
    border-radius: 10px;
    padding: 30px;
    margin: 0px auto;
    max-width: 720px;
}
.pergunta{
    border-bottom: 2px solid #fff;
    padding-bottom: 0;
    margin-bottom: 4vh;
}
.pergunta:last-of-type{
    border: none;
    margin-bottom: 0;
}
.pergunta p{
    font-weight: 600;
    margin-bottom: 4vh;
    margin-top: 0;
    cursor: pointer;
}
.pergunta .resp{
    display: none;
}
.pergunta .resp p{
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 5vh;    
}

.pergunta .resp ul{
    margin-top: -2vh;
    padding-left: 6vw;
}
.pergunta .resp ul li{
    list-style-position: outside;
    list-style-type: disc;
    margin-bottom: 3vh;
    line-height: 1.5em;
}
.reservaCTA {
    width: 100%;
    margin: 60px auto 40px auto;
    text-align: center;
}
a.cta {
    background-color: #1E3460;
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 9px 18px;
    text-decoration: none;
    border-radius: 8px;
    width: auto;
    letter-spacing: 0.05rem;
}
a.cta:hover {
    background-color: #001840;
    color: #FFF;
}
a.enviarWhats{
    background-color: #00E676;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 9px 18px;
    text-decoration: none;
    border-radius: 8px;
    width: auto;
    letter-spacing: 0.05rem;  
    margin: 20px 10px;
    white-space: nowrap;
}
a.enviarWhats:hover{
    background-color: #00B15A;
}
a.enviarWhats img{
    margin-right: 10px;
    margin-bottom: -6px;
    filter: brightness(100%);
}


/* CSS Slideshoe banner */

.mySlides {display: none;}

.slideshow-container img {
	vertical-align: middle;
	object-fit: cover;
	height: calc(100vh - 120px);
}

/* Slideshow container */
.slideshow-container {
    width: auto;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
	z-index: 1;
}

/* Caption text */
.text {
  position: absolute;
	bottom: 20px;
	right: 40px;
	color: #FFFCCE;
	text-shadow: 1px 1px 4px hsla(0,0%,0%,0.85);
	font-size: 18px;
	text-align: right;
	z-index: 50;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
	display: none;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  /* display: inline-block; */
  transition: background-color 0.6s ease;
  display: none;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}



/* resolução abaixo de 1200px */
@media screen and (max-width:1200px){
   
    .btMenuMobile{
        display: block;
        position: absolute;
        right: 2vw;
        top: 1px;
        width: auto;
        height: 42px;
        padding: 6px;
    }
    .btMenuMobile:hover{
        cursor: pointer;
        background-color: #E9E8E3;
        border-radius: 4px;
    }
	.barraTopo {
        width: 98vw;
	   overflow: visible;
    }
    ul.menuTopo {
        background-color: #E9E8E3;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        /* [disabled]border-top-right-radius: 5px; */
        /* [disabled]border-top-left-radius: 5px; */
        width: auto;
        height: 300px;
        position: fixed;
        top: 120px;
        right: 2vw;
        padding: 20px;
        z-index: 110;
        flex-direction: column;
        align-content: space-between;
        align-items: center;
        -webkit-box-shadow: -4px 4px 7px hsla(0,0%,0%,0.40);
        box-shadow: -4px 4px 7px hsla(0,0%,0%,0.40);
        
        display: none; 
    }
	
	.pagina{
        max-width: 98vw; 
        margin-top: 120px;
    }
	.banner{
        padding: 2vh 2vw;
		min-height: 486px;
    }
	.slideshow-container img {
		height: 100%;
		min-height: 486px;
	}
	.banner .chamada {
		top: 0vh;
        font-size: 20px;
        padding-left: 6vw;
        padding-right: 6vw;
    }
    .banner .chamada span {
        font-size: 28px;
    }
    .banner .chamada span br{
        display: none;
    }
	.text,
    .banner .legendaLocal {
		bottom: 2vh;
		right: 0px;
		font-size: 12px;
		text-align: center;
		left: 0;
		letter-spacing: 0.05rem;
    }
	.boxComunidades {
        width: 248px;        
    }
    
    .boxComunidades .boxTitulo{
        font-size: 14px;
    } 
    .boxComunidades .boxDescricao{
        font-size: 14px;
        height: 120px;
    }
    .boxComunidades::after {
        display: none;
    }
    
    .boxConteudo, .rodape{
        padding: 4vh 4vw !important;
        height: auto !important;
    }
    
    h2 {
        margin-top: 0vh;
        margin-bottom: 4vh;
		font-size: 28px;
    }
    .boxConteudo p{
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 4vh;
		font-size: 16px;
    }
	.vantagem {
		margin: 2vh auto;
	}
	.vantagem.esquerda img {
		margin-right: 40px;
	}
	.vantagem img {
		height: 110px;
	}
	.publico {
		margin-top: 40px;
	}
	.publico h3{
		margin-top: 20px;
		font-size: 16px;
	}
	.publico div{
		padding: 0 2vw;
	}
	.publico img {
		width: 85px;
	}
	table.tabValores {
        margin: 30px -2vw 0px -2vw;
        font-size: 14px;
        width: calc(100% + 4vw);
        letter-spacing: normal;
    }
    table.tabValores th{
        font-size: 14px;
        padding: 12px 10vw;
    }
    
    
    
    table.tabValores tr td {
        padding: 8px 15px;
        white-space: normal;
    }
    
    table.tabValores .cabTabela td {
        font-size: 14px;
    }
    
    table.tabValores td.valores {
        font-size: 16px;
    }
    
    /* sumir com ultima coluna da tabela */
    table.tabValores tr:last-of-type,
    table.tabValores tr:not(.periodo) td:last-of-type{
        display: none;
    }
    tr.cabTabela td{
        display: table-cell;
    }
    .cancelamento{
        display: block;
        background-color: hsla(0,78%,82%,0.50);
        line-height: 0.95em;
        font-size: 13px;
        padding: 4vw;
        width: calc(100% + 4vw);
        margin: 0px -2vw 20px -2vw;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .cancelamento h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 0.05rem;
        
    }
    .cancelamento p{
        margin: 3vh auto 0 auto;
        padding: 0 2vw;
        line-height: 1.6em;
    }
    .cancelamento span {
        font-size: 13px;
        font-weight: 600;
        background-color: hsla(0,76%,82%,0.80);
        padding: 4px;
        margin-left: -4px;
    }
    .cancelamento em {
        font-size: 14px;
        font-weight: 400;
        font-style: normal;
    }
    
    .legendaTabelas {
        font-size: 12px;
        margin-left: 0px;
    }
	
    .boxConteudo div p {
		font-size: 16px;
	}
	.rodape{
        height: auto;
        flex-direction: column;
    }
    
    .rodape .info,
    .rodape .menu-contato li {
        margin-bottom: 5vh;
    }
    .rodape .desenvolvido{
        margin-top: 2vh;
    }
	.cadastro{
		padding: 20px 30px;
	}
	.cadastro h3{
		font-size: 20px;
		margin-bottom: 20px;
	}
}


/* mobile */ 
@media screen and (orientation:portrait){
    
    body {
        overflow-x: hidden; 
        font-size: 100%;
    }   
    a.ancora {
        position: absolute;
        top: -60px;
    }
    
   .barraTopo {
        height: 60px;
        width: 96vw;
        position: fixed;
        top: 0;
        z-index: 100;
	   overflow: visible;
    }
    .barraTitulo{
        display: none;
    }
    .barraTopo .bgLogo {
        width: 260px;
        height: 60px;
        background-position: bottom right;
    }
    .barraTopo .bgLogo .logo {
        height: 54px;
        left: 2vw;
        top: 3px;
    }
    .barraMenu{
        height: 60px;
		overflow: visible;
		
    }
    
    .btMenuMobile{
        top: 8px;
		position: absolute;
    }
	
	ul.menuTopo {
		
		
        background-color: #E9E8E3;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        /* [disabled]border-top-right-radius: 5px; */
        /* [disabled]border-top-left-radius: 5px; */
	
        width: 250px;
        height: 300px;
        position: fixed;
        top: 60px;
        right: 2vw;
        padding: 20px;
        z-index: 110;
        flex-direction: column;
        align-content: space-between;
        align-items: center;
        -webkit-box-shadow: -4px 4px 7px hsla(0,0%,0%,0.40);
        box-shadow: -4px 4px 7px hsla(0,0%,0%,0.40);		
        
        display: none; 
    }
    
    
    .pagina{
        max-width: 96vw; 
        margin-top: 60px;
    }
    .banner{
        padding: 2vh 2vw;
        background-position: center bottom;
        height: calc(100vh - 60px);
        position: relative;
        min-height: 508px;
		max-height: 725px;
    }
	.slideshow-container img {
		height: calc(100vh - 60px);
		max-height: 725px;
	}
    .banner .chamada {
		top: 0vh;
        font-size: 20px;
        padding-left: 6vw;
        padding-right: 6vw;
    }
    .banner .chamada span {
        font-size: 28px;
    }
    .banner .chamada span br{
        display: none;
    }
	.text,
    .banner .legendaLocal {
    bottom: 2vh;
    right: 0px;
    font-size: 12px;
    text-align: center;
    left: 0;
    letter-spacing: 0.05rem;
    }
    .boxComunidades {
        width: 248px;        
    }
    
    .boxComunidades .boxTitulo{
        font-size: 14px;
    } 
    .boxComunidades .boxDescricao{
        font-size: 14px;
        height: 120px;
    }
    .boxComunidades::after {
        display: none;
    }
    
    .boxConteudo, .rodape{
        padding: 4vh 4vw !important;
        height: auto !important;
    }
    
    h2 {
        font-size: 30px;
        margin-top: 0vh;
        margin-bottom: 4vh;
    }
    .boxConteudo p{
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 4vh;
    }
    .vantagem{
        margin: 8vh auto;
        height: auto;
        padding: 0;
    }
    
    .vantagem img {
        height: 80px;
    }
    .vantagem.esquerda img {
        margin-right: 5vw;
    }
    .vantagem.direita img {
        margin-left: 5vw;
    }
    .vantagem h3 {
        margin-top: 0px;
        margin-bottom: 1vh;
    }
    
    .logoMori {
        margin-top: 0;
        max-height: unset;
        width: 48vw;
        margin-bottom: 2vh;
        margin-left: 4vw;
    }
        iframe.videoYT {
        width: 100%;
        height: 50vw;
    }
    .publico img {
        width: 22vw;
    }
    
   
    .publico {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        text-align: center;
        margin-top: 12vh;
    }
    .publico h3 {
        margin-top: 1vh;
        margin-bottom: 1vh;
    }
    .publico div{
        margin-bottom: 5vh;   
    }
    .cadastro{
        padding: 4vh 4vw;
    }
    .cadastro label{
        width: 100%;
        clear: both;
        margin-bottom: 0px;
        margin-top: 20px;
        text-align: center;
        
    }
    .cadastro input[type="file"] {
        float: right;
        width: 100%;
        clear: right;
        margin-top: 5px;
    }
    .cadastro input, .cadastro select, .cadastro option {
        font-size: 16px;
    }
    .cadastro .btEnviar,
    a.cta {
        font-size: 16px;
        letter-spacing: 0.15rem;
        max-width: 94%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4em;
        white-space: break-spaces;
        display: block;
    }
   
    .boxConteudo ul ul {
        padding-left: 40px;
    }
    
    table.tabValores {
        margin: 30px -2vw 0px -2vw;
        font-size: 14px;
        width: calc(100% + 4vw);
        letter-spacing: normal;
    }
    table.tabValores th{
        font-size: 14px;
        padding: 12px 10vw;
    }
    
    
    
    table.tabValores tr td {
        padding: 8px 6px;
        white-space: normal;
    }
    
    table.tabValores .cabTabela td {
        font-size: 14px;
    }
    
    table.tabValores td.valores {
        font-size: 16px;
    }
    
    /* sumir com ultima coluna da tabela */
    table.tabValores tr:last-of-type,
    table.tabValores tr:not(.periodo) td:last-of-type{
        display: none;
    }
    tr.cabTabela td{
        display: table-cell;
    }
    .cancelamento{
        display: block;
        background-color: hsla(0,78%,82%,0.50);
        line-height: 0.95em;
        font-size: 13px;
        padding: 4vw;
        width: calc(100% + 4vw);
        margin: 0px -2vw 20px -2vw;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .cancelamento h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 0.05rem;
        
    }
    .cancelamento p{
        margin: 3vh auto 0 auto;
        padding: 0 2vw;
        line-height: 1.6em;
    }
    .cancelamento span {
        font-size: 13px;
        font-weight: 600;
        background-color: hsla(0,76%,82%,0.80);
        padding: 4px;
        margin-left: -4px;
    }
    .cancelamento em {
        font-size: 14px;
        font-weight: 400;
        font-style: normal;
    }
    
    .legendaTabelas {
        font-size: 12px;
        margin-left: 0px;
    }
    

    .rodape{
        height: auto;
        flex-direction: column;
    }
    .rodape .menu-contato {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
    }
    
    .rodape .info,
    .rodape .menu-contato li {
        margin-bottom: 3vh;
    }
    .rodape .desenvolvido{
        margin-top: 2vh;
    }
    a.enviarWhats{  
        display: block;
        white-space: pre-line;
    }
	
	.perguntas{
        padding: 2vh 4vw;
    }
	
	.pergunta p{
		margin-bottom: 2vh;
	}
	.pergunta .resp p{
		margin-bottom: 2vh;    
	}
    
}

/* mobile deitado */
@media (orientation:landscape) and (max-height:414px){
	.barraTopo {
        height: 60px;
        width: 98vw;
        position: fixed;
        top: 0;
        z-index: 100;
	   overflow: visible;
    }
    .barraTitulo{
        display: none;
    }
    .barraTopo .bgLogo {
        width: 260px;
        height: 60px;
        background-position: bottom right;
    }
    .barraTopo .bgLogo .logo {
        height: 54px;
        left: 2vw;
        top: 3px;
    }
    .barraMenu{
        height: 60px;
		overflow: visible;
		
    }
    
    .btMenuMobile{
        top: 8px;
		position: absolute;
    }
	
	ul.menuTopo {
		
		
        background-color: #E9E8E3;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        /* [disabled]border-top-right-radius: 5px; */
        /* [disabled]border-top-left-radius: 5px; */
	
        width: 250px;
        height: 300px;
        position: fixed;
        top: 60px;
        right: 2vw;
        padding: 20px;
        z-index: 110;
        flex-direction: column;
        align-content: space-between;
        align-items: center;
        -webkit-box-shadow: -4px 4px 7px hsla(0,0%,0%,0.40);
        box-shadow: -4px 4px 7px hsla(0,0%,0%,0.40);		
        
        display: none; 
    }
	.pagina{
        margin-top: 60px;
    }
}


