.proceso { background: linear-gradient(175deg, var(--bosque) 0%, #1e3318 100%) }
.proceso .section-tag { color: var(--salvia) }
.proceso h2.section-title { color: var(--beige) }
.proceso h2.section-title em { color: var(--salvia) }
.proceso .section-subtitle { color: rgba(232,228,208,.6); margin: 0 auto }
.proceso-header { text-align: center; max-width: 680px; margin: 0 auto 5rem }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto }
.step { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 2rem 1.8rem; opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease }
.step.visible { opacity: 1; transform: translateY(0) }
.step:nth-child(2) { transition-delay: .08s }
.step:nth-child(3) { transition-delay: .16s }
.step:nth-child(4) { transition-delay: .24s }
.step:nth-child(5) { transition-delay: .32s }
.step:nth-child(6) { transition-delay: .40s }
.step:nth-child(7) { transition-delay: .48s }
.step:nth-child(8) { transition-delay: .56s }
.step:nth-child(9) { transition-delay: .64s }
.step:hover { background: rgba(255,255,255,.09); transform: translateY(-4px) }
.step-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem }
.step-num { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--oliva), var(--salvia)); display: flex; align-items: center; justify-content: center; font-family: 'DM Mono', monospace; font-size: 1rem; font-weight: 500; color: var(--beige) }
.step-icon { font-size: 1.5rem }
.step h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--beige) }
.step p { font-size: .875rem; line-height: 1.65; color: rgba(232,228,208,.6) }

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: 1fr 1fr }
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr }
}
