* {
    font-family: "Open Sans", arial, helvetica, sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.3;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
h1 {
    padding: 0;
    margin: 0;
    font-size: 32px;
    color: #000;
    font-weight: 600;
    line-height: 1.1;
}
body {
    background-color: #F8F8F8;
}
.opacHover:hover {
    opacity: 0.8;
    cursor: pointer;
}
.mgTop70 {
    margin-top: 70px !important;
}
.gridCont {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.grid {
    width: calc(100% - 28px);
    max-width: 1240px;
    margin: 0 14px;
}
.gridMenor {
    width: calc(100% - 28px);
    max-width: 800px;
    margin: 0 14px;
}
.alturaMin {
    min-height: calc(100% - 215px) !important;
}
#homeRodape {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 58px;
    border-top: 1px solid #E2E2E2;
    margin-top: 40px;
    padding: 0 20px;
    flex-wrap: wrap;
}
#homeRodape a {
    font-size: 14px;
    text-decoration: none;
    margin: 0 20px;
    color: #333;
}
#homeRodape a:hover {
    color: #999999;
}
#homeRodape .termos-uso-privacidade {
    margin-left: auto;
    color: #999999;
    font-size: 12px;
    text-decoration: none;
}

#homeRodape .termos-uso-privacidade:hover {
    color: #666666;
}

#topo {
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: #ffffff;
    border-bottom: 1px solid #EAEAEA;
}
#topo .cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
#topo .logo {
    width: 200px;
}
#topo .dir {
    display: flex;
    align-items: center;
}
#topo .menu {
    display: flex;
    align-items: center;
    padding: 0 30px;
    border-right: 1px solid #E5DDDD;
    height: 35px;
}
#topo .menu a {
    text-decoration: none;
    padding: 0 15px;
    font-size: 14px;
    color: #333333;
}
#topo .cadastre {
    height: 35px;
    background-color: #4cb476;
    border: none;
    border-radius: 42px;
    padding: 0 30px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-left: 30px;
}
#interna .cabecalho {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}
#interna .textoInterno p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}
#menuMobile1 {
    position: fixed;
    z-index: 9;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    transition: left 0.3s ease;
    box-shadow: none;
}
#menuMobile1 a {
    width: 100%;
    text-decoration: none;
    color: #333;
    font-size: 17px;
    margin-top: 20px;
}
#menuMobile1 a.destaque {
    background-color: #4cb476;
    padding: 10px;
    border-radius: 42px;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    margin-top: 20px;
}
.menu-open #menuMobile1 {
    left: 0;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
}
.menu-open #menuMobile1 * {
    background-color: #ffffff;
}
@media screen and (max-width: 800px) {
    #topo .menu {
        display: none;
    }
    .sanduiche {
        display: block!important;
    }
}
@media screen and (max-width: 800px) {
    h1 {
        font-size: 29px;
    }
    #topo .cadastre {
        display: none;
    }
    #topo {
        height: 60px;
    }
}
@media screen and (max-width: 600px) {
    #topo .logo {
        width: 100%;
    }
    #topo .dir {
        width: 100%;
        justify-content: space-between;
    }
    #homeRodape {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
    
    #homeRodape a {
        margin: 10px 20px;
    }

    #homeRodape .termos-uso-privacidade {
        margin: 10px auto 0;
        text-align: center;
    }
}
.sanduiche {
    display: none;
    width: 25px;
    height: 25px;
    background-image: url('https://img.icons8.com/ios-filled/50/000000/menu--v1.png');
    background-size: cover;
    cursor: pointer;
}

/* showMobile e hideMobile são usados para exibir textos diferentes em telas pequenas */
@media (max-width: 768px) {
    .showMobile {
        display: inline;
    }
    .hideMobile {
        display: none;
    }
}
@media (min-width: 769px) {
    .showMobile {
        display: none;
    }
    .hideMobile {
        display: inline;
    }
}