.links{
	width: 100%;
	display:block;
	padding: 80px 0px 0px;
	color: var(--color-white);
	background-color: var(--color-gray-900);
	text-align:center;
	background-image: url('../../imagens/fundo_links.png');
	background-attachment: fixed;
	background-position: top right;
	background-repeat: no-repeat;
	background-size: contain;
	position:relative;
}
.links:after{
	content: '';
	width: 100vw;
	height: 100vh;
	z-index:-1;
	background-color: #000000a1;
	position: fixed;
	top:0;
	left:0;
}
.links .conteudo{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
}
.links .conteudo .logo{
	width: 100%;
	max-width: 120px;
	aspect-ratio: 1;
}
.links .conteudo .logo img{
	width: 100%;
	display:block;
	background-color: var(--color-white);
	border-radius: 50%;
	border: 2px solid var(--color-white);
	max-height: initial;
}
.links .conteudo h1{
	margin: 20px 0 0;
	font-family: var(--font-body);
	font-size: 48px;
}
.links .conteudo h2{
	margin: 5px 0 35px 0;
	font-family: var(--font-body);
	font-size: 30px;
}
.links .conteudo a{
	width: 100%;
	border: 1px solid var(--color-white);
	padding: 0 25px;
	max-width: 450px;
	border-radius: 30px;
	height: 60px;
	font-family: var(--font-body);
	display:flex;
	justify-content:center;
	align-items: center;
	margin: 0 auto 25px auto;
	background-color: var(--color-white);
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	transition: 0.2s;
	color: var(--color-blue-dark);
}
.links .conteudo a:hover{
	box-shadow: 0px 0px 21px 0px var(--color-white);
	background-color: var(--color-blue-dark);
	color: var(--color-white);
}
.links .redes-sociais{
	display: inline-flex;
	justify-content: center;
	margin-top: 80px;
}
.links .redes-sociais a{
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--color-white);
	border-radius: 50%;
	margin-right: 10px;
	transition: var(--transition-slow);
	
}
.links .redes-sociais a i{
	color: var(--color-white);
	font-size: 14px;
	transition: var(--transition-slow);
}
.links .redes-sociais a:last-child{
	margin-right: 0px;
}
.links .redes-sociais a:hover{
	background-color: var(--bg-secondary);
	border: 1px solid var(--bg-secondary);
}
.links .redes-sociais a:hover i{
	color: var(--color-blue-dark);
}
.links p{
	font-size: 14px;
	margin-top: 15px;
	text-align: center;
	margin: 20px 0 40px 0;
}
@media only screen and (min-width:768px){
	
}

@media only screen and (min-width: 1024px){
	
}