* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Wrapper específico para a seção de vídeos */
.videos-section {
    background: #6a0f1b;
    padding: 20px;
    min-height: 50vh;
}

.gallery-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gallery-videos {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

.card-video {
    background: #000;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

.card-video:hover {
    transform: translateY(-4px);
    border-color: #555;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-bottom: 1px solid #333;
    background: #111;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credit-badge-video {
    position: absolute;
    right: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

/* Mobile: badge embaixo do vídeo */
@media (max-width: 767px) {
    .credit-badge-video {
        bottom: 12px;
        top: auto;
        background: rgba(255, 255, 255, 0.7); /* 70% opacidade */
    }
}

/* Desktop: badge em cima do vídeo */
@media (min-width: 768px) {
    .credit-badge-video {
        top: 12px;
        background: rgba(255, 255, 255, 0.9);
    }
}

.content-video {
    padding: 16px;
}

.title-video {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-video {
    color: #888;
    font-size: 12px;
    margin-bottom: 12px;
}

.description-video {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mode-video {
    color: #888;
    font-size: 11px;
    margin-bottom: 12px;
    padding: 6px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.footer-video {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.runs-video {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}

.official-video {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #888;
    font-size: 10px;
}

.official-video::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border: 1px solid #888;
    border-radius: 50%;
    font-size: 9px;
}

.section-title {
    max-width: 1400px;
    margin: 40px auto 30px auto;
    padding: 0 20px;
}

.section-title h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 24px;
    }
}