#galeria {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100svh;
    top: 0;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;

    &.ativo {
        opacity: 1;
        pointer-events: all;
    }
}

#galeria-fechar {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 32px;
    cursor: pointer;
}

#galeria-container {
    display: flex;
    overflow-x: clip;
    scroll-snap-type: x mandatory;
    gap: 4px;
    padding: 0px;
    width: 100%;
    max-height: 85svh;
    box-sizing: border-box;
    cursor: grab;
}

.imagem-galeria {
    width: 100%;
    object-fit: cover;
    margin: 0px;
    scroll-snap-align: start;
    flex: none;
    border-radius: 16px;
}

#galeria-pontos {
    display: flex;
    padding: 12px;
    justify-content: center;
    gap: 4px;
}

.galeria-swiper {
    max-width: 1200px;
}

.link-destaque {
    color: var(--cor4);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 24px;
}

.ponto {
    width: 8px;
    height: 8px;
    background: rgb(255 255 255 / 25%);
    border-radius: 50%;

    &.ativo {
        background: var(--cor4);
    }
}
