* {
    font-family: 'Montserrat', sans-serif !important; 
}

body{
    background-color: #191718;
}

.row {
    max-width: 966px;
    margin: 0 auto;
}

.highlight {
    color: #ffcc00 !important;
}

.cabecalho {
    text-align: center;
    color: #fff;
    padding-bottom: 50px;
}

.logo-mestre {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cabecalho h1 {
    font-weight: 800;
}

.cabecalho .subtitulo {
    margin-top: 20px;
}

.passos {
    padding-bottom: 100px;
}

.passos .row {
    max-width: 800px;
}

.passos h2 {
    font-weight: 900;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.passos-itens {
    position: relative;
}

.passos-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 30px;
    border: 1px solid #535353;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
    background-color: #191718;
}

.passos-item:last-child {
    margin-bottom: 0;
}

.passos-item-step {
    width: 70px;
    margin-right: 30px;
    display: flex;
    justify-content: center;
}

.passos-item-step img {
    max-width: 40px;
}

.passos-item-conteudo {
    width: calc(100% - 100px);
}

.passos-item.complete {
    background-color: #1e1c1d;
    border: none;
}

.passos-item.complete .passos-item-step,
.passos-item.complete .passos-item-conteudo {
    opacity: 0.1;
}

.passos-item.current {
    font-size: 18px;
    border-color: #ffcc00;
    transform: scale(1.07);
    -webkit-box-shadow: 0px 0px 15px 10px rgba(91, 91, 91, 0.2);
    -moz-box-shadow: 0px 0px 15px 10px rgba(91, 91, 91, 0.2);
    box-shadow: 0px 0px 15px 10px rgba(91, 91, 91, 0.2);
}

.passos-item.current:before {
    content: 'Você está aqui';
    position: absolute;
    top: -10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    background: #fc0;
    border-radius: 100px;
    padding: 2.5px 10px;
    transform: translateX(-50%);
    left: 50%;
}

.passos-progress-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: transparent;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.passos-progress-line::before,
.passos-progress-line::after {
    content: '';
    position: absolute;
    border-width: 1px;
    border-style: solid;
}

.passos-progress-line::before {
    top: 0;
    height: 20%;
    border-color: #ffcc00;
}

.passos-progress-line::after {
    bottom: 0;
    height: 80%;
    border-color: #535353;
}

@media screen and (max-width: 767px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .logo-mestre {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .passos-item {
        display: flex;
        flex-direction: column;
        font-size: 14px;
        text-align: center;
    }

    .passos-item.current {
        font-size: 16px;
    }

    .passos-item.current:before {
        order: 2;
        position: initial;
        transform: none;
    }

    .passos-item-step {
        width: 100%;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 10px;
        order: 1;
    }

    .passos-item-step img {
        width: 30px;
    }

    .passos-item-conteudo {
        width: 100%;
        order: 3;
        margin-top: 20px;
    }
}