html {
	scroll-behavior: smooth;
}
.azulFoeClaro{
	background-color:#6db5f1;
}
.azulFoe{
	background-color:#3366bc;
	color: #fff;
}
.textoAzulFoe{
	color:#3366bc;
}
.upper{
	text-transform: uppercase;
}
.lower{
	text-transform: lowercase;
}
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}