/* ================================================
   PAGES.CSS — Estilos específicos por página
   ================================================ */

/* ---- Página Home ---- */
.corpoHome {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.bemVindo {
	margin-top: 10px;
	margin-bottom: 10px;
	display: flex;
	width: 100%;
}

.bemVindo p {
	color: #b2099b;
	font-size: 22px;
}

.acesso-rapidgo {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 20px;
}

.container-acesso {
	display: flex;
	justify-content: space-between;
}

.container-acesso a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 7px;
	padding: 40px 0;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	text-decoration: none;
	border: 2px solid #333;
	border-radius: 50px;
	background-color: #e2d382;
}

.container-acesso a:hover {
	text-shadow: 0.1em 0.1em #333;
	font-size: 20px;
	padding: 38px 0;
}

/* ---- Página de Resultados ---- */
.rstTitulo {
	text-align: center;
	width: 99%;
	padding: 10px 0 10px 0;
	border-radius: 4px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	margin: 10px 0 20px 0;
	background-color: #870B87;
}

.rstInfo {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 96%;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding: 10px 0 10px 0;
	margin-bottom: 24px;
}

.rstInfo h3 {
	padding: 0;
	margin: 5px 0 10px 0;
	color: #333;
}

.rstInfo p, .rstPesquisa p {
	margin: 0;
	font-size: 15px;
	font-weight: bold;
	color: #333;
}

.rstPesquisa {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 96%;
}

.rstPesquisa form {
	margin: 10px 0 24px 0;
}

.rstPesquisa input {
	height: 27px;
	border: 1px solid #ccc;
	padding-left: 10px;
	color: #666;
}

.rstPesquisa select {
	width: 50%;
	padding: 10px;
	margin-top: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	color: #666;
	font-size: 16px;
}

.rstNumeroCon {
	width: 250px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	padding-left: 10px;
}

.btnPesquisa {
	display: flex;
	justify-content: space-between;
	width: 20%;
}

.btnPesquisa a {
	background-color: #fff;
	border: 1px solid orange;
	border-radius: 4px;
	color: orange;
	padding: 10px;
	font-size: 12px;
	text-decoration: none;
}

.rstDados {
	display: flex;
	width: 96%;
	justify-content: center;
	margin-top: 30px;
}

.rstDezenas {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50%;
}

.rstDezenas p {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

.cont-sorteadas {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 280px;
	margin-bottom: 20px;
}

.sorteadas {
	display: block;
	width: 87%;
}

.cont-volante {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 370px;
	margin-bottom: 20px;
}

.sorteadas-volante {
	display: block;
	width: 87%;
}

.rstAnalise {
	display: flex;
	flex-direction: column;
	width: 50%;
}

.rstAnaliseTitulo {
	display: flex;
	align-items: center;
}

.rstAnaliseTitulo h3 {
	margin: 0;
	color: #b2099b;
	margin-left: 10px;
	font-size: 24px;
}

.cont-analise-info {
	display: flex;
	flex-direction: column;
	margin-top: 10px;
}

.cont-analise-info ul {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #ccc;
}

.cont-analise-info ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 0;
	border-top: 1px solid #ccc;
	color: #444;
	font-size: 15px;
}

.cont-analise-info ul li:hover {
	background-color: #eee;
}

.cont-status {
	display: flex;
	align-items: center;
	padding-right: 5px;
}

/* Página resultados resumidos */
.pqsRstResumido {
	width: 60%;
	margin-top: 20px;
}

.pqsRstResumido p {
	font-weight: bold;
	margin: 0;
	padding: 0;
}

.cont-rstResumido {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.cont-rstInputResumido {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.rstInputResumido {
	width: 300px;
	height: 25px;
	color: #777;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding-left: 10px;
}

.cont-rstResumidoBuntton {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.rstResumidoSubmit {
	flex: 1;
	color: #ccc;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 25px;
	margin-right: 10px;
}

.rstResumidoSubmit:hover {
	background-color: #ccc;
}

.rstResumidoLink {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #777;
	margin-left: 10px;
	border: 1px solid #ccc;
	text-decoration: none;
	border-radius: 5px;
}

.rstResumidoLink:hover {
	background-color: #ccc;
}

.table-rstResumido {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 30px 0 20px 0;
}

/* Página de estatísticas */
.tabela {
	display: flex;
	width: 90%;
	border: 1px solid #666;
}

.roxo {
	text-align: center;
	color: #fff;
	font-weight: bold;
	background-color: #930989;
}

.qantidade {
	text-align: center;
	font-weight: bold;
	color: #666;
}

.ciclo {
	color: #333;
	font-size: 14.5px;
	font-weight: bold;
	text-align: center;
	height: 32px;
}

.fim_ciclo {
	font-size: 14.5px;
	font-weight: bold;
	text-align: center;
	color: #930989;
	background-color: #ffff8f;
	height: 32px;
}

/* Página de dicas */
.cont-dicas {
	width: 90%;
}

.dica-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
	border: 1px solid #666;
	width: 28%;
	float: left;
	margin: 20px;
}

.dica-item {
	display: flex;
	flex-direction: column;
	width: 98%;
	padding: 2px;
	border: 1px solid #666;
}

.dica-titulo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.dica-titulo h3 {
	margin: 0;
	font-size: 26px;
	color: #222;
}

.dica-img img {
	width: 100%;
	height: 320px;
	margin: 0;
}

.cont-dica-conteudo {
	width: 90%;
	padding: 10px;
}

/* Página de usuários */
.contFormUser {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.formUsuario {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 80%;
}

.formUserInput {
	width: 95%;
	height: 30px;
	border-radius: 4px;
	padding-left: 15px;
	color: #053d4e;
	border: 1px solid #053d4e;
}

.btnSair {
	margin: 30px 32px 0 0;
	border-radius: 4px;
	width: auto;
	height: auto;
	background-color: #fa2a2a;
}

.btnSair a {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
}

.msgAlert {
	padding: 10px;
	color: #a75d63;
	background-color: #f8d7da;
	border: 1px solid #a75d63;
	border-radius: 5px;
}

/* Página de jogos salvos */
.cont-jogosSalvos {
	width: 90%;
	height: auto;
}

.jogo-salvo-item {
	width: 25%;
	float: left;
	margin-left: 70px;
	margin-bottom: 20px;
}

.jogos-salvos-opc {
	padding: 3px;
	background-color: #870B87;
	border-radius: 4px;
	margin-bottom: 4px;
	text-align: center;
}

.jogos-salvos-opc a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
}

.contentor-jogo-item {
	padding: 5px;
	border: 2px solid rgba(197, 79, 79, 0.5);
	border-radius: 10px;
}

.contentor-jogo-item hr {
	border: 1px solid rgba(197, 79, 79, 0.5);
}

.img-jogo-salvo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.img-jogo-salvo img {
	width: 200px;
}

.contentor-jogo-item a {
	text-decoration: none;
	color: #cb00cc;
	font-weight: bold;
}

.jogo-salvo-nome {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-transform: uppercase;
	padding: 10px;
}

/* Página de jogo salvo item */
.cont-jgs-salvo {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 90%;
}

.cont-dzn-jgs-salvo {
	display: flex;
	justify-content: space-around;
	width: 90%;
	padding: 10px 10px 10px 10px;
	border: 2px solid #aaa;
}

.cont-jogos-dezenas {
	width: 83%;
	margin-top: 15px;
	display: block;
}

.jogo-dezenas-cont {
	width: 25%;
	float: left;
	margin: 20px 4% 0 4%;
}

.num-jogo-salvo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	color: #fff;
	font-weight: bold;
	background-color: purple;
	margin: 0 5px 0 5px;
}

.acertos-jogo-salvo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	color: purple;
	font-weight: bold;
	background-color: rgb(197, 191, 197);
	margin: 0 5px 0 5px;
}

/* Página de padrões sorteados */
.pdr-cont {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 1920px;
	margin: 20px 0 0 0;
}

.pdr {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
}

.pdr-item {
	flex: 1;
	margin: 0 20px 0 20px;
}

.pdr-titulo {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 5px 0 5px 0;
	margin-bottom: 1px;
	background-color: #6e1a63;
}

.pdr-cont-num {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.pdr-fileira {
	display: flex;
	width: 100%;
}

.pdr-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20%;
	height: 30px;
	color: #fff;
	font-weight: bold;
	background-color: #b2099b;
	margin: 1px;
}

.pdr-rodape {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 5px 0 5px 0;
	margin-top: 1px;
	background-color: #6e1a63;
}