.hiddenSlider{
    display: none;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%; /* o el alto que necesites */
    overflow: hidden;
}
.carruseles{
    height: 100%;
    display: flex;
}
.slider-section{
    height: 100%;
    flex-shrink: 0;
}
.slider-section img{
    width: 100% ;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.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;
    color: #ffffff81;
    cursor: pointer;
    transform: translate(0,-50%);
    transition: .5s ease;
    user-select: none;
}

.btn-left:hover,
.btn-right:hover{
    background-color: var(--color-text-dark);
    color: var(--color-text-light);
}

.btn-left{
    left: 10px;
}
.btn-right{
    right: 10px;
}

.btn-eliminar {
    position: absolute;
    top: 9px;
    right: 7px;
    background-color: rgba(255, 0, 0, 0.7);
    color: var(--color-text-light);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    width: 22px;
    height: 22px;
    cursor: pointer;
    z-index: 2;
    display: flex;          /* FLEX para centrar */
    align-items: center;    /* Centrar vertical */
    justify-content: center; /* Centrar horizontal */
    padding: 0;  
}

  .slider-section {
    position: relative; /* para posicionar el botón encima */
  }

  