.process-section {
    padding: 120px 5%;
    background: #ffffff;
    text-align: center;
}

.process-title {
    font-size: 36px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 64px;
}

/* Grid maior */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

/* Card grande */
.process-card {
    background: #f5f5f7;
    border-radius: 28px;
    padding: 48px 32px;

    text-align: left;

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Número */
.process-step {
    font-size: 14px;
    font-weight: 600;
    color: #6e6e73;
    display: block;
    margin-bottom: 16px;
}

/* Título do card */
.process-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

/* Texto */
.process-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6e6e73;
}

/* CTA */
.process-cta p {
    font-size: 20px;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 24px;
}

/* Botão Apple */
.process-button {
    display: inline-block;
    padding: 14px 32px;

    font-size: 16px;
    font-weight: 500;
    color: #0066cc;

    border: 1px solid #0066cc;
    border-radius: 999px;

    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.process-button:hover {
    background: #0066cc;
    color: #ffffff;
}


@media screen and (max-width: 1170px) {

    .process-title {
        font-size: 28px;
        margin-bottom: 48px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-card {
        padding: 40px 28px;
    }

    .process-cta p {
        font-size: 18px;
    }
}
