    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 40px;
        padding: 0 60px;
        position: relative;
        overflow: visible;
    }

    .texto-lateral {
        font-family: 'Montserrat';
        flex-shrink: 0;
        font-size: 34px;
        font-weight: 900;
        color: #333;
        width: 400px;
        opacity: 0;
        transform: translateX(-20px);
        animation: fadeInLeft 0.8s ease-out forwards;
    }

    .cnt-scroll-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }


    .scroll-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .left-button {
        left: 0px;
    }

    .right-button {
        right: 0px;
    }

    .cnt-scroll {
        width: 100%;
        overflow-x: auto;
        padding: 20px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
    }

    .scroll-button:hover {
        opacity: 1;
        /* transform: scale(1); */
    }

    .scroll-button i {
        font-size: 18px;
        color: #333;
    }

    .cnt-scroll::-webkit-scrollbar {
        display: none;
    }

    .cnt-scroll.grabbing {
        cursor: grabbing;
    }

    .inner-tarjetas {
        display: inline-flex;
        gap: 25px;
        padding: 10px 5px;
    }

    .cnt-tarjeta {
        width: 225px;
        height: 290px;
        flex-shrink: 0;
        cursor: pointer;
        opacity: 0;
        transform: translateY(20px) rotate(5deg);
        animation: cardAppear 0.6s ease-out forwards;
    }

    .cnt-tarjeta:nth-child(1) {
        animation-delay: 0.3s;
    }

    .cnt-tarjeta:nth-child(2) {
        animation-delay: 0.5s;
    }

    .cnt-tarjeta:nth-child(3) {
        animation-delay: 0.7s;
    }

    .cnt-tarjeta:nth-child(4) {
        animation-delay: 0.9s;
    }

    .cnt-tarjeta:nth-child(5) {
        animation-delay: 1.1s;
    }

    .cnt-tarjeta:nth-child(6) {
        animation-delay: 1.3s;
    }

    .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
    }

    .card-back {
        display: none !important;
    }

    .card-front {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        background-color: white;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .cnt-tarjeta:hover .card-front {
        transform: translateY(-5px);
    }

    .img-container {
        width: 100%;
        height: 280px;
        border-radius: 8px;
        background-size: cover;
        background-position: center;
        transition: all 0.4s ease;
        transform-origin: center center;
        background-color: #f5f5f5;
    }

    .img-campana {
        background-image: url('../../repos/images/1_1.png');
    }

    .img-anafe {
        background-image: url('../../repos/images/3_1.png');
    }

    .img-parrilla {
        background-image: url('../../repos/images/6_1.png');
    }

    .img-horno {
        background-image: url('../../repos/images/2_1.png');
    }

    .img-cocinas {
        background-image: url('../../repos/images/4_1.png');
    }

    .img-extractor {
        background-image: url('../../repos/images/5_1.png');
    }

    .cnt-tarjeta:hover .img-container {
        transform: scale(1.03);
    }

    .card-footer {
        padding: 5px;
        text-align: left;
        flex-grow: 1;
        display: flex;
        align-items: center;
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
    }


    .txt-tarjeta {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        display: inline-block;
        position: relative;
    }

    .txt-tarjeta::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #000;
        transition: width 0.4s ease;
    }

    .cnt-tarjeta:hover .txt-tarjeta::after {
        width: 80%;
    }

    .arrow-icon {
        margin-left: 5px;
        transition: transform 0.4s ease;
    }

    .cnt-tarjeta:hover .arrow-icon {
        transform: translateX(3px);
    }


    @keyframes cardAppear {
        to {
            opacity: 1;
            transform: translateY(0) rotate(0);
        }
    }

    @keyframes fadeInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @media (max-width: 1024px) {
        .container {
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
            padding: 0 15px;
        }

        .texto-lateral {
            width: 100%;
            /* text-align: center; */
            padding-left: 0;
        }

        .cnt-scroll {
            padding: 20px 10px;
        }
    }

    @media (max-width: 768px) {
        .texto-lateral {
            font-size: 32px;
        }

        .inner-tarjetas {
            gap: 15px;
        }

        .cnt-tarjeta {
            width: 220px;
            height: 280px;
        }

        .img-container {
            height: 220px;
        }

        .scroll-button {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .texto-lateral {
            font-size: 22px;
        }

        .inner-tarjetas {
            gap: 12px;
        }

        .cnt-tarjeta {
            width: 135px;
            height: 215px;
        }

        .img-container {
            height: 180px;
        }

        .card-footer {
            padding: 10px;
        }
 
        .txt-tarjeta {
            font-size: 14px;
        }
    }