/* Parallax */
.main {
    padding-bottom: 0;
    margin-bottom: 0;
}

.parallax-section {
    position: relative;
    padding: 100px 0;

    left: 50%;
    margin-left: -50vw;
    width: 100vw;

    margin-bottom: 0;
    overflow: hidden;
}

.parallax-section::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;
    width: 100vw;
    height: 150%;

    transform: translate(-50%, calc(-50% + var(--parallax-offset, 0px)));

    background-image: url('/empresa/assets/CMN/fondoCMN.webp');
    background-size: cover;
    background-position: center;

    z-index: -1;
    will-change: transform;
}

/* Botones */
.button-container {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

.img-wipe {
    position: relative;
    width: 100%;
    aspect-ratio: 400 / 105;
    overflow: hidden;
    cursor: pointer;
}

.img-wipe img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-top {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.4s cubic-bezier(.4,0,.2,1);
}

.button-container:hover .img-top {
    clip-path: inset(0 0 0 0);
}

@media (max-width: 400px) {
    .button-container {
        max-width: 240px;
    }
}