#modelos {
    width: 100vw;
    min-height: calc(100vh - var(--altura_nav_header_desk));
    background-color: var(--cor_fundo);
    color: var(--cor_texto_fundo);
}

#modelos h3.title {
    color: var(--cor_texto_fundo);
    font-size: 20px;
    font-weight: 600;
    margin: 0 10px 10px 15px;
    padding: 10px 10px 0 10px;
}

#modelos .listar_modelos {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 10px 20px 20px 20px;
}

#modelos .listar_modelos .box_modelo {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--bor_radius_box_modelo);
    overflow: hidden;
    text-decoration: none;
    border: var(--border_box_modelo);
    height: 300px;
    width: 16%;
    margin: 0 0.3% 20px 0.3%;
}

#modelos .listar_modelos .box_modelo .blur {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--blur_box_modelo);
    z-index: 2;
}

#modelos .listar_modelos .box_modelo img,
#modelos .listar_modelos .box_modelo img.opc1 {
    z-index: 3;
    max-width: 100%;
    max-height: 100%;
    transition: 0.2s;
}

#modelos .listar_modelos .box_modelo img.opc2 {
    height: 100%;
    max-width: unset;
}

#modelos .listar_modelos .box_modelo img.opc3 {
    width: 100%;
    max-height: unset;
}

#modelos .listar_modelos .box_modelo img.opc4 {
    max-width: unset;
    max-height: unset;
}

#modelos .listar_modelos .box_modelo .text_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background: rgb(20, 20, 20);
    padding: 15px 3px 5px 3px;
    background: linear-gradient(0deg, var(--cor_baixo_gradient_text) 10%, var(--cor_meio_gradient_text) 50%, var(--cor_cima_gradient_text) 100%);
}

#modelos .listar_modelos .box_modelo .text_bottom p.nome {
    color: var(--cor_texto_box_modelo);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

@media screen and (max-width:1000px) {
    #modelos .listar_modelos .box_modelo {
        width: 19%;
        margin: 0 0.5% 20px 0.5%;
    }
}

@media screen and (max-width:700px) {
    #modelos .listar_modelos .box_modelo {
        width: 24%;
        margin: 0 0.5% 20px 0.5%;
    }
}

@media screen and (max-width:550px) {
    #modelos .listar_modelos {
        padding: 10px 10px 20px 10px;
    }

    #modelos .listar_modelos .box_modelo {
        width: 31.5%;
        margin: 0 0.9% 20px 0.9%;
    }

    #modelos .listar_modelos .box_modelo .text_bottom p.nome {
        text-align: center;
        font-size: 15px;
        font-weight: 500;
    }
}