/* Estilos customizados para o PhotoSwipe */

/* Garante que as imagens sejam exibidas corretamente */
.pswp__img {
    object-fit: contain !important;
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: auto !important;
}

/* Centraliza o conteúdo do modal */
.pswp__img-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Estilos para o modal */
.pswp {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* Botões de navegação */
.pswp__button {
    opacity: 0.8 !important;
    transition: opacity 0.3s ease !important;
}

.pswp__button:hover {
    opacity: 1 !important;
}

/* Contador de imagens */
.pswp__counter {
    font-size: 14px !important;
    color: #fff !important;
    padding: 10px 0 !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .pswp__img {
        max-width: 95vw !important;
        max-height: 80vh !important;
    }
    
    .pswp__button {
        width: 40px !important;
        height: 40px !important;
    }
}
