/* ==========================================================================
   ESTILOS DO VISUALIZADOR DE FOTOS (lightbox.css) [1]
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: pointer;
}

.btn-close-lightbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 0.25rem;
    object-fit: contain;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}