
/* 
    Created on : 8 de fev. de 2023, 15:22:08
    Author     : Shelby
*/
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;600;900&display=swap');

:root{
    --size-view: 1300px;

    --margin-emphasis: 140px;
    --margin-medium: 80px;
    --margin-normal: 40px;
    --margin-small: 20px;
    --margin-min: 10px;

    --text-h1: 3em;
    --text-h2: 2em;
    --text-h3: 1.2em;
    --text-p: 1em;
    --text-small: .8em;

    --color-white: #ffffff;
    --color-light-gray: #cccccc;
    --color-black: #141414;
    --color-main: #003358;
    --color-green: #026402;
    --color-red: #a90000;
    --color-orange: #af7202;
}


::-webkit-scrollbar {
    display: none;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inconsolata', monospace;
}

a{
    text-decoration: none;
}

ul, li{
    list-style: none;
}

h1{
    font-size: var(--text-h1);
}

h2{
    font-size: var(--text-h2);
}

h3{
    font-size: var(--text-h3);
}

h5,
p{
    font-size: var(--text-p);
}

small{
    font-size: var(--text-small);
}

body{
    width: 100vw;
    height: fit-content;
    background: var(--color-light-gray);
}

header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-language{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-language select{
    width: 120px;
    height: 30px;
    margin-right: 25px;
}

.header-content{
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-black);
}

header h1{
    text-transform: uppercase;
}

header h1 a{
    color: var(--color-white);
}

header h1 i{
    vertical-align: middle;
}

header ul{
    list-style: none;
    width: 200px;
    display: flex;
}

header ul li{
    margin: 10px;
    text-align: center;
}

header ul li a{
    font-weight: 300;
    font-size: var(--text-p);
    text-transform: uppercase;
    color: var(--color-light-gray);
    padding: 5px 10px;
    position: relative;
}

header ul li a:after{
    content: '';
    width: 0px;
    height: 2px;
    background: var(--color-light-gray);
    bottom:-5px;
    left: 0;
    position: absolute;
    transition: .2s all;
}

header ul li a.active{
    color: var(--color-black);
    background: var(--color-light-gray);
}

header ul li a.active:after{
    width: 100%;
}

header ul li a:hover{
    color: var(--color-black);
    background: var(--color-white);
    transition: .2s all;
}

header ul li a:hover:after{
    width: 100%;
    background: var(--color-white);
    transition: .2s all ease;
}

header .menu_mobile{
    display: none;
    font-size: var(--text-h2);
    color: #fff;
}


main{
    width: 100%;
    margin-top: var(--margin-emphasis);
    display: flex;
    justify-content: center;
}

footer{
    width: 100%;
    margin-top: var(--margin-emphasis);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background: var(--color-black);
}

footer .footer-item{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-item:first-child{
    height: 100px;
    background: var(--color-main);
}

footer .footer-item:last-child{
    height: 45px;
}

footer ul{
    display: flex;
    justify-content: center;
    list-style: none;
}

footer ul li{
    margin-right: 25px;
    font-size: var(--text-p);
    position: relative;
}

footer ul li:not(:last-child):after{
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    height: 20px;
    width: 1px;
    background: var(--color-light-gray);
}

footer ul li a{
    color: var(--color-light-gray);
    transition: .2s all ease;
}

footer ul li a:hover{
    font-weight: 600;
    color: var(--color-white);
    transition: .2s all ease;
}

footer p{
    color: var(--color-white);
    font-size: var(--text-small);
}

.row{
    width: 80%;
    max-width: var(--size-view);
}

.row.center{
    display: flex;
    justify-content: center;
}

.row.between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.row.end{
    display: flex;
    justify-content: end;
    align-items: center;
}

.row.msg{
    margin: var(--margin-normal) 0;
}

.row.w50{
    width: 50%;
}

.row.w20{
    width: 20%;
}

.box{
    width: 600px;
    height: 900px;
    background: var(--color-white);
}

.box-content{
    width: 100%;
    height: 100%;
    padding: var(--margin-small);
}

.box-content .box-content-item{
    color: var(--color-black);
}



.content-1,
.content-2{
    display: none;
    position: relative;

}



.content-1{
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.content-1 h3{
    color: var(--color-black);
    text-transform: uppercase;
    font-size: var(--text-h2);
    position: relative;
}

.content-1 h3:before{
    content: '';
    width: 90px;
    height: 5px;
    bottom: -5px;
    left: 0;
    border-radius: 40px;
    background: var(--color-light-gray);
    position: absolute;
}


.content-1 small{
    font-size: var(--text-p);
    color: var(--color-black);
}

.content-1 .dt{
    display: block;
    text-align: right;
    font-size: var(--text-small);
    color: var(--color-black);
}

.content-1 .circle{
    padding: 20px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    -webkit-animation: ping 0.8s ease-in-out infinite both;
    animation: ping 0.8s ease-in-out infinite both;
}

.content-1 .circle.success{
    background: var(--color-green);
}

.content-1 .circle.error{
    background: var(--color-red);
}

.content-1 .circle.warning{
    background: var(--color-orange);
}

.content-1 .errors-content{
    height: 700px;
    padding: var(--margin-small);
    overflow-y: auto;
    border: 1px solid var(--color-light-gray);
    box-shadow: inset 0 0 15px -10px var(--color-black);
}

.content-1 .errors-content .error_item{
    width: 100%;
    min-height: 180px;
    padding: var(--margin-small);
    margin-top: var(--margin-small);
    color: var(--color-black);
    background: var(--color-light-gray);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.content-1 .errors-content .error_item h5{
    color: var(--color-black);
    font-weight: 600;
    font-size: var(--text-p);
    text-transform: uppercase;
}

.content-1 .errors-content .error_item p{
    font-size: var(--text-p);
    font-weight: 300;
    line-height: 20px;
    margin: 22px 0;
}

.content-1 .errors-content .error_item small{
    font-size: var(--text-small);
    font-weight: 300;
    display: block;
    text-align: right;
}

.content-1 .errors-content .error_item:hover{
    box-shadow: 0 0 15px -10px var(--color-black);
}

.content-1 .errors-content .error_item:first-child{
    margin-top: 0;
}

.content-1 .errors-content .error_item:before{
    content: '';
    width: 5px;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.content-1 .errors-content .error_item.success:before{
    background: var(--color-green);
}

.content-1 .errors-content .error_item.error:before{
    background: var(--color-red);
}

.content-1 .errors-content .error_item.warning:before{
    background: var(--color-orange);
}




input,
select,
textarea{
    padding-left: 10px;
    height: 45px;
    outline: none;
    transition: all 0.2s ease-in-out;
    border: .5px solid var(--color-light-gray);
}

textarea{
    height: 250px;
    padding: 15px;
    resize: none;
}

input[type="text"]:focus, textarea:focus, select:focus {
    border: .5px solid var(--color-black);
    transition: all 0.2s ease-in-out;
}



.content-2{
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.content-2 h3{
    color: var(--color-black);
    text-transform: uppercase;
    font-size: var(--text-h2);
    position: relative;
}

.content-2 h3:before{
    content: '';
    width: 90px;
    height: 5px;
    bottom: -5px;
    left: 0;
    border-radius: 40px;
    background: var(--color-light-gray);
    position: absolute;
}


.content-2 small{
    font-size: var(--text-p);
    color: var(--color-black);
}

.content-2 form{
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.content-2 form:after{
    content: '';
    width: 50%;
    height: 2px;
    background: #e1e1e1;
    top: -40px;
    left: 25%;
    position: absolute;
}

.content-2 form .control-input{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    position: relative;
}

.content-2 form .control-input:last-child{
    align-items: end;
    margin-top: 0px;
}

.content-2 form .control-input label{
    color: var(--color-black);
    margin-top: 10px;
    margin-left: 10px;
    position: absolute;
    font-size: var(--text-p);
    transition: all 0.2s ease-in-out;
}

.content-2 form .control-input label.notempty{
    margin-top: -20px;
    margin-left: 0px;
    position: absolute;
}

.content-2 form .control-input input::placeholder,
.content-2 form .control-input textarea::placeholder{
    color: transparent;
    text-indent: 10px;
    transition: all 0.2s ease-in-out;
}

.content-2 form .control-input input:focus ~ label,
.content-2 form .control-input select:focus ~ label,
.content-2 form .control-input textarea:focus ~ label{
    margin-top: -20px;
    margin-left: 0px;
    position: absolute;
    color: var(--color-black);
}

.content-2 form .control-input input:focus::placeholder,
.content-2 form .control-input textarea:focus::placeholder{
    color: var(--color-gray);
}

.content-2 form .control-input .btn{
    width: 150px;
    padding: 10px;
    color: var(--color-main);
    border: .5px solid var(--color-main);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .5s all;
    position: relative;
    font-size: var(--text-small);
}

.content-2 form .control-input .btn:hover{
    color: var(--color-white);
    background: var(--color-main);
    box-shadow: 0 0 0px 0px var(--color-black);
    transition: .5s all;
}

.content-2 form .control-input .btn:before{
    display: none;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -10px;
    position: absolute;
    background: var(--color-main);
    border-radius: 25px;
    -webkit-animation: scale-up-hor-center 0.5s infinite alternate both;
    -webkit-animation: scale-down-hor-center 0.4s infinite alternate both;
    animation: scale-down-hor-center 0.4s infinite alternate both;
}

.content-2 form .control-input .btn.disabled{
    cursor:progress;
    color: var(--color-light-gray);
    background: var(--color-black);
    border:none;
    box-shadow: none;
    transition: .5s all;
}

.content-2 form .control-input .btn.loader:before{
    display: block;
}



.content-3{
    height: 100%;
    width: 90%;
    left: 5%;
    position: relative;
    overflow-y: auto;
}

.content-3 h3{
    font-size: var(--text-h2);
    margin: var(--margin-normal) 0;
    position: relative;
}

.content-3 h3:after{
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    bottom: calc(var(--margin-small) * -1);
    background: var(--color-black);
    position: absolute;
}

.content-3 li{
    list-style: none;
    text-indent: 25px;
    margin-bottom: 25px;
    text-align: justify;
    line-height: 25px;
}



.error-page{
    width: 80%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-page i{
    font-size: 7em;
    position: relative;
}

.error-page i:after{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--color-light-gray);
    right: -25px;
    top: 0;
}

.error-page .error-page-desc p{
    margin: 20px 0;
}

.error-page > .row{
    display: flex;
    justify-content: center;
    align-items: center;
}

.msg_j{
    width: 80%;
    left: 10%;
    height: 50px;
    padding: 15px;
    top: 0;
    color: var(--color-white);
    background: var(--color-green);
    position: fixed;
    text-align: center;
    font-weight: 600;
    opacity: 0;
    transition: .5s all;
    box-shadow: 0px 0px 20px -8px var(--color-black);
}


@-webkit-keyframes ping {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ping {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes scale-down-hor-center {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    100% {
        -webkit-transform: scaleX(0.3);
        transform: scaleX(0.3);
    }
}
@keyframes scale-down-hor-center {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    100% {
        -webkit-transform: scaleX(0.3);
        transform: scaleX(0.3);
    }
}


@media only screen and (max-width: 600px) {
    :root{
        --margin-emphasis: 60px;

        --text-h1: 2.2em;
        --text-h2: 1.6em;
        --text-h3: 1.2em;
        --text-p: .8em;
        --text-small: .75em;
    }

    .row{
        width: 90%;
    }

    .box{
        min-width: 90%;
        max-width: 90%;
    }


    header nav{
        display: none;
        position: absolute;
        top: 115px;
        right: 0;
        background: var(--color-black);
        z-index: 9;
        box-shadow: -4px 4px 20px -10px var(--color-black);
    }

    header ul {
        width: 100%;
        flex-direction: column;
    }

    header ul li a{
        width: 200px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--color-black);
        background: var(--color-white);
    }

    header ul li a:after{
        content: '';
        width: 0px;
        height: 2px;
        background: var(--color-white);
        bottom:-5px;
        left: 0;
        position: absolute;
        transition: .2s all;
    }

    header ul li a:hover{
        color: var(--color-main);
        background: var(--color-white);
    }

    header ul li a:hover:after{
        background: var(--color-white);
    }

    header ul li a.active{
        color: var(--color-gray);
        background: var(--color-light-gray);
    }

    header ul li a.active:after{
        background: var(--color-light-gray);
    }

    header ul li a.active:hover{
        color: var(--color-main);
        background: var(--color-white);
    }

    header ul li a.active:hover:after{
        background: var(--color-white);
    }


    header .menu_mobile{
        display: flex;
    }

    .header-language select{
        margin-right: 0px;
    }

    .content-1 .circle {
        padding: 10px;
    }

    .content-1 h3{
        font-size: var(--text-h2);
    }

    .content-1 small {
        font-size: var(--text-small);
    }

    .error_item h5 {
        font-size: var(--text-p) !important;
    }

    footer ul li {
        margin-right: 15px;
        font-size: var(--text-small);
    }

    footer ul li:not(:last-child):after {
        right: -5px;
    }

}