#footer-contain{
	position: relative;
	float: left;
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-around;
}

#footer-contain article{
	display: flex;
	flex-direction: column;
	width: 30%;
	padding: 10px;
	gap: .5em;
}

#footer-contain article h2{
	color: var(--idsecundario);
	margin-bottom: 10px;
}

#contact-footer{
	scroll-margin-top: 100px;
}

#contact-footer a{
	text-decoration: none;
	color: var(--branco);
	margin: 2px;
}

#contact-footer a:hover{
	text-decoration: underline;
}

#logo-contain{
	display: flex;
	flex-direction: column;
}

#logo-footer{
	width: 320px;
}

#slogan-footer{
	color: var(--idsecundario);
	font-size: 1.6vw;
	font-family: Verdana;
}

.camps-contact{
	position: relative;
	margin-top: 1.2rem;
}

.camps-contact span{
  position: absolute;
  left: 10px;
  top: 10px;
  color: black;
  transition: transform 0.3s ease;
  pointer-events: none;
  opacity: .4;
}

.camps-contact input:focus ~ span,
.camps-contact textarea:focus ~ span
{
	transform: translateY(-28px);
	color: whitesmoke;
	opacity: .8;
}

.camps-contact input:valid ~ span,
.camps-contact textarea:valid ~ span
{
	transform: translateY(-28px);
	color: whitesmoke;
	opacity: .8;
}

#webs-footer-contain{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1em;
	margin: 0 auto;
}

#webs-footer-contain a{
	width: 32px;
	height: 32px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	color: white;
	text-decoration: none;
	background: var(--idsecundario);
	transition: ease-in .3s;
}

#webs-footer-contain a:hover{
	color: var(--idsecundario);
	background: white;
}

#webs-footer-contain i{
	font-size: 28px;
}

@media (max-width: 999px) {

	#footer-contain{
		flex-direction: column-reverse;
		width: 100%;
		gap: 1em
	}

	#footer-contain article{
		width: calc(100% - 80px);
		margin: auto;
	}

	#logo-contain{
		border-top: thin solid gray;
	}

	#logo-footer{
		width: 320px;
	}

	#slogan-footer{
		font-size: 12pt;
	}

}

@media (max-width: 480px){

	#footer-contain article{
		width: calc(100% - 20px);
		margin: auto;
	}

}