/* Estilo automático para a página: institucional */
#quemSomos{
    padding: 80px 0;

    h2{
        color: var(--azul-tercirio);
        line-height: 42px; 
        margin-bottom: 20px;
    }

    h3{
        color: var(--azul-tercirio);
        font-weight: 600;
        line-height: 20px;
    }

    .text-quem-somos{
        color: var(--azul-texto);
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
    }
    .img-quemSomos{
        width: 100%;
        object-fit: cover;
        border-radius: 30px;
    }

    .titulo-mvv {
        color: var(--azul-texto);
        font-size: 17px;
        font-weight: 600;
        line-height: 24px;

        img{
            margin-right: 8px;
        }
    }

    .text-mvv {
        color: var(--azul-texto);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        border-bottom: solid 1px #CAD9F0;
        padding-bottom: 20px;
        min-height: 130px;
    }

}

#instagram{
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-image: url(../img/fundo-plano-saude.svg);
    padding: 0 0 30px 0;
    
    h2{
        color: var(--azul-tercirio);
        line-height: 42px; 
        margin-bottom: 20px;
    }
    
    h3{
        color: var(--azul-tercirio);
        font-weight: 600;
        line-height: 20px;
    }
    .alinhar-final{
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {

}

/* MOBILE */
@media all and (max-width: 767px) {
    #cabecalho{
        padding: 24px 16px 40px !important;
    }

    #quemSomos{
        padding: 40px 15px;

        h2{
            font-size: 24px;
            font-weight: 700;
            line-height: 130% !important;
        }
    }

    #instagram{
        padding: 40px 15px;

        .col-lg-3 img{
            width: 100%;
        }
    }
}