*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.contenedor-carrusel{
    padding: 20px 50px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden; /* para que oculte todo lo que se sale de los espacios definidos*/

    display: flex;
    align-items: center;
    justify-content: center;
   
    
   /* padding: 20px;*/
   height: 600px;

}
    

.container-carrusel{
    position: relative;
    width: 720px;
    height: 520px;
    background-color: #e0e0e0;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.66);
    border-radius: 15px;
    overflow: hidden;
    
} 


.carruseles{
    width: 1300%; /* % Segun la cantidad de imagenes*/
    height: 100%;
    display: flex;
    
    background-color: aqua;
}

.slider-section{
    width: calc(100%/13); /* se divide de acuerdo a la cantidad de imagenes*/

}

.slider-section img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;

    object-fit: cover;
}
.btn-left, .btn-right{

    display: flex;
    position: absolute;
    top: 50%;
    font-size: 3.5rem;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff81;
    transform: translate(0,-50%);
    transition: .5s ease;
    user-select: none;
}

.btn-left:hover,
.btn-right:hover {
    background-color: #333333d4;
    color: #fff;
}
.btn-left{
    left: 10px;
}
.btn-right{
    right: 10px;
}