/* CSS Reset */
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family:Arial;
    text-align: center;
    color: #adadad;
}
testarea:focus, input:focus{
    outline: none;
}
/* HEADER: LOGO E MENU  */
.header{
    height:120px;
    width: 100%;
    background-color: #000000;
    border-bottom: 2px solid #f92672;
}
nav{
    display: flex;
    justify-content: space-between;
    padding: 20px;

}
nav ul{
    display: flex;
    align-items: center;
    list-style: none;
}
ul li{
    margin-right: 30px;
}
ul li a{
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
}
ul li a:hover{
    color: #e9322d;
}

/*  HOME: SECTION MESSAGE  */
.body-home, .opacity-home{
    height:500px;
    width: 100%;
}
.body-home{
    background-image: url("../img/home_photo_1.png");
    background-attachment:fixed;
    background-position: center;
    background-size: 100%;
}
.opacity-home{
    background-color: #000000;
    opacity: 55%;
}
.text-1, .text-2, .text-3{
    color: #FFFFFF;
    text-align:center;
}
.text-1{
    font-family:Georgia;
    font-size:32px;
    font-style:italic;
    padding-top: 110px;
}
.text-2{
    font-family:Arial;
    font-size:62px;
    font-weight:bold;
    padding-top: 70px;
}
.text-3{
    font-family:Arial;
    font-style:italic;
    font-size:20px;
    font-weight:bold;
    padding-top: 70px;
}

/*   HOME: SECTION MODULES    */
.section-modules{
    min-height: 60vh;
    width: 100%;
    opacity: 100%;
    color: #000000;
    text-align:center;
    font-family:Arial;
    font-size:62px;
    font-weight:bold;
}

/*   HOME: SECTION SCENARIOS    */
.section-scenarios, .opacity-home2{
    height:600px;
    width: 100%;
}
.section-scenarios{
    background-image: url("../img/home_photo_2.png");
    background-position: top;
    background-size: 100%;
    background-attachment:fixed;
    color: #FFFFFF;
    text-align:center;
    font-family:Arial;
    font-size:62px;
    font-weight:bold;
}
.opacity-home2{
    background-color: #000000;
    opacity: 55%;
}

/*   HOME: SECTION APP    */
.section-app{
    background-color: #eee;
    height:auto;
    width: 100%;
    font-weight:bold;
    color: #000000;
    text-align:center;
    font-family:Arial;
    font-size:62px;
}
.app{
    min-height: 60vh;
    padding: 50px;
    font-size: 20px;
    text-align: left;
}
.photos-app{
    max-width: 1200px;
    margin: 0 auto;
}
.card{
   width: 43%;
   display: inline-block;
   margin: 0.5% 0.5%;
   padding: 15px;
}
.photo-app{
    height: 300px;
    width: 100%;
    margin-bottom: 10px;
    background-position: center;
    background-size: cover;
}
#photo-1{
    background-image: url('../img/home_photo_4.jpg');
}
#photo-2{
    background-image: url('../img/home_photo_5.jpg');    
}
#photo-3{
    background-image: url('../img/home_photo_6.jpg');    
}
#photo-4{
    background-image: url('../img/home_photo_7.jpg');    
}
h3{
    margin-bottom: 2px;
    color: #002093;
    border-left: 5px solid #002093;
    padding-left: 7px;
    text-align: left;
    font-size: 16px;
}
.card p{
    margin-bottom: 5px;
    text-align: left;
    color: #222;
    font-size: 12px;
}

/*   ABOUT: BODY    */
.body-about, .opacity-about{
    height: 570px;
    width: 100%;
}
.body-about{
    background-image: url("../img/home_photo_1.png");
    background-attachment:fixed;
    background-position: center;
    background-size: 100%;
}
.opacity-about{
    background-color: #000000;
    opacity: 55%;
}
.text1-about, .text2-about{
    text-align:left;
    margin-left: 50px;
    font-family:Arial;
}
.text1-about{
    color: #f92672;
    border-left: 5px solid #f92672;
    font-size:25px;
    font-weight:bold;
    padding-left: 7px;
    margin-bottom: 10px;
}
.text2-about{
    color: #FFF;
    font-size:16px;
    margin-bottom: 50px;
    padding-left: 12px;
}

/*   PRODUCT: BODY    */
.body-product, .opacity-product{
    height: 500px;
    width: 100%;
}
.body-product{
    background-image: url("../img/home_photo_1.png");
    background-attachment:fixed;
    background-position: center;
    background-size: 100%;
}
.opacity-product{
    background-color: #000000;
    opacity: 55%;
}
.text1-product, .text2-product{
    text-align:left;
    margin-left: 50px;
    font-family:Arial;
}
.text1-product{
    color: #f92672;
    border-left: 5px solid #f92672;
    font-size:25px;
    font-weight:bold;
    padding-left: 7px;
    margin-bottom: 10px;
}
.text2-product{
    color: #FFF;
    font-size:16px;
    margin-bottom: 50px;
    padding-left: 12px;
}

/*  LOGIN: BODY   */
.body-login, .opacity-login{
    height: 610px;
    width: 100%;
}
.body-login{
    background-image: url("../img/home_photo_1.png");
    background-attachment:fixed;
    background-position: center;
    background-size: 100%;
}
.opacity-login{
    background-color: #000000;
    opacity: 55%;
}
a, label{
    font-size: .8rem; /* 16 * .8 = x */
    color: #000000;
}
/*   LOGIN   */
#login-container{
    background-color: #FFF;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
}
#login-container p, h1{
    color: #222;   
}
form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 40px;
}
label, input{
    display: block;
    width: 100%;
    text-align: left;
}
label{
    font-weight: bold;
    font-size: .8rem;
}
input{
    border: none;
    border-bottom: 2px solid #323232;
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
}
input:focus{
    border-bottom: 2px solid #f92672;
}
#forgot-pass{
    text-align: right;
    display: block;
}
input[type="submit"]{
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    height: 40px;
    border-radius: 20px;
    margin-top: 30px;
    color: #FFF;
    background-color: #f92672;
    cursor: pointer;
}
input[type="submit"]:hover{
    background-color: #bd362f;
    transition: .5s;
}
#skip-login{
    text-align: center;
    display: block;
    margin-bottom: 10px;
}
/*  LOGIN: REDES SOCIAIS   */
#social-container, #social-container p {
    margin-bottom: 20px;
}
#social-container i{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    line-height: 40px;
    color: #FFF;
    margin: 0 5px;
    cursor: pointer;        
}
.fa-facebook-f{
    background-color: #3B5998;
}
.fa-linkedin{
    background-color: #0077B5;
}
/* LOGIN: REGISTER */
#login-register{
    margin-bottom: 10px;
}

/*  REGISTER: BODY   */
.body-register, .opacity-register{
    height: 530px;
    width: 100%;
}
.body-register{
    background-image: url("../img/home_photo_1.png");
    background-attachment:fixed;
    background-position: center;
    background-size: 100%;
}
.opacity-register{
    background-color: #000000;
    opacity: 55%;
}
#register-container{
    background-color: #FFF;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
}
#register-container h1{
    color: #222;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
}
.full-box{
    flex: 1 1 100%;
    position: relative;
}
.half-box{
    flex: 1 1 45%;
    position: relative;
}
.spacing{
    margin-right: 2.5%;
}
#agreement{
    margin-right: 5px;
}
#agreement, #agreement-label{
    display: inline-block;
    width: auto;
}
/*validações*/
.error-validation{
    color: #FF1A1A;
    position: absolute;
    top: 57px;
    font-size: .8rem;
}
.template{
    display: none;
}

/*  USERSREPORT: BODY   */
.section-chart{
    background-color: #eee;
    height:auto;
    width: 100%;
    font-weight: bold;
    padding: 20px;
}
.charts{
    min-height: 60vh;
}
.charts-chart{
    max-width: 1200px;
    margin: 0 auto;
}
.chart{
   width: 30%;
   display: inline-block;
   margin: 1% 1%;

}



/*    FOOTER     */
footer{
    border-top: 2px solid #f92672;
    width: 100%;
    height: 150px;
    background-color: #000000;
    color: #adadad;
    text-align:center;
    font-family:Arial;
}
.form-login{}
.form-login form{}
.form-login form input[type="text"]{}
.form-login form input[type="password"]{}
.form-login form input[type="submit"]{}

.black-square{
    width: 100px;
    height: 100px;
    background-color: #000000;
    color: #FFFFFF;
    margin: 100px auto;
}
