/* Estilo automático para a página: quem-somos */
#cabecalho{
    height: 490px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: -90px;
    position: relative;

    h2{
        color: #FFFAEC;
        position: relative;
    }

    .sombra {
        background-image: linear-gradient(#00000029, black);
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.7;
        top: 0;
        border-radius: 0;
    }
}

#cta{
    padding: 70px 0;
    text-align: center;
    background-attachment: fixed;

    h2{
        color: var(--branco);
    }

    .text-cta {
        color: #FFFAEC;
        text-align: center;
        font-size: 24px;
        font-weight: 500;
        line-height: 40px;
    }

    .btn-padrao{
        &:hover{
            background-color: var(--branco);
            color: var(--bord) !important;
            border: 1px solid var(--branco);
        }
    }
}

#quemSomos{
    padding: 60px 0;
    background-color: var(--bege);
    
    h2{
        text-align: left;
    }

    .efeito-titulo{
        text-align: left;
        margin-bottom: 16px;
    }

    .alinhar{
        display: flex;
        align-items: center;
        flex-direction: column;

        @media (min-width: 992px) {
            flex-direction: row;
        }
    }

    .text-quemSomos{
        color: var(--chumbo, #5D5E58);
        font-size: 16px;
        font-weight: 500;
        line-height: 28px; /* 175% */
    }

    .img-quem-somos-1{
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .img-quem-somos-2{
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .img-efeitos-empr{
        max-width: 100%;
        height: auto;
    }
}



/* MOBILE */
@media (max-width: 767px) {
    header {
        background: var(--bord) !important;
    }

    #cabecalho{
        height: 280px;
        margin-top: 0 !important;   

        h2{
            text-align: center;
        }
    }

    #cta{
        background-attachment: scroll;
        h2{
            text-align: center;
            font-size: 24px;
        }
        .text-cta{
            font-size: 16px;
            line-height: 24px;
        }
        .btn-padrao {
            padding: 16px 8px;
        }
    }

    #quemSomos {
        .img-quem-somos-1 {
            margin-bottom: 20px;
        }
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #quemSomos {
        .img-quem-somos-1 {
            margin-bottom: 20px;
        }
    }
}

