/* —— Do WhatsApp ao resultado (4 passos) —— */
.processo {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-top: 1px solid var(--slate-200);
}

.processo__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}

.processo__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.processo__eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.processo__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text);
    max-width: 24ch;
}

.processo__lead {
    font-size: clamp(1rem, 2vw, 1.0625rem);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 40ch;
}

.processo__steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    counter-reset: passo;
}

.processo__step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.375rem 1.25rem;
    border-radius: var(--radius);
    text-align: left;
}

.processo__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.25rem;
    right: -0.5rem;
    width: 1rem;
    height: 1px;
    background: linear-gradient(to right, var(--slate-200), transparent);
    z-index: 0;
}

.processo__num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.processo__step-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.processo__step-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 960px) {
    .processo__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .processo__step:nth-child(2)::after {
        display: none;
    }

    .processo__step::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .processo__steps {
        grid-template-columns: 1fr;
        max-width: 22rem;
        margin-inline: auto;
    }

    .processo__title {
        max-width: none;
    }
}
