#botao-flutuante-social {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

#botao-flutuante-social a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

#botao-flutuante-social a:hover {
  transform: scale(1.1);
}

#botao-flutuante-social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}