/* ============================================= */
/* ESTILOS DA SEÇÃO TV MONTEIRO (LAYOUT PLAYLIST)*/
/* ============================================= */
.tv-monteiro-section {
    width: 100%;
    padding: 60px 20px;
    background-image: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.85)), url('../Img/foto-colegio.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
}
.tv-monteiro-section .container { width: 95%; max-width: 1200px; margin: 0 auto; }
/* --- TÍTULO BRANCO/AMARELO RESTAURADO --- */
.tv-monteiro-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff; /* <-- Garante que 'TV' seja branco */
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}
.tv-monteiro-section .section-title strong {
    color: #ffcc00; /* <-- Garante que 'Monteiro' seja amarelo */
}

/* --- Layout Principal da Playlist --- */
.tv-playlist-layout {
    display: flex;
    gap: 40px;
}
.featured-video-container {
    flex: 2; /* Ocupa 2/3 do espaço */
}
.video-list-container {
    flex: 1; /* Ocupa 1/3 do espaço */
}

/* --- Vídeo em Destaque (Esquerda) --- */
.featured-video-container .video-container-popup {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}
.featured-video-container img {
    width: 100%;
    display: block;
}
.featured-video-container h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
}
.featured-video-container p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}
.play-icon-large {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    background: rgba(255, 204, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.play-icon-large::after {
    content: ''; display: block; width: 0; height: 0;
    border-style: solid; border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #003366;
    margin-left: 5px;
}
.featured-video-container .video-container-popup:hover .play-icon-large {
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- Lista de Vídeos (Direita) --- */
.video-list-container h4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
.video-list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    text-decoration: none;
    color: #fff;
}
.video-list-item .item-thumbnail {
    flex-shrink: 0;
    width: 140px;
    position: relative;
    cursor: pointer;
}
.video-list-item img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.play-icon-small {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; height: 30px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-list-item:hover .play-icon-small { opacity: 1; }
.play-icon-small::after {
    content: ''; display: block; width: 0; height: 0;
    border-style: solid; border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #fff;
    margin-left: 2px;
}
.video-list-item .item-info h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.video-list-item:hover .item-info h5 {
    color: #ffcc00;
}
.video-list-item .item-info span {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* --- Responsividade --- */
@media (max-width: 992px) {
    .tv-playlist-layout {
        flex-direction: column;
    }
}