.xs\:title_s {
    font-family: var(--font-family-1-smbold);
    font-size: var(--size-font-175);
    line-height: var(--size-font-line-height-xl);
    font-style: var(--font-style-normal);
}

.cards-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 16px;
    overflow: hidden;



    /* Title/S */
    .title-container {
        color: var(--Color-Content-General-1, #2C2C2C);
        text-align: center;
        font-feature-settings: 'liga' off, 'clig' off;
        margin: 0px;
        padding: 0px;
    }

    .swiper {
        width: 100%;
        height: auto;
        padding-top: 32px;
        padding-bottom: calc(35px + 8px);
        overflow: visible;

        .item {
            min-width: 304px;
            width: 304px;
            max-width: 304px;
            min-height: 497px;
            height: 100%;
            max-height: 692px;
            box-sizing: content-box;
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: center;
            border-radius: var(--border-radius-l, 16px);
            border: 2px solid var(--Color-Border-General-1, #D8CFC7);
            background: var(--Color-Surface-General-1, #FFF);
            overflow: hidden;

            .item__section-primary {
                display: flex;
                justify-content: flex-start;
                flex-direction: column;
                width: 100%;


                .img-placas {
                    width: 100%;
                    height: 276px;
                    object-fit: cover;
                }

                .cintillo-cards {
                    width: 100%;
                    height: 36px;
                    padding: 0;
                    background-color: #007ACB;
                    display: flex;
                    justify-items: center;
                    color: white;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 0;
                    align-self: stretch;
                }
            }

            .item__section-secondary {
                display: flex;
                flex: 1 0 0;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;




                .container-middle {
                    height: auto;
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                    padding: 16px;
                    align-items: center;
                    gap: 16px;
                    align-self: stretch;

                    .titulo-card {
                        text-align: center;
                        padding: 0px;
                        margin: 0px;
                    }

                    .subtitulo-card {
                        padding: 0px;
                        margin: 0px;
                        text-align: center;
                        align-self: stretch;
                        font-feature-settings: 'liga' off, 'clig' off;
                    }

                    .lista-subtitulo {
                        margin: 0px;
                        padding: 0px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        gap: 12px;



                        .item-lista {
                            display: flex;
                            align-items: center;
                            /* justify-content: center; */




                            .text-list {
                                text-align: center;
                                margin: 0px;
                            }
                        }
                    }
                }



                .card-btn {
                    padding-bottom: 24px;
                }

            }
        }
    }

}

@media (min-width: 576px) {
    .cards-container {
        padding: 40px 42px;
    }
}

@media (min-width: 992px) {
    .cards-container {
        padding: 40px 50px;
















        .swiper {
            width: 100%;
            height: auto;
            padding-top: 32px;
            padding-bottom: calc(35px + 8px);
            overflow: visible;

            .item {
                min-width: 277px;
                width: 260px;
                max-width: 260px;
                min-height: 500px;
                height: 500px;
                max-height: 692px;
                box-sizing: content-box;
                z-index: 999;
                display: flex;
                flex-direction: column;
                justify-content: start;
                align-items: center;
                border-radius: var(--border-radius-l, 16px);
                border: 2px solid var(--Color-Border-General-1, #D8CFC7);
                background: var(--Color-Surface-General-1, #FFF);
                overflow: hidden;


















                .lista-subtitulo {
                    .item-lista {
                        .text-list {
                            line-height: 22px;
                            font-weight: 400;
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }

    .lg\:title_m {
        font-family: var(--font-family-1-smbold);
        font-size: var(--size-font-200);
        line-height: var(--size-font-line-height-2xl);
        font-style: var(--font-style-normal);
    }



}

@media (min-width: 1200px) {
    .cards-container {
        width: 100%;
        padding: 40px 102px;


        .swiper {

            .swiper-wrapper {
                display: flex;
                width: 100%;
                gap: 24px;
                justify-content: center;
            }

            .item {
                margin: 0px !important;
                width: 316px;
                max-width: 316px;
                min-height: auto;
                height: 530px;
                max-height: 692px;
                box-sizing: border-box;

                .item__section-secondary {
                    .container-middle {
                        padding-top: 38px;
                    }
                }
            }
        }


    }
}

@media (min-width: 1920px) {
    .cards-container {
        padding: var(--size-space-40, 40px) var(--14001920-page-margin, 324px);

        .swiper {
            .swiper-wrapper {
                overflow: hidden;
            }

            .item {
                width: 400px;
                max-width: 400px;
                min-height: auto;
                height: 526px;
                max-height: 660px;
            }
        }
    }
}

.no-select {
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    user-select: none;
    /* EstÃ¡ndar */
    cursor: default;
}