/* ================================================
   LAYOUT.CSS — Estrutura geral e rodapé
   ================================================ */

/* Template principal */
.container-site {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

/* Página de resultados - container */
.container-resultados {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 1920px;
	background-color: #f9f8fc;
}

.resultados {
	flex: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 5px;
}

/* Rodapé */
.rodape-apresentacao {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1920px;
	background-color: #870B87;
	margin-top: 20px;
}

.rodape-container {
	display: flex;
	justify-content: center;
	width: 80%;
	background-color: #870B87;
	padding: 20px 0;
}

.rodape-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	color: #fff;
	margin-left: 20px;
	margin-right: 10px;
}

.rodape-info p {
	font-size: 13px;
	text-align: left;
	margin: 10px 0;
}

.rodape-info ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	display: block;
}

.rodape-info ul li,
.rodape-info a {
	padding: 4px 10px;
}

.rodape-info ul li a,
.rodape-info a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	transition: color 0.3s ease;
}

.rodape-info ul li a:hover,
.rodape-info a:hover {
	color: #d2691e;
}