.container-sobre {
    max-width: 1200px;
    margin: 50px auto;
    background-color: #002A54;
    border-radius: 10px;
    color: white;
}

.box-sobre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.box-imagem-sobre {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: aliceblue;
    border: 1px solid red;
    box-shadow: 0px 2px 10px 2px red inset;
    text-align: center;
}

.box-imagem-sobre img {
    width: 90%;
}

.box-texto-sobre {
    font-family: "Roboto", "sans serif";
    font-weight: 100;
}

.box-redesocial a {
    display: flex;
    margin-top: 5px;
    align-items: center;
    color: white;
    transition: 1s;
    margin-left: 10px;
}

.box-redesocial a:hover {
    color: lightgrey;
    transition: 1s;
}

.box-redesocial h4 {
    font-family: "Roboto", "sans serif";
    font-weight: 300;
}

.box-redesocial img {
    width: 30px;
    height: 30px;
}

@media (max-width: 800px) {

    .container-sobre {
        padding: 30px 0px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .box-imagem-sobre {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background-color: aliceblue;
    }

    .box-texto-sobre {
        margin-left: 10px;
        margin-right: 10px;
        font-size: 1.2em;
    }

    .box-imagem-sobre img {
        margin-top: 110px;
    }
}

@media (min-width: 801px) {
 
    .container-sobre {
        height: 50vh;
    }

    .box-imagem-sobre {
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background-color: aliceblue;
    }

    .box-texto-sobre {
        max-width: 500px;
        max-height: 500px;
        font-size: 1.3em;
    }

    .box-imagem-sobre img {
        margin-top: 130px;
    }
}