header, footer {
    width: 100%;
}

#logo {
    height: 100px;
}

header ul, footer ul{
    margin: 0;
    padding: 0;
}

header > div, footer > div {
    max-width: 1166px;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}

header > div ul {
    display: flex;
    flex-direction: row;
}

header li {
    list-style-type: none;
}

header li a {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
}

header li a:hover {
    text-decoration: underline;
}

header li img {
    height: 25px;
}

footer {
    background-color: var(--azul-zev);
    color: white !important;
}

footer * {
    color: white !important;
}

footer > div > div {
    width: 20%;
    text-align: center;
}

footer > div > div:first-of-type {
    min-width: 210px;
}

footer p {
    margin: 0;
    font-size: 20px;
}

footer .AddressSmall h4, footer .AddressFull h4 {
    margin-bottom: 3px;
    margin-top: 5px;
}

footer .AddressFull p {
    font-size: 15px;
    font-weight: normal;
}

footer nav > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer li {
    list-style-type: none;
    font-size: 20px;
    padding-bottom: 8px;

}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .Social {

    font-size: 20px !important;
}

footer .Social a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

footer .Social a img {
    height: 25px;
    margin-right: 5px;
}

footer .Social > img {
    height: 25px;
    margin-top: 5px;
}

main {
    max-width: 1166px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}

#menuButton {
    display:none;
}


@media (max-width: 1000px) {
    header {
        position: relative;
    }
    header nav {
        display: none;
    }

    header > div {
        justify-content: center;
    }

    #menuButton {
        display: block;
        position: absolute;
        right: 10px;
        top: 25px;
        height: 50px;
        width: 50px;
        z-index: 110;
    }

    header nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--azul-zev) !important;
        padding-top: 100px;
        z-index: 100;
        overflow-y: scroll;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        
    }

    header nav li {
        color: white !important;
        width: 100%;
        border: 1px solid var(--gris-zev);
        padding-top: 20px;
        padding-bottom: 20px;
    }

    header nav li a {
        color: white !important;
    }

    .showMenuPhone {
        display: block !important;
    }
}

@media (max-width: 1000px) { 
    footer > div {
        flex-direction: column;
        gap: 20px;
    }

    footer > div > div {
        width: 100%;
    }
}