body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #222;
    border-radius: 10px;
}

.album-list {
    list-style: none;
    padding: 0;
}

.album-list li {
    margin: 10px 0;
}

.album-list a {
    color: #00c3ff;
    font-size: 18px;
    text-decoration: none;
}

.album-list a:hover {
    text-decoration: underline;
}

.voltar {
    display: inline-block;
    margin-bottom: 20px;
    color: #00c3ff;
    text-decoration: none;
}

.voltar:hover {
    text-decoration: underline;
}

/* Carrossel */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carousel-item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
    scroll-snap-align: start;
}

.carousel-item img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    padding: 16px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-conteudo {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
    transition: transform 0.2s ease;
    cursor: zoom-in;
}

.lightbox.zoomed .lightbox-conteudo {
    cursor: grab;
}

.fechar {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    z-index: 10000;
}
