/*===
* CONFIGURAÇÕES PARA COMPUTADORES E NOTEBOOKS.
* 1024x768.
====*/
/**
* Configurações para todas as páginas.
*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	width: 100%;
	height: 100vh;
}
body {
	font-family: 'Roboto', Arial, sans-serif;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	color: #333;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
}
header {
	text-align: center;
	margin: 10px;
	width: 100%;
}
header img {
	max-width: 300px;
	height: auto;
	margin-bottom: 10px;
}
main {
	height: 100%;
	padding-top: 0;
	margin-bottom: 50px;
	margin-left: 20px;
	margin-right: 20px;
}
footer {
	width: 100%;
	position: fixed;
	display: flex;
	bottom: 0;
	right: 0;
	height: 20px;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	background-color: #363636;
	color: #ffffff;
	font-family: "Arial, Helvetica, Sans-Serif";
	font-size: 16px;
	font-weight: bold;
	text-shadow: 2px 2px 2px #000000;
	word-wrap: wrap;
}
/**
* Menu.
*/
.Menu {
	width: 100%;
	height: 30px;
	background-color: #808080;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
}
.Menu ul {
	list-style: none;
	position: relative;
}
.Menu ul ul {
	list-style: none;
	position: absolute;
	visibility: hidden;
}
.Menu ul li {
	width: 180px;
	float: left;
}
.Menu ul li:hover ul {
	visibility: visible;
}
.Menu ul ul li {
	float: none;
	border-bottom: solid 1px #000000;
}
.Menu a {
	padding: 14px;
	display: block;
	text-decoration: none;
	background-color: #808080;
	text-align: center;
}
.Menu a:hover {
	background-color: #006400;
}
.Menu ul li a {
	padding: 3px;
	display: block;
	text-decoration: none;
	text-align: center;
	background-color: #808080;
	color: #ffffff;
}
.Menu ul li a:hover {
	background-color: #006400;
	color: #ffffff;
}
.Menu ul ul li a {
	background-color: #808080;
}
.Topo {
	padding: 3px;
	background-color: #808080;
	color: #ffffff;
	font-family: "Arial, Helvetica, Sans-Serif";
	text-align: center;
	font-size: 20px;
	display: none;
	width: 100%;
	height: 60px;
}
#BotaoMenu {
	display: none;
}
label[for="BotaoMenu"] {
	padding: 3px;
	background-color: #808080;
	color: #ffffff;
	font-family: "Arial";
	text-align: center;
	font-size: 30px;
	cursor: pointer;
	display: none;
	width: 50px;
	height: 50px;
}
label[for="BotaoMenu"]:hover {
	background-color: #006400;
	color: #ffffff;
}
.Sistema {
	display: none;
	width: 60%;
}
.Logotipo {
	display: none;
	width: 40px;
	height: 40px;
}
/**
* Divs.
*/
.caixa-formulario {
	width: 360px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	background-color: #B5B5B5;
	border-radius: 10px;
	box-shadow: 10px 10px 10px #000000;
}
.caixa-erro {
	width: 360px;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: bold;
	color: #ff0000;
	text-align: center;
	text-shadow: 2px 2px 2px #000000;
}
/**
* Títulos.
*/
.Titulo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #1E90FF;
	margin: 5px;
	text-align: center;
	text-shadow: 2px 2px 2px #000000;
}
/**
* Formulários.
*/
label {
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffff;
	font-weight: bold;
	font-size: 16px;
	text-shadow: 1px 1px 1px #000000;
	margin-left: 10px;
}
.form-control:focus {
	background-color: #ffff00;
}
/**
* Botões.
*/
.btn {
	box-shadow: 2px 2px 2px #000000;
}
.Detalhe {
	width: 20px;
	height: 20px;
	border: none;
	cursor: pointer;
}
/**
* Divisórias dos formulários com foto.
*/
.Foto {
	display: inline-block;
	width: 25%;
	float: left;
	text-align: center;
}
.Ficha {
	display: inline-block;
	width: 75%;
	float: left;
}
/**
* Botão de Câmera.
*/
img.Camera {
	width: 50px;
	height: 50px;
	cursor: pointer;
}
/*
* Pré-Visualização de Foto.
*/
.Foto3x4 {
	display: block;
	width: 250px;
	height: 300px;
	margin: auto;
	border: 1px solid #000000;
	box-shadow: 15px 15px 15px #000000;
}
/**
* Tabelas.
*/
.table-responsive {
	opacity: 1.0;
}
.table {
	background-color: #ffffff;
	font-family: Calibri, courier new, sans-serif;
	font-size: 14px;
	font-weight: bold;
	margin: 10px;
	width: 95%;
	box-shadow: 10px 10px 10px #000000;
}
.table th {
	text-align: center;
}
.table td {
	vertical-align: middle;
}
/**
* Botão de Detalhe das tabelas.
*/
.Detalhe {
	width: 40px;
	height: 40px;
	border: none;
	cursor: pointer;
}
.Detalhe:hover {
	text-decoration: none;
}
/**
* Foto dos Cachorros.
*/
.ContainerFotoMeuPet {
	width: 70px;
	height: 70px;
}
.FotoMeuPet {
	width: 100%;
	height: 100%;
	 object-fit: cover;
}
.ContainerFotoShowCase {
	width: 150px;
	height: 150px;
}
.FotoShowCase {
	width: 100%;
	height: 100%;
	 object-fit: cover;
}
/*===
* CONFIGURAÇÕES PARA SMARTPHONES E TABLETS.
====*/
/**
* Para Smartphones.
*/
@media (max-width: 768px) {
	/**
	* Menu.
	*/
	.Menu {
		margin-left: -100%;
		transition: all 0.4s;
		font-size: 1.5em;
		margin-top: 5px;
		margin-bottom: 20px;
	}
	.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 0.4s;
	}
	.Menu ul ul li a {
		background-color: #00bfff;
	}
	.Menu ul li:hover ul {
		height: auto;
		max-height: 400px;
		transition: all 0.4s;
	}
	.Topo {
		display: block;
	}
	label[for="BotaoMenu"] {
		display: inline-block;
	}
	#BotaoMenu:checked ~ .Menu {
		margin-left: 0;
	}
	.Sistema {
		display: inline-block;
	}
	.Logotipo {
		display: inline-block;
	}
	/**
	* Divs.
	*/
	.caixa-formulario {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		transform: none;
		padding: 10px;
	}
	.caixa-erro {
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		transform: none;
		padding: 10px;
	}
	/**
	* Títulos.
	*/
	.Titulo {
		font-size: 2rem;
		margin-bottom: 10px;
	}
	/**
	* Formulários.
	*/
	label {
		width: 100%;
		font-size: 1em;
		margin: 0;
	}
	/**
	* Divisórias dos formulários com foto.
	*/
	.Foto {
		width: 100%;
		align-items: top;
		text-align: center;
	}
	.Ficha {
		width: 100%;
	}
	/**
	* Botão de Câmera.
	*/
	img.Camera {
		width: 100px;
		height: auto;
	}
	/**
	* Tabelas.
	*/
	.table {
		display: block;
		position: static;
		width: 95%;
	}
	.table tr {
		border-bottom: 1px solid #dddddd;
	}
	.table td {
		border: 0;
		display: inline-block;
		width: 95%;
		font-size: 1.5em;
	}
	.table th {
		display: none;
	}
	/**
	* Botão de Detalhe das tabelas.
	*/
	.Detalhe {
		min-width: 80px;
		min-height: 80px;
	}
	/**
	* Foto dos Cachorros.
	*/
	.ContainerFotoMeuPet {
		width: 300px;
		height: auto;
	}
	.ContainerFotoShowCase {
		width: 300px;
		height: auto;
	}
}