
/* Menu */
.menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 33px;
}

/* Menu */


/*  Categorias */

.categorias__lista {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

/*  Categorias */

/*  Destaques */
 .destaques {
    display: flex;
    align-items: center;
    gap: 10px;
    column-gap: 10px ;
 }

 .destaques__barra {
    flex-grow: 1;
    white-space: nowrap;
 }


/*  Destaques */


/*  Eventos */
 .eventos__lista {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: 1rem;
    justify-content: center;
 }

 .eventos__itens {
    flex-grow: 1;
    max-width: 400px;
 }

 /*  Eventos */

 /*Agenda Início */

 .agenda__lista {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 1.5rem;
    justify-content: center;
 } 

 .agenda__item {
    flex-grow: 1;
 }


 /*Agenda Fim */

 /*Rodape*/

 .rodape {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
 }

 .rodape__logo {
    align-self: end;
 }

@media (min-width: 720px) {
    .menu {
        column-gap: 75px;
    }
    .categorias__lista {
        flex-wrap: wrap;
        column-gap: 1.5rem;
        row-gap: 1rem;
    }

    .eventos__lista {
        justify-content: end;
     }
}

@media (min-width: 1440px) {
    .menu {
        column-gap: 105px;
        flex-wrap: nowrap;
    }

    .menu__item:nth-child(1){
        order: 1;
    }


    .menu__item:nth-child(2){
        order: 3;
    }


    .menu__item:nth-child(3){
        order: 4;
    }


    .menu__item:nth-child(4){
        order: 5;
    }

    .menu__item:nth-child(5){
        order: 2;
    }
}
