/* Tamaño celular */

.header {
    padding: 10px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    width: 100px;
}

.menu {    
    background-color: #fff;
    width: 100%;

    & li {
        list-style: none;
        margin: 10px;
    }
}

.ocultar {
    display: none;
}

.menuVisible {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Tamaño para tablet y pc */
@media screen and (min-width: 768px) {
    .logo {
        width: 150px;
    }

    .icoBurger {
        display: none;
    }

    .menu {
        display: flex;
        width: auto;
    }

    .nav {
        width: auto;
    }

}