/* Ajuste para vídeo de fundo */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-card {
    position: relative;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
    border-color: rgba(255, 255, 255, .18);
}

.thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.video-title {
    padding: 12px 12px 14px;
    font-size: 14px;
    color: #fff;
    text-align: left;
    min-height: 56px;
}

.play-badge {
    position: absolute;
    inset: auto 12px 12px auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.play-badge svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.player-wrap iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    border: 0;
    display: block;
}