/* É UMA ESPÉCIE DE TOOLTIP */


a {
color: blue;
text-decoration:none;
}

[aria-label] {
position: relative;
}

[aria-label]::after {
content: attr(aria-label);
display: none;
position: absolute;
bottom: 10%;
left: auto;
z-index: 5000;
pointer-events: none;
padding: 15px;
text-decoration: none;
width: 300px;
border-radius: 5px;
box-shadow: 6px 6px 20px grey;
font-size: .9em;
color: #000;
border: 1px solid #668290;
background: #CCD5DA;
}

[aria-label]:hover::after {
display: block;
}

/* no html

<a href="#" aria-label="A explicação aqui">O destaque</a> */