/* Card de upsell del Plan Pro, compartida por los módulos que lo bloquean:
   Precios (05), Vendedores (07) y Compras (08). El HTML lo arma
   js/upsell-pro.js — ver ese archivo. Depende de las variables de tema
   (--surface, --border, --accent-2, --side-accent, --text, --text-2, --mono,
   --warn-text) ya definidas en el <style> de cada página. */

.upsell-badge {
  display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 13px;
  border-radius: 100px; background: var(--surface); border: 1px solid var(--border); flex-shrink: 0;
}
.upsell-badge span { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; color: var(--warn-text); }
.upsell-card {
  background: linear-gradient(160deg, #001e3a 0%, #004173 100%);
  border-radius: 20px; padding: clamp(26px,3vw,34px); color: #fff;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 54px rgba(0,40,80,.24);
}
.upsell-tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  height: 26px; padding: 0 12px; border-radius: 100px;
  background: rgba(124,196,232,.16); border: 1px solid rgba(124,196,232,.32);
}
.upsell-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--side-accent); }
.upsell-tag span { font-size: 10px; font-weight: 800; letter-spacing: .1em; color: var(--side-accent); }
.upsell-h2 { font-size: clamp(21px,2.4vw,26px); font-weight: 900; letter-spacing: -.025em; line-height: 1.2; margin-top: 20px; }
.upsell-p  { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.66); margin-top: 12px; max-width: 460px; }
.upsell-benefits { display: flex; flex-direction: column; gap: 11px; margin: 24px 0 26px; }
.upsell-benefit { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.88); }
.upsell-benefit svg { flex-shrink: 0; margin-top: 3px; }
.upsell-foot { margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); }
.upsell-price-row { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.upsell-price-lbl { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.45); margin-bottom: 6px; }
.upsell-price-diff { font-size: 32px; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.upsell-price-diff-sub { font-size: 13px; color: rgba(255,255,255,.5); }
.upsell-price-full { margin-left: auto; text-align: right; }
.upsell-price-full-lbl { font-size: 12px; color: rgba(255,255,255,.45); }
.upsell-price-full-val { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--side-accent); margin-top: 3px; }
.upsell-cta {
  height: 52px; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(90deg, var(--accent-2), #06b6d4); color: #fff; border-radius: 12px;
  font-size: 15px; font-weight: 800; box-shadow: 0 6px 22px rgba(9,121,176,.42); transition: box-shadow .15s;
}
.upsell-cta:hover { box-shadow: 0 10px 32px rgba(9,121,176,.6); }
.upsell-cta-foot { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.upsell-cta-foot span:first-child { font-size: 11.5px; color: rgba(255,255,255,.5); }
.upsell-cta-foot .sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); }
.upsell-cta-foot a { font-size: 11.5px; font-weight: 700; color: var(--side-accent); }
.upsell-cta-foot a:hover { color: #fff; }
.upsell-info {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px 22px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,230px), 1fr)); gap: 18px 28px;
}
.upsell-info-item { display: flex; gap: 11px; }
.upsell-info-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent-2); }
.upsell-info-title { font-size: 12.5px; font-weight: 700; color: var(--text); }
.upsell-info-sub { font-size: 12px; color: var(--text-2); line-height: 1.5; margin-top: 2px; }
