.boton-social-flotante {
  position: fixed;
  bottom: 25px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 9999;
}

.boton-social-flotante .btn-principal {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.boton-social-flotante .btn-principal:hover {
  transform: scale(1.1);
  background-color: #ffffff;
}

.boton-social-flotante .iconos-redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    max-height 0.3s ease;
}

.boton-social-flotante.abierto .iconos-redes {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
  pointer-events: auto;
}

.boton-social-flotante .iconos-redes a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px; 
  height: 74px;
  border-radius: 50%;
  text-decoration: none;
}

.boton-social-flotante .iconos-redes a .icono-red {
  width: 60px; 
  height: 60px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.boton-social-flotante .iconos-redes a:hover .icono-red {
  transform: scale(1.1);
}

.boton-social-flotante img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 480px) {
  .boton-social-flotante .iconos-redes a {
    width: 64px;
    height: 64px;
  }

  .boton-social-flotante .iconos-redes a .icono-red {
    width: 52px;
    height: 52px;
  }
}
