.itens-galeria {
    padding: 3rem 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    background-color: #f9f9f9;
}

.item {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.item-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.titulo-data {
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.data-left {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    flex-shrink: 0;
}

.data-dia {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e4a11b;
    line-height: 1;
}

.data {
    font-size: 0.85rem;
    color: #888;
    display: block;
}

.barra {
    width: 30px;
    height: 2px;
    background-color: #e4a11b;
    margin: 0.5rem auto;
}

.titulo-descricao h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.titulo-descricao p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.titulo-descricao span {
    font-weight: 600;
    color: #222;
}

/* Imagem em tela cheia */
.fullscreen-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

#fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: zoom-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .titulo-data {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .titulo-descricao h6 {
        font-size: 1.1rem;
    }

    .titulo-descricao p {
        font-size: 1rem;
    }

    .item {
        max-width: 100%;
    }

    .item-imagem {
        height: 180px;
    }
}
