/*FICHEIRO CSS PARA O FOOTER SOCIAL*/ 



section {
    margin: 0px auto;
	float:left;
	margin-left:10px;
}
.soci{
	margin-top:5px;
	margin-left:5px;
    height: 50px;
	float:right;
    transition: all 0.4s ease-out;
    /*Specifies a transition effect with a slow end */
    border-radius: 50%;
}
.soci:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 4px 30px 16px 0px rgba(50,50,50,0.45);
}
.soci#fb {
    background-color:  #2372a3;
}
.soci#twitter {
    background-color:  #0084b4;
}
.soci#instagram {
    background-color:  #3f729b;
}
.ico {
	padding: 13px;
    width: 25px;
}