/* ═══════════════════════════════════════
   De tu Ser — Menú Flotante 3D
   Versión: 1.0
═══════════════════════════════════════ */

.fab-stage {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.fab-items {
  position: absolute;
  bottom: 62px;
  right: 0;
  perspective: 900px;
}

.fab-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 0.5px solid rgba(201, 169, 110, 0.45);
  border-radius: 10px;
  padding: 9px 16px 9px 11px;
  cursor: pointer;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.8) rotateX(-45deg);
  transform-origin: right bottom;
  pointer-events: none;
  min-width: 160px;
  text-decoration: none;
  box-sizing: border-box;
}

.fab-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(201, 169, 110, 0.12);
  color: #C9A96E;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fab-lbl {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1C1C1E;
  border: none;
  cursor: pointer;
  color: #C9A96E;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.fab-btn:hover {
  background: #2a2a2a;
}

.fab-btn i {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Responsive: en móvil sube un poco para no tapar el WhatsApp */
@media (max-width: 600px) {
  .fab-stage {
    bottom: 80px;
    right: 16px;
  }
}
