
.container-carousel {
    position: relative;
    width: calc(100% - 40px); /* Ancho total - márgenes a ambos lados (20px cada uno) */
    height: 100%;
    background-color: #e0e0e0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.66);
    border-radius: 15px;
    overflow: hidden;
    margin: 0 20px; /* Márgenes a ambos lados (20px cada uno) */
}
.carruseles {
    width: 1000%;
    height: 100%;
    display: flex;
    animation: carousel-animation 20s infinite;

}

.slider-section {
    width: calc(100% / 10);
    height: 100%;
    
}

.slider-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.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: #2a970cec;
    transform: translate(0,-50%);
    transition: .5s ease;
    user-select: none;
}
.btn-left:hover,
.btn-right:hover {
    background-color: #333333d4;
    color: #fdf32ec9;
}

.btn-left {
    left: 33px;
}

.btn-right {
    right: 33px;
}

