#fullgallery {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: block;
    clear: both;
}

/* INTRO */

.gallery-intro {
    text-align: center;
    margin: 20px 0;
    font-size: 1.2em;
}

/* BOTÕES */

.gallery-nav {

    width: 100%;

    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    align-items: flex-start;

    gap: 12px;

    margin: 25px 0 40px;
}

.gallery-group {

    width: 100%;

    display: block;

    clear: both;

    margin-bottom: 35px;
}

.gallery-parent {

    text-align: center;

    font-size: 1.4em;

    margin-bottom: 15px;

    color: #fff8dc;

    text-shadow: 2px 2px 0 #8b7444;
}

.gallery-subnav {

    width: 100%;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.gallery-button {
    display: inline-block;

    background: #9e0000 url('./image/back02.gif');

    color: #353535 !important;

    padding: 10px 18px;

    border: 2px solid #353535;

    box-shadow: 3px 3px 0 #353535;

    text-decoration: none !important;

    font-weight: bold;

    letter-spacing: .08em;

    border-radius: 4px;

    min-width: 180px;

    text-align: center;

    transition: .15s ease-in-out;
}

.gallery-button:hover {

    transform: translateY(-2px);

    background: #c40000;

    box-shadow: 4px 4px 0 #353535;
}

/* CATEGORIA */

.gallery-category {

    width: 100%;

    display: block;

    clear: both;

    margin-top: 35px;
}

.gallery-category-title {

    text-align: center;

    margin-bottom: 25px;
}

/* PINTEREST LAYOUT */

.switch-gallery-grid {

    width: 100%;

    display: block;

    column-count: 4;

    column-gap: 20px;
}

/* RESPONSIVO */

@media screen and (max-width: 1100px) {

    .switch-gallery-grid {
        column-count: 3;
    }

}

@media screen and (max-width: 800px) {

    .switch-gallery-grid {
        column-count: 2;
    }

}

@media screen and (max-width: 500px) {

    .switch-gallery-grid {
        column-count: 1;
    }

}

/* ITEM */

.switch-shot {

    break-inside: avoid;

    margin-bottom: 20px;

    background: #8b7444;

    border: 2px solid #353535;

    padding: 8px;

    box-shadow: 3px 3px 0 #9e0000;

    transition: .15s ease-in-out;
}

.switch-shot:hover {

    transform: translateY(-2px);

    box-shadow: 5px 5px 0 #9e0000;
}

/* IMAGEM */

.switch-shot img {

    width: 100%;

    height: auto;

    display: block;

    border: 2px solid #353535;

    transition: .2s ease-in-out;
}

.switch-shot img:hover {

    transform: scale(1.01);
}

/* LIGHTBOX */

.gallery-lightbox {

    display: none;

    position: fixed;

    z-index: 99999;

    inset: 0;

    background: rgba(0,0,0,.92);

    justify-content: center;

    align-items: center;

    padding: 30px;
}

.gallery-lightbox.active {

    display: flex;
}

.gallery-lightbox img {

    max-width: 95%;

    max-height: 95%;

    border: 3px solid #353535;

    box-shadow:
        0 0 0 4px #8b7444,
        6px 6px 0 #9e0000;
}

/* LIGHTBOX BOTÕES */

.lightbox-prev,
.lightbox-next {

    appearance: none;

    -webkit-appearance: none;

    background: #9e0000 url('./image/back02.gif') !important;

    color: #fff8dc !important;

    border: 2px solid #353535;

    box-shadow: 3px 3px 0 #353535;

    width: 56px;

    height: 56px;

    font-size: 1.8em;

    font-weight: bold;

    cursor: pointer;

    transition: .15s ease-in-out;

    display: flex;

    align-items: center;

    justify-content: center;

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 9999;

    text-shadow: 1px 1px 0 #000;
}

.lightbox-prev:hover,
.lightbox-next:hover {

    background: #c40000 !important;

    transform: translateY(-50%) scale(1.05);

    box-shadow: 4px 4px 0 #353535;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

/* PAGINAÇÃO */

.gallery-pagination {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 35px;

    flex-wrap: wrap;
}

.gallery-page-button {

    display: inline-block;

    background: #9e0000 url('./image/back02.gif');

    color: #f2eee1 !important;

    padding: 8px 14px;

    border: 2px solid #353535;

    box-shadow: 3px 3px 0 #353535;

    text-decoration: none !important;

    font-weight: bold;

    min-width: 42px;

    text-align: center;

    transition: .15s ease-in-out;
}

.gallery-page-button:hover {

    background: #c40000;

    transform: translateY(-2px);
}

.gallery-page-button.active {

    background: #353535;

    color: #fff !important;
}

/* FOOTER / FLOW FIX */

#contents.cf {

    overflow: visible;
}

#contents.cf::after,
.gallery-nav::after,
.gallery-group::after,
#fullgallery::after {

    content: "";

    display: block;

    clear: both;
}

.entry-content,
.post-box {

    width: 100%;

    display: block;

    clear: both;
}