#mod10 {
	display: grid;
	grid-template-columns: repeat(20, 1fr);
	column-gap: 1%;

	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: 0px auto;
	padding-bottom: 2%;
	width: 100%;
	max-width: 1080px;
}

/*Voltar ao topo*/

#mod10 > img:nth-child(1) { 
	grid-column: 20 / 21;
	display: none;

	margin-bottom: 25%;
	width: 100%;
	opacity: 0.5;
	cursor: pointer;	
}

#mod10 > img:nth-child(1):hover {
	opacity: 1;
	transition: 0.5s;
}

 /*WhatsApp*/

#mod10 a {
	grid-column: 20 / 21;

	width: 100%;
}

#mod10 a img {
	margin-bottom: 0%;
	width: 100%;
	opacity: 0.75;
	cursor: pointer;
}

#mod10 a img:hover {
	opacity: 1;
}

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

	#mod10 {
		padding-bottom: 10%;
	}

	#mod10 img:nth-child(1), #mod10 a {
		grid-column: 18 / 20;
	}

	#mod10 img {
		opacity: 1;
	}

}