header {
    /* position: fixed; */
    position: relative;
    width: 80%;
    height: 120px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

header #logo {
    height: 90px;
}

#menu {
    list-style: none;
}

#menu li {
    display: inline;
}

#menu li a {
    padding: 20px;
    color: #336699;
    border-radius: 10px;
    font-weight: bold;
}

#menu li a:hover {
    color: #000000;
    background-color: #d7d7d7;
}

main {
    width: 100%;
    height: calc(100vh - 200px);
    color: white;
    z-index: 1;
}

main>div {
    width: 100%;
    background: url(/home/ativos/img/bg-el.jpg) center center/100% auto no-repeat;
}

main>div>div {
    width: 80%;
    min-height: 450px;
    height: max-content;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
}

main h1 {
    font-size: 90px;
}

main h2 {
    font-size: 60px;
}

main h3 {
    font-weight: normal;
    width: 80%;
}

main #el {
    height: 450px;
}

footer {
    width: 100%;
    height: 50px;
    z-index: 10;
}

footer a {
    color: gray;
    margin: 0 20px;
}

footer a:hover {
    color: black;
}

footer p {
    margin: 0;
    font-size: 12px;
}

footer>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

#iconeMenu {
    display: none;
}