.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(20, 33, 61, 0.92);
    padding: var(--espaco-3);
    z-index: 1000;
}

.lightbox.is-aberto {
    display: flex;
}

.lightbox__imagem {
    max-width: min(90vw, 1000px);
    max-height: 85vh;
    width: auto;
    border-radius: var(--raio-borda);
}

.lightbox__fechar {
    position: absolute;
    top: var(--espaco-3);
    right: var(--espaco-3);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-branco);
    font-size: 1.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox__fechar:hover {
    background: rgba(255, 255, 255, 0.2);
}

[data-lightbox] {
    cursor: zoom-in;
}
