/* ── Soporte flotante (FAQ + WhatsApp) ──────────────────────── */

.copa-soporte {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
}

.copa-soporte__fab {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  background: #25D366;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.copa-soporte__fab:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.copa-soporte__panel {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: 280px;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.copa-soporte__panel.is-open {
  display: flex;
}

.copa-soporte__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--night-700);
}

.copa-soporte__panel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.copa-soporte__panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.copa-soporte__panel-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.copa-soporte__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition-fast);
}

.copa-soporte__option:last-child {
  border-bottom: none;
}

.copa-soporte__option:hover {
  background: #FAFAFA;
}

.copa-soporte__option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.copa-soporte__option-icon--faq {
  background: var(--stihl-orange-50);
  color: var(--stihl-orange);
}

.copa-soporte__option-icon--whatsapp {
  background: #E7F8EF;
  color: #25D366;
}

.copa-soporte__option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.copa-soporte__option-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #1A1A1A;
}

.copa-soporte__option-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: #999;
}

@media (max-width: 640px) {
  .copa-soporte {
    right: 16px;
    bottom: 16px;
  }

  .copa-soporte__panel {
    width: calc(100vw - 32px);
    max-width: 300px;
  }
}
