@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
}

.areaTrabalho {
    width: 100%;
    height: 100vh;
    
    background-image: url(../img/fundo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;

    font-family: "Lato", serif;
    font-weight: 400;
    overflow: hidden;
}

.areaLogo {
    position: absolute;
    width: 400px;
    height: 400px;
    text-align: center;
    left: 0;
    top: 0;
    background-image: url(../img/fImg.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items:flex-start;
    padding: 20px 0 0 20px;
}
.areaTexto {
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: 0;
    right: 0;
    background-image: url(../img/fTxt.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: end;
}

.atTxt {
    /*
    font-weight: 600;
    font-size: 19px;
    padding: 0 20px 20px 0;
    */
    font-weight: 600;
    font-size: 17px;
    padding: 0px 20px 70px 0;
}

.areaLogo img {
    width: 220px;
}

a.areaRestrita {
    position: absolute;
    top: 15px;
    right: 0;
    text-decoration: none;
    background-color: rgb(9 0 73 / 75%);
    padding: 10px 20px;
    color: #fff;
    border-radius: 8px 0px 0px 8px;
    z-index: 999;
}

a.areaRestrita:hover {
    background-color: rgb(204 153 51 / 75%);
    color: #04044b;
}

@media (max-width: 600px){
    a.areaRestrita {
        top: 160px;
    }
}


