/* Enquadramento */
.enquadramento {
    width: 100%;
    height: 500px;
    background-image: url(../img/autenticacao-digital.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.enquadramento .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 55, 37, 0.927);
}

.enquadramento h2 {
    padding-top: 50px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.enquadramento span {
    color: #a6e3b8;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
}

.enquadramento p {
    color: #eeeeee;
    font-size: 1.1em;
    padding-top: 15px;
}

/* Missão, Visão e Valores  */
.objetivos {
    margin-top: -190px;
    margin-bottom: 100px;
    text-align: center;
}

.cartao {
    background-color: #ffffff;
    border-radius: 10px;
    height: 360px;
    padding-top: 30px;
    border-bottom: 4px solid #29643d;
}

.cartao .icone {
    background-image: linear-gradient(to right, #0a4522, #39794e, #1e8e43);
    position: relative;
    margin: auto;
    font-size: 1.8em;
    height: 60px;
    width: 60px;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.cartao h4 {
    padding-top: 10px;
    font-weight: 700;
    color: #0a4522;
}

.cartao p {
    text-align: left;
    padding: 0px 20px 0px 20px;
    font-size: 1em;
}

.cartao .fas {
    font-size: .6em;
}


/* Responsive Tela Smartphone */
@media screen and (max-width: 768px) {

    /* Enquadramento */
    .enquadramento {
        width: 100%;
        height: 500px;
        background-image: url(../img/autenticacao-digital.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        overflow: hidden;
    }

    .enquadramento .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(25, 55, 37, 0.927);
    }

    .enquadramento h2 {
        padding-top: 40px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 1.8em;
    }

    .enquadramento span {
        color: #bcf1cd;
        font-size: 1.1em;
        font-weight: 600;
        text-transform: uppercase;
    }

    .enquadramento p {
        color: #eeeeee;
        font-size: 1em;
        padding-top: 15px;
    }

    /* Missão, Visão e Valores  */
    .objetivos {
        margin-top: -85px;
        text-align: center;
    }

    .cartao {
        background-color: #ffffff;
        border-radius: 10px;
        height: auto;
        padding-top: 30px;
        border-bottom: 4px solid #29643d;
        margin-bottom: 70px;
    }

    .cartao .icone {
        background-image: linear-gradient(to right, #0a4522, #39794e, #1e8e43);
        position: relative;
        margin: auto;
        font-size: 1.8em;
        height: 60px;
        width: 60px;
        color: #ffffff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        transition: 0.5s;
    }

    .cartao h4 {
        padding-top: 18px;
        font-weight: 700;
    }

    .cartao p {
        text-align: left;
        padding: 0px 15px 30px 15px;
    }

}