@font-face {
    font-family: "Lato";
    src: url('fonts/Lato-Regular.ttf');
}

* {
    margin: 0;
    padding: 0;
    font-family: Lato, Arial, Helvetica, sans-serif;
}

header {
    background-color: white;
    padding: 8px 32px;
    text-align: left;
}

.logo_principal {
    height: 80px;
    width: 208px;
}

menu {
    background-color: #EEB140;
    color: #231F22;
    width: 100%;
}

menu>ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    column-gap: 10px;
    padding: 8px;
    padding-left: 10%;
    list-style: none;
}

menu>ul>li {
    font-size: 1.2rem;
}

menu>ul>li>a {
    text-decoration: none;
    color: #231F22;
}

menu>ul>li>a:hover {
    text-decoration: underline;
}

main {
    background-color: #4174B9;
    text-align: center;
    display: flex;
    color: white;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    row-gap: 50px;
    padding: 70px;
}

main>h1 {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
}

main>p {
    font-size: 22px;
}

section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 75px;
}

.boton {
    background-color: white;
    border: 2px solid #4174B9;
    border-radius: 7px;
    padding: 12px 24px;
    color: #4174B9;
    text-decoration: none;
    font-size: 22px;
    text-align: center;
}

.boton:hover {
    background-color: #4174B9;
    color: white;
    border: 2px solid #4174B9;
    text-decoration: underline;
    box-shadow: 0px 2px 3px gray;
}

footer {
    background-color: #095cb1;
    color: white;
    position: fixed;
    bottom: 0;
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 16px 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    section {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 28px;
    }

    footer {
        position: relative;
    }
}

@media (max-width: 500px) {
    header {
        padding: 0;
    }

    menu>ul{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        row-gap: 10px;
        padding: 8px;
        padding-left: 10%;
        list-style: none;
    }

    .separador {
        display: none;
    }

    main {
        padding: 32px;
    }
}
