section.processos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 0 180px 0;
    background-color: #080D19;
    /* background-color: #0E1628; */
}

section.processos .titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0 40px 0;
}

section.processos .titulo h3 {
    font-family: 'Alexandria';
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 8px;
    color: #ffffffc0;
}

section.processos .titulo h2 {
    font-family: 'Alexandria';
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 700px;
    margin: 10px 0;
}

section.processos .titulo p {
    font-family: 'Figtree';
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff80;
    max-width: 600px;
    margin: 10px 0;
}

section.processos .etapas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
    align-items: center;
}

section.processos .etapas .etapa {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 420px;
    min-width: 320px;
    background-color: #ffffff10;
    border-radius: 10px;
    /* margin: 0 10px; */
    padding: 20px;
    position: relative;
    transition: all 0.3s;
}

section.processos .etapas .etapa .icone {
    font-family: 'Alexandria';
    font-size: 28px;
    font-weight: 600;
    background-color: #ffffff;
    padding: 1px;
    border-radius: 50px;
    width: 65px;
    display: flex;
    justify-content: center;
}

section.processos .etapas .etapa .texto {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    margin-top: 20px;
    /* padding: 40px 0 40px 0; */
}

section.processos .etapas .etapa .texto h3 {
    font-family: 'Alexandria';
    font-weight: 500;
    font-size: 18px;
    color: #ffffffc0;
    margin-bottom: 10px;
}

section.processos .etapas .etapa .texto p {
    font-family: 'Alexandria';
    font-weight: 100;
    font-size: 14px;
    color: #ffffff75;
    line-height: 1.5;
    /* margin-bottom: 10px; */
}

@media (max-width: 768px) {
    section.processos .etapas {
        gap: 10px;
        grid-template-columns: repeat(1, 1fr);
    }

    section.processos .etapas .etapa {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        width: 90%;
        margin: auto;
        min-width: 320px;
        background-color: #ffffff10;
        border-radius: 10px;
        /* margin: 0 10px; */
        padding: 20px;
        position: relative;
        transition: all 0.3s;
    }

    section.processos .titulo {
        padding: 40px 20px 40px 20px;
    }

    section.processos .titulo h3 {
        font-size: 12px;
    }

    section.processos .titulo h2 {
        font-size: 32px;
    }

}