section.container {
    max-width: 98rem;
    margin: auto;
    padding: 0 2rem;
    padding-top: 6rem;
    padding-bottom: 6rem;

    h2 {
        font-size: 2.6rem;
        font-family: "Montserrat", sans-serif;
        font-weight: 900;
        line-height: 1.1em;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    p {
        margin-bottom: 3rem;
    }

    ul {
        margin-left: 2rem;
        margin-bottom: 2rem;
    }

    ul li {
        margin: 0 !important;
    }
}

/* Estilos para los sliders de Splide */
.splide {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.splide__track {
    overflow: hidden;
}

.splide__list {
    display: flex;
}

.splide__slide {
    flex-shrink: 0;
    position: relative;
}

.splide__slide img {
    width: 100%;
    height: auto;
    display: block;
}

.splide__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 0 0;
    gap: 0.5rem;
    position: relative;
    bottom: 0;
}

.splide__pagination__page {
    width: 12px;
    height: 12px;
    background: #d6d6d6;
    border: none;
    border-radius: 50%;
    padding: 0;
    transition: all 0.3s;
    cursor: pointer;
}

.splide__pagination__page.is-active {
    background: #0ce8ab;
    transform: scale(1.2);
}

section.module-work {
    background-image: url("https://images.cdn.thinkion.com.ar/dv/diseno-multimedial/module-background-two-colors-big.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #f3f3f3;
    padding: 8rem 0;
    text-align: center;
    margin: 0 auto;

    article {
        margin: 0 auto;
        max-width: 122rem;
        padding: 0 2rem;

        h1::after {
            left: 50%;
            margin-left: -3rem;
        }

        div {
            max-width: 98rem;
            margin: auto;

            p {
                margin-bottom: 0;
            }
        }

        ul+div p {
            margin-bottom: 3rem;
        }

        ul {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            padding: 6rem 4rem;
            display: flex;
            flex-wrap: wrap;

            li {
                flex: 0 0 50%;
                max-width: 50%;
                display: flex;
                justify-content: center;

                img {
                    width: 100%;
                    height: auto;
                }
            }
        }
    }
}

@media screen and (min-width: 768px) {
    section.module-work {
        article {
            ul {
                li {
                    flex: 0 0 25%;
                    max-width: 25%;
                }
            }
        }
    }
}

@media screen and (min-width: 992px) {
    section.module-work {
        article {
            ul {
                li {
                    flex: 0 0 16.6666666667%;
                    max-width: 16.6666666667%;
                }
            }
        }
    }
}
/* Sección oscura final */
.container-fluid.module-section.dark {
    background-color: #222427;
    background-image: url(https://images.cdn.thinkion.com.ar/dv/inicio/module-background-dark.webp);
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
}

.container-fluid.module-section.dark .container {
    padding: 0 2rem;
}

.container-fluid.module-section.dark h1 {
    color: #fff;
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.container-fluid.module-section.dark h1::after {
    left: 50%;
    margin-left: -3rem;
}

.container-fluid.module-section.dark ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container-fluid.module-section.dark ul li {
    margin: 1.5rem 0;
}

.container-fluid.module-section.dark ul li a {
    color: #0ce8ab;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: underline;
}

/* Imágenes full width */
picture.full-width {
    display: block;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

picture.full-width img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (min-width: 992px) {
    section.container {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .container-fluid.module-work,
    .container-fluid.module-section.dark,
    .module-work {
        padding: 8rem 0;
    }
}