/* ==========================================================================
   GALERIA JPO - ZOOM CORRIGIDO E SUAVE
   ========================================================================= */

.img-container {
    width: 100%;
    overflow: hidden;
    height: 380px;
    border-radius: 20px;
    background: #f4f4f4;
}

.img-zoom-effect {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 10s ease-out; 
    transform: scale(1);
}

.swiper-slide-active .img-zoom-effect,
.swiper-slide-next .img-zoom-effect,
.swiper-slide-visible .img-zoom-effect {
    transform: scale(1.05) !important;
}

/* ==========================================================================
   SETAS MODERNAS - RESOLUÇÃO FINAL MINI
   ========================================================================= */

/* O Botão Circular */
.modern-arrow {
    width: 45px !important;  
    height: 45px !important; 
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50% !important;
    color: #fff !important;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modern-arrow:after {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    width: 25px !important;
    height: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: scale(0.8) !important;
    line-height: 1 !important;
}

.swiper-button-next { right: 10px !important; }
.swiper-button-prev { left: 10px !important; }

.swiper-gallery-wrapper:hover .modern-arrow {
    opacity: 1;
}

.modern-arrow:hover {
    background: #35973e !important;
    border-color: #35973e;
    transform: scale(1.1);
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); 
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.myLightbox {
    width: 100%;
    height: 100%;
}

.myLightbox .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.myLightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100001;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #35973e;
    transform: scale(1.1);
}

.lightbox-modal .swiper-button-next,
.lightbox-modal .swiper-button-prev {
    color: #fff !important;
    width: 60px;
    height: 60px;
}
