/* ===== Carrusel 3D de esculturas ===== */

/* Contenedor principal */
.container.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Título centrado arriba del carrusel */
.titulo-galeria-botanico {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}

/* Carrusel */
.slider-botanico-3d {
    width: 100%;
    padding-bottom: 3rem;
}

.slider-botanico-3d .swiper-wrapper {
    display: flex;
    align-items: center;
}

/* Cada slide */
.slider-botanico-3d .swiper-slide {
    width: 320px;
}

/* Tarjeta */
.card-botanico-3d {
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    background: #fff;
    position: relative;
    /* necesario para overlay */
}

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

/* Franja marrón oculta por defecto */
.info-botanico {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(139, 69, 19, 0.9);
    /* marrón */
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    opacity: 0;
    /* oculta */
    transition: opacity 0.3s ease;
}

/* Al pasar el mouse aparece */
.card-botanico-3d:hover .info-botanico {
    opacity: 1;
}

/* Texto dentro de la franja */
.info-botanico span {
    font-size: 1rem;
    font-weight: 600;
}

/* Paginación horizontal debajo del carrusel */
.slider-botanico-3d .swiper-pagination {
    position: relative;
    margin-top: 1rem;
    text-align: center;
}

.slider-botanico-3d .swiper-pagination-bullet {
    display: inline-block;
    margin: 0 4px;
    background: #2c3e50;
    opacity: 0.6;
}

.slider-botanico-3d .swiper-pagination-bullet-active {
    background: #e67e22;
    opacity: 1;
}