@charset "utf-8";
/* CSS Document */

* {
	padding: 0;
	margin: 0;
}

::-webkit-scrollbar {
	width: 0;
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: transparent;
}

/* Para navegadores Firefox */
html {
	scrollbar-width: thin;
	scrollbar-color: transparent transparent;
}

body {
	scrollbar-width: thin;
	scrollbar-color: transparent transparent;	
}

/* Para navegadores Internet Explorer e Microsoft Edge */
/* Nota: A barra de rolagem não pode ser removida completamente nestes navegadores */
body {
	-ms-overflow-style: none;
}

.cortexto {
	color: rgb(26, 118, 161);
}

	

header {
	width: 100%;
	min-height: 5rem;	
	position: fixed;
	top: 0;
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: #ffffff;
	/*INICIO ALINHAMENTO CENTRO*/
	display: flex;
	justify-content: space-around;
	align-items: center;
	/*FIM ALINHAMENTO CENTRO*/
	border-bottom: 0.1rem solid silver;
	z-index: 999;
}


.menu a {
	text-decoration: none;
	/* Remover o sublinhado */
	color: #000;
	/* Cor do texto do link */

}

.menu a:hover {
	text-decoration: underline;
	/* Adicionar sublinhado quando o mouse estiver sobre o link */
}

.menu a:active {
	text-decoration: underline;
	/* Adicionar sublinhado quando o mouse estiver sobre o link */
}

/* nav img {
	max-height: 100px;
	width: auto;
	height: 10vh;
} */

nav {
	font-size: 20px;
	width: 100%;
	margin-left: 5rem;
	justify-content: space-between;
}

.imgheader {
	padding: 2px;
}

.imgheader img{
	width: 15rem;
}

#menuprincipal li {
	margin-right: 40px;
}

#menuprincipal {
	margin: auto;
}


main {
	position: fixed;
	top: 1rem;
	bottom: 0;
	right: 0;
	overflow: scroll;
	width: 100%;
}



#principal {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left:5rem; 
	padding-right: 5rem ;
	min-height: 30rem;
}

#principal .textoprincipal {
	width: 100%;	
}


#principal h1 {
	font-size: 4rem;	
	text-align: center;
}
.titulo{
	text-align: center;
    width: 100%;
	background-color:  rgb(26, 118, 161);
	color: #ffffff;
}
#sobrenos {

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-content: space-evenly;
	width: 100%;
	height: 100%;
	min-height: 45rem;
	padding-top: 3rem;
	padding-bottom: 3rem;

}
#peEsq{
	display: flex;	
	width: 20rem;
	height: 3rem;
	text-align: center;
	justify-content: center;
	margin-left: 5rem;	
	padding: 1rem;
	margin-top: 1rem;
}
#sobrenos .esquerda {
	display: flex;	
	width: 20rem;
	height: 3rem;
	text-align: center;
	justify-content: center;
	margin-left: 5rem;	
	padding: 1rem;
	margin-top: 1rem;
}
#peCen{
	display: flex;
	align-self: center;
	width: 20rem;
	height: 3rem;
	padding: 1rem;
	margin-top: 1rem;
	justify-content: center;
	text-align: center;
}

#sobrenos .centro {
	display: flex;
	align-self: center;
	width: 20rem;
	height: 3rem;
	padding: 1rem;
	margin-top: 1rem;
	justify-content: center;
	text-align: center;
}

#peDir{
	display: flex;	
	align-self: flex-end;
	width: 20rem;
	height: 3rem;
	padding: 1rem;
	margin-top: 1rem;
	margin-right: 5rem;
	justify-content: center;
	text-align: center;
}
#sobrenos .direita {
	display: flex;	
	align-self: flex-end;
	width: 20rem;
	height: 3rem;
	padding: 1rem;
	margin-top: 1rem;
	margin-right: 5rem;
	justify-content: center;
	text-align: center;
	
}


#sobrenos h1 {
	color: #ffffff;
	padding: 1rem;
}
#faleconosco h1 {
	color: #ffffff;
	padding: 1rem;
}
#sobrenos h4 {
	color: rgb(26, 118, 161);	
	text-align: center;
	margin: auto;	
}
#rfid{
	background-image: url(../assets/img/mozaico1.png);
    background-size: cover; /* opcional: ajusta o tamanho da imagem para cobrir todo o elemento */
    background-position: center; /* opcional: centraliza a imagem no elemento */
	min-height: 35rem;
}
#faleconosco {
	display: flex;
	flex-direction: column;
	text-align: left;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	min-height: 40rem;

}

.containerfaleconosco {
	padding: 3rem;
	width: 40%;

	min-width: 25rem;
}


.containerfaleconosco .form-container {
	padding: 2rem;
	border: 1px solid #adadad;
	border-radius: 10px;
}

.spinner {
	display: block;
	position: fixed;
	justify-content: center;
	top: 50%;
	width: 60px;
	height: 60px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.hidden {
	display: none;
}

#credenciamento {
	height: 100%;
	min-height: 600px;
	background-color: rgb(4, 0, 255);

}

.footer {
	background-color:  rgb(26, 118, 161);
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer p{
	padding:1rem;
	color: #ffffff;
	text-align: center;
}

.box-borda-redonda{
	background-color: #ffffff;
	border-radius: 5px;
	opacity: 70%;
	
}

@media (max-width: 300px) {
	
	#principal {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 10rem;
		min-height: 10rem;
		
	}

	
	#principal .textoprincipal {
		width: 100%;
		
	}
	
	#principal h1{
		font-size: 1.2rem;
		
		text-align: center;
		padding-bottom: 1rem;
	}
	
	header {
		position: fixed;
		min-height: 5rem;
		width: 100%;
		top: 0;
		background-color: rgb(255, 255, 255);
		display: flex;
		justify-content: flex-start;
		background-color: white;
		z-index: 999;
	}

	

	#navbarTogglerMenuPrincipal ul {
		text-align: center;
	}

	#sobrenos {

		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 3rem;
		padding-bottom: 3rem;
		min-height: 45rem;
	
	}
	

	#sobrenos .esquerda {
		text-align: center;
		min-height: 8rem;
		margin: auto;
		padding: 1rem;
		

	}
	
	#sobrenos .centro {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		padding: 1rem;
	}
	
	#sobrenos .direita {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		align-self: auto;
		padding: 1rem;
		
	}
	#peEsq{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	#peCen {
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	
	#peDir{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;
		align-self: auto;

		
	}
	#sobrenos h4 {
		color: rgb(26, 118, 161);	
	}

	#rfid{
		background-image: url(../assets/img/mozaico1.png);
		background-size: cover; /* opcional: ajusta o tamanho da imagem para cobrir todo o elemento */
		background-position: center; /* opcional: centraliza a imagem no elemento */
		min-height: 12rem;
	}
	#faleconosco {
		display: flex;
		flex-direction: column;
		text-align: left;
		justify-content: center;
		align-items: center;
		height: 100%;
		width: 100%;
		min-height: 40rem;
	
	}
	
	.containerfaleconosco {
		padding: 1rem;
		min-width: 15rem;	
		
	}
	
	
	.containerfaleconosco .form-container {
		padding: 1rem;
		border: 1px solid #adadad;
		border-radius: 10px;
		font-size: 0.8rem;
	}
	
}

@media (min-width:301px) and (max-width: 400px) {
	main{
		overflow-x: hidden;
	}
	#principal {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 15rem;
		min-height: 15rem;
		
	}
	
	#principal .textoprincipal {
		width: 100%;
		
	}
	
	#principal h1{
		font-size: 2rem;
		
		text-align: center;
		padding-bottom: 1rem;
	}
	
	header {
		position: fixed;
		min-height: 10rem;
		width: 100%;
		top: 0;
		background-color: rgb(255, 255, 255);
		display: flex;
		justify-content: space-around;
		background-color: white;
		z-index: 999;
	}

	.imgheader {
		padding: 2px;
		position: initial;
		
	}
	
	.imgheader img{
		width: 15rem;
		
	}

	#navbarTogglerMenuPrincipal ul {
		text-align: center;
	}

	#sobrenos {

		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 3rem;
		padding-bottom: 3rem;
		min-height: 45rem;
	
	}
	

	#sobrenos .esquerda {
		text-align: center;
		min-height: 8rem;
		margin: auto;
		padding: 1rem;
		

	}
	
	#sobrenos .centro {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		padding: 1rem;
	}
	
	#sobrenos .direita {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		align-self: auto;
		padding: 1rem;
		
	}
	#peEsq{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	#peCen {
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	
	#peDir{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;
		align-self: auto;

		
	}
	#sobrenos h4 {
		color: rgb(26, 118, 161);	
	}

	#rfid{
		background-image: url(../assets/img/mozaico1.png);
		background-size: cover; /* opcional: ajusta o tamanho da imagem para cobrir todo o elemento */
		background-position: center; /* opcional: centraliza a imagem no elemento */
		min-height: 12rem;
	}
	
}
@media (min-width: 401px) and (max-width:500px) {
	main{
		overflow-x: hidden;
	}
	#principal {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 15rem;
		min-height: 15rem;
		
	}
	
	#principal .textoprincipal {
		width: 100%;
		
	}
	
	#principal h1{
		font-size: 2rem;
		
		text-align: center;
		padding-bottom: 1rem;
	}
	
	header {
		position: fixed;
		min-height: 10rem;
		width: 100%;
		top: 0;
		background-color: rgb(255, 255, 255);
		display: flex;
		justify-content: space-around;
		background-color: white;
		z-index: 999;
	}

	.imgheader {
		padding: 2px;
		position: initial;
		
	}
	
	.imgheader img{
		width: 15rem;
		
	}

	#navbarTogglerMenuPrincipal ul {
		text-align: center;
	}

	#sobrenos {

		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 3rem;
		padding-bottom: 3rem;
		min-height: 45rem;
	
	}
	

	#sobrenos .esquerda {
		text-align: center;
		min-height: 8rem;
		margin: auto;
		padding: 1rem;
		

	}
	
	#sobrenos .centro {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		padding: 1rem;
	}
	
	#sobrenos .direita {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		align-self: auto;
		padding: 1rem;
		
	}
	#peEsq{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	#peCen {
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	
	#peDir{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;
		align-self: auto;

		
	}
	#sobrenos h4 {
		color: rgb(26, 118, 161);	
	}

	#rfid{
		background-image: url(../assets/img/mozaico1.png);
		background-size: cover; /* opcional: ajusta o tamanho da imagem para cobrir todo o elemento */
		background-position: center; /* opcional: centraliza a imagem no elemento */
		min-height: 12rem;
	}
	
}
@media (min-width: 501px) and (max-width:600px) {
	
	#principal {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 2rem;
		
	}
	
	#principal .textoprincipal {
		width: 100%;
		
	}
	
	#principal h1{
		font-size: 2.5rem;
		
		text-align: center;
		
	}
	
	header {
		position: fixed;
		min-height: 10rem;
		width: 100%;
		top: 0;
		background-color: rgb(255, 255, 255);
		display: flex;
		justify-content: space-around;
		background-color: white;
		z-index: 999;
	}

	.imgheader {
		padding: 2px;
		position: initial;
		
	}
	
	.imgheader img{
		width: 15rem;
		
	}

	#navbarTogglerMenuPrincipal ul {
		text-align: center;
	}

	#sobrenos {

		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 3rem;
		padding-bottom: 3rem;
		min-height: 45rem;
	
	}
	

	#sobrenos .esquerda {
		text-align: center;
		min-height: 8rem;
		margin: auto;
		padding: 1rem;
		

	}
	
	#sobrenos .centro {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		padding: 1rem;
	}
	
	#sobrenos .direita {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		align-self: auto;
		padding: 1rem;
		
	}
	#peEsq{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	#peCen {
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	
	#peDir{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;
		align-self: auto;

		
	}
	#sobrenos h4 {
		color: rgb(26, 118, 161);	
	}

	#rfid{
		background-image: url(../assets/img/mozaico1.png);
		background-size: cover; /* opcional: ajusta o tamanho da imagem para cobrir todo o elemento */
		background-position: center; /* opcional: centraliza a imagem no elemento */
		min-height: 12rem;
	}
	
}
@media (min-width: 601px) and (max-width:700px) {
	
	#principal {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 2rem;
		
	}
	
	#principal .textoprincipal {
		width: 100%;
		
	}
	
	#principal h1{
		font-size: 3rem;
		
		text-align: center;
		
	}
	
	header {
		position: fixed;
		min-height: 10rem;
		width: 100%;
		top: 0;
		background-color: rgb(255, 255, 255);
		display: flex;
		justify-content: space-around;
		background-color: white;
		z-index: 999;
	}

	.imgheader {
		padding: 2px;
		position: initial;
		
	}
	
	.imgheader img{
		width: 15rem;
		
	}

	#navbarTogglerMenuPrincipal ul {
		text-align: center;
	}

	#sobrenos {

		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 3rem;
		padding-bottom: 3rem;
		min-height: 45rem;
	
	}
	

	#sobrenos .esquerda {
		text-align: center;
		min-height: 8rem;
		margin: auto;
		padding: 1rem;
		

	}
	
	#sobrenos .centro {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		padding: 1rem;
	}
	
	#sobrenos .direita {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		align-self: auto;
		padding: 1rem;
		
	}
	#peEsq{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	#peCen {
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	
	#peDir{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;
		align-self: auto;

		
	}
	#sobrenos h4 {
		color: rgb(26, 118, 161);	
	}

	#rfid{
		background-image: url(.../assets/img/mozaico1.png);
		background-size: cover; /* opcional: ajusta o tamanho da imagem para cobrir todo o elemento */
		background-position: center; /* opcional: centraliza a imagem no elemento */
		min-height: 20rem;
	}
	
}
@media (min-width: 701px) and (max-width:800px) {
	
	#principal {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 1rem;
		
	}
	
	#principal .textoprincipal {
		width: 100%;
		
	}
	
	#principal h1{
		font-size: 3rem;
		
		text-align: center;
		
	}
	
	header {
		position: fixed;
		min-height: 10rem;
		width: 100%;
		top: 0;
		background-color: rgb(255, 255, 255);
		display: flex;
		justify-content: space-around;
		background-color: white;
		z-index: 999;
	}

	.imgheader {
		padding: 2px;
		position: initial;
		
	}
	
	.imgheader img{
		width: 15rem;
		
	}

	#navbarTogglerMenuPrincipal ul {
		text-align: center;
	}

	#sobrenos {

		display: flex;
		justify-content: center;
		align-items: center;
		padding-top: 3rem;
		padding-bottom: 3rem;
		min-height: 45rem;
	
	}
	

	#sobrenos .esquerda {
		text-align: center;
		min-height: 8rem;
		margin: auto;
		padding: 1rem;
		

	}
	
	#sobrenos .centro {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		padding: 1rem;
	}
	
	#sobrenos .direita {
		min-height: 8rem;
		margin: auto;
		text-align: center;
		align-self: auto;
		padding: 1rem;
		
	}
	#peEsq{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	#peCen {
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;

	}
	
	#peDir{
		text-align: center;
		padding: 0.5rem;
		margin: 0.5rem;
		align-self: auto;

		
	}
	#sobrenos h4 {
		color: rgb(26, 118, 161);	
	}

	#rfid{
		background-image: url(../assets/img/mozaico1.png);
		background-size: cover; /* opcional: ajusta o tamanho da imagem para cobrir todo o elemento */
		background-position: center; /* opcional: centraliza a imagem no elemento */
		min-height: 20rem;
	}
	
}
@media (min-width: 801px) and (max-width:900px){

	#principal {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 2rem;
	}
	
	#principal .textoprincipal {
		width: 100%;
		
	}
	
	#principal h1{
		font-size: 4rem;
		
		text-align: center;
		
	}
	
	header {
		position: fixed;
		min-height: 10rem;
		width: 100%;
		top: 0;
		background-color: rgb(255, 255, 255);
		display: flex;
		justify-content: space-around;
		background-color: white;
		z-index: 999;
	}

	.imgheader {
		padding: 2px;
		position: initial;
		
	}
	
	.imgheader img{
		width: 15rem;
		
	}

	#navbarTogglerMenuPrincipal ul {
		text-align: center;
	}

	#sobrenos {

		display: flex;
		flex-direction: column;
		align-items: flex-start;
		align-content: space-evenly;
		width: 100%;
		min-height: 45rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
	
	}
	#peEsq{
		display: flex;	
		width: 20rem;
		height: 3rem;
		text-align: center;
		justify-content: center;
		margin-left: 5rem;	
		padding: 1rem;
		margin-top: 1rem;
	}
	#sobrenos .esquerda {
		display: flex;	
		width: 20rem;
		height: 4rem;
		text-align: center;
		justify-content: center;
		margin-left: 5rem;	
		padding: 1rem;
		margin-top: 1rem;
	}
	#sobrenos .centro {
		display: flex;
		align-self: center;
		width: 20rem;
		height: 4rem;
		padding: 1rem;
		margin-top: 1rem;
		justify-content: center;
		text-align: center;
	}
	#sobrenos .direita {
		display: flex;	
		align-self: flex-end;
		width: 20rem;
		height: 4rem;
		padding: 1rem;
		margin-top: 1rem;
		margin-right: 0;
		justify-content: center;
		text-align: center;
		
	}
	#peCen{
		display: flex;
		align-self: center;
		width: 20rem;
		height: 3rem;
		padding: 1rem;
		margin-top: 3rem;
		justify-content: center;
		text-align: center;
	}
	
	
	#peDir{
		display: flex;	
		align-self: flex-end;
		width: 20rem;
		height: 3rem;
		padding: 1rem;
		margin-top: 3rem;
		margin-right: 0rem;
		justify-content: center;
		text-align: center;
	}
	
	#sobrenos h4 {
		color: rgb(26, 118, 161);	
		text-align: center;
		margin: 0;	
	}
	#rfid{
		background-image: url(../assets/img/mozaico1.png);
		background-size: cover; /* opcional: ajusta o tamanho da imagem para cobrir todo o elemento */
		background-position: center; /* opcional: centraliza a imagem no elemento */
		min-height: 35rem;
	}
	
}



