
/* =========================================================
   10. PROCESO
   ========================================================= */
.process-section {
  padding: 90px 0;
  background-color: var(--bg-soft);
  overflow: hidden;
}

.process-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.process-title {
  margin: 0 0 16px 0;
  color: #111827;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.process-title span {
  display: block;
  color: var(--secondary);
}

.process-text {
  max-width: 620px;
  color: #667085;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.process-card {
  height: 100%;
  background-color: var(--white);
  border: 1px solid #e6e8ec;
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.04);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.07);
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(21, 106, 148, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.process-number i {
  font-size: 1.25rem;
  line-height: 1;
}

.process-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.process-card p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
  font-size: 0.96rem;
  flex-grow: 1;
}