.container-flutuante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000; /* Garante que fique sobre todos os outros elementos */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.botao-flutuante {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #ffffff; /* Cor do ícone */
  font-size: 32px; /* Tamanho do ícone */
  text-decoration: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

.botao-flutuante:hover {
  transform: scale(1.1);
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.35);
}

.botao-flutuante.whatsapp {
  background-color: #25d366;
}

.botao-flutuante.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}