:root {
    --color-branco: #FFFFFF;
    --color-cinza: #D9D9D9;
    --color-preto: #000000;
    --color-roxo: #1F1E59;
    --color-azul0: #111857;
    --color-azul1: #181E58;
    --color-azul2: #203681;
    --color-laranja: #F27423;
}

* {
    margin: 0;
    padding: 0;
}

.container{
    display: flex;
    height: 72vh;
    justify-content: space-around;
    align-items: center;
}

.informacoes-contato, .trabalhe-conosco{
    display: flex;
    flex-direction: column;
    height: 20%;
    align-items: start;
}

.informacoes-contato h1, .trabalhe-conosco h1{
    margin-bottom: 5vh;
}

@media screen and (max-width: 768px) {
    .container{
        display: flex;
        height: 60vh;
        justify-content: space-around;
        align-items: start;
        flex-direction: column;
        width: 80%;
        height: 80%;
        margin: 10%;
        margin-top: 15%;
        
    }

    .informacoes-contato, .trabalhe-conosco{
    display: flex;
    flex-direction: column;
    height: 20%;
    justify-content: center;
    }
    .informacoes-contato h1, .trabalhe-conosco h1{
    margin-bottom: 2vh;
}
}

