.background-ajuda{
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: rgb(236,228,252);
    background: linear-gradient(180deg, rgba(236,228,252,1) 0%, rgba(255,255,255,1) 40%);
}
.container-ajuda{
    width: 60%;
    margin: auto;
    margin-top: 50px;
}
.link_voltar{
    text-decoration: none;
}
.link_voltar img{
    width: 150px;
}
.title_ajuda_index{
    margin: 0;
    margin-top: 40px;
    font-weight: 600;
}
.subtitle_ajuda_index{
    margin: 0;
    margin-top: 5px;
    color: #6E6D7A;
}
.area_tutoriais{
    margin-top: 30px;
}
.area_tutoriais a{
    text-decoration: none;
}
.item_tutorial{
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.26);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.26);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.26);
    display: flex;
    margin-bottom: 10px;
}
.area_img_tuto{
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-color: #fff;
    margin-right: 10px;
    border-radius: 5px;
    background-position: center;
    background-size: 390px;
    background-repeat: no-repeat;
}
.title_tuto_index p{
    margin: 0;
    font-weight: 600;
}
.title_tuto_index{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #1b1b1b;
}
.subtitle_tuto_index{
    font-weight: 14px;
    color: #6E6D7A;
    margin-bottom: 10px;
}
.left_tuto_infos{
    width: 100%;
}

.footer_ajuda{
    margin: auto;
    margin-top: 50px;
    width: 90%;
}
.area_rede_social{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.area_rede_social a{
    color: #1b1b1b;
}
.area_rede_social a i{
    margin-left: 10px;
    font-size: 19px;
}
.links_foot{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6E6D7A;
    height: 100px;
    font-size: 14px;
}
.links_foot a{
    color: #6E6D7A;
    margin-left: 10px;
}
.tag_blog{
    padding: 2px 10px;
    background-color: red;
}

.area_text{
    margin-top: 50px;
}
.voltar_anterior{
    margin-top: 10px;
    color: #6E6D7A;
}

/* Container responsivo */
.video-container {
    position: relative;
    width: 100%; /* Ocupa 100% da largura do contêiner */
    padding-top: 56.25%; /* Proporção de 16:9 (9/16 * 100) */
    margin-top: 10px;
}

/* Estilização do iframe */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.title_video_tuto{
    display: flex;
    align-items: center;
    color: #6E6D7A;
    margin-top: 20px;
}
.title_video_tuto p{
    margin: 0;
    margin-left: 5px;
}


@media only screen and (max-width: 700px) {
    .container-ajuda{
        width: 90%;
    }
    .item_tutorial{
        width: calc(100% - 20px);
        padding: 10px;
    }
}