.social-media {
  position: fixed;
  right: 0;
  width: 100%; /* Agora ocupa toda a largura da tela */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 200px;
  z-index: 999;
  pointer-events: none; /* evita que a área toda capture cliques */
}

.social-media ul {
  list-style: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: auto;
  width: 100%;
}

.social-media ul li {
  position: relative;
  margin-bottom: 15px;
}

.social-media ul li a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.social-media ul li a img {
  width: 40px;
  height: auto;
}

.social-media ul li a:hover {
  transform: scale(1.07);
}

/* TOOLTIP LATERAL À DIREITA DO ÍCONE */

.tooltip {
  position: absolute;
  background-color: #25d366;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  white-space: nowrap;
  z-index: 1000;
  margin: 40px -110px;
  width: 150px;
  text-align: center;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%; /* seta à esquerda da tooltip */
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #25d366 ;
}

.social-media ul li:hover .tooltip {
  visibility: visible;
  opacity: 1;
}



/* ///////////////////
///VERSÃO PARA BOTTOM 0
////////////////////// */

/*
.tooltip {
  position: absolute;
  background-color: #25d366;
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 1000;
  white-space: nowrap;
}

.tooltip::after {
  content: '';
  position: absolute;
  border-width: 5px;
  border-style: solid;
  border-color: #25d366 transparent transparent transparent;
  top: 100%;
  left: 50%;
  margin-left: 10px;
}

.social-media ul li:hover .tooltip {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
} */


