.wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1;
}


/* ----------------- Header ------------------- */
header {
    height: 52px;
}

header .app-bar {
    background: #333333;
    color: #fff;
    height: 52px
}

header .app-bar-expand {
    justify-content: space-between;
}

.menu-dinamico {
    display: flex;
    align-items: center;
}

.menu-dinamico li a {
    padding: 0 16px;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}
/* -------------------------------------------- */





/* ------------------- Footer -------------------- */
footer {
    background: #333333;
    padding: 20px 10px;
    width: 100%;
    color: #fff;
}

footer .container div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


footer .links a {
    color: #fff;
    margin: 5px;
}








