/* ================================
   VIDEOS PAGE - RESPONSIVO
================================ */

/* GRID DE VÍDEOS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* CARD DO VÍDEO */
.video-card {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 0 18px rgba(0,255,102,0.35);
    transition: 0.3s;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(0,255,102,0.8);
}

/* TITULO DO VÍDEO */
.video-card h3 {
    margin-bottom: 12px;
    font-size: 16px;
    color: #00ff66;
    text-align: center;
    text-shadow: 0 0 8px #00ff66;
}

/* WRAPPER RESPONSIVO */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #00ff66;
    box-shadow: 0 0 12px rgba(0,255,102,0.5);
}

/* IFRAME */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
