#proceso {
    background: var(--bg);
}
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.process-step {
    flex: 1 1 200px;
    max-width: 260px;
    text-align: center;
    position: relative;
    padding: 1.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.process-step:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}
.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto 1rem;
    box-shadow: 0 0 25px var(--accent-glow);
}
.process-step h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.process-step p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}
