/* Galería - Estilos específicos */

.gallery-hero {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.gallery-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.gallery-hero p {
    font-size: 18px;
    color: #94a3b8;
}

.gallery-full {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-full-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-full-item:hover {
    transform: translateY(-5px);
}

.gallery-full-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.gallery-full-item::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-full-item:hover::after {
    opacity: 1;
}

.gallery-full-item:hover img {
    filter: brightness(0.7);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.back-btn:hover {
    background: #f57c00;
    color: white;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-filter {
    background: white;
    border: 2px solid #ff9800;
    color: #ff9800;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-filter:hover,
.category-filter.active {
    background: #ff9800;
    color: white;
}

/* Animaciones */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para galería */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 32px;
    }
    
    .gallery-full-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-categories {
        gap: 10px;
    }
    
    .category-filter {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        padding: 80px 0 40px;
    }
    
    .gallery-hero h1 {
        font-size: 28px;
    }
    
    .gallery-full {
        padding: 40px 0;
    }
    
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-categories {
        flex-direction: column;
        align-items: center;
    }
} 