
.caixa{
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 100px;

}

.headerstyle{
    background:#03a9f4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.headerstyle .logoT{

    position: relative;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: .5s;
}



.headerstyle .logoT:hover{
    color: black;
}

.headerstyle .navT{
    position: relative;
    display: flex;
}

.headerstyle .navT li{
    list-style: none;    
    
}


.headerstyle .navT li a{
    color: #fff;
    cursor: pointer;
    display: inline-block;    
    margin-right: 7rem;
    text-decoration: none;
    transition: .3s;
}

.headerstyle .navT a:hover{
    color: black;    
    transform: translateX(1rem);
}

.contentT{
    max-width: 600px;
}

.contentbx h1{
     font-size: 4rem;
     color: #fff;
     line-height: 1em;     
     margin-bottom: 2rem;
     
}

.contentbx h2{
    font-size: 1.7rem;
    color: #fff;
    line-height: 1.7rem;
    margin-top: 2rem;
    
}

.contentbx h3{
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.7rem;
    margin-top: 2rem;
    
}

.contentbx p{
    font-size: 1.1rem;
    color: #fff;
    font-weight: 300;
    margin: 20px 0;
}

.contentbx a{
    width: 90%;
    display: inline-block;
    padding: 1rem 3rem;
    background: #03a9f4;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 10rem;
    margin-top: 1.5rem;
    transition: 1s;
    
    
}

.contentbx a:hover{
    transform: scale(1.1);
    background: #0099ff;
}

.socialT{
    position: absolute;
    bottom: 30px;
    display: flex;
}

.socialT li{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socialT li a{
    position: relative;
    display: inline-block;
    margin-right: 20px;
    filter: invert(1);
    transform: scale(0.5);
    transition: .3s;
}

.socialT li a:hover{
    transform: scale(1);
}

@media (max-width: 911px){

    .headerstyle{
        padding: 1rem 2rem;
        background:#03a9f4;
    }
    
    .caixa{
        padding: 40px;
        background: url(../img/bg2.jpg);
        background-size: cover;
        background-position: right;
    }
    
    .contentbx h1{
        font-size: 2.5em;
    }

    .contentbx h2{
        font-size: 1.1em;
    }

    .contentbx p{
        font-size: .8rem;
    }

    .contentbx a{
        width: 100%;
        
        padding: 1rem 1rem;
        
        text-decoration: none;
        font-size: 1rem;        
        
    }

    .headerstyle .navT{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(48, 146, 232, .95);
        z-index: 10;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        
        
    }

    .headerstyle .navT.active{
        display: flex;
    }

    .headerstyle .navT li{
        color: black;
        font-weight: 600;
        font-size: 1.5rem;
        margin: 10px 0;
        padding-left: 7rem;
    }

    .toggleMenu{
        position: relative;
        width: 30px;
        height: 30px;
        background: url(../img/menu.png);
        background-position: center;
        background-size: 30px;
        background-repeat: no-repeat;
        cursor: pointer;
        z-index: 11;

    }

    .toggleMenu.active{

        background: url(../img/close.png);
        background-position: center;
        background-size: 25px;
        background-repeat: no-repeat;
    }
}

/*Nova Config*/


