/* Blog Vídeo Stories - mobile first */
.vb-section {
    padding: 1rem 0;
    background: #0b0b0d;
    color: #fff;
    font-family: Poppins, sans-serif;
}

.vb-inner.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero */
.vb-hero {
    position: relative;
    border-radius: 12px;
    min-height: 380px;
    overflow: hidden;
}

.vb-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity .6s ease;
}

.vb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2));
}

.vb-hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    z-index: 1;
}

.vb-text h1 {
    font-size: 1.4rem;
    margin-bottom: .3rem;
}

.vb-text p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: .6rem;
}

.vb-controls {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.vb-btn {
    padding: .6rem .9rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    transition: .2s;
}

.vb-btn.primary {
    background: linear-gradient(90deg, #F06B00, #EC1E79);
}

.vb-btn:hover {
    transform: scale(1.05);
}

/* CTA abaixo do texto */
.vb-cta-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .7rem 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(90deg, #F06B00, #EC1E79);
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.vb-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Player */
.vb-player {
    width: 100%;
}

.vb-video {
    width: 100%;
    height: calc(100vw * 16/9);
    max-height: 500px;
    border-radius: 10px;
    background: #000;
    object-fit: cover;
}

@media(min-width:768px) {
    .vb-hero-content {
        grid-template-columns: 1fr 360px;
        align-items: center;
    }

    .vb-video {
        height: 640px;
        max-height: 90vh;
    }
}

/* Thumbs */
.vb-thumbs-wrapper {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.vb-thumb-nav {
    background: rgba(0, 0, 0, .6);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .4rem .6rem;
    font-size: 1.4rem;
    cursor: pointer;
}

.vb-thumbs {
    display: flex;
    gap: .6rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: .4rem 0;
    flex: 1;
}

.vb-thumb {
    min-width: 140px;
    background: #1a1a1d;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    color: #fff;
    border: 2px solid transparent;
    transition: .2s;
}

.vb-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.vb-thumb-meta {
    padding: .5rem;
    font-size: .85rem;
}

.vb-thumb strong {
    display: block;
    font-weight: 600;
    margin-bottom: .2rem;
}

.vb-thumb span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .7);
}

.vb-thumb:hover {
    transform: translateY(-5px);
}

.vb-thumb.active {
    border-color: #F06B00;
}

/* Animação suave no player */
.vb-player {
    position: relative;
}

.vb-video {
    opacity: 1;
    transform: scale(1);
    transition: opacity .5s ease, transform .5s ease;
}

.vb-video.fade-out {
    opacity: 0;
    transform: scale(0.96);
}

.vb-video.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Ajuste: degradê branco e meta dentro das thumbs */
.vb-thumb {
    position: relative;
    overflow: hidden;
}

.vb-thumb img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Degradê no rodapé das thumbs */
.vb-thumb-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .6rem;
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0) 100%);
    color: #000;
    text-align: left;
}

.vb-thumb-meta strong {
    font-size: .9rem;
    font-weight: 700;
    color: #111;
    display: block;
    margin-bottom: .2rem;
}

.vb-thumb-meta span {
    font-size: .8rem;
    color: #333;
}