/* ============================================================
   SEÇÃO 4 — PROCESSO
   ============================================================ */

.secao-processo {
    position: relative;
    background: #081725;
    padding: 120px 80px 14px;
    overflow: hidden;
}

/* ================= TITULO ================= */

.processo-titulo {
    padding-left: 20%;
    max-width: 45%;
    margin-bottom: 100px;
}

.processo-titulo-principal {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 47px;

    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.processo-subtitulo {
    padding: 2%;
    display: inline-block;
    margin-top: 16px;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    background: linear-gradient(
        103.49deg,
        #112D48 -11.35%,
        #081725 35.07%,
        #112D48 112.62%
    );

    
}

/* ================= GRID + LINHA ================= */

.processo-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.linha-dourada {
    height: 90%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        #FFD859,
        #C9932E,
        #915A1B,
        #E9BC48
    );
}

/* ================= GRID ================= */

.processo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 120px;
}

/* ================= CARD ================= */

.processo-card {
    max-width: 343px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* alternância esquerda/direita */
.processo-card:nth-child(-n+2) {
    grid-column: 1;
    justify-self: end;
    text-align: left;
}

.processo-card:nth-child(n+3) {
    grid-column: 2;
    justify-self: start;
    text-align: left;
}

.processo-card:nth-child(3) {
    margin-top: -92%;
}

.processo-card:nth-child(4) {
    margin-top: -92%;
}

.processo-card:nth-child(5) {
    margin-top: -40%;
}



/* imagem */
.processo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /*border-radius: 0 20px;
    box-shadow: 0 0 25px #283C56;   Voltar esse codigo caso conseguir as imagens
    */
}

/* titulo */
.processo-card h3 {
    margin:0;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 26px;
    color: #ffffff;
}

/* texto */
.processo-card p {
    margin: 0;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #D9D9D9;
}

/* ================= FRASE FINAL ================= */

.processo-frase-final {
    margin-left: 20%;
    margin-top: 120px;
    padding: 1%;
    max-width: 380px;
    border: 1px solid #283C56;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: white;
}

/* ============================================================
   RESPONSIVO — TABLET
   ============================================================ */

@media (max-width: 1024px) {

    .secao-processo {
        padding: 100px 40px;
    }

    .processo-titulo {
        padding-left: 0;
        max-width: 100%;
        margin-bottom: 80px;
    }

    .processo-wrapper {
        max-width: 100%;
    }

    .processo-grid {
        gap: 80px 60px;
    }

    /* remove deslocamentos agressivos */
    .processo-card:nth-child(3),
    .processo-card:nth-child(4),
    .processo-card:nth-child(5) {
        margin-top: 0;
    }

    .processo-frase-final {
        margin-left: 0;
    }
}

/* ============================================================
   RESPONSIVO — MOBILE
   ============================================================ */

@media (max-width: 768px) {

    .secao-processo {
        padding: 80px 20px;
    }

    /* TÍTULO */
    .processo-titulo {
        text-align: center;
        margin-bottom: 60px;
    }

    .processo-titulo-principal {
        font-size: 32px;
        line-height: 38px;
    }

    .processo-subtitulo {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.08em;
        padding: 8px 16px;
    }

    /* LINHA CENTRAL SOME */
    .linha-dourada {
        display: none;
    }

    /* GRID VIRA COLUNA */
    .processo-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* TODOS OS CARDS IGUAIS */
    .processo-card {
        max-width: 100%;
        justify-self: center;
        text-align: left;
    }

    .processo-card:nth-child(-n+2),
    .processo-card:nth-child(n+3) {
        grid-column: auto;
        justify-self: center;
    }

    /* TEXTO */
    .processo-card h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .processo-card p {
        font-size: 16px;
        line-height: 20px;
    }

    /* FRASE FINAL */
    .processo-frase-final {
        margin: 80px auto 0;
        max-width: 100%;
        text-align: center;
        font-size: 20px;
        line-height: 26px;
        padding: 20px;
    }
}



