﻿.video-thumb {
    position: relative !important;
    display: block !important;
    width: 100%;
    max-width: 520px;
    margin: 16px auto 0;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    text-decoration: none !important;
}

    /* IMAGEM */
    .video-thumb > img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        border: 0 !important;
    }

    /* OVERLAY */
    .video-thumb .video-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(15,23,42,.65), rgba(15,23,42,.25), rgba(15,23,42,.05) );
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    /* BOTÃO PLAY */
    .video-thumb .play-button {
        width: 64px;
        height: 64px;
        background: #2563eb;
        border-radius: 50%;
        color: #fff;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(37,99,235,.55);
    }

    /* TEXTO */
    .video-thumb .video-label {
        font-size: 13px;
        font-weight: 600;
        color: #e5e7eb;
        letter-spacing: .4px;
    }

    /* HOVER */
    .video-thumb:hover .video-overlay {
        background: rgba(15,23,42,.75);
    }
