.etapas {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 60px 0 30px;
}

.etapas__titulo {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 25px;

    text-transform: uppercase;
    text-align: center;

    color: #1A1A1A;
    margin-bottom: 20px;
}

.etapas__lista {
    list-style: none;
}

.etapas__item {
    margin-bottom: 20px;
}

.etapas__subtitulo {
    font-family: var(--font-secondary);
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1A1A1A;
}

.etapas__numero {
    min-width: 40px;
    height: 40px;

    background-color: #0A6553;

    font-size: 20px;

    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 20px;
}

.etapas__detalhes {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding-bottom: 20px;
    margin-bottom: 20px;

    border-bottom: 2px solid #0A6553;
}

.etapas__detalhe {
    position: relative;
    margin-left: 50px;
    
    font-family: var(--font-secondary);
    font-size: 18px;

    padding-left: 20px;
    list-style: none;
}

.etapas__detalhe::before {
    content: "";
    
    width: 15px;
    height: 15px;
    
    background-color: #0A6553;
    
    border-radius: 50%;
    
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.etapas__conteudo {
    width: 80%;
    max-width: 800px;
}

.etapas__linha {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.etapas__linha::before {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    height: calc(100% - 40px);
    background: repeating-linear-gradient(
        to bottom,
        #0A6553,
        #0A6553 10px,
        transparent 10px,
        transparent 20px
    );
}

.etapas__linha img {
    width: 50px;
    position: relative;
    z-index: 1;
    transform: rotate(180deg);
}

@media screen and (max-width: 600px) {
    .etapas__linha img {
        width: 30px;
    }
}

@media screen and (max-width: 768px) {
    .etapas__titulo {
        font-size: 26px;
    }
    .etapas__detalhe {
        font-size: 16px;
    }
    .etapas__detalhe::before {
        width: 12px;
        height: 12px;
    }
    .etapas__detalhes {
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .etapas__titulo {
        font-size: 22px;
    }
    .etapas__subtitulo {
        font-size: 18px;
    }
    .etapas__numero {
        font-size: 18px;
    }
}

@media (max-width: 314px) {
    .etapas__linha img {
        width: 22px;
    }
    .etapas__linha::before {
        height: calc(100% - 20px);
    }
}