/* CSS BASICO */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial;
    background-color: #fff;
}

button {
    font-family: Arial;
}

.faixa-amarela-topo {
    display: block;
    width: 100%;
    height: 8vw;
    max-height: 112px;
    background-color: #f0b200;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0
}

/* -------------------  menu --------------------- */
.divmenu {
    max-width: 1200px;
    width: 92vw;
    height: 9vw;
    max-height: 128px;
    background-color: #1f2f63;
    border-radius: 20px;
    margin: 3.5vw auto 0px auto;
    position: relative;
    padding: 0px;
}

.menu {
    display: block;
    height: 100%;
}

.menu-horizontal {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    /*min-height:128px;*/
    height: 100%;
}

.menu-item {
    display: inline-block;
    float: left;
    height: 100%;
}

.menu label {
    font-weight: bold;
    color: #fff;
    font-size: 1.3vw;
}

.menu .menuimg {
    vertical-align: sub;
    width: 1.5vw;
    margin-right: 3px;
}

.menu .ativo {
    border-bottom: 2px solid #f0b200;
}

/*.menu-logo {margin:15px;width:10vw;max-width:128px;}*/
.menu-logo {
    margin: 10% 15px;
    /*width:9vw;max-width:108px;*/
    height: 80%;
}

.menu .area-aluno {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 16vw;
    height: 3.5vw;
    background-color: #0078f0;
    border: 4px solid #0078f0;
    border-radius: 10px;
}

.menu .area-aluno:hover {
    background-color: #0078f0;
    border: 4px solid #fff;
    border-radius: 10px;
    color: #fff;
}

.menu .area-aluno label {
    font-size: 1.3vw;
    font-weight: bold;
    color: #fff;
}

@media screen and (max-width: 500px) {
    .divmenu {
        width: 96vw;
        min-height: 76px;
    }

    .menu-logo {
        height: 80%;
    }

    .faixa-amarela-topo {
        height: 54px;
    }
}

@media screen and (min-width: 1600px) {
    .menu label {
        font-size: 21px;
    }

    .menu .area-aluno {
        width: 256px;
        height: 56px;
    }

    .menu .area-aluno label {
        font-size: 21px
    }
}




.mobile {
    display: block;
    width: 84vw;
    margin: 0 auto;
}

.mobile-menu-open {
    display: none;
    height: 30px;
    float: right;
    margin: 0px 20px;
}

.mobile-menu-open label {
    display: inline-block;
    font-size: 1em;
    margin-right: 10px;
    color: 1f2f63;
}

.mobile-menu-open img {
    width: 20px;
    vertical-align: middle;
}

.mobile-menu {
    display: block;
}

.mobile-menu-vertical {
    display: none;
    flex-direction: column;
    align-content: flex-end;
    align-items: flex-end;
    height: auto;
    min-height: 128px;
    background-color: #1f2f63;
    width: 84vw;
    margin: 10px auto;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.mobile-menu-item {
    margin: 10px 20px;
}

.mobile-menu-open .open-close {
    font-weight: bold;
    color: #fff;
    font-size: 1.125em;
}

.mobile-menu label {
    font-weight: bold;
    color: #fff;
    font-size: 1.125em;
}

.mobile-menu .menuimg {
    vertical-align: sub;
    width: 20px;
    margin-right: 10px;
}

.mobile-menu .ativo {
    border-bottom: 2px solid #f0b200;
}

.mobile-menu .area-aluno {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    height: 48px;
    background-color: #0078f0;
    border: 4px solid #0078f0;
    border-radius: 10px;
    margin: 0px 20px 10px 0;
}

.mobile-menu .area-aluno:hover {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    height: 48px;
    background-color: #0078f0;
    border: 4px solid #fff;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.mobile-menu .area-aluno label {
    display: table-cell;
    width: 192px;
    height: 40px;
    vertical-align: middle;
    text-align: center;
    font-size: 1.125em;
    text-align: center;
    font-weight: bold;
    color: #fff;
}

/*.mobile-menu-fundo {width:100vw;height:100vh;background-color:#333;display:none;position:fixed;top:0;left:0;z-index:15;transition: all .5s ease-in-out;}
*/

.mobile-menu-fundo {
    width: 0;
    height: 100%;
    background-color: #0078f0;
    /*display:none;*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;
    transition: 0.2s;
    overflow-x: hidden;
    /* disable horizontal scroll */
}

#menu-desktop {
    display: block;
}

#menu-celular {
    display: none;
}

#menu-celular-logo {
    display: none;
}


@media screen and (max-width: 700px) {
    .menu-horizontal {
        display: none;
    }

    /*.mobile-menu-vertical {display:flex;}*/
    .mobile-menu-open {
        display: inline-block;
        position: relative;
        top: 2vw;
    }

    #menu-desktop {
        display: none;
    }

    #menu-celular {
        display: block;
    }

    #menu-celular-logo {
        display: block;
    }
}

@media screen and (max-width: 500px) {
    .menu-horizontal {
        display: none;
    }

    .divmenu {
        width: 96vw;
        min-height: 76px;
    }

    .menu-logo {
        height: 80%;
    }

    .mobile-menu-open {
        display: inline-block;
        position: relative;
        top: 26px;
    }

    /*.faixa-amarela-topo {height:90px;}*/
    #menu-desktop {
        display: none;
    }

    #menu-celular {
        display: block;
    }

    #menu-celular-logo {
        display: block;
    }
}

/* -------------------   --------------------- */


.box-basico {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 84vw;
    height: 20vw;
    max-height: 96px;
    margin: 0 auto 20px auto;
    border-radius: 8px;
}

.box-basico-conteudo {
    width: 100%;
    height: 100%
}

.box-basico img {
    vertical-align: middle;
    margin: 0 2vw;
    height: 10vw;
    max-height: 70%;
    min-height: 20%;
}

.box-basico label {
    font-weight: bold;
    color: #fff;
    font-size: 3vw;
    vertical-align: middle;
}

/*.box-tag {display:inline-block; width:auto;height:6vw;max-height:80px;margin:30px 0 30px 0;border-radius:0 50px 50px 0;padding:1vw 5vw 0 8vw;font-size:2vw;}*/
.box-tag-super {
    max-width: 1200px;
    width: 92vw;
    height: auto;
    /*min-height:128px;*/
    margin: 5px auto;
    position: relative;
    padding: 0px;
}

.box-tag {
    display: table-cell;
    vertical-align: middle;
    width: auto;
    height: 6vw;
    max-height: 80px;
    line-height: auto;
    margin: 30px 0 30px 0;
    border-radius: 20px;
    padding: 0vw 50px 0 50px;
    font-size: 2vw;
}

.box-tag-conteudo {
    width: 100%;
    height: 100%
}

.box-tag img {
    vertical-align: middle;
    margin: 0 2vw;
    height: 10vw;
    max-height: 70%;
    min-height: 20%;
}

.box-tag label {
    font-weight: bold;
    color: #fff;
    font-size: 3vw;
    vertical-align: middle;
}


@media screen and (max-width: 1000px) {
    .box-tag-cinza-texto {
        border-radius: 15px;
    }
}

@media screen and (max-width: 700px) {
    .box-tag-cinza-texto {
        border-radius: 10px;
    }
}



.unimor-yellow {
    background-color: #f0b200;
}

.unimor-dark-blue {
    background-color: #1f2f63;
}

.unimor-blue {
    background-color: #0078f0;
}

.unimor-red {
    background-color: #ff4141;
}


.box-azul-bottom {
    max-width: 1200px;
    width: 92vw;
    /*max-width:1200px;*/
    height: auto;
    min-height: 230px;
    background-color: #1f2f63;
    border-radius: 8px;
    margin: 50px auto 0 auto;
    /*top:-15vh;*/
    position: relative;
    overflow-x: visible;
}

.box-azul-bottom .itens {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: center;
}

@media screen and (max-width: 500px) {
    .box-azul-bottom {
        width: 96vw;
    }
}

.bottom-itens {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.bottom-itens .unidades {
    display: block;
    float: left;
    width: 200px;
    height: 200px;
    color: #fff;
    margin: 15px;
    border-radius: 8px;
    text-align: center;
}

.bottom-itens .unidades-dados {}

.bottom-itens .unidades .titulo {
    font-size: 1.5em;
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

.bottom-itens .unidades .ciclo {
    font-size: 0.75em;
    display: block;
    margin-top: 5px;
    line-height: 12px;
}

.bottom-itens .unidades .telefone {
    font-size: 0.875em;
    display: block;
    margin-top: 10px;
}

.bottom-itens .unidades .telefone img {
    width: 14px;
    margin-right: 5px;
    vertical-align: middle;
}

.bottom-itens .unidades .endereco {
    font-size: 0.875em;
    display: block;
    margin-top: 10px;
}

.bottom-itens .unidades .endereco img {
    width: 14px;
    margin-right: 5px;
    vertical-align: baseline;
}

.bottom-itens .unidades .predio {
    display: block;
    width: 100px;
    position: relative;
    bottom: -3px;
    margin: 0 auto;
}

.bottom-itens .traco {
    display: block;
    float: left;
    border-left: 2px solid #fff;
    height: 200px;
    margin-top: 15px;
    /*margin-left:30px;margin-top:30px;*/
}

@media screen and (max-width: 1280px) {
    .bottom-itens .traco {
        display: none;
    }
}

.bottom-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 200px;
    height: 200px;
    text-align: center;
    /*margin-left:20px;*/
    margin: 15px;
}

.bottom-logo .centraliza {
    display: table-cell;
    height: 200px;
    vertical-align: middle;
}

.bottom-logo img {
    vertical-align: middle;
    width: 70%;
}

.bottom-logo .version {
    font-size: 0.6em;
    color: #fff;
}

.redes {
    display: block;
    float: left;
    width: 224px;
    height: 200px;
    color: #fff;
    /*margin-left:30px;margin-top:30px;*/
    margin: 15px;
}

.redesocial {
    float: left;
    width: 100%;
    margin-right: 10px;
}

.redesocial-icones {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.redesocial-icones img {
    float: left;
    width: 40px;
    margin-top: 4px;
    margin-right: 10px;
}

.redesocial-facebook img.img-hover {
    display: none;
}

.redesocial-facebook:hover img.img-default {
    display: none;
}

.redesocial-facebook:hover img.img-hover {
    display: inherit;
}

.redesocial-instagram img.img-hover {
    display: none;
}

.redesocial-instagram:hover img.img-default {
    display: none;
}

.redesocial-instagram:hover img.img-hover {
    display: inherit;
}

.redesocial-youtube img.img-hover {
    display: none;
}

.redesocial-youtube:hover img.img-default {
    display: none;
}

.redesocial-youtube:hover img.img-hover {
    display: inherit;
}

.acompanhe1 {
    display: block;
    font-size: 0.8em;
}

.acompanhe2 {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
}

.apps {
    display: block;
    float: left;
    width: 100%;
    height: 40px;
    /*margin-left:30px;margin-top:30px;*/
}

.apps a {
    display: inline-block;
    float: left;
    /*width:45%;*/
    height: 100%;
    /*margin-right:10px*/
}

.apps-icones {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.apps-icones img {
    float: left;
    width: 100px;
    margin-top: 4px;
    margin-right: 10px;
}

.baixe1 {
    display: block;
    font-size: 0.8em;
    margin-top: 29px;
}

.baixe2 {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
}

.apple-store img.img-hover {
    display: none;
}

.apple-store:hover img.img-default {
    display: none;
}

.apple-store:hover img.img-hover {
    display: inherit;
}

.googleplay-store img.img-hover {
    display: none;
}

.googleplay-store:hover img.img-default {
    display: none;
}

.googleplay-store:hover img.img-hover {
    display: inherit;
}

@media screen and (max-width: 500px) {
    .bottom-itens .unidades {
        width: calc(100% - 30px);
        height: 140px;
    }

    .bottom-itens .unidades-dados {
        margin-left: 15px;
        float: left;
    }

    .bottom-itens .unidades .predio {
        width: 130px;
        bottom: -49px;
    }

    .bottom-logo {
        margin: 15px auto;
    }

    .redes {
        text-align: center;
        width: calc(100% - 30px);
    }

    .redesocial {
        width: 100%;
        margin: 0;
    }

    .redesocial-icones {
        justify-content: center;
    }

    .redesocial-icones img {
        margin: 10px;
    }

    .apps-icones {
        justify-content: center;
    }

    .apps-icones img {
        margin: 10px;
    }

}

@media screen and (max-width: 374px) {
    .bottom-itens .unidades .predio {
        width: 85px;
        bottom: -81px;
    }
}


.faixa-amarela-bottom {
    width: 100%;
    height: 160px;
    background-color: #f0b200;
    margin-top: -100px;
}


/* -- imagem hover --*/
.ximg-box {
    height: 100%;
}

.ximg-box img {
    height: 100%;
}

.ximg-box img.img-hover {
    display: none;
}

.ximg-box:hover img.img-default {
    display: none;
}

.ximg-box:hover img.img-hover {
    display: inherit;
}


@media (min-width:1317px) {
    .itens .traco {
        display: block;
    }
}

/* sub-menu geral */
#submenu-unidades {
    display: none;
    background-color: #0078f0;
    border-radius: 10px;
    padding-right: 25px;
    color: #fff;
    z-index: 1;
    position: absolute;
    margin-top: 15px;
    line-height: 30px;
}

#submenu-unidades::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #0078f0;
    display: block;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 4px 0 0 0;
    top: -10px;
    left: 20px
}

#submenu-unidades.active {
    display: block;
}

#submenu-colegio {
    display: none;
    background-color: #0078f0;
    border-radius: 10px;
    padding-right: 25px;
    color: #fff;
    z-index: 1;
    position: absolute;
    margin-top: 15px;
    line-height: 30px;
}

#submenu-colegio::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #0078f0;
    display: block;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 4px 0 0 0;
    top: -10px;
    left: 20px
}

#submenu-colegio.active {
    display: block;
}

a {
    color: #fff;
    text-decoration: none;
}


/* ------------------- boxdiv --------------------- */

.boxdiv {
    display: block;
    background-color: #f2f2f2;
    width: 100%;
    padding: 70px 0 20px 0;
}

.boxdiv-cinza {
    background-color: #f2f2f2;
}

.boxdiv-interno {
    width: 74vw;
    margin: 0 auto;
    max-width: 1090px;
}

.boxdiv-interno-left {
    width: 48%;
    float: left;
    min-width: 300px;
}

.boxdiv-interno-right {
    width: 48%;
    float: right;
    min-width: 300px;
}

.boxdiv-interno p {
    font-size: 1.125vw;
    color: #1f2f63;
}

.boxdiv-interno .titulo {
    font-size: 2vw;
    color: #1f2f63;
}

/* ------------------- boxtag --------------------- */
.boxtag {
    background-color: #fff;
}

.boxtag-cinza {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 49%, rgba(242, 242, 242, 1) 50%);
}

.boxtag-moldura {
    width: 92vw;
    margin: 0 auto;
    max-width: 1200px;
}

.boxtag-texto {
    display: inline-block;
    width: auto;
    height: 6vw;
    border-radius: 20px;
    padding: 1vw 4vw;
    line-height: 3.5vw;
}

.boxtag-texto label {
    font-weight: bold;
    color: #fff;
    font-size: 3vw;
    vertical-align: middle;
}

@media screen and (max-width: 1000px) {
    .boxtag-texto {
        border-radius: 15px;
    }
}

@media screen and (max-width: 700px) {
    .boxtag-texto {
        border-radius: 10px;
    }
}

@media screen and (max-width: 500px) {
    .boxdiv {
        padding-top: 20px;
    }

    .boxdiv-interno p {
        font-size: 3.5vw;
    }
}

/* ------------------- curso --------------------- */

.curso {
    width: 76vw;
    max-width: 1200px;
    max-height: 256px;
    position: relative;
    margin: auto;
    max-width: 1090px;
}

.curso img {
    vertical-align: middle;
    border-radius: 10px;
    width: 100%;
}

.curso-titulo1 {
    font-size: 2.3vw;
    position: absolute;
    top: 56%;
    left: 20px;
    color: #fff;
}

.curso-titulo2 {
    font-size: 4vw;
    font-weight: bold;
    position: absolute;
    top: 65%;
    left: 20px;
    color: #fff;
}

/* ------------------- video --------------------- */

.curso-video {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    width: 74vw;
    max-width: 1210px;
    height: auto;
    min-height: calc(35vw * 9 / 16 + 20px);
    margin: 0 auto;
    border-radius: 8px;
    padding: 10px;
    overflow-x: visible;
}

.curso-video-exibir {
    width: 38vw;
    margin: 0px;
    height: 100%;
    min-width: 350px;
    max-width: 630px;
    max-height: 320px;
}

.curso-video-descricao {
    max-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 33vw;
    min-width: 350px;
    max-width: 560px;
    height: 100%;
    text-align: left;
    padding: 0px 10px 0 30px;
    font-size: 1.2em;
    border-radius: 20px;
    min-height: 300px;
    /*min-height:calc(38vw * 9 / 16 - 50px);*/
}

.curso-video-descricao h3 {
    color: #fff;
    font-size: 2em;
    margin: 0px;
}

.curso-video-descricao h4 {
    color: #fff;
    font-size: 1.5em;
    margin: 0px;
}

.curso-video-descricao h5 {
    color: #fff;
    font-size: 1em;
    margin: 0px;
}

.curso-video-descricao p {
    color: #fff;
    font-size: 0.7em;
    margin-right: 15px;
    text-align: justify
}

.curso-video-frame {
    width: 39vw;
    height: calc(39vw * 9 / 16);
    max-height: 315px;
    min-width: 350px;
    max-width: 640px;
    min-height: calc(350px * 9 / 16);
    border-radius: 20px;
}

@media screen and (max-width: 500px) {
    .curso-video {
        width: 96vw;
        padding: 0;
    }

    .curso-video-exibir {
        width: 96vw;
        min-width: 96vw;
        max-width: 96vw;
        display: block;
    }

    .curso-video-frame {
        width: 96vw;
    }

    .curso-video-descricao {
        width: 96vw;
        display: block;
        border-radius: 20px;
    }

    .curso-video-descricao h3 {
        font-size: 1.5em;
        margin: 10px;
    }
}

/* ------------------- unidades --------------------- */
.unidades-identifica {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 57%, rgba(242, 242, 242, 1) 58%);
}

.unidades-identifica-interno {
    max-width: 1200px;
    width: 92vw;
    margin: 5px auto 0px auto;
    padding: 0px;
}

.unidades-identifica img {
    width: 50%;
}


.unimor-gray {
    background-color: #f2f2f2;
}

.unimor-white {
    background-color: #fff;
}

.unidades-estrutura {}

.unidades-estrutura-interno-left {
    width: 84vw;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.unidades-estrutura-interno-right {
    width: 84vw;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.unidades-estrutura .titulo {
    font-size: 2.5vw;
    font-weight: 800;
}

.unidades-estrutura p {
    font-size: 1.5vw;
    font-weight: 500;
}

.unidades-estrutura .texto {
    width: 40vw;
    max-width: 550px;
    color: #1f2f63;
}

.unidades-estrutura .right {
    text-align: left;
}

.unidades-estrutura .left {
    text-align: right;
}

.unidades-estrutura img {
    width: 38vw;
    max-width: 500px;
    border-radius: 20px;
    height: calc(38vw / 1.54);
    max-height: 323px;
}

@media screen and (max-width: 500px) {
    .unidades-identifica-interno {
        width: 96vw;
    }

    .unidades-identifica img {
        width: 70%;
    }

    .unidades-estrutura-interno-left {
        width: 96vw;
        flex-direction: column;
    }

    .unidades-estrutura-interno-right {
        width: 96vw;
        flex-direction: column-reverse;
    }

    .unidades-estrutura .titulo {
        font-size: 7vw;
    }

    .unidades-estrutura p {
        font-size: 3.5vw;
    }

    .unidades-estrutura .texto {
        width: 90vw;
        margin: 10px auto 0 auto;
    }

    .unidades-estrutura .right {
        text-align: left;
    }

    .unidades-estrutura .left {
        text-align: left;
    }

    .unidades-estrutura img {
        width: 96vw;
        max-width: 96vw;
        height: calc(96vw / 1.54);
    }
}

@media screen and (min-width: 1600px) {
    .unidades-estrutura .titulo {
        font-size: 40px;
    }

    .unidades-estrutura p {
        font-size: 24px;
    }
}

/* ------------------- video --------------------- */

.unidades-video {
    width: 38vw;
    max-width: 500px;
    height: auto;
    min-height: calc(35vw * 9 / 16 + 20px);
    border-radius: 8px;
    overflow-x: visible;
}

.unidades-video-frame {
    width: 38vw;
    max-width: 500px;
    height: calc(38vw * 9 / 16);
    max-height: 315px;
    min-height: calc(350px * 9 / 16);
    border-radius: 20px;
}

@media screen and (max-width: 500px) {
    .unidades-video {
        width: 96vw;
        padding: 0;
    }

    .unidades-video-frame {
        width: 96vw;
    }
}

/* -------------------  --------------------- */
.box-tag-cinza {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 49%, rgba(242, 242, 242, 1) 50%);
}

.box-tag-cinza-moldura {
    width: 92vw;
    margin: 0 auto;
    max-width: 1200px;
}

.box-tag-cinza-texto {
    display: inline-block;
    width: auto;
    height: 6vw;
    /*	min-height:60px;*/
    border-radius: 20px;
    padding: 1vw 4vw;
    line-height: 3.5vw;
}

.box-tag-cinza-texto label {
    font-weight: bold;
    color: #fff;
    font-size: 3vw;
    vertical-align: middle;
}