body{
    background-color: var(--cor-a1);
}

.imagem-fundo{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
}

header{
    width: 100%;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
    box-sizing: border-box;
}
header img{
    width: 380px;
    height: 90px;
}

.em-construcao{
    height: calc(100% - 210px);
    display: flex;
    gap: 10px;
}

.em-construcao div{
    width: calc(100% - 5px);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.em-construcao img{
    width: 65%;
}

.em-construcao .texto{
    display: flex;
    flex-direction: column;
    font-size: 1em;
    font-family: var(--font-default);
    color: var(--cor-b1);
    justify-content: center;
    align-items: center;
}

.em-construcao .texto span{
    margin: 10px 0;
}

.em-construcao .texto .redes{
    width: 75%;
    display: flex;
    justify-content: start;
    flex-direction: row;
    gap: 16px;
    margin: auto 0 16px 0;
}
.em-construcao .texto .redes a{
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-family: var(--font-personalized);
    font-size: 22px;
}

.em-construcao .texto > div{
    width: 75%;
    display: flex;
    flex-direction: column;
}

.em-construcao .texto div h2{
    font-size: 2em;
    font-family: var(--font-personalized);
    font-weight: 400;
}

@media (max-width: 768px){
    header img{
        width: 280px;
        height: 70px;
    }
    .em-construcao{
        flex-direction: column;
        align-items: center;
    }
    .em-construcao div{
        width: 100%;
    }
    .em-construcao img{
        width: 100%;
        height: auto;
    }
    .em-construcao .texto{
        width: 90%;
        margin: 20px 0;
        font-size: var(--f-size-m);
    }
    .em-construcao .texto .redes{
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        justify-content: space-between;
    }
    .em-construcao .texto > div{
        width: 100%;
    }
    .em-construcao .texto div h2{
        font-size: var(--f-size-xxl);
    }
}