/* CONTENEDOR DEL SLIDER */
.slider-wrapper-eventos {
    position: inherit;
    width: 100%;
    max-width: 900px; /* opcional, podés cambiarlo */
	height: 700px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 120px; /* espacio suficiente para miniaturas y botones */
    box-sizing: border-box;
}

/* SLIDES */
.slider-fade-eventos {
    position: relative;
    width: 100%;
}

/* CADA SLIDE */
.slide-fade-eventos {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    top: 0;
    left: 0;
}

/* SLIDE ACTIVO */
.slide-fade-eventos.active {
    opacity: 1;
}

/* IMAGEN SIN RECORTES */
.slide-fade-eventos img {
    width: 100%;
    height: auto;             /* ✔ mantiene proporción correcta */
    object-fit: contain;      /* ✔ evita recortes */
    display: block;
    background: #000;         /* opcional: evita bordes blancos */
    border-radius: 6px;
}

/* CONTROLES */
.btn-fade-evento {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
   /* background: rgba(0, 0, 0, 0.5);*/
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev-evento { left: 15px; }
.next-evento { right: 15px; }

/* MINIATURAS */
.thumbnails-eventos {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.thumbnails-eventos img {
    width: 70px;
    height: 70px;
    object-fit: contain;     /* ✔ coherente con la imagen principal */
    background: #000;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .6;
    transition: opacity .3s, border-color .3s;
}

.thumbnails-eventos img.active-thumb-evento,
.thumbnails-eventos img:hover {
    opacity: 1;
    border-color: #000;
}