#container-galeria-view-foto {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #00808085;
    z-index: 200;
    opacity: 0;
    overflow: hidden;
    transition: all 1s;
}

#box-fotoPrincipal {
    max-height: 85%;
    margin: 1rem auto;
    display: block;
}

#box-fotoPrincipal img {
    display: block;
    max-height: 98%;
    max-width: 100%;
    margin: 1px auto;
}

.container-galeria-fotos {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    transition: all 1s;
}

.box-foto-miniatura {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0.5rem;
    border-radius: 10px;
    border: 1px solid #008080;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #e0e0e0;
    max-height: 100px;
    transition: all 1s;
    cursor: pointer;
}

.box-foto-miniatura img {
    max-width: 100%;
    transition: all 1s;
}

.controles {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 1.2rem;
}

.controles span {
    display: block;
    margin: 0 1rem;
    color: white;
    cursor: pointer;
}

.close-galeria {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    box-sizing: border-box;
    font-size: 1.5rem;
    text-align: center;
    cursor: pointer;
    background-color: rgb(170, 253, 46);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

@media only screen and (max-width:1100px) {
    .container-galeria-fotos {
        display: grid;
        grid-template-columns: auto auto auto;
        transition: all 1s;
    }
}