.contenedor-inicio {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.carruseles {
    width: 300%;/*cambiar segun las imagenes por ejemplo si son 3 = 300%*/
    height: 100%;
    display: flex;

}

.slider-section {
    width: calc(100% / 3);/*Dividir por la cantidad de imagenes*/
    height: 100%;
}

.slider-section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.btn-left,
.btn-right {
    display: flex;
    position: absolute;
    top: 50%;
    font-size: 1.5rem;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    transform: translate(0,-50%);
    transition: .5s ease;
    user-select: none;
    z-index: 2;
}

.btn-left:hover,
.btn-right:hover {
    color: #526D82;
}

.btn-left {
    left: 10px;
}

.btn-right {
    right: 10px;
}