/* ============================================================
   PRECIOS
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative; border-radius: var(--r-lg); padding: 28px;
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-glow); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-cta); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 11.5px;
  padding: 4px 18px; border-radius: 999px; white-space: nowrap;
}
.price-ic { width: 50px; height: 50px; border-radius: var(--r-md); display: grid; place-items: center; margin-bottom: 18px; }
.price-ic svg { width: 24px; height: 24px; color: #fff; }
.price-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; }
.price-desc { font-size: 14px; color: var(--ink-2); margin-bottom: 22px; line-height: 1.5; }
.price-amount { margin-bottom: 20px; }
.price-from { font-size: 12px; color: var(--ink-3); display: block; margin-bottom: 4px; font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; }
.price-num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; letter-spacing: -0.04em; background: var(--grad-cta); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-period { font-size: 14px; color: var(--ink-3); }
.price-hr { border: 0; border-top: 1px solid var(--border); margin: 16px 0; }
.price-feats { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.price-feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--ink-2); }
.price-feats .ck { width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); margin-top: 2px; }
.price-feats .ck svg { width: 12px; height: 12px; }
.price-cta { margin-top: auto; padding-top: 22px; }
.price-note { text-align: center; font-size: 13px; color: var(--ink-3); margin-top: clamp(20px,3vw,32px); }
.price-note a { color: var(--accent); }

