/* TOPO */
.topo {
    display: flex;
    width: 100%;
    height: 70vh;
    background: url(../img/titulo/title.png) center no-repeat;
    background-size: 100%;
    align-items: center;
}

main .texto {
    width: 50%;
    color: white;
    margin-left: 3em;
    margin-top: -50px;
}

main .texto h1 {
    font-weight: 800;
}

main .texto p {
    color: #FAFAFA;
}

/* BENEFÍCIOS */
main .beneficios {
    background-color: white;
    height: 304px;
    border-radius: 65px;
    margin-top: -4em;
}

main .cards {
    display: flex;
    position: relative;
    top: 50px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 90%;
    gap: 50px;
    /* espaço entre os quadrados */
}

main .item-card {
    background: #e1e3e7;
    display: flexbox;
    text-align: center;
    width: 33.33%;
    padding: 20px;
    min-height: 13em;
}

main #quality {
    border-radius: 90px 10px 10px 10px;
}

main #shield {
    border-radius: 10px;
}

main #box {
    border-radius: 10px 90px 10px 10px;
}

main .item-card img {
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
}

main .item-card span {
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    color: #081338;
    font-size: 24px;
}

main .item-card p {
    margin-top: 5px;
    font-weight: 300;
}

/* topo mobile */
@media (max-width: 1070px) {

    /* TOPO */
    .topo {
        margin-top: 50px;
        background-size: cover;
        height: 40vh;
    }

    main h1 {
        font-size: 20px;
        margin-top: 0;
    }

    main span {
        font-size: 15px;
    }

    /* BENEFICIOS ABAIXO */

    main .beneficios {
        height: auto;
        padding: 2em 0;
        margin-top: 0;
    }

    main .cards {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    main .item-card {
        width: 90%;
        margin-bottom: 2em;
        min-height: 8em;
    }

    main #quality,
    main #shield,
    main #box {
        border-radius: 10px;
    }

}

@media (max-width: 520px) {
    main .texto {
        width: 80%;
    }
}