@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Libre+Franklin:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --darkgray: #212329;
    --brightred: #f9423D;
    --brightgreen: #20ac3e;
    --brightyellow: #bbab1e;
    --blue: #274fbe;
    --white: #fff;
    --black: #000000;
    --lightred: #f9433dcc;
    --darkmode: #292929;
    --lightgray: #38393b;
    
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--darkmode);
}

/*inicio loading screen*/


/*inicio cabeçalho*/
.nav-container{

width: 100%;
background-color: var(--darkgray);


}

.navbar {
    display: grid;
    grid-template-columns: 0.2fr auto 1fr;
    align-items: center;
    height: 60px;
    width: 90%;
    max-width: 1720px;
    margin: 0 auto;
}

#navbar-logo{
    color: var(--white);
    justify-self: start;
    margin-left: 50px;
    text-decoration: none;
    list-style: none;
}

#navbar-logo{
    cursor: pointer;
    text-decoration: none !important;
    list-style: none;
}

.human-finances{
    text-decoration: none !important;
}


.nav-menu{
    display: grid;
    grid-template-columns: repeat(4, auto);
    list-style: none;
    text-align: center;
    width: 70%;
    justify-self: end;
}

.nav-links{
    color: white;
    text-decoration: none;
}

.one:hover{
    color: var(--brightred);
    transition: all 0.2s ease-out;
}
.two:hover{
    color: var(--brightyellow);
    transition: all 0.2s ease-out;
}
.three:hover{
    color: var(--brightgreen);
    transition: all 0.2s ease-out;
}

.nav-links-btn{
    background-color: var(--blue);
    padding: 6px 16px;
    border-radius: 15px;
}

.nav-links-btn:hover{
    background-color: rgb(10, 10, 117);
    color: white;
    transition: all 0.3s ease-out;
    
}

.menu-toggle .bar{
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: var(--white);

}

@media screen and (max-width: 768px){
    .nav-container{
        position: relative;
        z-index: 9;
    }

    .nav-menu{
        display: grid;
        grid-template-columns: auto;
        background: var(--brightred);
        margin: 0;
        width: 100%;
        position: absolute;
        top: 60px;
        left: -100%;
        opacity: 0;
        transition: all 0.5s ease;
    }

    #navbar-logo{
        margin-left: 20px;
    }

    .nav-menu.active{
        background: var(--darkgray);
        left: 0;
        opacity: 1;
        transition: all 0.5s ease;
    }

    .nav-links{
        text-align: center;
        line-height: 60px;
        width: 100%;
        display: table;
        background-color: var(--darkgray);
    
    }

    .nav-links:hover{
        background-color: var(--brightred);
        color: var(--white);
        transition: all 0.4s ease-out;
    }

    .navbar{
        width: 100%;

    }

    .nav-links-btn{
        border: none;
        padding: 0;
        border-radius: 0;
        background-color: var(--darkgray);
        color: var(--white);
        transition: all 0.4s ease-out;
    }

    .nav-links-btn:hover{
        border: none;
        padding: 0;
        border-radius: 0;
        background-color: var(--brightred);
        color: var(--white);
        transition: all 0.4s ease-out;
    }

    #mobile-menu{
        position: absolute;
        top: 25%;
        right: 5%;
        transform: translate(5%, 25%);
        
        
    }

    .menu-toggle .bar{
        display: block;
        cursor: pointer;
    }

    .menu-toggle:hover{
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;

    }

    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);

    }

    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);

    }


    .body-container1.blurry{
        filter: blur(5px);
        filter: brightness(20%);
        transition: all 0.2s ease-in;
    }

    
}
/*fim do cabeçalho*/

/*começo do body*/

.body-container1 {
   height: 900px;
   width: 100%;
   background-color: var(--darkgray);
   margin-top: 50px;
   /* background: linear-gradient(60deg, var(--brightred), var(--brightyellow), var(--brightgreen), var(--blue));
   background-size: 600% 600%;
   margin-top: 50px;
   animation: gradientbg 18s infinite linear;
    */
   
}


.body-text{
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(60deg, var(--brightred), var(--brightyellow), var(--brightgreen), var(--blue)); 
    background-size: 600% 600%;  
    animation: gradientbg 10s infinite linear;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: xx-large; 
    font-weight: 900;
    
    /* text-align: center;
    padding-top: 10%;
    letter-spacing: 6px;
    font-size: 3vw;
    color: var(--white); */
}

::-webkit-scrollbar {
    width: 10px;
    
}

::-webkit-scrollbar-thumb {
    background-color: var(--moredarkgray);
    border-radius: 10px;
    border: 1px solid var(--darkmode);
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--lightgray);

}


@keyframes gradientbg    {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/*fim do body*/

/*começo do carrossel - usar no nina lessa*/

/* .slider{
    margin-top: 50px;
    margin: 0 auto;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slides{
    margin-top: 50px;
    width: 400%;
    height: 600px;
    display: flex;
}

.slides input{
    display: none;
}

.slide{
    width: 25%;
    position: relative;
}

.slide img{
    width: 100%;
}

.manual-navigation{
    position: absolute;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.manual-btn{
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child){
    margin-right: 40px;
}

.manual-btn:hover{
    background-color: var(--white);
}

#radio1:checked ~ .first{
    margin-left: 0;
    transition: 1s ease-in;
}

#radio2:checked ~ .first{
    margin-left: -25%;
    transition: 1s ease-in;
}

#radio3:checked ~ .first{
    margin-left: -50%;
    transition: 1s ease-in;
}

#radio4:checked ~ .first{
    margin-left: -75%;
    transition: 1s ease-in;
} */



/*final do carrossel - usar no nina lessa*/

/*inicio owl carrossel*/

.wrapper{
    width: 100%;
}

.wrapper .carousel{
    max-width: 2000px;
    margin: auto;
    margin-top: 50px;
    padding: 0 40px;
}

.carousel .card{
    
    line-height: 750px;
    text-align: center;
    color: var(--white);
    font-size: 90px;
    font-weight: 600;
    margin: 30px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}

.carousel .card-1{
    background: var(--brightred);
}
.carousel .card-2{
    background: var(--brightgreen);
}
.carousel .card-3{
    background: var(--brightyellow);
}
.carousel .card-4{
    background: var(--blue);
}
.carousel .card-5{
    background: var(--darkgray);
}
.owl-dots{
    text-align: center;
    margin-top: 40px;
}

.owl-dot{
    height: 15px;
    width: 45px;
    border-radius: 25px;
    background: var(--darkgray)!important;
    cursor: pointer;
    margin: 0 5px;
    outline: none;
    transition: all 0.3s ease;
}

.owl-dot:hover,
.owl-dot:active{
    background: black !important;
}

/*final owl carrossel*/

/*começo do footer*/

footer{
    margin-top: 50px;
    bottom: 0px;
    width: 100%;
    background: black;
    
}

.main-content{
    display: flex;
    margin-right: 0px;
    color: var(--white);
}

.main-content .box{
    flex-basis: 50%;
    padding: 10px 20px;
}

.box h2{
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.box .content{
    margin: 20px 0 0 0;

}

.left .content p{
    text-align: justify;

}

.left .content .social{
    margin: 20px 0 0 0;

}

.left .content .social a{
    padding: 0 2px;

}

.left .content .social a span{
    height: 40px;
    width: 40px;
    background: #1a1a1a;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;

}

.left .content .social a span:hover{
    background: var(--brightred);
}

.left-box .copywrite::after{
    margin-bottom: -20px;
}

@media screen and (max-width: 768px){

.main-content{
    display: grid;
        grid-template-columns: auto;
}
}

/*fim do footer*/

/*aba produtos*/

.cont-1{
    color: #fff;
    margin-top: 30px;
    display: grid;
    text-align: center;
    align-items: center;
}

.contratos-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    grid-template-areas: 
    "a b c"
    "a b c"
    "d e f"
    ;
    grid-column-gap: 25px;
    grid-row-gap: 1em;
    margin-top: 10px;
    border: 10px;
    /* box-shadow: 0 0 1em rgba(0, 0, 0, 0.5); */
}

.items-contrato{
    margin-top: 10px;
    color: #fff;
    box-shadow: 1px 0 1em rgba(0, 0, 0, 0.5);
    background: var(--darkgray);
    text-align: center;
    align-items: center;
}

.sete{
    grid-area: d;
    margin-left: 300px;
    margin-right: -300px;

}

.oito{
    grid-area: f;
    margin-left: -300px;
    margin-right: 300px;
}

@media screen and (max-width: 768px){

    .contratos-container{
        display: grid;
        grid-template-columns: auto;
        
        grid-template-areas: 
        "a"
        "b"
        "c"
        "d"
        "e"
        "f"
        "g"
        "h"
        ;
    }

    .um{
        grid-area: a;
    }
    .dois{
        grid-area: b;
    }
    .tres{
        grid-area: c;
    }
    .quatro{
        grid-area: d;
    }
    .cinco{
        grid-area: e;
    }
    .seis{
        grid-area: f;
    }
    .sete{
        grid-area: g;
        margin-left: 0;
        margin-right: 0;
    }
    .oito{
        grid-area: h;
        margin-left: 0;
        margin-right: 0;
    }
}

/*fim do produtos*/

/*inicio login cadastro*/

.login{
    height: 620px;
    width: 450px;
    background-color: var(--darkgray);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
    
}

.login-logo{
    display: grid;
    align-items: center;
    text-align: center;
}

img{
    width: 25%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
 
}

h1{
    margin-bottom: 30px;
    color: var(--white);
}

label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: var(--lightgray);
    border-radius: 20px;
    padding: 0 10px;
    margin-top: 0;
    font-size: 20px;
    font-weight: 300;    
    color: var(--white);
    border: none;
    
}
input[type=submit]:hover{
    background-color: var(--blue);
    transition: all 0.5s ease;
    cursor: pointer;
}

.input-btn{
    margin-top: 40px;
    margin-bottom: 15px;
    
}

.input-btn-cad{
    margin-top: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-btn-cad input[type=submit]{
    width: 400px;
    font-size: 30px;
}


.cadastro{
    text-decoration: none !important;
    color: var(--white);
    text-align: center;
}

.cadastro a{
    text-decoration: none !important;
    color: var(--white);
}

.cadastro a:hover{
    text-decoration: none !important;
    color: var(--brightyellow);
}

/*inicio cadastro cadastro-ofc*/

.cadastro-ofc{
    height: 100%;
    width: 900px;
    background-color: var(--darkgray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
    
}

.cadastro-logo{
    display: grid;
    align-items: center;
    text-align: center;
}

.cadastro-logo h1{
    margin-bottom: 30px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 40px;
}


.cadastro-logo img{
    width: 25%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border: 1px solid var(--black);
    border-radius: 50%;
 
}

.personal-title h2{
    color: white;
    font-size: 30px;
    margin-bottom: 10px;
}

.address-title h2{
    color: white;
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 70px;
}

.password-title h2{
    color: white;
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 70px;
}



label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.input-line-cad{
    display: block;
    height: 50px;
    width: 800px;
    background-color: var(--lightgray);
    border-radius: 20px;
    padding: 0 10px;
    margin-top: 0;
    font-size: 20px;
    font-weight: 300;    
    color: var(--white);
    border: none;
    
}
input[type=submit]:hover{
    background-color: var(--blue);
    transition: all 0.5s ease;
}

.input-btn{
    margin-top: 40px;
    margin-bottom: 15px;
    
}

.cadastro{
    text-decoration: none !important;
    color: var(--white);
    text-align: center;
}

.cadastro a{
    text-decoration: none !important;
    color: var(--white);
}

.cadastro a:hover{
    text-decoration: none !important;
    color: var(--brightyellow);
}

.forgetpw{
    color: var(--white);
    text-align: center;
    margin-top: 10px;
}

.forgetpw a{
    text-decoration: none;
    color: var(--white);
    
}

.forgetpw a:hover{
    font-weight: 900;
    transition: 0.2s all ease-in;
}

/*recuperar senha inicio*/

.recover{
    width: 100%;
}

.recover-beg{
    width: 100%;    
    background-color: var(--darkgray);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4);
}

.recover-title h1{
    font-size: 60px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    text-transform: uppercase;
}

.recover-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
   
}

.rec-form-desc p{
    font-size: 20px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.input-line-recover{
    width: 550px;
}

@media screen and (min-width: 320px) and (max-width: 480px){
    .login{
        width: 100%;
        padding: 20px 20px;
    }
    .cadastro-ofc{
        width: 100%;
    }
    .input-line-cad{
        width: 95%;
    }

    .cadastro-form{
        width: 95%;
    }
}
