.gallery-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 720 / 400; /* mantiene proporción 16:9 */
    overflow: hidden;
    border: 1px solid #EDEDED;
}

.gallery-img-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* rellena sin deformar */
    transform: translate(-50%, -50%);
}

.section-header{
    padding-bottom: 270px !important;
}

.section-gallery{
    margin-top: -200px;   
}

.swiper-slide-wrapper{
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* mantiene proporción 16:9 */
    overflow: hidden;
}
.swiper-slide-wrapper img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* rellena sin deformar */
    transform: translate(-50%, -50%);
}
