/* Estilo automático para a página: sobre */

#sobre{
    padding: 90px 0;

    h3{
        margin-top: 16px;
    }
    
    .moldura {
        position: relative;

        .img-sobre{
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 8px;
        }
        .btn-padrao {
            position: absolute;
            bottom: 0;
            right: 0;
        }
    }

    
    .nome-cargo {
        position: absolute;
        bottom: 0;
        left: 10px;
        color: #fff;
        text-transform: uppercase;

        .nome-sobre {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
        }
        .cargo-sobre {
            font-size: 13px;
        }
    }
}

#mvv{
    padding: 44px 0;
    background-color: var(--vermelhoClaro);

    h3 {
        margin-top: 16px;
    }

    .card-padrao{
        text-align: center;
        background-color: var(--branco);

        .texto-card-padrao {
            min-height: 130px;
        }
    }

}

#qualidade{
    padding: 80px 0 0;

    h3 {
        margin-top: 16px;
    }

    .text-qualidade{
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        color: var(--cinza);
    }
    .img-qualidade{
        width: 100%;
        object-fit: cover;
        min-height: 100%;
        border-radius: 8px;
    }
}

#sustentabilidade{
    padding: 40px 0;

    h3 {
        margin-top: 16px;
    }

    .text-sustentabilidade{
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        color: var(--cinza);
    }
    .img-sustentabilidade{
        width: 100%;
        object-fit: cover;
        min-height: 100%;
        border-radius: 8px;
    }

    .selo {
        border: 1px solid var(--azul);
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 4px;
        padding: 16px;
        margin: 0px 16px 0 0;

        p{
            font-weight: 400;
            font-size: 18px;
            line-height: 140%;
            margin: 0;
            color: var(--cinza);

        }
    }
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #sobre{
        .mt-mob-3{
            margin-top: 30px;
        }
    }
    #mvv {
        .card-padrao {
            margin-bottom: 25px;
        }
    }
    #qualidade {
        .img-qualidade {
            margin-bottom: 16px;
        }
        .mt-mob-3{
            margin-top: 30px;
        }
    }
    #sustentabilidade {
        .mt-mob-3{
            margin-top: 30px;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 
    #sobre{
        .mt-mob-3{
            margin-top: 30px;
        }
    }
    #mvv {
        .card-padrao {
            margin-bottom: 25px;
            height: auto;
        }
    }
    #qualidade {
        .img-qualidade {
            margin-bottom: 16px;
        }
        .mt-mob-3{
            margin-top: 30px;
        }
    }
    #sustentabilidade {
        .mt-mob-3{
            margin-top: 30px;
        }
        .selos-mob{
            flex-direction: column;

            .selo{
                margin-bottom: 16px;
            }
        }
    }
}

