/* --- 1. CONTAINER DA GALERIA --- */
.galeria-container {
    display: flex;
    flex-wrap: wrap;       
    justify-content: center; 
    margin: 20px 0;
    width: 100%;
}

/* --- 2. ITENS DA GALERIA (VÍDEOS E FOTOS) --- */
.gallery-item {
    flex: 0 1 auto;
    position: relative;
    aspect-ratio: 16 / 9; 
    background-color: var(--bg-black);
    border-radius: var(--radius-main, 8px);
    overflow: hidden;
    border: 1px solid var(--border-main);
    transition: all var(--transition-mid, 0.3s ease);
    text-decoration: none;
    display: block;
    
    /* AJUSTE PARA CELULAR */
    width: 45%;            
    margin: 5px;           
    min-width: 140px;      
}

.gallery-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-red);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    opacity: 1;
}

/* --- 3. RESPONSIVIDADE (TV E DESKTOP) --- */
@media (min-width: 768px) {
    .gallery-item {
        width: 22%;        /* 4 miniaturas por linha */
        margin: 10px;      
        min-width: 200px;  
    }
}

/* --- 4. ÍCONES (FONT AWESOME) --- */
.video-type::after {
    content: "\f04b"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-white);
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(0,0,0,0.8);
    pointer-events: none;
}

.photo-type:hover::after {
    content: "\f002"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--text-white);
    font-size: 0.8rem;
    opacity: 0.7;
}
