/* HERO  -  Por defecto movil */

#compra-coche {
    padding-top: 32px;
    padding-bottom: 32px;
}

#compra-coche .compra-coche_wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 30%, rgba(206, 15, 41, 0.70) 100%);
}



#compra-coche .compra-coche_content .info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#compra-coche .compra-coche_content .info .titulo {
    color: var(--Color-Base-White, #FFF);
    text-align: center;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0;
}

#compra-coche .compra-coche_content .info .texto {
    color: var(--Color-Base-White, #FFF);
    text-align: center;
    font-style: normal;
    font-weight: 400;
}

#compra-coche .compra-coche_content .boton {
    width: fit-content;
}

/* MOBILE -  dejarlo aqui dentro, es exclusivo para mvl */
@media (max-width: 992px) {

    /**  */

    #compra-coche .compra-coche_wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: #FFFFFF;
        border-radius: 8px;
        overflow: visible;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        display: flex;
        position: relative;
        min-height: 334px;
    }


    #compra-coche .compra-coche_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        height: 100%;
        padding-bottom: 40px;
        flex: 1;
        z-index: 1;
    }


    #compra-coche .compra-coche_content .info {
        width: 90%;
    }

    #compra-coche .compra-coche_content .info .titulo {
        font-size: 24px;
        line-height: 26px;
    }

    #compra-coche .compra-coche_content .info .texto {
        font-size: 16px;
        line-height: 24px;
    }


}


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

    #compra-coche .compra-coche_wrapper {
        padding: 30px;
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        position: relative;
        border-radius: 16px;
        text-align: center;
        height: 500px;
    }


    #compra-coche .compra-coche_content {
        padding-bottom: 0;
        padding-top: 0;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
        height: 100%;
        /* border: 1px solid white; */
    }


    #compra-coche .compra-coche_content .info {
        width: 30%;
    }


    #compra-coche .compra-coche_content .info .titulo {
        font-size: 28px;
        line-height: 34px;
    }

    #compra-coche .compra-coche_content .info .texto {
        font-size: 18px;
        line-height: 24px;
    }

}