/* CONTENEDOR PRINCIPAL DEL CARRUSEL */
.carrusel-contenedor {
    position: relative;
    width: 100%;
    height: 380px;
    /* Ajuste de altura para que luzca mejor */
    overflow: hidden;
    background-color: #000;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DEGRADADO PARA QUE EL TEXTO SE LEA BIEN */
.slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* TEXTOS (CAPTION) */
.caption {
    position: absolute;
    bottom: 40px;
    left: 20px;
    color: white;
    z-index: 10;
}

/* TEXTOS (CAPTION) - ACTUALIZADOS A SANS-SERIF */

.carrusel-titulo-principal {
    font-family: sans-serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    /* Para que ECOPARQUE sea imponente */
}

.caption h3 {
    font-family: sans-serif !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    font-style: normal !important;
    /* Por si estaba en cursiva, se la saca */
}

/* PUNTOS INDICADORES */
.indicadores {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.2);
}
