/*
Reseta nossa pagina dos estilos padroes do navegador
reset */

root {
	display: block;
}

* {
	padding: 0;
	border: 0;
	margin: 0;
	box-sizing: border-box;
	outline: none;
}

a {
	color: inherit;
	text-decoration: none;
}

li {
	list-style: none;
}

input,
textarea,
select {
	outline: none;
}


/* fim reset */


/* grides */

#pagina {
	width: 100%;
	display: block;
	overflow: hidden;
}

#miolo {
	width: 100%;
	display: table;
	position: relative;
}

.wrap {
	/* padrao de largura dos site, matem o conteudo centralizado e com tamanho de 940px largura */
	width: 100%;
	display: table;
	position: relative;
	margin: 0 auto;
	height: 100%;
}

.secao {
	/* separar uma secao da outra, ela e full entao nao precisa mexer na responsividade */
	width: 100%;
	display: table;
	position: relative;
}

.row {
	/* igual a secao porem a mesma esta com display block */
	width: 100%;
	display: block;
	position: relative;
}


/* alinhamento
Mantem a quantidade de box independente do tamnaho do pai, quantidade de acordo com a numeracao depois do x limtado a 6 box
*/

.col-full {
	width: 100%;
}

.col-x2 {
	width: 50%;
}

.col-x3 {
	width: 33.31%;
}

.col-x4 {
	width: 25%;
}

.col-x5 {
	width: 20%;
}

.col-x6 {
	width: 16.65%;
}

[class*='col-'] {
	display: inline-block;
	margin-right: -4.4px;
}

.col-1 {
	width: 8.33%;
}

.col-2 {
	width: 16.67%;
}

.col-3 {
	width: 25%;
}

.col-4 {
	width: 33.33%;
}

.col-5 {
	width: 41.66%;
}

.col-6 {
	width: 50%;
}

.col-7 {
	width: 58.3%;
}

.col-8 {
	width: 66.7%;
}

.col-9 {
	width: 75%;
}

.col-10 {
	width: 83.28%;
}

.col-11 {
	width: 91.7%;
}

.col-12 {
	width: 100%;
}

.col-offset-1 {
	margin-left: 8.33%;
}

.col-offset-2 {
	margin-left: 16.67%;
}

.col-offset-3 {
	margin-left: 25%;
}

.col-offset-4 {
	margin-left: 33.33%;
}

.col-offset-5 {
	margin-left: 41.66%;
}

.col-offset-6 {
	margin-left: 50%;
}

.col-offset-7 {
	margin-left: 58.3%;
}

.col-offset-8 {
	margin-left: 66.7%;
}

.col-offset-9 {
	margin-left: 75%;
}

.col-offset-10 {
	margin-left: 83.28%;
}

.col-offset-11 {
	margin-left: 91.7%;
}

.col-offset-12 {
	margin-left: 100%;
}

.box {
	/* deixa o box com tamanho de acordo com o seu conteudo, muito usado para englobar imagens */
	display: table;
	position: relative;
}

.col-inline {
	/* funciona como um float, mas esse e bom para deixar responsivo OBS: evite usar muito float, a menos que seja nescessário */
	display: inline-block;
	vertical-align: top;
	position: relative;
	margin-right: -3.8px;
}

.content {
	/* usado junto com os col-x pois o col-x nao pode receber margin entao aplicamos padding e essa classe que segura o conteudo, OBS: essa classe e filha do col-x */
	width: 100%;
	display: table;
	position: relative;
}

.container {
	/* pai da classe central, em conjunto centraliza o conteudo verticalmente */
	width: 100%;
	height: 100%;
	display: table;
	position: relative;
}

.central {
	/* filha da classe container, em conjunto centraliza o conteudo verticalmente */
	width: 100%;
	height: 100%;
	display: table-cell;
	position: relative;
	vertical-align: middle;
}

.clearFix {
	clear: both;
}


/* Bloqueia qualquer float */

.image-adaptavel img {
	margin: 0 auto;
}


/* centraliza a imagem filha dessa classe */

.ajusta-image img {
	width: 100%;
}


/* ajusta a imagem filha dessa classe ao tamanho do pai */

.esq {
	float: left;
}

.dir {
	float: right;
}

.botao-link {
	cursor: pointer;
}


/* essa classe usamos muito em input type button porem vamos deixar de fazer funcoes js de click com a tag a para nao prejudicar o SEO */


/* fim alinhamento */


/* estilizacao das fontes */

p {
	/* padrao para toda tag p do site */
	line-height: 26px;
	font-size: 15px;
	color: rgb(16 31 38 / 0.67);
	font-weight: 500;
	font-family: 'myriad_proregular';
}

b {
	/* padrao para toda tag b do site */
	font-family: 'ralewaysemibold';
	font-weight: 900;
}

strong {
	/* padrao para toda tag strong do site */
	font-family: 'ralewayextrabold';
	font-weight: 900;
}

.icon-text {
	font-family: 'fontello';
}


/* guarda a fonte com os icones de fonte */


/* fim estilizacao das fontes */


/* estilos padrao */

html,
body {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	font-size: 16px;
}

img {
	display: block;
}


/* todas as imagens recebem esse display pois as mesmas tem que ser block */

.cont-absolute {
	/* deixar um elemnto com os padroes absolute */
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.link-full {
	/* aplicada na tag a para que o link ocupe todo o box */
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
}

.topo-fixo {
	/* serve para topos que nao sao flutuantes */
	position: fixed;
	left: 0;
	top: 0;
	z-index: 500;
}

.trans-fast {
	/* aplica a transicao no objeto, usado muito nos elementos que tem hover */
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.trans-slow {
	/* aplica a transicao no objeto, usado muito nos elementos que tem hover */
	-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;
}

.radius-full {
	/* deixa o objeto redondo, lembrando que o objeto ja tem que esta com tamnho definido */
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.radius-med {
	/* deixa o objeto com bordas arredondada, usado muito nos botoes e inputs*/
	-webkit-border-radius: 50px;
	border-radius: 50px;
}

.radius-min {
	/* deixa o objeto com bordas um pouco arredondada, usado muito nas imagens e box*/
	-webkit-border-radius: 20px;
	border-radius: 20px;
}


/* Sidebar */

.sidebar {
	width: 100%;
	height: 100%;
	/* display: none; */
	position: fixed;
	top: 0;
	left: -2001px;
	z-index: 2000;
	visibility: hidden;
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-ms-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
	background: url(../../images/bg-sidebar.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;

    /* custom */
}

.sidebar.aberto {
	display: block;
	left: 0;
	display: block;
	visibility: inherit;
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-ms-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
}

.sidebar .inside {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	overflow-y: auto;
}

.fundo-sidebar {
	width: 100%;
	height: 100%;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0.7;
	background: #000;
}

.engloba-titulo-sidebar {
	margin-bottom: 0;
	margin-top: 0;
}

.engloba-titulo-sidebar .titulo {
	font-size: 49px;
	color: #FFFFFF;
	font-family: 'Noto Serif';
}

.engloba-sidebar {
	width: 800px;
	height: 100%;
	margin: 0 auto;
}

.box-sidebar:nth-of-type(3),
.box-sidebar:nth-of-type(6),
.box-sidebar:nth-of-type(9) {
	border-right: none;
}

.box-sidebar {
	width: 264px;
	border-right: 1px solid rgb(255 255 255 / 0.20);
	margin-bottom: 35px;
	height: 145px;
}

.box-sidebar .content {
	height: 100%;
}

.box-sidebar:hover {
	background: #fff;
}

.box-sidebar .image {
	margin: 0 auto;
	display: table;
	margin-bottom: 6px;
	width: 43px;
	height: 39px;
}

.box-sidebar .image img {
	filter: brightness(10) saturate(0.1) contrast(10);
	width: 100%;
}

.box-sidebar:hover .image img {
	filter: inherit;
}

.box-sidebar .descricao {}

.box-sidebar .descricao .titulo {
	color: #FFFFFF;
	font-size: 23px;
	font-family: 'Noto Serif';
	line-height: 27px;
	text-align: center;
	width: 155px;
	margin: 0 auto;
	margin-bottom: 10px;
}

.box-sidebar .descricao p {
	color: #FFFFFF;
	width: 209.125px;
	margin: 0 auto;
	font-family: 'Noto Serif';
	font-size: 13px;
	line-height: 23px;
}

.box-sidebar:hover .descricao .titulo,
.box-sidebar:hover .descricao p {
	color: #616A60;
}

#topo-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 82px;
	border-right: 1px solid rgb(222 222 222 / 0.40);
	height: 100%;
	z-index: 100;
}
#topo-sidebar.deixa-topo{
	display:block;
}
#topo-sidebar{
	display:none;
}
/* estilo accordion */

.aba_accordion {
	display: none;
}


/* padrao banner */

#banner {
	width: 100%;
	height: 670px;
	display: block;
	position: relative;
	z-index: 10;
	overflow: hidden;
}

#banner ul {
	width: 100%;
	height: 100%;
	display: block;
	position: relative
}

#banner ul li {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#banner #pagination {
	width: auto;
	height: auto;
	display: none;
	position: absolute;
	bottom: 30px;
	left: 50%;
	z-index: 100;
}

#banner #pagination a {
	width: 15px;
	height: 15px;
	display: block;
	position: relative;
	float: left;
	font-size: 0;
	border-radius: 100%;
	background: #fff;
	margin: 0 4px;
}

#banner #pagination a:hover,
#banner #pagination a.active {
	background: #db7f00;
}

#banner #pagination span {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
}

#banner .btn {
	width: 148px;
	height: 37px;
	display: none;
	position: absolute;
	top: 50%;
	margin-top: -45px;
	cursor: pointer;
	z-index: 10;
	font-size: 0;
}

#banner .btn span {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10
}

#banner .btn .desativa {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20
}