/* ── Sticky CTA Pill (flotante, estilo Serenna) ─────────────── */
.sticky-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translate(-50%, 200%);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .3s ease;
  max-width: calc(100% - 32px);
  white-space: nowrap;
}

.sticky-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-bar__msg {
  font-size: 13.5px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--accent, #D63384);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease;
  flex-shrink: 0;
}

.sticky-bar__cta:hover {
  background: #b8276e;
}

.sticky-bar__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #666;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  margin-right: -2px;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}

.sticky-bar__close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
}

/* Mobile: ocultar texto, queda pill con CTA + X */
@media (max-width: 600px) {
  .sticky-bar {
    bottom: 16px;
    padding: 8px 8px 8px 18px;
    gap: 10px;
  }
  .sticky-bar__msg {
    font-size: 12.5px;
    max-width: 42vw;
  }
  .sticky-bar__cta {
    padding: 9px 18px;
    font-size: 12.5px;
  }
}

@media (max-width: 420px) {
  .sticky-bar__msg {
    display: none;
  }
  .sticky-bar {
    padding: 6px 6px 6px 6px;
    gap: 6px;
  }
}
