/* ---------- PROGRAMS ---------- */
.programs{padding:90px 0;background:linear-gradient(180deg, var(--teal-pale) 0%, var(--cream) 100%);}
.program-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:26px;
}
.program-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:34px 30px;
  border:1px solid rgba(15,58,66,.07);
  transition:transform .25s ease, box-shadow .25s ease;
  display:flex;flex-direction:column;
  height:100%;
}
.program-card:hover{transform:translateY(-6px);box-shadow:0 30px 50px -30px rgba(15,58,66,.35);border-color:rgba(200,164,93,.35);}
.program-icon{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg, var(--teal-deep), var(--brand-blue));
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
  transition:transform .25s ease;
}
.program-card:hover .program-icon{transform:scale(1.08) rotate(-4deg);}
.program-icon svg{width:26px;height:26px;color:var(--gold-light);}
.program-card h3{font-size:1.28rem;margin-bottom:10px;}
.program-card p{color:var(--ink-soft);font-size:.97rem;flex-grow:1;}
.program-card .link{
  margin-top:16px;font-weight:700;font-size:.9rem;color:var(--teal-mid);
  display:inline-flex;align-items:center;gap:6px;
}

/* ---------- ESCUELA DE LIDERESVIP: QUIÉNES SOMOS / MISIÓN / VISIÓN ---------- */
.program-about{
  max-width:820px;
  margin:0 auto 56px;
  text-align:center;
}
.program-about-lead{
  font-size:1.08rem;
  line-height:1.7;
  color:var(--ink-soft);
  margin-bottom:40px;
}

.program-pillars{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.program-pillar{
  background:var(--white);
  border:1px solid rgba(15,58,66,.08);
  border-radius:16px;
  padding:22px 18px;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease;
}
.program-pillar:hover{transform:translateY(-4px);box-shadow:0 20px 36px -24px rgba(15,33,41,.35);}
.program-pillar-number{
  display:inline-flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:50%;
  background:rgba(200,164,93,.18);color:var(--brand-blue);
  font-weight:700;font-size:.85rem;
  margin-bottom:12px;
}
.program-pillar h4{font-size:.95rem;margin:0;color:var(--ink);}

/* ---------- ESCUELA DE LIDERAZGO: DOS BRAZOS ---------- */
.program-grid-arms{
  grid-template-columns:repeat(2,1fr);
}
.program-card-arm{
  background:linear-gradient(155deg, var(--brand-blue) 0%, #0F3252 100%);
  border-color:rgba(200,164,93,.3);
  align-items:center;
  text-align:center;
  gap:14px;
  padding:44px 34px;
  position:relative;
  overflow:hidden;
}
.program-card-arm::before{
  content:'';
  position:absolute;inset:0;
  background:radial-gradient(circle at 85% 10%, rgba(200,164,93,.22), transparent 55%);
  pointer-events:none;
}
.program-card-arm:hover{border-color:rgba(200,164,93,.6);}
.program-card-arm .arm-badge,
.program-card-arm .vip-logo{
  position:relative;z-index:1;
  width:96px;height:96px;
  border-radius:50%;
  background:var(--white);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 16px 32px -12px rgba(0,0,0,.4);
  transition:transform .3s ease;
}
.program-card-arm .vip-logo{padding:8px;}
.program-card-arm .arm-badge svg{width:42px;height:42px;color:var(--brand-blue);}
.program-card-arm:hover .arm-badge,
.program-card-arm:hover .vip-logo{transform:scale(1.05);}
.program-card-arm .arm-eyebrow{
  position:relative;z-index:1;
  font-size:.72rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold-light);
}
.program-card-arm h3{position:relative;z-index:1;color:var(--white);font-size:1.28rem;margin:0;}
.program-card-arm p{position:relative;z-index:1;color:rgba(255,255,255,.75);font-size:.95rem;flex-grow:0;}
.program-card-arm .btn{position:relative;z-index:1;margin-top:6px;}