/* ====================================================== */
/* 🎡 ESTILO CINTA ECOPARQUE: 1 CENTRAL + 2 CADA LADO    */
/* ====================================================== */

.slider-ecoparque {
    padding: 40px 0 80px 0;
    width: 100%;
    max-width: 1200px;
    /* Ancho para que entren las 5 fotos */
    margin: 0 auto;
}

/* Ajustamos el tamaño a 250px para que entren 5 en la pantalla */
.slider-ecoparque .swiper-slide {
    width: 250px !important;
    height: 250px !important;
}

.card-eco-3d {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.card-eco-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTO SANS SERIF EN NEGRITA */
.info-eco {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(46, 125, 50, 0.9);
    color: white;
    padding: 12px 5px;
    text-align: center;
    /* Fuente Sans Serif limpia */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    /* Extra Negrita */
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.card-eco-3d:hover .info-eco {
    transform: translateY(0);
}

.swiper-pagination-bullet-active {
    background: #2e7d32 !important;
}