﻿
*{margin: 0; padding: 0;
	box-sizing: border-box;
}
*{overflow: hidden;}

html, body, .wrapper{height: 100%;}

/* estilos para a barra de menu */
.menu {
	position: relative;
	width: 100%;
	bottom:0;
	overflow: hidden;
	background-color: #91b22e /* cor do logo */
}

.menuItem{
	float: left;
	display: block;
	color: white;
	width: auto;
	text-align: center;
	padding: 5px 12px;
	font-weight: bold;
}

.activo{
	background-color: green;
}

.itemHover:hover{
	background-color: DarkOliveGreen;
	cursor: pointer;
}
.visible{
	display: block;
	
}
	 
.menu .icon {
	display: none;
	position: absolute;
	right: 0;
	top: 0;
	float: right;
	color: white;
	font-size: 25px;
	text-align: center;
	padding: 2px 12px;
}
@media screen and (max-width: 1000px) {
	.logo{
		max-width: 300px !important;
		margin: 0 !important;
	}
	.aifreime{
		margin-top: 105px !important;
		height: calc(100% - 140px) !important;
	}
}
@media screen and (max-width: 600px) {
	.aifreime{
		margin-top: 95px !important;
		height: calc(100% - 130px) !important;
	}
	.menuItem{
		float: none;
		width: 100%;
		text-align: left;
	}
	.menuItem:not(.visible) {
		display: none;
	}
	.menu .icon {
		display: block;
	}
 
	.menu{
		position: relative;
	}
 	
	.lang{
		padding: 0 5px 0 0 !important;
	}
	.rodape a{
		font-size: small;
	}
}

.cabecalho{
	position: fixed;
	top: 0;
	width: 100%;
	height: auto;
	vertical-align: middle;
	/* padding-top: 10px; */
	background-color: white;
	overflow: visible;
	z-index: 2;
}

.logo{
	display: block;
	margin: auto;
	max-width: 400px;
	width: 70%;
	float: none;
	/* padding-bottom: 10px; */
	
}
.lang{
	position: absolute;
	/* display: inline-block: */
	bottom: 40px;
	right: 0;
	padding: 0 20px 5px 0;
	margin-right: 5px;
}

.lang p{
	float: right;
	/* margin-right: 10px; */
	text-decoration:none;
	padding: 2px 5px;
}


.lang p:hover{
	cursor: pointer;
}

.aifreime {
	position: absolute;
	border: none;
	width: 100%;
	/* min-height: 700px; */
	margin-top: 130px;
	/* bottom: 10px; */
	overflow: auto;
	height: calc(100% - 165px);
}

.rodape{
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: DarkOliveGreen;
}
.rodape a{
	text-decoration: none;
	color: white;
}

.langSel {
	background-color: DarkOliveGreen;
	color: white;
}

