*,
 ::after,
 ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    --main-color: rgba(55, 98, 231, 1);
    --accent-color: rgba(255, 117, 51, 1);
    --secondary-color: rgba(73, 117, 191, 1);
    --txt-color: rgba(130, 130, 130, 1);
    --bg-color: rgba(248, 248, 248, 1);
    --spacer: 15px;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    background: #ffbe09;
    color: #333;
}

.escolha nav {
    background: rgba(4, 35, 70, 1);
}

.escolha footer {
    background: rgba(241, 90, 36, 1.00);
    text-align: center;
    font-size: calc(.75rem + (16 - 12) * ((100vw - 320px) / (1170 - 320)));
}

.unigoias footer {
    background-color: #ffbe09 !important;
    color: rgba(4, 35, 70, 1) !important;
}

.container {
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    padding: var(--spacer);
    display: grid;
    grid-column-gap: 15px;
}

.escolha-topo,
footer {
    color: #fff;
    height: 50px;
    z-index: 999;
}

.escolha-menu,
.sub-menu {
    text-align: center;
    list-style: none;
}

.escolha-menu {
    display: flex;
    flex-flow: column;
}

.menu-item {
    display: none;
}

.sub-menu a {
    color: white;
}

.logo {
    height: 100%;
    max-height: 25px;
    width: fit-content;
}

.title {
    margin-top: var(--spacer);
}

.subtitle {
    color: aliceblue;
    font-size: 3rem;
}

.escolha .box a {
    display: block;
    background: rgba(255, 255, 255, 1);
    margin-top: var(--spacer);
    margin-bottom: var(--spacer);
    padding: 30px;
    border-radius: 2px;
    transform: translateY(0);
    cursor: pointer;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .15);
    color: rgba(8, 56, 109, 1.00);
    transition: .2s all;
}

.escolha .box a:hover {
    transform: translateY(-5px);
    transition: .2s all;
}


/*GERAL*/

a {
    color: #FCC821;
    text-decoration: none;
    cursor: pointer;
}

.univestibular .topo a {
    color: rgba(241, 90, 36, 1.00);
}

.univestibular .info a {
    color: rgba(241, 90, 36, 1.00);
}

p {
    color: #fff;
}

.btn {
    background: var(--accent-color);
    display: inline-block;
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    font-weight: 400;
    padding: .75em 1.25em .75em 2.5em;
    margin-bottom: .3125rem;
    border-radius: 1.75em;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .16);
    transition: all .2s ease;
}

.btn.btn-lg {
    font-size: 1.125rem;
}

.btn.btn-sm {
    font-size: .875rem;
}

.btn.btn-cta {
    background: rgba(55, 98, 231, 1);
}

.btn.btn-disabled {
    background: rgba(0, 0, 0, .2);
    opacity: .8;
    cursor: not-allowed;
}

.title img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
}

main {
    position: relative;
}

main::before {
    content: '';
    display: block;
    position: absolute;
    background: url(../img/bg-nova-home-geral.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    filter: blur(8px);
}

.unigoias main::before {
    background: url(https://unigoias.com.br/wp-content/themes/uni-anhanguera/img/background-unigoias-graduacao_2020-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

main .container {
    grid-template-rows: 1fr min-content;
    min-height: calc(100vh - 100px);
}

@media screen and (min-width: 760px) {
    .escolha .opcoes {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        margin-bottom: 10%;
    }
    .escolha .opcoes .box {
        margin: var(--spacer);
        flex: 1 100%;
    }
    main::before {
        filter: blur(0);
    }
    .title {
        align-self: center;
    }
    .title img {
        max-width: 38%;
        margin: 0;
    }
    .unigoias .title img {
        max-width: 50%;
    }
    .escolha-topo {
        padding: 0;
    }
    .escolha-menu {
        display: flex;
        flex-flow: row;
        justify-content: flex-end;
    }
    .escolha-menu .logo {
        margin-right: auto;
        align-self: center;
        justify-self: start;
    }
    li.menu-item.parent-item {
        position: relative;
        display: inline-block;
        height: 50px;
        line-height: 50px;
        padding-left: 1rem;
    }
    .escolha-menu .sub-menu {
        border-top: 2px solid rgba(255, 255, 255, 1);
        display: block;
        position: absolute;
        right: 0;
        width: max-content;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all .5s ease-in-out;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    }
    .sub-menu .menu-item {
        display: block;
        line-height: 2;
    }
    .escolha-menu .parent-item:hover>a {
        color: var(--accent-color);
    }
    .escolha-menu .parent-item:hover>.sub-menu {
        border-top: 2px solid rgba(255, 117, 51, 1);
        max-height: 30rem;
        opacity: 1;
        background-color: aliceblue;
        transition: all .5s ease-in-out;
    }
    .sub-menu a {
        color: var(--accent-color);
        padding: 5px 15px;
    }
    .sub-menu a:hover {
        color: var(--main-color);
    }
    .box .info {
        display: none;
    }
}