/**
 * VÍDEO SHOW - PÁGINA ÚNICA DE VÍDEO
 * CSS externo para funcionar com AJAX do player
 * Carregado no layout principal
 * Padronizado com galeria-show.css e noticia-show.css
 */

/* ============================================
   HEADER DO VÍDEO
   ============================================ */
.video-header {
    background: linear-gradient(135deg, var(--radio-primary, #FF8C00) 0%, var(--radio-secondary, #FFA500) 100%);
    padding: 60px 0 0;
    margin-bottom: 0;
    color: white;
    box-shadow: none;
    border-bottom: none;
}

/* Container dentro do header */
.video-header .container {
    padding-bottom: 30px;
    margin-bottom: 0;
}

/* Container após header - remove espaço extra */
.video-header + .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Remove espaçamento extra do primeiro elemento */
.video-header + .container .row {
    margin-top: 0 !important;
}

.video-header + .container .row > [class*="col-"] {
    padding-top: 0 !important;
}

.video-categoria {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.video-titulo {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0;
    border-bottom: none !important;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-meta i {
    font-size: 1.3rem;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.video-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.video-header .breadcrumb-item a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.video-header .breadcrumb-item a:hover {
    opacity: 1;
    text-decoration: underline;
}

.video-header .breadcrumb-item.active {
    color: white;
    opacity: 0.8;
}

.video-header .breadcrumb-item + .breadcrumb-item::before {
    color: white;
    opacity: 0.8;
}

/* ============================================
   PLAYER DE VÍDEO
   ============================================ */
.video-player-container {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* ============================================
   DESCRIÇÃO
   ============================================ */
.video-descricao {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ============================================
   VÍDEOS RELACIONADOS
   ============================================ */
.videos-relacionados {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.videos-relacionados h3 {
    color: #212529;
    font-size: 1.75rem;
    font-weight: 700;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 768px) {
    .video-header {
        padding: 40px 0 0;
    }
    
    .video-header .container {
        padding-bottom: 30px;
    }
    
    .video-titulo {
        font-size: 2rem;
    }
    
    .video-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 1rem;
    }
    
    .video-player-container {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .video-descricao {
        padding: 1.5rem;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .videos-relacionados {
        padding: 1.5rem;
    }
    
    .videos-relacionados h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .video-titulo {
        font-size: 1.5rem;
    }
    
    .video-meta {
        font-size: 0.9rem;
    }
    
    .video-meta i {
        font-size: 1.1rem;
    }
    
    .video-categoria {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}
