/* Para las tarjetas en disposición horizontal de PRODUCTOS PERSONALIZADOS */

section:has(.tarjetas-horizontal) {
    padding: 4rem 0rem;
}

.tarjetas-horizontal {
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    padding: 1rem 4rem;
}


/* Hide scrollbar for Chrome, Safari and Opera */
.tarjetas-horizontal::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.tarjetas-horizontal {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}


.tarjetas-horizontal>.tarjeta {
    display: inline-block;
    vertical-align: top;
    background-color: white;
    padding: 1.5rem;
    max-height: 30rem;
    width: 20rem;
    margin: 1rem;
}

.tarjetas-horizontal>.tarjeta * {
    white-space: normal;
}

.tarjetas-horizontal>.tarjeta>h5:first-child {
    margin-top: 0;
}

.tarjetas-horizontal>.tarjeta>img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}
