/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 09 2026 | 13:23:07 */
.catalogo-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.catalogo-lightbox-inner {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
}

.catalogo-lightbox-inner img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
}

.catalogo-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}