body {
	background-color: none;
	font-family: Geneva, Verdana, Tahoma, sans-serif;
	color:#666;
	margin: 0;
	padding: 0;	
}

a:link {
	color:#B4B4B4;
	text-decoration: none;
}

a:link.form {
	color:#000;
	text-decoration: underline;
}

a:hover {
	background-color:none;
	text-decoration:none;
}

a:hover.footer {
	background-color:#F33;
	text-decoration:none;
}

a:visited {
	color:#B4B4B4; 
	text-decoration: none;
}

a:active {
	color: #000;
	text-decoration: none;
	text-align: left;
}

.all {
	background-color: none;
	position: relative;
    top: -30px;
	margin: 0 auto 0 auto;
	z-index: 1;
}

.login {
	background-color: #fff;
	width: 300px;
	height: 300px;
	position: fixed;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	z-index: 8;
	left: calc(50% - 150px);
	top: 250px;
	padding: 10px;
	border:#CCC 10px;
	border-radius: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0
		rgba(0, 0, 0, 0.19);
	
}

.menu-toggle {
	width: 50px;
	height: 50px;
	display: none;
	font-size: 20px;
	margin-top: 25px;
	margin-right: 50px;
	color: #fff;
}

p {
	font-family: 'Myriad Pro', Arial;
	font-size: 24px;
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	font-weight: bold;
	padding: 10px;
}

form input, form select, form textarea {
color: #222;
border: 1px solid #ccc;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}

#entrar {
	margin-right: 10px;
	min-width: 120px;
	padding: 10px 5px;
	border-radius: 15px;
	border: 1px solid #808080;
	color: #808080;
	cursor: pointer;
	font-weight: bold;
}

.logo {
	width: auto;
	height: 40px;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #FFFFFF;
	padding: 20px;
	position: fixed;
	width: 50%;
	top: 40px;
	left: 25%;
	border-radius: 20px;
	z-index: 6;
	height: 30px;
}

.header .nav {
	display: flex;
	gap: 20px;
	align-items: center;
	width: 100%;
	justify-content: right;
}

.header .nav a {
	color: #FFF;
	text-decoration: none;
	font-size: 16px;
	padding-top: 10px;
	padding-bottom: 10px;
	/* border-bottom: 1px solid #e1e1e1; */
	width: 90px;
	display: flex;
	justify-content: center;
}

.nav a.active {
	border-bottom: 5px solid #efce32; !important;
}

.user-button-img {
	width: auto; /* Ajuste o tamanho da imagem conforme necessário */
	height: 15px;
	margin-right: 5px; /* Adiciona um espaçamento à direita da imagem */
}
.user-button {
	padding: 10px;
	border-radius: 15px;
	cursor: pointer;
	align-items: center; /* Alinha os itens verticalmente */
	display: flex;
	font-size: 14px;
	min-width: 100px;
	justify-content: center;
	background-color: #fff;
	border: 0px;
	border-bottom: 1px solid #e1e1e1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #808080;
}

.user-button:hover {
	border-top: 1px solid #0056b3;
}

.profile {
	display: flex;
	width: 200px;
	justify-content: center;
}



@media ( max-width : 1000px) {
	
	.header .nav {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 70px;
		right: 0;
		background-color: #fff;
		border: 1px solid #ddd;
		border-radius: 5px;
		box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
		width: 150px;
		padding-top: 20px;
		align-items: center;
	}
	
	.header .nav a {
		width: 90%;
		height: 50px;
		align-items: center;
		margin-top: -15px;
		padding-bottom: 15px;
		padding: 15px;
		border-radius: 0; 
		text-align: center; 
		color:#00549D;
	}
	
	.header .nav.active {
		display: flex;
	}
	
	.header .nav #busca {
		display: block;
	}
	
	.menu-toggle {
		display: flex;
	}
}

@media ( max-width : 500px) {
	.user-button {
		border: 0;
	}
	.user-button:hover {
		border: 0;
	}

	.profile {
		display: none;
	}
	.header  {
		top: 0;
		left: 0;
		width: 100%;
		border-radius: 0;
	}
	
}