

/*
Slider de Proyectos (Home)
*/

.proyectos-container {
    position: relative;
}

/* Contenedor del Swiper */
.proyectos-block.swiper {
    width: 100%;
    height: 100%;
}

/* Wrapper del Swiper */
.proyectos-wrapper.swiper-wrapper {
    height: 100%;
}

/* Slides individuales */
.proyectos-wrapper .swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    max-height: 640px;
}

/*.proyectos-wrapper .swiper-slide figure {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    margin: 0;*/
/*}*/

.proyectos-wrapper .swiper-slide a,
.proyectos-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1/2;
}

/* Botones de navegación */
.proyectos-container .swiper-button-prev,
.proyectos-container .swiper-button-next {
    color: var(--white);
    width: 44px;
    height: 44px;
    background: rgba(29, 32, 30, 0.50);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.proyectos-container .swiper-button-prev:hover,
.proyectos-container .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.50);
    color: var(--black);
    transform: scale(1.1);
}

.proyectos-container .swiper-button-prev:after,
.proyectos-container .swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
}

/* Paginación */
.proyectos-container .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: 0!important;
}

.proyectos-container .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-light);
    opacity: 1;
    transition: all 0.3s ease;
}

.proyectos-container .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.333);
}

/* Responsive */
@media (max-width: 1023px) {

}

@media (max-width: 767px) {
    .proyectos-wrapper .swiper-slide {
        max-height: 645px;
    }
}
