/* Servicios FAB - menú flotante de categorías */
.svc-fab-btn {
  position: fixed;
  left: 1.2rem;
  bottom: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a779 0%, #a68753 100%);
  color: #fff;
  border: none;
  box-shadow: 0 6px 24px rgba(91,44,58,.3);
  cursor: pointer;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-fab-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(91,44,58,.4); }
.svc-fab-btn:focus-visible { outline: 3px solid #5b2c3a; outline-offset: 2px; }
.svc-fab-label {
  position: absolute;
  left: 100%;
  margin-left: 12px;
  background: #3d1d27;
  color: #fff;
  padding: .35rem .75rem;
  border-radius: 6px;
  font-size: .78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  font-family: 'Inter', system-ui, sans-serif;
}
.svc-fab-btn:hover .svc-fab-label,
.svc-fab-btn:focus .svc-fab-label { opacity: 1; }

/* En desktop el label se ve siempre con leve opacidad para identificación */
@media (min-width: 768px) {
  .svc-fab-label { opacity: .92; }
  .svc-fab-btn { width: auto; padding: 0 1.1rem 0 .85rem; border-radius: 28px; height: 52px; gap: .5rem; }
  .svc-fab-btn .svc-fab-label {
    position: static; margin-left: 0; background: transparent; color: #fff; padding: 0;
    font-size: .82rem; font-weight: 600; letter-spacing: .03em;
  }
}

.svc-fab-menu {
  position: fixed;
  left: 1.2rem;
  bottom: 5.5rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: .5rem 0;
  min-width: 240px;
  z-index: 999;
  opacity: 0;
  transform: translateY(8px) scale(.95);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  border: 1px solid #f0e6dc;
}
.svc-fab-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.svc-fab-menu h4 {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  color: #5b2c3a;
  padding: .6rem 1.1rem .3rem;
  border-bottom: 1px solid #f4ede0;
  margin: 0 0 .3rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.svc-fab-menu a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 1.1rem;
  color: #3d1d27;
  text-decoration: none;
  font-size: .92rem;
  font-family: 'Inter', system-ui, sans-serif;
  transition: background .15s;
}
.svc-fab-menu a:hover { background: #faf6f3; color: #5b2c3a; }
.svc-fab-menu a span.ico { font-size: 1.1rem; opacity: .8; }

@media (max-width: 600px) {
  .svc-fab-btn { left: .8rem; bottom: 1rem; width: 50px; height: 50px; }
  .svc-fab-menu { left: .8rem; bottom: 4.8rem; min-width: 220px; }
  .svc-fab-label { display: none; }
}
