/* HERO  -  Por defecto movil */


#destacados_home {
    /* padding: 64px 0 32px; */
    /* padding: 64px; */
    margin-top: 64px;
}


#destacados_home .titulo {
    font-family: var(--tipo-titulos) !important;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin: 0 auto;
    color: var(--Color-Base-Black, #231F20);
}

#destacados_home .texto {
    text-align: center;
    margin: 10px auto 0;
    color: var(--texto-base-secundario)
}

#destacados_home a.boton.verStock {
    color: var(--Color-Base-Black, #121212);
    font-family:  var(--tipo-titulos);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    border: 1px solid #000 !important;
    margin: 0 auto;
    width: fit-content;
    margin-top: 24px;
}

/* MOBILE */
@media (max-width: 992px) {


    /** dejarlo aqui dentro, es exclusivo para mvl */

    #destacados_home .titulo {
        font-size: 24px;
        line-height: 26px;
    }

    #destacados_home .texto {
        font-size: 15px;
        line-height: 20px;
    }


    #destacados_home .container-cards {
        display: flex;
    }

    #destacados_home a.boton.verStock {
        margin-bottom: 24px;
    }


}


/* DESKTOP */
@media (min-width: 993px) {

    #destacados_home {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    #destacados_home .container-titulo {
        text-align: center;
    }

    #destacados_home .titulo {
        font-size: 40px;
        line-height: 46px;
    }

    #destacados_home .texto {
        font-size: 18px;
        line-height: 24px;
    }


    #destacados_home .container-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 20px;
        margin: 44px 0 0;
    }

    #destacados_home .card.card_coche {
        margin-bottom: 0;
    }



}