Anteriormente fizemos o exercício do Tool-tip:
.icones-redes-sociais a:hover::after,
.icones-redes-sociais a:focus::after {
content: attr(data-tooltip);
position: absolute;
top: 100%;
right: 0;
text-indent: 0;
width: 300%;
background: black;
font-size: .75em;
padding:20px;
}
Nesse para adicionar o efeito do balãozinho eu coloco esse CSS onde? Pois coloquei com o mesmo nome, aí só aparece o triângulo, some o tool-tip
..icones-redes-sociais a:hover::after,
..icones-redes-sociais a:focus::after {
content: '';
width: 1em;
height: 1em;
background-color: black;
position: absolute;
bottom: 0;
left: 0;
transform: translateY(.5em) rotate(45deg);
}