.bannerprincipal {
    display: flex;
    flex-direction: column;
    margin-top: 117px;
    overflow: hidden;

    & .arriba {
        width: 100%;
        margin: auto;
        display: flex;
        position: relative;
    }

    & .slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }

    & .slides img {
        width: 100%;
        aspect-ratio: 1366 / 452;
        object-fit: cover;
    }

    & .slides a {
        flex: 0 0 100%;
    }
}

.btn-left-banner,
.btn-right-banner {
    background-color: transparent;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-left-banner {
    left: 15px;
}

.btn-right-banner {
    right: 15px;
}

.imagen-movil {
    display: none;
}

.imagen-pc {
    display: block;
}

/*
########  ########  ######  ########   #######  ##    ##  ######  #### ##     ##  #######  
##     ## ##       ##    ## ##     ## ##     ## ###   ## ##    ##  ##  ##     ## ##     ## 
##     ## ##       ##       ##     ## ##     ## ####  ## ##        ##  ##     ## ##     ## 
########  ######    ######  ########  ##     ## ## ## ##  ######   ##  ##     ## ##     ## 
##   ##   ##             ## ##        ##     ## ##  ####       ##  ##   ##   ##  ##     ## 
##    ##  ##       ##    ## ##        ##     ## ##   ### ##    ##  ##    ## ##   ##     ## 
##     ## ########  ######  ##         #######  ##    ##  ######  ####    ###     #######  */
@media (max-width: 768px) {
    .bannerprincipal {

        margin-top: 113px;

        & .imagen-movil {
            display: block;
        }

        & .imagen-pc {
            display: none;
        }

        & .arriba {
            width: 100%;
            margin: auto;
        }

        & .arriba img {
            width: 100%;
            aspect-ratio: 768 / 630;
        }


    }
}