.boxConteudos {
    float: left;
    width: 100%;
    background: #0F1A2A;
    padding-bottom: 50px;
}

.boxConteudos h2 {
    float: left;
    padding: 0 15px;
    width: 100%;
    color: #fff;
    font-weight: bold;
    margin: 0 0 40px 0;
    font-size: 30px;
}

/* Lista Passos */

.boxConteudos .listaPassos {
	display: inline-block;
	width: 100%;
	padding: 0;
    position: relative;
}

.boxConteudos .listaPassos .card {
	float: left;
    border: 0;
    width: 100%;
    margin: 0!important;
    padding-bottom: 0;
    border-radius: 0!important;
	box-shadow: none!important;
    position: relative;
	background: none;
    border-bottom: solid 1px #32353D;
}

.boxConteudos .listaPassos .card button {
	cursor: pointer;
	border: 0;
	width: 100%;
	background: #121520;
	float: left;
    position: relative;
    outline: none!important;
}

.boxConteudos .listaPassos .card button:not(.collapsed) {
    background: #CBD4E1;
}

.boxConteudos .listaPassos .card button .container .col-sm-12 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.boxConteudos .listaPassos .card button .titulo {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.boxConteudos .listaPassos .card button .titulo img {
    margin-left: 15px;
}

.boxConteudos .listaPassos .card button:not(.collapsed) .titulo {
    color: #222222;
}

.boxConteudos .listaPassos .card button img.imgButton {
    max-width: 30px;
    margin-right: 10px;
    transition: all 0.1s linear 0s;
}

.boxConteudos .listaPassos .card button:not(.collapsed) img.imgButton {
    transform: rotate(45deg);
}

.boxConteudos .listaPassos .card button span {
	color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

.boxConteudos .listaPassos .card .boxConteudo {
	padding: 0 0;
	float: left;
    width: 100%;
    overflow: hidden;
    background: #CBD4E1;
    border-top: solid 1px transparent;
    transition: all 0.3s linear 0s;
}

.boxConteudos .listaPassos .card .boxConteudo p {
    float: left;
    width: 100%;
    margin: 0 0 30px 0;
}

.boxConteudos .listaPassos .card .boxConteudo video {
    max-width: 100%;
}

@media only screen and (max-width: 768px) {

    .boxConteudos {
        padding-bottom: 40px;
    }
    
    .boxConteudos h2 {
        margin: 0 0 20px 0;
        font-size: 22px;
        line-height: 32px;
    }

    .boxConteudos p {
        font-size: 13px;
        margin: 0 0 20px 0;
    }

    .boxConteudos .listaPassos .card button .container .col-sm-12,
    .boxConteudos .listaPassos .card button {
        padding: 0;
    }

    .boxConteudos .listaPassos .card button .titulo {
        font-size: 16px;
        line-height: 26px;
    }

    .boxConteudos .listaPassos .card .boxConteudo p {
        margin: 0 0 15px 0;
        font-size: 13px;
    }

}