
/* Galeria de Vídeos do Setor Elétrico da RNT */
.GaleriaDeVideos .section-content {
    text-align: center;
    margin-bottom: 30px;
}

.GaleriaDeVideos .section-content h2 {
    font-size: 2rem;
    color: #006699;
    margin-bottom: 1rem;
    border-bottom: 2px solid #006699;
    display: inline-block;
    padding-bottom: 0.3rem;
}

.GaleriaDeVideos .section-content p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.GaleriaDeVideos .video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 10px;
}

.GaleriaDeVideos .video-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.GaleriaDeVideos .video-card:hover {
    transform: scale(1.02);
}

.GaleriaDeVideos .video-card iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.GaleriaDeVideos .video-card-content {
    padding: 15px;
}

.GaleriaDeVideos .video-card-content h5 {
    font-size: 1.2rem;
    color: #006699;
    margin-bottom: 8px;
}

.GaleriaDeVideos .video-card-content a {
    text-decoration: none;
    color: inherit;
}

.GaleriaDeVideos .video-card-content p {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 600px) {
    .GaleriaDeVideos .section-content h2 {
        font-size: 2rem;
    }

    .GaleriaDeVideos .video-card iframe {
        height: 180px;
    }
}

