@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{
    --laranja: #FA9E32;
    --fonte: "Raleway";
    --cinza: #666666;
    --cinza-claro: #c0c0c0;
    --preto: #333333;
    --vermelho-subtitulo: rgb(218, 75, 75);
}

/* RESPONSIVIDADE DO CONTAINER */
@media (min-width: 1160px) {
    .container {
        padding: 0;
        width: 90%;
    }
}

@media (min-width: 1024px) {
    .article-sidebar {
        border: 0;
        flex: 0 0 17%;
        height: auto;
    }
}

@media (max-width: 720px){
	header{
		font-size: 10px;
	}
	
	.ajuda-titulo{
		font-size: 8px;
	}
	
	main{
		text-align: center;
	}
	
	.container{
		flex-direction: column;
		text-align: center;
	}
	
	.lista{
		margin-bottom: 10px;
		text-align: center;
		align-items: center;
		display: flex;
		justify-content: center;
		width: 90%;
		margin-left: 2%;
	}
	
}

*{
    font-family: var(--fonte);
    margin: 0px;
    padding: 0px;
	box-sizing: border-box;
	
}

div {
    display: block;
    unicode-bidi: isolate;
}

body{
	background-color: rgb(249, 249, 249);
    color: #333333;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}


/* ================= COMEÇO CABEÇALHO DE PESQUISA ====================== */

header{
	font-family: "Raleway";
	font-weight: 700;
	background-color: #FFFFFF;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 20px;
	box-shadow: 0px 1px 6px var(--cinza-claro);
}

.menu{
	margin-left: 20px;
}

.logo{
	width: 190px;
	height: 60px;
}

.procurar-problema{
	margin: auto;
	position: relative;
	width: 500px;
}

.lente{
	color: black;
	position:absolute;
	top:-7; right:0;
	font-size: 30px;
	border:none;
	background:transparent;
	outline:none;
	cursor: pointer;
	padding: 10px;
}

.procurar-problema input::-webkit-search-cancel-button {
    display: none;
}

.procurar-problema input{
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid var(--cinza-claro);
	outline: none;
}


/* FIM DO CABEÇALHO DE PESQUISA */

/* =========================== CONTAINER DE DIVISAO ================== */
.container{
    display: flex;
    justify-content: space-around;
	max-width: 1160px;
    margin: 0 auto;
}

.container-divisao{
	border-top: 1px solid #ddd;
    margin-bottom: 20px;
}

/* CONTAINER DA LISTA MENU */
.category-container {
    display: flex;
    justify-content: flex-end;
}

.article-sidebar {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    flex: 1 0 auto;
    margin-bottom: 20px;
    padding: 0;
}

.recolido{
    flex: 1;
    max-height: 45px;
    overflow: hidden;
    position: relative;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
    padding: 10px;
    width: 18em;
}


#titulo-lista{
    font-size: 20px;
    color: var(--laranja);
}

.titulo-menu {
    font-size: 15px;
    position: relative;
    font-weight: 700;
    margin-bottom: 10px;
}

ul {
	padding-left: 20px;
}

#lista-categoria-select {
	width: 90%;
	font-weight: 700;
    list-style: none;
	border-radius: 5px;
	background-color: var(--cinza);
	transition: background-color 0.3s ease;
	cursor: pointer;
	text-decoration: none;
}

#lista-categoria-select:hover{
	background-color: #dfdfdf;
}


#lista-categoria{
	width: 90%;
    list-style: none;
	border-radius: 5px;
	background-color: trasparent;
	transition: background-color 0.3s ease;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

#lista-categoria:hover{
	background-color: #dfdfdf;
	text-decoration: underline;
}

.itens-nav-select{
	text-decoration: none;
	color: white;
	padding: 5px;
	display: block;
    font-weight: 300;
    margin-bottom: 5px;
}

.itens-nav{
    border-radius: 4px;
    color: #202020;
    display: block;
    font-weight: 300;
    margin-bottom: 5px;
    padding: 5px;
    text-decoration: none;
}

.itens-nav:hover{
	color: black;
}


/* INICIO DO CONTAINER DE INFORMAÇÕES */

.ajuda-container{
	width: 90%;
	padding: 40px;
    margin-left: 10px;
    margin-right: 30px;
    margin-bottom: 20px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
}

.ajuda-box{
    margin-left: 3%;
    margin-right: 3%;
}

.ajuda-titulo {
    color: var(--laranja);
}

.header-conteudo{
	color: var(--laranja);
	margin-bottom: 15px;
}

.header-conteudo a{
	font-size: 12px;
	color: var(--laranja);
}

.conteudo h2{
	margin-top: 20px;
}

.conteudo a:hover{
	text-decoration: underline;
}

.sem-busca{
	color: var(--cinza);
	font-size: 38px;
	font-weight: 650;
	margin-bottom: 25px;
	border-bottom: 1pt solid var(--cinza-claro);
}

.com-busca{
	color: var(--laranja);
	font-size: 38px;
	font-weight: 650;
	margin-bottom: 25px;
	border-bottom: 1pt solid var(--cinza-claro);
}

#navegar-menu a{
	text-decoration: none;
	color: #FF8C00;
}

#navegar-menu a:hover{
	text-decoration: underline;
}


.conteudo h2{
	margin-top: 20px;
}

.conteudo a{
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;
	color: var(--cinza);
}

.conteudo p{
	font-size: 12px;
	color: var(--laranja);
}

.codigo-periodo{
	display: flex;
	justify-content: space-between;
}

.codigo-periodo p{
	font-family: "Roboto";
	font-size: 13px;
	color: var(--cinza)
}

.ajuda-subtitulo{
	font-size: 25px;
	font-weight: 500;
	color: var(--cinza);
	margin-bottom: 20px;
}

/* FIM DO CONTAINER DE INFORMAÇÕES */