/* BOTONES FLOTANTES */
.botones-flotantes {
  position: fixed;
  right: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.btn-flotante {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  color: white;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.btn-flotante:hover {
  transform: translateY(-3px) scale(1.06);
  color: white;
  text-decoration: none;
}

/* WHATSAPP */
.btn-wsp-float {
  background: linear-gradient(135deg, #25d366, #128c2a);
}

/* GMAIL */
.btn-gmail-float {
  background: linear-gradient(135deg, #d6a106, #b98600);
}

@media (max-width: 768px) {
  .botones-flotantes {
    right: 14px;
    bottom: 16px;
    gap: 12px;
  }

  .btn-flotante {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}