﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
@import url('responsive.css');

:root {
    --main-color: #01579B;
    --white: #ffffff;
    --black: #000000;
    --black-80: rgba(0, 0, 0, 0.8);
    --black-60: rgba(0, 0, 0, 0.6);
    --black-30: rgba(0, 0, 0, 0.3);
    --black-10: rgba(0, 0, 0, 0.1);
    --bg-aguarde: #f1f1f1;
    --red: #D8000C;
    --text-user: #4F83CC;
    --yellow: #FFCA28;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: calc(100vh - 50px);
    background-color: var(--white);
    font-family: 'Roboto', sans-serif;
    width: 100% !important;
}

body{
    position: relative;
    padding-top: 70px;
}


/********************************
    HEADER
********************************/
header {
    position: fixed;
    top: 0;
    height: 70px;
    background-color: var(--main-color);
    width: 100%;
    padding: 15px 0;
    z-index: 100;
}

    header .container {
        display: flex;
    }

    header a.logo {
        width: 210px;
        height: 40px;
    }

        header a.logo img {
            width: 210px;
            height: 40px;
        }

    header nav {
        display: flex;
        justify-content: flex-end;
        width: calc(100% - 210px);
        align-items: center;
    }

        header nav > a {
            text-align: center;
            color: var(--white);
            padding: 5px 10px;
            margin: 0 5px;
            transition: all .2s;
            text-decoration: none;
        }

        header nav > a:hover {
            text-decoration: none;
            color: var(--white);
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            transition: all .2s;
        }

        header nav > a.vip {
            color: var(--yellow);
            font-weight: 600;
        }

        header nav > a.entrar {
            display: block;
            border: solid 1px var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            transition: all 0.2s;
        }

        header nav > a.entrar:hover {
            background-color: var(--white);
            color: var(--bg-logo);
            text-decoration: none;
            transition: all 0.2s;
        }
        header nav > a.menu-btn{
            display: none;
        }
        header nav.pushy {
            display: none;
        }
        header .site-overlay {
            display: none;
        }

.subtitle_element{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: auto;
    padding: 5px 0;
}
    .subtitle_element h1 {
        color: var(--main-color);
        font-size: 1.375em;
    }
    .subtitle_element img{
        width: 70px;
    }
h2.subtitle {
    color: var(--main-color);
    font-size: 1em;
    text-align: center;
    margin: 20px 0 20px;
}

.text{
    padding: 10px;
}
    .text p{
        font-size: 1em;
        color: var(--black-60);
    }

.text-center{
    text-align: center;
}

.container{
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
    .flex-center img {
        width: 220px;
        height: 100%;
    }

.text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .text p {
        color: var(--black-80);
        text-align: center;
    }

.timer {
    border: none;
    width: 20px;
    font-size: 18px;
    color: var(--black);
    font-weight: bold;
    pointer-events: none;
}

.timer_space {
    padding-bottom: 20px;
}

.timer_text {
    font-size: 18px;
    color: var(--black);
}

/********************************
    CARD TIMER
********************************/

.bg-aguarde {
    background-color: var(--bg-aguarde);
}

.card-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 200px);
    min-width: 100%;
}

.card-timer {
    display: flex;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 470px;
    padding: 2rem 0 0;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px rgba(0,0,0, .2)
}

/********************************
    BREADCRUMB
********************************/
#breadcrumb {
    width: 100%;
    height: 26px;
    margin: 5px 0;
    padding: 0;
}

ol.bc-ul {
    width: 100%;
    list-style: none;
}

    ol.bc-ul li {
        float: left;
        padding: 0 2px;
    }

        ol.bc-ul li:after {
            content: "\f105";
            font-family: FontAwesome;
            font-size: 12px;
            padding: 5px;
            color: var(--main-color);
        }

        ol.bc-ul li:last-child:after {
            content: "";
            padding: 0px;
        }

        ol.bc-ul li a {
            color: var(--main-color);
        }

            ol.bc-ul li a.current {
                color: var(--black-30);
                pointer-events: none;
                cursor: default;
            }

                ol.bc-ul li a.current:hover {
                    text-decoration: none;
                }


/********************************
    FOOTER
********************************/
footer {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    background-color: var(--white);
    bottom: -50px;

}

    footer div {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 50px;
    }
}
        footer div a {
            margin-right: 10px;
        }

            footer div a img {
                width: 100px;
                height: auto;
            }

        footer span {
            font-size: .8em;
            margin-left: 10px;
        }


/********************************
    SECTION HOME
********************************/

.content_home{
    display: block;
    position: relative;
    width: 70%;
    margin: 10px auto;
    padding: 20px;
}
    .content_home p {
        color: var(--black-80);
        margin-bottom: 5px;
    }



/*******************************
    INPUT LABEL FLOAT
********************************/
.label-float {
    position: relative;
    padding-top: 13px;
    margin: 20px 0 20px;
}

    .label-float input {
        border: 0;
        border-bottom: 1px solid lightgrey;
        outline: none;
        width: 100%;
        height: 40px;
        min-width: 180px;
        font-size: 16px;
        transition: all .3s ease-out;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -webkit-appearance: none;
        border-radius: 0;
        padding: 5px;
        background-color: transparent !important;
    }

    .label-float input:focus {
        border-bottom: 1px solid var(--main-color);
        box-shadow: none;
        background-color: transparent;
    }

    .label-float input::placeholder {
        color: transparent;
    }
    .label-float label {
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 25px;
        transition: all .3s ease-out;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        color: var(--main-color);
    }

    .label-float input:focus:required:invalid + label {
        color: var(--red);
    }

    .label-float input:focus:required:invalid {
        border-bottom: 1px solid var(--red);
        box-shadow: none;
    }

    .label-float input:required:invalid + label:before {
        content: '*';
    }

    .label-float input:focus + label,
    .label-float input:not(:placeholder-shown) + label {
        font-size: 13px;
        margin-top: 0;
        color: var(--main-color);
    }

.btn-default-new {
    background-color: var(--main-color);
    color: var(--white);
    text-shadow: none;
    min-width: 180px;
    height: 35px;
    border-radius: 20px;
    text-transform: uppercase;
    display: block;
    position: relative;
    margin: 0 auto 5px;
    border: 0;
    padding: 0 20px;
    cursor: pointer;
}
.imprimir{
    padding: 20px 0;
}

.btn-default-new:hover {
    background-color: var(--main-color);
    color: var(--white);
}

.btn-timer-color {
    background-color: var(--main-color);
    color: var(--white);
    text-shadow: none;
    min-width: 180px;
    height: 35px;
    border-radius: 20px;
    display: block;
    position: relative;
    margin: 0 auto 30px;
    border: 0;
    padding: 0 20px;
    cursor: pointer;
}

.btn-timer-color:hover {
    background-color: var(--main-color);
    color: var(--white);
}

/********************************
    SECTION PALLET COLOR
********************************/
.pallet_color > div{
    display: flex;
    justify-content: center;
    margin: 10px 0;
}
    .pallet_color > div div a {
        margin: 0 5px;
        display: block;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
    }
        .pallet_color > div div a img {
            width: 70px;
            height: 70px;
            position: relative;
            border-radius: 50%;
        }
    .pallet_color > div div.color_selected {
        margin: 0 5px;
        display: block;
        padding: 2px;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        overflow: hidden;
    }


/*******************************
    RESULTADO
********************************/
.name_user{
    color: var(--text-user);
    text-align: center;
    font-style: italic;
    font-size: 1.3em;
}

.resultado{
    font-size: 2em !important;
    margin: 20px auto;
}
.respostas{}
    .respostas article {
        border: solid 1px var(--main-color);
        margin: 10px 0;
        border-radius: 4px;
        padding: 10px 20px;
    }
        .respostas article h3 {
            font-size: 1em;
            color: var(--main-color);
        }
        .respostas article p {
            font-size: 0.9em;
            color: var(--black-80);
            margin-bottom: 5px;
        }



nav.teste {
    width: auto;
    height: auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    /* fade in checked menu */
}

    nav.teste .m-menu__checkbox {
        display: none;
    }

    nav.teste label.m-menu__toggle {
        cursor: pointer;
    }

    nav.teste .m-menu {
        position: fixed;
        top: 0;
        left: 0;
        max-width: 250px;
        width: calc(100vw - 30px);
        height: 100%;
        -moz-transform: translate3d(-250px, 0, 0);
        -o-transform: translate3d(-250px, 0, 0);
        -ms-transform: translate3d(-250px, 0, 0);
        -webkit-transform: translate3d(-250px, 0, 0);
        transform: translate3d(-250px, 0, 0);
        -moz-transition: transform 0.35s;
        -o-transition: transform 0.35s;
        -webkit-transition: transform 0.35s;
        transition: transform 0.35s;
        z-index: 50;
        overflow: hidden;
        background-color: var(--main-color);
    }

    nav.teste .m-menu__overlay {
        background-color: rgba(103, 103, 103, 0.5);
        position: absolute;
        top: 0;
        width: 100%;
        bottom: 0;
        z-index: 1;
        display: none;
    }

    nav.teste .m-menu__header {
        padding: 0 16px;
        height: 50px;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-around;
        justify-content: space-around;
        -ms-flex-pack: space-around;
        -webkit-align-items: center;
        align-items: center;
        border-bottom: 1px solid #e8e8e8;
    }

        nav.teste .m-menu__header span {
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            width: 100%;
        }

    nav.teste .m-menu .m-menu {
        -moz-transform: translate3d(480px, 0, 0);
        -o-transform: translate3d(480px, 0, 0);
        -ms-transform: translate3d(480px, 0, 0);
        -webkit-transform: translate3d(480px, 0, 0);
        transform: translate3d(480px, 0, 0);
    }

    nav.teste .m-menu ul {
        height: 100%;
        overflow-y: auto;
    }

        nav.teste .m-menu ul li a, nav .m-menu ul li label {
            display: block;
            text-align: left;
            padding: 0 15px;
            line-height: 47px;
            text-decoration: none;
            color: #333;
            cursor: pointer;
            font-size: 1rem;
            border-bottom: 1px solid #e8e8e8;
            position: relative;
        }

        nav.teste .m-menu ul li label.a-label__chevron::after {
            content: "";
            position: absolute;
            display: inline-block;
            height: 10px;
            width: 10px;
            border-color: #333;
            border-style: solid;
            border-width: 1px 1px 0 0;
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 50%;
            margin-top: -5px;
            right: 16px;
        }

        nav.teste .m-menu ul li .-invisible {
            border-bottom: 0;
        }

    nav.teste .m-menu .m-menu label.m-menu__toggle {
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        border-bottom: 0;
        padding: 0;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    nav.teste .m-menu__checkbox:checked ~ .m-menu__overlay {
        display: block;
    }

    nav.teste .m-menu__checkbox:checked ~ .m-menu {
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }



/********************************
    RESPONSIVO
********************************/

@media (max-width: 1023px) {
    header nav a,
    header nav > a.entrar {
        display: none;
    }

    header nav > a.menu-btn {
        display: block;
    }

    header nav.pushy {
        display: block;
    }

    header .site-overlay {
        display: none;
    }
}

@media (max-width: 767px) {
/********************************
    BODY
********************************/
    body {
        padding: 70px 0 50px 0;
        margin: 0;
    }

    .container {
        width: 100%;
        margin: 0;
    }

    .subtitle_element {
        width: 90%;
    }

        .subtitle_element h2 {
            font-size: 1.2em;
        }
    /********************************
    CONTENT HOME
********************************/
    .content_home {
        width: 90% !important;
        padding: 0 !important;
    }
}
        
