/* Titulos */
.destaques {
    margin-top: -20px;
    width: 100%;
}

.destaques h4 {
    margin-top: 30px;
    color: #133555;
    line-height: 45px;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 20px;
}

/* Fotos */
.multimidia {
    background-color: #fff;
    height: auto;
    margin-top: 20px;
}

.gg-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 200px;
    grid-gap: 8px;
}

.gg-element img {
    object-fit: cover;
    cursor: pointer;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0;
}

.gg-element img:hover {
    opacity: 0.98;
}

#gg-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.904);
    z-index: 9999;
    text-align: center;
}

#gg-screen .gg-image {
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

#gg-screen .gg-image img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.gg-bt {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.92);
    color: #222;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    font-size: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    padding-left: 2px;
}

.gg-bt:hover {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.gg-close {
    position: fixed;
    top: 0.5em;
}

.gg-close,
.gg-nxt {
    right: 0.5em;
}

.gg-prev {
    left: 0.5em;
}

.gg-prev,
.gg-nxt {
    position: fixed;
    bottom: 50%;
}

/* Explore nossa pÃ¡gina */
.explore {
    background-color: #133555;
    height: 200px;
    margin-top: 20px;
}

.explore h3 {
    color: #fff;
    padding: 25px;
    text-transform: none;
    font-weight: bold;
}

.explore p {
    padding-left: 25px;

}

.explore p a {
    color: #fff;
    border: 1.5px solid #fff;
    padding: 10px 15px 10px 15px;
    font-weight: 500;
    border-radius: 5px;
}

.explore p a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #0a4522;
}


/* Responsive Tela Smartphone */
@media (max-width: 768px) {

    /* Titulos */
    .destaques {
        margin-top: -20px;
        width: 100%;
    }

    .destaques h3 {
        margin-top: 30px;
        color: #000000;
        line-height: 45px;
        font-weight: bold;
        text-transform: uppercase;
        padding-top: 20px;
    }

    /* Explore nossa pÃ¡gina */
    .explore {
        background-color: #133555;
        height: 210px;
        margin-top: -10px;
    }

    .explore h3 {
        color: #fff;
        padding: 25px;
        text-transform: none;
        font-weight: bold;
        font-size: 1.8em;
    }

    .explore p {
        padding-left: 25px;
    }

    .explore p a {
        color: #fff;
        border: 1.5px solid #fff;
        padding: 10px 15px 10px 15px;
        font-weight: 500;
        border-radius: 5px;
    }

    .explore p a:hover {
        text-decoration: none;
    }

    /* Fotos */
    .gg-box {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-auto-rows: 150px;
        grid-gap: 6px;
    }

}