﻿@charset "UTF-8";

// ESSENCIAIS
//------------------------------------
@import 'mix/variables';
@import 'mix/functions';

@import 'components/normalize';
@import 'misc/essential';


// ESTILOS INICIAIS
//------------------------------------
*,
*:before,
*:after {
    box-sizing: inherit;
    -moz-osx-font-smoothing: grayscale; // https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth
    -webkit-font-smoothing: antialiased; // https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth
}

html {
    font-size: @font-base * 1px;
    box-sizing: border-box;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: @font-base*1px;
    color: @color-black;
    background: @color-lblue;
    height: 100%;
}

form {
    min-height: 100%;
    position: relative;
}

a {
    color: @color-black;

    &,
    &:hover {
        text-decoration: none;
    }
}

// ESTILOS COMPONENTES (gerados arquivos separados)
//------------------------------------
@import 'components/boxmsg';
@import 'components/loading';
@import 'components/logotype';
@import 'components/breadcrumb';
@import 'components/btn';


// ESTILOS MISCELANEOS
//------------------------------------
@import 'misc/fonts';


// ESTILOS ESPECIFICOS
//------------------------------------
.vestibular-page {
    > .loading,
    .msg-box {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 100px;
        right: 0;
        margin: auto;
    }

    .msg-box{
        text-align:center;
        width:450px;
        max-width:100%;
        display:table;
        border:0;

        .logotype{
            margin:0 auto 20px;
        }
    }

    @media screen{
        @media (min-width:960px){
            padding-bottom: 100px; // altura footer
        }
    }
}

.vestibular-header {
    background: @color-dblue;
    padding: 30px 0;

    .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .btn {
        white-space: nowrap;
    }

    @media screen{
        @media (min-width:700px) and (max-width:959px){
            .btn{
                margin-top:15px;
            }
        }

        @media (min-width:960px){
            .content{
                flex-direction: row;
            }

            .btn{
                margin-right:15px;
            }
        }
    }
}

.vestibular-header--content{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    text-align:center;
}

.vestibular-title {
    font-size:35px;
    margin:20px 0;
    font-weight:700;
    color:@color-white;
    line-height:.76em;

    @media screen{
        @media (min-width:960px){
            font-size:60px;
            margin-top:0;
        }
    }
}

.vestibular-slider {
    margin:30px 15px 0;
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    padding-bottom: 40.85%; // proporção banner 1170x478

    @media screen{
        @media (min-width:960px){
            margin-top:60px;
        }
    }
}

.vestibular-links {
    margin:10px 0 0;
    display:flex;
    flex-wrap:wrap;
    padding:0;
    list-style:none;

    > li{
        .flex(12);
        padding:0 15px;
        margin-top:20px;
    }

    @media screen{
        @media (min-width:700px){
            > li{
                .flex(6);
            }
        }

        @media (min-width:960px){
            margin:30px 0;

            > li{
                margin-top:30px;
            }
        }

        @media (min-width:1120px){
            > li{
                .flex(4);
            }
        }
    }
}

.vestibular-link {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.7em;
    display:block;
    height:100%;

    img {
        width: 60px;
        height: 60px;
    }

    &.orange {
        background: @color-orange;
    }

    &.blue {
        background: @color-dblue2;
    }

    &.red {
        background: @color-red;
    }

    &.light-blue {
        background: @color-dblue;
    }

    &.gray {
        background: @color-graygreen;
    }

    &.green {
        background: @color-green;
    }
}

.vestibular-link--intro{
    padding: 15px;
    height:90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: @color-white;

    strong {
        font-size: 20px;
        line-height: 1.15em;
        display: block;

        &.no-upper{
            text-transform:none;
        }
    }

    &:hover strong{
        text-decoration:underline;
    }

    @media screen{
        @media (min-width:540px){
            height:120px;

            strong {
                font-size: 26px;
            }
        }

        @media (min-width:960px){
            padding: 30px 40px;
            height:140px;
        }
    }
}

.vestibular-link--list{
    padding:0 40px 30px;
    margin:-25px 0 0;
    list-style:none;

    a{
        color: @color-white;
        display:block;

        &:before{
            content:'';
            width:7px;
            height:2px;
            background:@color-white;
            display:inline-block;
            margin:0 10px 4px 0;
        }

        &:hover{
            text-decoration:underline;
        }
    }
}

.vestibular-footer {
    background: @color-dblue;
    line-height: 1.3em;
    padding:20px 15px;
    margin: 30px 0 0;
    text-align: center;
    font-size: 10px;
    color: @color-white;
    text-transform: uppercase;

    @media screen{
        @media (min-width:960px){
            position:absolute;
            left:0;
            right:0;
            bottom:0;
            line-height: 100px;
            margin: 0;
            padding:0;
        }
    }
}