body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
    background-color: #f8f8f8;
}

.album-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.album {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s, transform 0.2s;
}

.album:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

.gallery {
    column-count: 4;
    column-gap: 10px;
    padding: 10px;
    margin-top: 20px;
    max-width: 1200px;
    margin: auto;
}

.gallery img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.02);
}

/* Modal para zoom */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .gallery {
        column-count: 3;
    }
}
@media (max-width: 768px) {
    .gallery {
        column-count: 2;
    }
}
@media (max-width: 480px) {
    .gallery {
        column-count: 1;
    }
}
