/* ── v10.4.4 — Logos reales · Planes · Matriz beneficios ─── */

/* Logo chips (uniform white slots for real logos) */
.logo-chip {
  background: #fff; border: 1px solid var(--ink-100); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.logo-chip img { width: 88%; height: 82%; object-fit: contain; }
.logo-chip--mono {
  font-family: var(--f-d); font-weight: 900; color: #fff;
  background: linear-gradient(135deg, var(--p1), var(--cta)); border: none;
}

/* Marquee slots with real logos */
.socio-slot--img {
  background: #fff !important; border: 1px solid var(--ink-100) !important;
  padding: 12px 20px !important; display: flex; align-items: center; justify-content: center;
}
.socio-slot--img img {
  max-width: 120px; max-height: 40px; object-fit: contain;
}

/* ── Planes de membresía ─────────────────────────────────── */
.plans-44 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  align-items: stretch; margin-top: 3rem;
}
@media (max-width: 1080px) { .plans-44 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .plans-44 { grid-template-columns: 1fr; } }
.plan-44 {
  position: relative; display: flex; flex-direction: column; gap: 1.25rem;
  border: 1px solid var(--ink-100); border-radius: 20px; padding: 2rem 1.75rem;
  background: #fff; transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.plan-44:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(11,27,44,.1); }
.plan-44__hex {
  width: 44px; height: 49px; display: grid; place-items: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-family: var(--f-d); font-weight: 900; font-size: .8rem; color: #fff;
}
.plan-44 h3 { font-family: var(--f-d); font-weight: 800; font-size: 1.7rem; color: var(--ink-900); margin: 0; letter-spacing: -.01em; }
.plan-44__sub { font-size: .82rem; color: var(--ink-400); line-height: 1.5; }
.plan-44 ul { display: flex; flex-direction: column; gap: .6rem; flex: 1; margin: 0; padding: 0; list-style: none; }
.plan-44 ul li {
  font-size: .85rem; color: var(--ink-700); line-height: 1.5;
  padding-left: 1.35rem; position: relative;
}
.plan-44 ul li::before {
  content: ''; position: absolute; left: 2px; top: 6px; width: 8px; height: 9px;
  background: var(--cta); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.plan-44--featured {
  border: 1px solid var(--ink-100);
}
.plan-44--featured:hover { box-shadow: 0 18px 44px rgba(11,27,44,.1); }
.plan-44__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--cta); color: #fff; white-space: nowrap;
  font-family: var(--f-d); font-weight: 700; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 99px; box-shadow: 0 6px 16px rgba(1,117,201,.35);
}
.plan-44--dark {
  background: linear-gradient(160deg, #071828, #0d2c4a);
  border-color: rgba(85,187,235,.22);
}
.plan-44--dark h3 { color: #fff; }
.plan-44--dark .plan-44__sub { color: rgba(255,255,255,.5); }
.plan-44--dark ul li { color: rgba(255,255,255,.72); }
.plan-44--dark ul li::before { background: var(--p1); }

/* ── Matriz de beneficios ────────────────────────────────── */
.bmatrix-wrap { overflow-x: auto; margin-top: 3rem; border: 1px solid var(--ink-100); border-radius: 16px; }
.bmatrix { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff; }
.bmatrix th, .bmatrix td { padding: .9rem 1.1rem; text-align: center; border-bottom: 1px solid var(--ink-100); }
.bmatrix th {
  font-family: var(--f-d); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-500); background: var(--ink-50);
}
.bmatrix th:first-child, .bmatrix td:first-child {
  text-align: left; font-size: .85rem; color: var(--ink-700); font-weight: 500;
  position: sticky; left: 0; background: #fff; z-index: 1;
  border-right: 1px solid var(--ink-100); min-width: 220px;
}
.bmatrix th:first-child { background: var(--ink-50); }
.bmatrix tr:last-child td { border-bottom: none; }
.bmatrix .col-feat { background: rgba(1,117,201,.05); }
.bmatrix th.col-feat { color: var(--cta); }
.bmatrix th.is-hover, .bmatrix td.is-hover { background: rgba(1,117,201,.07); transition: background .15s; }
.bmatrix th.is-hover { color: var(--cta); cursor: default; }
.bmatrix th { cursor: default; }
.bm-yes {
  display: inline-block; width: 12px; height: 13.5px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.bm-yes--ind   { background: var(--ink-300); }
.bm-yes--std   { background: var(--cta); }
.bm-yes--prem  { background: var(--c1); }
.bm-yes--plat  { background: linear-gradient(135deg,#7098b4,#3f6d92); }
.bm-no { display: inline-block; width: 10px; height: 2px; background: var(--ink-200); border-radius: 1px; }

/* ── Individual ficha (user-card) extras ─────────────────── */
.pf-user-actions { display: flex; gap: .6rem; }
.pf-user-actions .btn { flex: 1; justify-content: center; font-size: .8rem; padding: .7rem .9rem; }

/* ── Beneficios — grid distintivo + CTA "motor" ──────────── */
.benef-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; margin-top:2.5rem; }
.benef-card {
  background:#fff; border:1px solid var(--ink-100); border-radius:16px; padding:1.75rem 1.6rem;
  transition:transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
}
.benef-card:hover { transform:translateY(-4px); box-shadow:0 18px 40px -20px rgba(11,27,44,.25); border-color:transparent; }
.benef-card__ico {
  width:40px; height:40px; border-radius:11px; display:grid; place-items:center; color:#fff; margin-bottom:1.15rem; padding:9px; box-sizing:border-box;
  background:linear-gradient(135deg,var(--p1),var(--cta));
}
.benef-card__ico svg { width:100%; height:100%; }
.benef-card:nth-child(3n+2) .benef-card__ico { background:linear-gradient(135deg,var(--c1),var(--c2)); }
.benef-card:nth-child(3n+3) .benef-card__ico { background:linear-gradient(135deg,var(--navy-600),var(--navy-800)); }
.benef-card h4 { font-family:var(--f-d); font-weight:700; font-size:1.02rem; color:var(--ink-900); margin-bottom:.4rem; }
.benef-card p { font-size:.85rem; color:var(--ink-500); line-height:1.6; }
@media(max-width:900px){ .benef-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .benef-grid{ grid-template-columns:1fr; } }
.benef-cta {
  margin-top:1.5rem; background:linear-gradient(150deg,#0b2340,#070f1a); border-radius:20px;
  padding:clamp(2.25rem,4vw,3.25rem) clamp(2rem,4vw,3rem); display:flex; align-items:center; justify-content:space-between;
  gap:2.5rem; flex-wrap:wrap;
}
.benef-cta h3 { font-family:var(--f-d); font-weight:700; font-size:clamp(1.6rem,3vw,2.2rem); color:#fff; margin-bottom:.5rem; letter-spacing:-.01em; }
.benef-cta p { font-size:1rem; color:rgba(255,255,255,.62); max-width:56ch; line-height:1.65; }
.benef-cta .btn { flex-shrink:0; padding:1.1rem 2rem; font-size:1rem; }

/* ── Tier separator — encabezado de sección prominente ───── */
.tier-sep { margin-top: 4rem; display:flex; align-items:center; gap:1.5rem; }
.tier-sep:first-of-type { margin-top: 0; }
.tier-sep__label {
  display:inline-flex; align-items:center; gap:.85rem; flex-shrink:0;
  font-family:var(--f-d); font-weight:800; font-size:clamp(1.3rem,2.2vw,1.6rem);
  letter-spacing:-.01em; text-transform:none;
  padding:.7rem 1.5rem .7rem 1.1rem; border-radius:99px;
}
.tier-sep__label::before { content:''; width:15px; height:17px; clip-path:var(--hex-pointy); flex-shrink:0; }
.tier-sep--platinum .tier-sep__label {
  color:#2f5675; background:linear-gradient(120deg,rgba(112,152,180,.16),rgba(63,109,146,.05));
  font-size:clamp(1.55rem,2.7vw,1.95rem) !important; letter-spacing:.01em;
}
.tier-sep--platinum .tier-sep__label::before { background:linear-gradient(135deg,#7098b4,#3f6d92); width:18px; height:20px; }
.tier-sep--premium .tier-sep__label { color:#a06400; background:linear-gradient(120deg,rgba(243,146,0,.14),rgba(243,146,0,.04)); }
.tier-sep--premium .tier-sep__label::before { background:var(--c1); }
.tier-sep--estandar .tier-sep__label { color:var(--cta); background:linear-gradient(120deg,rgba(1,117,201,.12),rgba(1,117,201,.03)); }
.tier-sep--estandar .tier-sep__label::before { background:var(--cta); }
.tier-sep--individual .tier-sep__label { color:var(--ink-500); background:var(--ink-50); }
.tier-sep--individual .tier-sep__label::before { background:var(--ink-300); }
.hdr__logo-img { height: 52px; width: auto; display: block; }
@media (max-width: 640px) { .hdr__logo-img { height: 40px; } }
.foot__logo-img { height: 40px; width: auto; display: block; margin-bottom: 1rem; }

/* Platinum cover logo chip */
.pf-cover-chip { width: 132px; height: 76px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
