* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: Arial, Helvetica, sans-serif;
}

::selection {
    background-color: orange;
    color: white;
}

body {
    overflow-x: hidden;
}

nav {
    margin-top: 20px;

    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(247, 247, 247);
    padding: 2vh 3vh;

    position: relative;

    border-top: solid 2px rgb(227, 227, 227);
    border-bottom: solid 2px rgb(227, 227, 227);
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;

    max-width: 1180px;
}

.container>img {
    height: 100px;
    margin-left: 10px;
    cursor: pointer;
}

.menu {
    margin-right: 10px;
}

.menu>a {
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: black;
    font-size: 1.4rem;
    margin-left: 20px;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s;
}

.menu>a:hover {
    background-color: rgb(255, 140, 0);
    color: white;
}

.ham {
    display: none;
}

.menuDrop {
    display: none;
}

.menuDrop>a {
    display: none;
}


.selectFlag {
    user-select: none;


    min-width: 75px;

    display: flex;
    flex-direction: column;
    max-width: 75px;
    background-color: rgb(192, 192, 192);
    cursor: pointer;
    padding: 3px 3px 0px 3px;
    transition: all 0.3s ease;
}

.bandeira {
    transition: opacity 0.3s ease;
}

.selected {
    margin-bottom: 3px;
}

@media (max-width: 1180px) {
    /* .selectFlag {
        margin-right: 90vw;
    } */

    nav {
        height: auto;
    }

    .container {

        width: 100%;
    }

    .container>img {
        height: 70px;
        margin: 0;
    }

    .menu {
        margin-top: 4vh;
        margin-right: 0;
    }

    .menu>a {
        margin: 10px 0;
    }

    .ham {
        display: none;
    }

    .menuDrop {
        display: none;
    }
}

@media (max-width: 775px) {

    .selectFlag {
        min-width: 50px;

        display: flex;
        flex-direction: column;
        max-width: 50px;
        background-color: rgb(192, 192, 192);
        cursor: pointer;
        padding: 2px 2px 0px 2px;
        transition: all 0.3s ease;
    }

    .bandeira {
        transition: opacity 0.3s ease;
    }

    .selected {
        margin-bottom: 2px;
    }

    nav {
        height: auto;
    }

    .container {
        flex-direction: row;
        width: 100%;
    }

    .container>img {
        width: 55%;
        height: auto;
        margin: 0;
    }

    .menu {
        margin-top: 4vh;
        margin-right: 0;
        display: none;
    }

    .menu>a {
        margin: 10px 0;
    }

    .ham {
        display: block;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        font-size: 35px;
    }

    .menuDrop {
        flex-direction: column;
        text-align: center;
        display: none;
        position: absolute;
        z-index: 999;
    }

    .menuDrop>a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 7vh;
        width: 100vw;
        cursor: pointer;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        text-decoration: none;
        color: black;
    }

    .menuDrop a:nth-child(even) {
        background-color: #ffffff;
    }

    .menuDrop a:nth-child(odd) {
        background-color: #f1f1f1;
    }

    .menuDrop>a {
        border-bottom: solid 1px rgb(234, 234, 234);
    }

    .menuDrop a:last-child {
        border-bottom: solid 2px rgb(227, 227, 227);
    }
}




.whatsapp-container {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    font-size: 3.1rem;
    bottom: 20px;
    right: 30px;
    z-index: 999;
}

.whatsapp-container>a {
    color: white;
}

.whatsapp-container:hover {
    background-color: #139844;
    cursor: pointer;
    transition: ease-in-out background-color 0.3s, color 0.3s;
}
