        /* Estilos para la sección de Colaboradores */
        .section-subtitle {
            color: #ccc;
            font-size: 14px;
            margin: 8px 0 0 0;
            text-align: center;
        }

        .colaboradores-container {
            margin: 20px 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }
        
        .loading-colaboradores {
            text-align: center;
            padding: 40px 20px;
            color: #fff;
        }
        
        .loading-colaboradores i {
            font-size: 24px;
            margin-bottom: 10px;
            color: #ff0000;
        }
        
        .loading-colaboradores p {
            margin: 0;
            font-size: 16px;
        }

        .colaboradores-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            margin-bottom: 20px;
        }

        .colaborador-card {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border: 2px solid #444;
            border-radius: 12px;
            padding: 18px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .colaborador-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .colaborador-card:hover {
            border-color: #ff0000;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
        }

        .colaborador-card:hover::before {
            opacity: 1;
        }

        .colaborador-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px auto;
            font-size: 24px;
            color: white;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
        }

        .colaborador-info {
            position: relative;
            z-index: 1;
        }

        .colaborador-name {
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            margin: 0 0 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .colaborador-name .user-badge {
            margin-right: 4px;
        }

        .colaborador-stats {
            display: flex;
            justify-content: space-around;
            margin: 12px 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            color: #ff0000;
            font-size: 16px;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            color: #ccc;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .colaborador-description {
            color: #aaa;
            font-size: 12px;
            margin: 12px 0;
            line-height: 1.3;
        }

        .colaborador-videos {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 2px solid #444;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 20px;
        }

        .colaborador-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .colaborador-header h3 {
            color: #fff;
            font-size: 20px;
            margin: 0;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .colaborador-header h3 .user-badge {
            margin-right: 4px;
        }

        .back-to-colaboradores {
            background: linear-gradient(135deg, #444 0%, #333 100%);
            color: white;
            border: 2px solid #555;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: bold;
        }

        .back-to-colaboradores:hover {
            background: linear-gradient(135deg, #555 0%, #444 100%);
            border-color: #666;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .colaborador-videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
        }

        .colaborador-video-card {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border: 2px solid #444;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .colaborador-video-card:hover {
            border-color: #ff0000;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 0, 0, 0.2);
        }

        .video-thumbnail {
            width: 100%;
            height: 140px;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 40px;
            position: relative;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .video-thumbnail:hover img {
            transform: scale(1.05);
        }

        .video-thumbnail::after {
            content: '▶';
            position: absolute;
            color: #ff0000;
            font-size: 20px;
            background: rgba(0, 0, 0, 0.8);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .colaborador-video-card:hover .video-thumbnail::after {
            transform: scale(1.1);
            background: rgba(255, 0, 0, 0.9);
        }

        .video-thumbnail-fallback {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 40px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .video-info {
            padding: 12px;
        }

        .video-title {
            color: #fff;
            font-size: 14px;
            font-weight: bold;
            margin: 0 0 8px 0;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: #aaa;
        }

        .video-category {
            background: #ff0000;
            color: white;
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
            font-size: 10px;
        }

        .video-date {
            color: #666;
            font-size: 10px;
        }

        /* Efectos adicionales */
        .colaborador-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .colaborador-card:hover::after {
            left: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .colaboradores-container {
                padding: 0 15px;
            }

            .colaboradores-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .colaborador-card {
                padding: 15px;
            }

            .colaborador-avatar {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .colaborador-name {
                font-size: 14px;
            }

            .colaborador-description {
                font-size: 11px;
            }

            .colaborador-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .colaborador-header h3 {
                font-size: 18px;
            }

            .colaborador-videos-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .colaborador-stats {
                justify-content: space-between;
            }

            .video-thumbnail {
                height: 120px;
            }

            .video-title {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .colaboradores-container {
                padding: 0 10px;
            }

            .colaborador-card {
                padding: 12px;
            }

            .colaborador-avatar {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .colaborador-name {
                font-size: 13px;
            }

            .stat-number {
                font-size: 14px;
            }

            .stat-label {
                font-size: 9px;
            }

            .video-thumbnail {
                height: 100px;
            }

            .video-info {
                padding: 10px;
            }

            .video-title {
                font-size: 12px;
            }
        }

        /* Estilos para el Modal de Video */
        .video-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
        }

        .video-modal-content {
            position: relative;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            margin: 2% auto;
            padding: 0;
            border: 2px solid #444;
            border-radius: 12px;
            width: 90%;
            max-width: 1000px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .video-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: linear-gradient(135deg, #333 0%, #222 100%);
            border-bottom: 2px solid #444;
        }

        .video-modal-title {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            margin: 0;
        }

        .video-modal-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .video-modal-close:hover {
            background: #ff0000;
            transform: scale(1.1);
        }

        .video-modal-body {
            padding: 0;
        }

        .video-modal-player {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            /* 16:9 aspect ratio */
            background: #000;
        }

        .video-modal-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-modal-info {
            padding: 20px;
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        }

        .video-modal-meta {
            color: #ccc;
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .video-modal-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .video-action-btn {
            background: linear-gradient(135deg, #444 0%, #333 100%);
            color: white;
            border: 2px solid #555;
            padding: 10px 16px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
        }

        .video-action-btn:hover {
            background: linear-gradient(135deg, #555 0%, #444 100%);
            border-color: #666;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .video-action-btn i {
            font-size: 16px;
        }

        /* Responsive para el modal */
        @media (max-width: 768px) {
            .video-modal-content {
                width: 95%;
                margin: 5% auto;
                max-height: 85vh;
            }

            .video-modal-header {
                padding: 12px 15px;
            }

            .video-modal-title {
                font-size: 16px;
            }

            .video-modal-close {
                font-size: 24px;
                width: 25px;
                height: 25px;
            }

            .video-modal-info {
                padding: 15px;
            }

            .video-modal-actions {
                flex-direction: column;
                gap: 8px;
            }

            .video-action-btn {
                justify-content: center;
                padding: 12px 16px;
            }
        }

        @media (max-width: 480px) {
            .video-modal-content {
                width: 98%;
                margin: 2% auto;
                max-height: 90vh;
            }

            .video-modal-header {
                padding: 10px 12px;
            }

            .video-modal-title {
                font-size: 14px;
            }

            .video-modal-info {
                padding: 12px;
            }

            .video-action-btn {
                padding: 10px 12px;
                font-size: 13px;
            }
        }