.jornada {
    position: relative;
    background-color: var(--background);


}

.jornada hr {
    height: 100%;
    position: absolute;
    top: 0;
    margin-left: 2em;
    z-index: 1;
    border-color: var(--highlight);



}
.jornada-column {
    display: flex;
    flex-direction: column;
    gap: 1.75em;
    margin-top: 2em;
   

}

.jornada-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    z-index: 1;
    justify-content: space-between;
}

.jornada-header-number {
    width: 4em;
    height: 4em;
    background-color: var(--highlight);
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.jornada-body {
    background-color: var(--tidewater);
    padding: 1em;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    gap: .75em;
    width: 90%;
}

.detalhe {
    display: none;
}
@media (min-width: 800px) {

    .jornada {
        position: relative;
        overflow: hidden;
    }
    .detalhe {
        position: absolute;
        top: 20%;
        right: 50%;
        transform: translate(50%, -100%);
        width: 500px;
        height: 500px;
        background-color: white;
        border: 1em solid white;
        border-radius: 100%;
        display: flex;
        z-index: 1;
        mix-blend-mode: hard-light;
        opacity: .2;
        filter: blur(300px);
        
    }
    .jornada-column {
        gap: 4em;
    }
.jornada-box {
    gap: 3em;
}


.jornada-header-number {
    width: 6em;
    height: 6em;
}

.jornada-body {
    width: 90%;
    padding-top: 2em;
    padding-left: 3em;

}

.jornada-body p {
    font-size: 1.25em;
    width: 95%;
}

.jornada hr {

    margin-left: 3em;
    border: var(--highlight) 2px solid;
}

}