@charset utf-8;
/**
* CONFIGURAÇÕES GERAIS
*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	width: 100%;
	height: 100%;
}
body{
	background: #4682B4;
}
/**
* HEADER DAS PÁGINAS
*/
header{
	width: 100%;
	height: 35px;
	position: fixed;
	top: 0;
	z-index: 9; /* Adiciona esta propriedade */
}
/**
* H1
*/
.Titulo{
	display: inline-block;
	font-face: Arial, Helvetica, Sans-Serif;
	font-size: 36px;
	font-weight: bold;
	color: #ffffff;
	text-shadow: 2px 2px #000000;
	margin-left: 30px;
	margin-right: 10px;
}
/**
* ATALHOS
*/
a{
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 20px;
	font-style: bold;
	color: #000080;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
/**
* DIVS
*/
.Caixa{
	width: 350px;
	margin: 150px auto 0px auto;
	padding: 20px;
	background-color: #e0ffff;
	box-shadow: 10px 10px 10px #000000;
}
.Conteudo{
	float: left;
	width: 100%;
	padding: 15px;
}
.Ficha{
	float: left;
	width: 100%;
	height: 300px;
	margin: 10px;
}
.Campo{
	display: inline-block;
	margin: 2px;
}
.Separador{
	width: 100%;
	position: static;
}
.Mensagem{
	float: left;
	width: 70%;
	height: 100px;
	margin: 20px 15%;
	background: #ffff00;
	display: none;
}
.Navegacao{
	width: 100%;
	text-align: center;
	padding: 10px;
}
/**
* BOTÕES
*/
.Botao{
	width: 100px;
	height: 50px;
	border-radius: 15px;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	paddin: 5px;
	margin: 5px;
	display:inline-block;
	cursor: pointer;
	box-shadow: 1px 1px 1px #000000;
}
.Detalhe{
	width: 25px;
	height: 25px;
	border: none;
}
/**
* MENU
*/
.menu{
	width: 100%;
	height: 33px;
	box-shadow: 5px 5px 5px #000000;
	background-color: #e0ffff;
	font-family: Ariel, Helvetica, Sans-Serif;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
}
.menu ul{
	list-style: none;
	position: relative;
}
.menu ul ul{
	list-style:none;
	position: absolute;
	visibility: hidden;
}
.menu ul li{
	width: 150px;
	float: left;
}
.menu ul li:hover ul{
	visibility: visible;
}
.menu ul ul li{
	float: none;
	border-bottom: solid 1px #ccc;
	box-shadow: 5px 5px 5px #000000;
}
.menu a{
	padding:14px;
	display:block;
	text-decoration: none;
	background-color: #222;
	text-align:center;
}
.menu a:hover{
	background-color:#f4f4f4;
}
.menu ul li a{
	padding: 5px;
	display: block;
	text-decoration: none;
	text-align: center;
	background-color: #e0ffffff;
	color: #000000;
}
.menu ul li a:hover{
	background-color: #000080;
	color: #ffffff;
}
.menu ul ul li a{
	background-color: #00bfff;
}
#bt_menu{
	display: none;
}
label[for='bt_menu']{
	padding:5px;
	background-color: #e0ffff;
	color:#000000;
	font-family:'Arial';
	text-align:center;
	font-size:30px;
	cursor:pointer;
	display:none;
	width:50px;
	height:50px;
	box-shadow: 5px 5px 5px #000000;
}
label[for='bt_menu']:hover{
	background-color: #000080;
	color: #ffffff;
}
/**
* INPUTS
*/
label{
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 18px;
	font-style: bold;
	color: #ffffff;
}
input[type=text], [type=date],[type=password], select{
	border: 1px solid #000000;
	background-color: #ffffff;
	text-transform: uppercase;
	font-family: Calibri, courier new, serif;
	font-size: 14px;
	font-weight: bold;
	margin: 2px;
}
input[type=email]{
	border: 1px solid #000000;
	background-color: #ffffff;
	text-transform: lowercase;
	font-family: Calibri, courier new, serif;
	font-size: 14px;
	font-weight: bold;
	margin: 2px;
}
input[type=text]:focus, [type=email]:focus, [type=date]:focus, [type=password]:focus, select:focus{
	background-color:#ffff00;
}
textarea{
	border: 1px solid #000000;
	background-color: #ffffff;
	text-transform: uppercase; //Converte caracteres para maiúsculas.
	font-family: Calibri, courier new, serif;
	font-size: 14px;
	font-weight: bold;
	margin: 2px;
	resize: none; //Remove recurso de dimensionamento.
	min-width:500px;
	max-width:100%;
	min-height:150px;
	height:100%;
	width:100%;
}
textarea:focus, [type=textarea]:focus, [type=date]:focus, [type=password]:focus, select:focus{
	background-color:#ffff00;
	outline: none; //Elimina linha azul em volta ao receber foco.
}
input[type=file]{
	width: 70%;
	border: 1px solid #000000;
	background-color: #ffffff;
	font-family: Calibri, courier new, serif;
	font-size: 16px;
	font-weight: bold;
	margin: 2px;
}
input[type=file]:focus{
	background-color:#ffff00;
}
input[type=hidden]{
	border:none;
}
/**
* IFRAME
*/
iframe{
	border: 1px #000000 solid;
	padding: 0;
	min-width:500px;
	max-width:100%;
	min-height:250px;
	height:100%;
	width:100%;
}
/**
* PARÁGRAFOS
*/
p{
	color: #000000;
	text-align: justify;
	font-family: Arial,Helvetica,Sans-Serif;
	font-size: 14px;
	font-weight: bold;
	margin: 20px;
}
/**
* TABELAS
*/
.TabelaResponsiva{
	width: 95%;
	margin: 2px auto;
	font-family: Calibri, courier new, serif;
	font-size: 14px;
	font-weight: bold;
	box-shadow: 10px 10px 10px #000000;
}
.TabelaResponsiva th{
	background-color: #000080;
	color: #ffffff;
	text-transform: uppercase;
}
.TabelaResponsiva th, .tabela_responsiva td{
	border: 1px solid black;
	padding: 1px;
}
/**
* JANELA MODAL
*/
.ProdutosModal{
	position: absolute;
	width: 500px;
	height: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #bebebe;
	box-shadow: 10px 10px 10px #000000;
	display: none;
	animation: animate;
	animation-duration: 800ms;
}
/*=========================================================
* CONFIGURAÇÕES RESPONSIVAS
=========================================================*/
@media only screen and (max-width: 757px){
	/**
	* MENU
	*/
	.menu{
		margin-left:-100%;
		transition:all .4s;
		font-size: 1.5em;
		margin-top:5px;
	}
	.menu>ul{
		margin-left:0;
	}
	.menu ul li{
		width: 100%;
		float: none;
		box-shadow: 5px 5px 5px #888888;
	}
	.menu ul ul{
		position: static;
		overflow: hidden;
		max-height: 0px;
		transition:all .4s;
	}
	.menu ul ul li a{
		background-color: #00bfff;
	}
	.menu ul li:hover ul{
		height: auto;
		max-height: 400px;
		transition: all .4s;
	}
	label[for='bt_menu']{
		display:block;
	}
	#bt_menu:checked ~ .menu{
		margin-left:0;
	}
	/**
	* INPUTS
	*/
	.Campo{
		width: 95%;
		padding-left: 5px;
		padding-right: 5px;
	}
	label{
		width: 100%;
		font-size: 1.5em;
	}
	input[type=text],[type=email],[type=date],[type=password], select{
		width: 100%;
		font-size: 1.5em;
	}
	textarea{
		width: 95%;
		font-size: 2em;
	}
	input[type=file]{
		font-size: 1.5em;
	}
	/**
	* IFRAME
	*/
	iframe{
		width: 95%;
	}
	/**
	* ATALHOS
	*/
	a{
		font-size: 1.5em;
	}
	/**
	* TABELAS
	*/
	.TabelaResponsiva{
		display: block;
		position: static;
	}
	.TabelaResponsiva tr{
		border-bottom: 1px solid #dddddd;
	}
	.TabelaResponsiva td{
		border: 0;
		display: inline-block;
		width: 90vw;
		font-size: 1.5em;
	}
	/*
	.TabelaResponsiva td:not(:first-child){
		display: block;
		width: 100%;
	}
	*/
	.TabelaResponsiva thead{
		display: none;
	}
	/**
	* JANELA MODAL
	*/
	.Modal{
		width: 85%;
		height: auto;
	}
}