/* ─── HERO ───────────────────────────────────────────────── */
.proceso-hero {
  padding: 88px 56px 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.proceso-hero-h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin: 16px auto 20px;
  max-width: 780px;
}

.proceso-hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ─── SECCIONES GENÉRICAS ────────────────────────────────── */
.proceso-section {
  padding: 88px 56px;
  background: var(--white);
}

.proceso-section-alt {
  background: var(--cream);
}

/* ─── PASO DETALLE ───────────────────────────────────────── */
.proceso-paso {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.proceso-paso-reverse {
  direction: rtl;
}

.proceso-paso-reverse > * {
  direction: ltr;
}

.proceso-paso-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.proceso-paso-title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 16px;
}

.proceso-paso-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 24px;
}

.proceso-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.proceso-meta-item {
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proceso-section-alt .proceso-meta-item {
  background: var(--white);
}

.proceso-meta-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.proceso-meta-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

/* ─── PANEL VISUAL DE PASO ───────────────────────────────── */
.proceso-paso-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.proceso-section-alt .proceso-paso-panel {
  background: var(--white);
}

.paso-panel-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}

.paso-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.paso-timeline-item {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 20px;
}

.paso-timeline-item:last-child {
  padding-bottom: 0;
}

.paso-timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.paso-tl-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-pale);
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  z-index: 1;
}

.paso-tl-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 5px;
}

.paso-tl-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.paso-tl-sub {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ─── LO QUE INCLUYE ─────────────────────────────────────── */
.proceso-incluye {
  padding: 88px 56px;
  background: var(--ink);
  text-align: center;
}

.proceso-incluye-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  max-width: 660px;
  margin: 12px auto 16px;
}

.proceso-incluye-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 52px;
}

.proceso-incluye-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.incluye-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.incluye-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.incluye-body {}

.incluye-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.incluye-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
  font-weight: 500;
}

/* ─── LO QUE PEDIMOS ─────────────────────────────────────── */
.proceso-pedimos {
  padding: 88px 56px;
  background: var(--white);
}

.proceso-pedimos-inner {
  max-width: 860px;
  margin: 0 auto;
}

.proceso-pedimos-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 640px;
}

.pedimos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pedimos-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.pedimos-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pedimos-body {}

.pedimos-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.pedimos-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 500;
}

/* ─── CTA FINAL ──────────────────────────────────────────── */
.proceso-cta {
  background: var(--brand);
  padding: 88px 56px;
  text-align: center;
}

.proceso-cta-title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 18px;
}

.proceso-cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 36px;
}

.proceso-cta .btn-primary {
  background: var(--white);
  color: var(--brand);
  font-size: 14px;
  padding: 16px 36px;
}

.proceso-cta .btn-primary:hover {
  background: var(--ink);
  color: var(--white);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .proceso-hero {
    padding: 60px 24px 52px;
  }

  .proceso-section,
  .proceso-section-alt,
  .proceso-incluye,
  .proceso-pedimos,
  .proceso-cta {
    padding: 60px 24px;
  }

  .proceso-paso,
  .proceso-paso-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .proceso-incluye-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .proceso-hero-h1 {
    font-size: 28px;
  }

  .proceso-paso-title {
    font-size: 22px;
  }

  .proceso-incluye-grid {
    grid-template-columns: 1fr;
  }

  .proceso-meta {
    flex-direction: column;
  }
}
