.cp-floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.cp-floating-support,
.cp-floating-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: none;
  color: #fff;
  background: linear-gradient(180deg, #8bdc65 0%, #6fbd4f 100%);
  box-shadow: 0 8px 22px rgba(111,189,79,.32);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: transform .22s ease, box-shadow .22s ease;
}

.cp-floating-support {
  padding: 0 20px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
}

.cp-floating-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 46px;
}

.cp-floating-support:hover,
.cp-floating-top:hover {
  background: linear-gradient(180deg, #9ee876 0%, #7fcf5d 100%);
  box-shadow: 0 12px 28px rgba(111,189,79,.42);
  transform: translateY(-2px);
  color: #fff;
}

/* ── Modal de soporte ────────────────────────────────────────── */
.cp-support-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.cp-support-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cp-support-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  cursor: pointer;
}

.cp-support-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  padding: 28px 26px 24px;
  border-radius: 20px;
  border: 1px solid rgba(23,23,23,.08);
  background: #fff;
  box-shadow: 0 24px 56px rgba(0,0,0,.14);
}

.cp-support-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .95rem;
  transition: background .18s;
}

.cp-support-modal__close:hover { background: #e5e7eb; color: #171717; }

.cp-support-modal__eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6fbd4f;
  margin-bottom: 8px;
}

.cp-support-modal__header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #171717;
  margin: 0 0 6px;
  padding-right: 32px;
}

.cp-support-modal__header p {
  font-size: .9rem;
  color: #6b7280;
  margin: 0 0 22px;
  line-height: 1.55;
}

.cp-support-modal__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-support-modal__option {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(23,23,23,.08);
  background: #fff;
  color: #171717;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.cp-support-modal__option:hover {
  transform: translateY(-2px);
  border-color: #8bdc65;
  background: #f4fbee;
}

.cp-support-modal__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg,#d8f1cb,#b8e89a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #3a8c27;
  flex-shrink: 0;
}

.cp-support-modal__copy strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 2px;
}

.cp-support-modal__copy small {
  font-size: .8rem;
  color: #6b7280;
  line-height: 1.4;
}

body.is-support-modal-open { overflow: hidden; }

@media (max-width: 480px) {
  .cp-floating-support span { display: none; }
  .cp-floating-support { width: 46px; padding: 0; border-radius: 50%; }
}
