.cabecalho__container {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;   
}

/* barra de pesquisa */

.cabecalho__pesquisar__item {
    display: none;
}


.rodape__container {
    display: flex;
    /* flex-direction: column;
    flex-wrap: wrap; */
    flex-flow: column wrap;
}


/* itens do menu */

.menu__container {
    position: fixed;
    bottom: 0%;
    height: 74px;
    width: 100%;
}

.menu__lista {
    display: flex;
    height: 100%;
    justify-content: space-around;
}

.menu_lista li {
    align-self: center;
}

.menu__lista:nth-child(2),
.menu__lista:nth-child(3),
.menu__lista:nth-child(4) {
    display: none;
}


.menu__itens {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* seção superior */

.superior__secao__container {
    display: flex;
    align-items: center;
    overflow: scroll;
    gap: 1rem;
    white-space: nowrap;
}

/* videos */

.videos__container {
    display: flex;
   flex-wrap: wrap;
   gap: 1rem;
}

.descricao-video {
    margin-top: 1rem;
    display: grid;
    text-align: start;
    column-gap: 1rem;
    row-gap: 10px;
    grid-template-columns: auto 1fr;
}

.descricao-video img {
    grid-area: 1 / 1 / 3 / 2;
}

.descricao-video h3 {
    grid-area: 1 / 2 / 2 / 3;
    font-weight: 700;
    color: #444444;
}

.descricao-video p {
    grid-area: 2 / 2 / 3 / 3;
    font-size: 14px;
    color: #444444;
}


.videos__item {
    height: 19rem;
    width: 17.5rem;
    flex-grow: 1;
}



/* tamanho minimo para exibição */

@media (min-width: 834px) {
    .cabecalho__pesquisar__item {
        display: block;
    }

    .rodape__container {
        justify-content: space-between;
    }


    /* menu-pai */

    .menu__container {
        position: fixed;
        width: 4.63rem;
        height: auto;
        top: 5rem;
    }

    /* itens do menu */

    .menu__lista {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        gap: 2rem;
    }

    .menu_lista li {
        align-self: center;
    }

    .menu__lista:nth-child(2),
    .menu__lista:nth-child(3),
    .menu__lista:nth-child(4) {
        display: none;
    }
}

@media (min-width: 1440px) {
    .menu__container {
        position: fixed;
        width: 15rem;
        height: auto;
        top: 5rem;
        overflow: scroll;
    }


    .menu__lista {
        display: flex;
        height: auto;
        justify-content: flex-start;
        padding: 20px 17px 20px 15px;
        gap: 0.9rem;
    }


    .menu__itens {
        display: flex;
        flex-direction: row;
        gap: 0.9rem;
        align-items: center;
    }

    .menu__lista:nth-child(2),
    .menu__lista:nth-child(3),
    .menu__lista:nth-child(4) {
        display: flex;
    }

    .menu__lista:nth-child(3) {
        flex-direction: column-reverse;
    }

    .maispagina {
        order: 1;
    }

    .premium {
        order: 2;
    }

    .filmes {
        order: 3;
    }

    .jogos {
        order: 4;
    }
}

