.album {
    padding: 10px 5px;
}

.album h2 {
    margin-bottom: 20px;
    color: #ec737b;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr) );
    gap: 15px;
}

.galeria-grid img {
    width: 100%;
    height: 250px;

    object-fit: cover;
    border-radius: 10px;
    display: block;

    transition: 0.3s;
}

.galeria-grid img:hover {
    transform: scale(1.03);
    cursor: pointer;
}

/* Lightbox */
.lightbox {
    /* faz a tela preta cobrir tudo */
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    /* começa escondido */
    display: none;
    justify-content: center;
    align-items: center;

    z-index: 999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
}

.fechar {
    position: absolute;
    top: 20px;
    right: 30px;

    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* CSS das setas */
.anterior, .proxima {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.anterior {
    left: 20px;
}

.proxima {
    right: 20px;
}