/* ─── PROCESO ────────────────────────────────────── */
.process { background: var(--off); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.step:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(100,65,165,0.1); }

.step-num { font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 0.8rem; }
.step h3  { font-size: 0.93rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.step p   { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}
