html, body {
	font-family: "Cera Pro", sans-serif;
	margin: 0px;
	padding: 0px;
	height: 100vh;
	min-height: 100vh;
}

body {
	background-color: #ffffff;
}

.bt-link-login{
	display: inline-block;
	text-decoration: none;
	all: unset;
	position: absolute;
	top: 10px;
	right: 10px;
	margin: 0px;
	padding: 5px 10px;
	border: 2px solid #13335a;
	background-color: #ffffffcc;
	color: #13335a;
	border-radius: 4px;
	z-index: 999;
}

.bt-link-login:hover{
	cursor: pointer;
	background-color: #13335a;
	color: #ffffff;
}

.container-pagina{
	display: flex;
	text-align: center;
	height: 100%;
	width: 100%;
}

.container-header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffff00;
    text-align: center;
	z-index: 100;
}

.texto-titulo-site{
	position: absolute;
	top: 50px;
	width: 100%;
	text-align: center;
	color: #13335a;
	font-size: 4rem;
	font-weight: 600;
	z-index: 500;
}

.container-body{
	display: flex;
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: #ffffff00;
	z-index: 2;
	text-align: center;
}

.img-fundo{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
	z-index: 1;
}

.img-pessoas{
	position: absolute;
	top: 55%;
	width: 40%;
	height: auto;
	z-index: 16;
	margin: 0px 30%;
}

.container-footer{
	display: flex;
	align-items: center;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #ffffff00;
    color: white;
	z-index: 12;
}

.img-logo-prefeitura{
	position: absolute;
	bottom: 4%;
	width: 40%;
	height: auto;
	margin: 0px 30%;
	padding: 0px;
	z-index: 17;
}

.img-footer{
	position: relative;
	bottom: 0;
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;
	z-index: 15;
}

.img-header{
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px;
}





/* MEDIA QUERIES */

@media only screen and (min-width: 1367px) {

	.img-pessoas{
		position: absolute;
		top: 50%;
		width: 30%;
		height: auto;
		z-index: 16;
		margin: 0px 35%;
	}
	
}

@media only screen and (min-width: 768px) and (max-width: 959px) {

	.texto-titulo-site{
		top: 90px;
	}
	
	.img-pessoas{
		position: absolute;
		width: 80%;
		height: auto;
		margin: 0px 10%;
	}
	
	.img-footer{
		height: 180px;
	}
	
	.img-logo-prefeitura{
		bottom: 15px;
		width: 70%;
		margin: 0px 15%;
	}
	
	.img-header{
		width: 100%;
		height: 180px;
	}

}

@media only screen and (max-width: 767px) {

	.texto-titulo-site{
		top: 40px;
		font-size: 3rem;
		font-weight: 600;
		z-index: 500;
	}
	
	.img-pessoas{
		position: absolute;
		width: 80%;
		height: auto;
		margin: 0px 10%;
	}
	
	.img-footer{
		height: 120px;
	}
	
	.img-logo-prefeitura{
		bottom: 15px;
		width: 70%;
		margin: 0px 15%;
	}
	
	.img-header{
		width: 100%;
		height: 120px;
	}

}

