
/* ── PROCESO ───────────────────────────────────────── */
.proc-section {
  padding: 110px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Franja lateral izquierda degradada */
.proc-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgb(234,179,52) 25%,
    rgb(11,47,144) 75%,
    transparent 100%);
}

/* Círculo de fondo decorativo */
.proc-section::after {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(11,47,144,.04) 0%,
    transparent 65%);
  pointer-events: none;
}

.proc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── CABECERA ── */
.proc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 5.5rem;
}

.proc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(234,179,52,.1);
  border: 1px solid rgba(234,179,52,.3);
  color: rgb(234,179,52);
  border-radius: 100px;
  padding: .38rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.proc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgb(234,179,52);
  animation: proc-blink 1.8s infinite;
}
@keyframes proc-blink { 0%,100%{opacity:1} 50%{opacity:.15} }

.proc-h2 {
  font-family: Nunito, Arial, sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 800;
  color: #1e293b;
  line-height: 1.12;
  letter-spacing: -.5px;
  margin: 0;
}
.proc-h2 span { color: rgb(11,47,144); }

.proc-head-right {}
.proc-desc {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* Números resumen */
.proc-kpis {
  display: flex;
  align-items: center;
  gap: .1rem;
  background: #f8faff;
  border: 1px solid rgba(11,47,144,.09);
  border-radius: 16px;
  overflow: hidden;
}
.proc-kpi {
  flex: 1;
  padding: 1.2rem 1.1rem;
  text-align: center;
  position: relative;
}
.proc-kpi + .proc-kpi::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(11,47,144,.1);
}
.proc-kpi-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: rgb(11,47,144);
  line-height: 1;
  display: block;
  margin-bottom: .2rem;
}
.proc-kpi-label {
  font-size: .72rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ── CUERPO GRID ── */
.proc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* TIMELINE */
.proc-timeline { position: relative; }
.proc-timeline::before {
  content: '';
  position: absolute;
  left: 21px; top: 26px; bottom: 26px;
  width: 2px;
  background: linear-gradient(180deg,
    rgb(234,179,52) 0%,
    rgb(11,47,144) 100%);
  border-radius: 2px;
}

.proc-step {
  display: flex;
  gap: 1.3rem;
  padding-bottom: 1.6rem;
}
.proc-step:last-child { padding-bottom: 0; }

.proc-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(234,179,52), rgb(205,150,25));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .9rem;
  color: rgb(4,18,60);
  box-shadow: 0 4px 16px rgba(234,179,52,.5);
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: transform .2s, box-shadow .2s;
}
.proc-step:hover .proc-num {
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(234,179,52,.6);
}

.proc-card {
  background: #fff;
  border: 1px solid rgba(11,47,144,.09);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  flex: 1;
  transition: all .28s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
/* Línea izquierda oculta que aparece en hover */
.proc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, rgb(234,179,52), rgb(11,47,144));
  opacity: 0;
  transition: opacity .28s;
}
.proc-step:hover .proc-card {
  border-color: rgba(11,47,144,.2);
  box-shadow: 0 8px 30px rgba(11,47,144,.1);
  transform: translateX(5px);
}
.proc-step:hover .proc-card::before { opacity: 1; }

.proc-card-tag {
  display: inline-block;
  background: rgba(11,47,144,.07);
  color: rgb(11,47,144);
  border-radius: 100px;
  padding: .15rem .65rem;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: .55rem;
}
.proc-card strong {
  display: block;
  color: #1e293b;
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: .35rem;
  line-height: 1.3;
}
.proc-card p {
  color: #64748b;
  font-size: .85rem;
  line-height: 1.7;
  margin: 0 0 .6rem;
}
.proc-card-time {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: rgb(234,179,52);
  font-size: .72rem;
  font-weight: 700;
}
.proc-card-time i { font-size: .7rem; }

/* ── LADO DERECHO ── */
.proc-right { display: flex; flex-direction: column; gap: 1.4rem; }

/* Tarjeta de resultados */
.proc-results {
  background: linear-gradient(145deg,
    rgb(4,18,60) 0%,
    rgb(11,47,144) 55%,
    rgb(8,89,169) 100%);
  border-radius: 22px;
  padding: 2.3rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,47,144,.28);
}
/* Glows decorativos */
.proc-results::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,179,52,.18) 0%, transparent 65%);
}
.proc-results::after {
  content: '';
  position: absolute; bottom: -50px; left: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 65%);
}
/* Línea dorada superior */
.proc-results-line {
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgb(234,179,52), transparent);
  opacity: .8;
}

.proc-r-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.proc-r-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(234,179,52,.14);
  border: 1px solid rgba(234,179,52,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.proc-r-head strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  display: block;
  margin-bottom: .1rem;
}
.proc-r-head span {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
}

.proc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative; z-index: 1;
}
.proc-metric {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  transition: background .2s;
}
.proc-metric:hover { background: rgba(255,255,255,.14); }
.proc-metric-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgb(234,179,52);
  line-height: 1;
  margin-bottom: .3rem;
}
.proc-metric-label {
  color: rgba(255,255,255,.56);
  font-size: .74rem;
  line-height: 1.45;
}

/* Mini garantías */
.proc-guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.proc-g {
  background: #f8faff;
  border: 1px solid rgba(11,47,144,.08);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  display: flex; align-items: center; gap: .8rem;
  transition: all .22s;
}
.proc-g:hover {
  background: #fff;
  border-color: rgba(11,47,144,.2);
  box-shadow: 0 6px 22px rgba(11,47,144,.09);
}
.proc-g-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(11,47,144,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  transition: background .2s;
}
.proc-g:hover .proc-g-icon { background: rgba(234,179,52,.14); }
.proc-g strong {
  color: #1e293b;
  font-size: .84rem;
  font-weight: 700;
  display: block;
}
.proc-g span {
  color: #94a3b8;
  font-size: .73rem;
}

/* CTA inline */
.proc-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg,
    rgba(11,47,144,.05),
    rgba(234,179,52,.05));
  border: 1px solid rgba(11,47,144,.1);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  flex-wrap: wrap;
}
.proc-cta-row p {
  margin: 0;
  color: #1e293b;
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.5;
}
.proc-cta-row p span { color: rgb(11,47,144); }
.proc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .88rem 1.9rem;
  border-radius: 28px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  background: rgb(11,47,144);
  color: white;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all .22s;
  box-shadow: 0 4px 20px rgba(11,47,144,.3);
}
.proc-btn:hover {
  background: rgb(15,60,170);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11,47,144,.4);
}

/* REVEAL */
.proc-rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.proc-rv.proc-in {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .proc-head { grid-template-columns: 1fr; gap: 2.5rem; }
  .proc-body { grid-template-columns: 1fr; gap: 3.5rem; }
}
@media (max-width: 640px) {
  .proc-section { padding: 70px 0; }
  .proc-inner { padding: 0 1.2rem; }
  .proc-metrics, .proc-guarantees { grid-template-columns: 1fr; }
  .proc-section::before { display: none; }
  .proc-kpis { flex-direction: column; gap: 0; }
  .proc-kpi + .proc-kpi::before { top: 0; bottom: auto; left: 20%; right: 20%; width: auto; height: 1px; }
}