body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.swiper-container {
    width: 100%;
    max-width: 1200px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-slide a {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: #222222;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.swiper-container.conBg {
    background-color: #f5f5f5;
    padding: 20px 0px 30px 20px;
    border-radius: 10px;
}

@media only screen and (min-width: 769px) {
    .swiper-slide {
        width: 200px !important;
        margin: 0 auto;

    }

    .swiper-container.col6-slide {
        max-width: 1280px;

    }

    .swiper-container.col6-slide .swiper-slide {
        width: 188px !important;
        margin: 0 auto;

    }

    .swiper-wrapper {
        display: flex;
        flex-wrap: nowrap;
    }

    .swiper-pagination {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .swiper-slide {
        width: 135px !important;
        /* 20% width minus 20px gap */
        margin-left: 10px;
    }

    .swiper-slide a {
        font-size: 16px;
    }

    .swiper-pagination {
        position: relative !important;
        top: 20px !important;
        bottom: 10px !important;
        left: auto !important;
        right: auto !important;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
    }

    .swiper-pagination-bullet-active {
        background-color: #929292;
        /* Active bullet color */
    }
}

@media only screen and (max-width: 370px) {
    .swiper-slide {
        width: 112px !important;
        /* 20% width minus 20px gap */
    }
}

.swiper-slide a span {
    white-space: normal;
    /* Permite salto de línea */
    overflow-wrap: break-word;
    /* Corta si hay palabras largas */
    text-align: center;
    max-width: 100%;
    /* Ocupar todo el ancho */
}