body {
	font-family: 'Inter', sans-serif;
	background-color: #F5F6F6;
	height: 100vh;
	width: 100vw;
	display: flex;
	overflow-x: hidden;
}
#boxPrincipal {
	display: flex;
	flex-direction: column;
	width: 90%;
	min-height: 90vh;
	margin: 2em auto;
	background-color: #FFFFFF;
	align-items: center;
	border-radius: 25px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
form {
	display: flex;
	flex-direction: column;
	gap: 1em;
}
#boxPrincipal header {
	height: 115px;
	flex-shrink: 0;
	width: 100%;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	background-color: #009554;
	font-size: 48px;
	font-weight: 500;
	display: flex;
}
#boxPrincipal header a {
	display: flex;
	align-items: center;
	text-decoration: none;
}
#logoTitulo {
	color: #FFFFFF;
}
#logoImg {
	width: 64px;
	height: 64px;
	margin-left: .5em;
	transition: transform 0.3s ease;
}
#logoImg:hover {
	transform: scale(1.2);
}
textarea::placeholder,input::placeholder {
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	color: #8F9392;
}
#conteudo {
	margin: auto 0;
	display: flex;
	flex-direction: column;
	gap: 3em;
}
h2 {
	font-size:54px;
	color:#013624;
	font-weight: 500;
}
#classificarButton {
	background-color: #009554;
	font-family: 'Inter', sans-serif;
	color:#FFFFFF;
	border: none;
	padding: .3em .5em .3em .5em;
	width: 40%;
	margin: .5em auto auto;
	font-size: 36px;
	border-radius: 25px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
#classificarButton:hover {
	background-color: #00834a;
}
textarea {
	border-color: #C2C5CC;
	border-radius: 15px;
	padding: 1em;
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	height: 36px;
	min-height: 36px;
	max-height: 200px;
	resize: vertical;
	color: #1E1E1E;
}
#custom-file-button {
	font-family: 'Inter', sans-serif;
	padding: .3em .5em .3em .5em;
	margin: 0 auto;
	font-size: 28px;
	background-color: #e6e6e6;
	color: #1E1E1E;
	cursor: pointer;
	border-radius: 15px;
	transition: background-color 0.3s ease;
}
#custom-file-button:hover {
	background-color: #c3c3c3;
}
strong {
	font-weight: 600;
}
ul {
	display: flex;
	flex-direction: column;
	width: 57%;
	gap: 1em;
	justify-content: flex-start;
	margin-bottom: .5em;
	overflow-y: auto;
	max-height: 50vh;
}
li {
	display: flex;
	flex-direction: column;
	gap:.5em;
	padding:1em;
	border-radius: 5px;
}
#tituloResultados {
	margin: 1em 0;
}
.resultado-item {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	background-color: #dcf6cb;
	padding: 1rem;
	border-radius: 5px;
}
.arquivo {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nome-arquivo {
	font-weight: 500;
}
.resultado-item.produtivo {
	background-color: #dcf6cb;
}
.resultado-item.improdutivo {
	background-color: #ffc6c6;
}
.resultado-item.erro {
	background-color: #ffffff;
	border: 1px solid red;
}
progress {
	width: 57%;
	flex-shrink: 0;
	height: 15px;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 2em;
}
progress::-webkit-progress-bar {
	background-color: #EF6769;
}
progress::-webkit-progress-value {
	background-color: #009651;
}
progress::-moz-progress-bar {
	background-color: #009651;
}
#porcentagens {
	width: 57%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1em;
	font-size: 25px;
}
pre {
	white-space: pre-wrap;
	word-break: break-word;
	overflow-wrap: break-word;
}
.erro {
	color: red;
}
#loading {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.8);
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	font-size: 24px;
	color: #013624;
}
.spinner {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #009554;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 1s linear infinite;
	margin-bottom: 1em;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.porcentagem, #botaoLimpar {
	cursor: pointer;
	transition: transform 0.3s ease;
}

.porcentagem:hover, #botaoLimpar:hover {
	transform: scale(1.1);
}

#botaoLimpar {
	background-color: #FFFFFF;
	border: none;
	color: #6c6c6c;
	font-family: 'Inter', sans-serif;
	font-size: 24px;
	margin-bottom: 1em;
}