* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Outfit",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}

:root {
	--white: #ffffff;

	--gray-text: #626262;
	--gray-border: #646464;
	--gray-bg-claro: #F1F1F1;
	--gray-bg: #1f1f1f;

	--red-header: #C83327;
	--red: #DB361C;
	--orange: #CB2800;

	--azul: #006edf;
}

html {
  scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
	width: 100%;
	height: 8.085rem;
	background: var(--gray-bg);
	border-bottom: 2px solid var(--gray-border);
	display: flex;
	align-items: center;
	justify-content: center;
}

header .logo {
	display: flex;
	margin-right: 9rem;
	align-items: center;
}

header .logo .cral {
	cursor: pointer;
	width: 11.875rem;
	margin-right: 1rem;
}

header .logo .selo {
	width: 5.625rem;
}

header .menus {
	display: flex;
	gap: 2.5rem;
}

header .menus .menu {
	color: var(--white);
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.9375rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

header .menus .menu .botoes {
	height: 2.53125rem;
	border-radius: 1.25rem;
	padding: .5rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .5s;
}

header .menus .menu .botoes:hover {
	scale: 1.05;
}

header .menus .menu .arquivos {
	width: 8.43rem;
	border: 1px solid var(--red-header);
	margin-right: .5rem;
}

header .menus .menu .area-restrita {
	background: var(--red-header);
}
header .menus .menu .files::after {
	content: "\f019";
	margin-left: 0.3125rem;
	font-family: Fontawesome;
}
header .menus .menu .restrita::after {
	content: "\f023";
	margin-left: 0.3125rem;
	font-family: Fontawesome;
}

p a, p a:visited {
    line-height: inherit;
}
a, a:visited, a:focus {
    text-decoration: none;
    outline: 0;
}
a {
    color: var(--azul);
}

.conteudo {
    flex: 1;
}

.datalista {
	width: 90%;
	display: none;
	left: 5%;
	max-height: 500px;
	overflow-y: auto;
	position: absolute;
	z-index: 5;
	border-radius: 0 0 0.625rem 0.625rem;
	background: #1f1f1f;
}

.datalista::-webkit-scrollbar {
	width: 0.75rem;               
}

.datalista::-webkit-scrollbar-track {
	background: #171717;  
	border-radius:  0 0 0.625rem 0;      
}

.datalista::-webkit-scrollbar-thumb {
	background-color: #959595;    
	border-radius: 1.25rem;       
	border: 0.1875rem solid #171717; 
} 

.datalista .itens {
	padding: 0 .5rem;
}
.datalista .itens .item {
	padding: .5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: .5rem 0;
	cursor: pointer;
	color: #fff;
}
.datalista .itens .item:hover {
	background: #363635;
}
.datalista .itens .item .modelo {
	font-size: 1.125rem;
	color: var(--red);
	font-weight: bold;
}
.datalista .itens .item .ano {
	font-size: 0.875rem;
}

#openMenu {
    width: 3.125rem;
	height: 3.125rem;
	display: flex;
    justify-content: center;
    align-items: center;
}

#openMenu::before {
	color: #fff;
	font: 2.7rem Fontawesome;
	content: "\f0c9";
}

#mobileMenu {
    width: 98%;
    height: 100%;
	padding: 1rem;
    position: fixed;
    top: 0;
    right: -100%;
    background: #fff;
    color: var(--gray-text);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}
#mobileMenu .menus {
	width: 100%;
	height: calc(100% - 3.125rem);
	display: flex;
	align-items: center;
	justify-content: center;
}
#mobileMenu ul {
    list-style: none;
    padding: 0;
}

#mobileMenu ul li {
    padding: .5rem;
    text-align: center;
}
#mobileMenu ul li .botoes {
	width: 13.75rem;
	height: 2.53125rem;
	border-radius: 1.25rem;
	padding: .5rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
#mobileMenu ul li .arquivos {
	border: 1px solid var(--red-header);
}
#mobileMenu ul li .area-restrita {
	background: var(--red-header);
	color: #fff;
}
#mobileMenu ul li .files::before {
	content: "\f019";
	margin-right: 1rem;
	font-family: Fontawesome;
}
#mobileMenu ul li .restrita::before {
	content: "\f023";
	color: #fff;
	margin-right: 1rem;
	font-family: Fontawesome;
}

#closeMenu {
    width: 1.875rem;
	height: 1.875rem;
	float: right;
	display: flex;
    justify-content: center;
    align-items: center;
}
#closeMenu::before {
	font: 1.5rem Fontawesome;
	content: "\f00d";
}

@media (max-width: 440px) {
	.mobile {
		display: revert;
	}
	.pc {
		display: none;
	}
	header {
		justify-content: space-around;
	}
	header .menus {
		display: none;
	}
	header .logo {
    	margin-right: 0;
	}
}

@media (min-width: 768px) {
	.pc {
		display: revert;
	}
	.mobile {
		display: none;
	}
}