/* =========================================================
   CARROSSEL DE VÍDEOS
   ========================================================= */
.vc {
    --vc-max: 1450px;
    /* largura máxima do container */
    --vc-pad: 15px;
    /* respiro lateral */
    --vc-gap: 24px;
    /* espaço entre os slides */
    --vc-radius: 6px;
    /* arredondamento das thumbs */
    --vc-accent: #c9a227;
    /* cor dos dots ativos / detalhes (dourado) */
    --vc-title: #1a1a1a;
    --vc-text: #555;
    --vc-btn-bg: #111;
    /* botão CTA */
    --vc-btn-color: #fff;
    --vc-nav-bg: #111;
    /* setas */
    --vc-nav-color: #fff;
    --vc-bg: #fff;
    /* fundo da seção (bg-light) */

    background: var(--vc-bg);
    padding: 70px 0;
}

.vc * {
    box-sizing: border-box;
}

.vc-container {
    width: 100%;
    max-width: var(--vc-max);
    margin: 0 auto;
    padding: 0 var(--vc-pad);
}

/* Cabeçalho */
.vc-head {
    text-align: center;
    margin-bottom: 34px;
}

.vc-title {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    color: var(--vc-title);
    line-height: 1.2;
}

.vc-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    margin: 14px auto 0;
    background: var(--vc-accent);
}

.vc-sub {
    margin: 0;
    color: var(--vc-text);
    font-size: 1rem;
}

/* Palco */
.vc-box {
    position: relative;
}

.vc-viewport {
    overflow: hidden;
}

.vc-track {
    display: flex;
    gap: var(--vc-gap);
    transition: transform .5s ease;
    will-change: transform;
}

/* Slide */
.vc-slide {
    position: relative;
    flex: 0 0 auto;
    display: block;
    aspect-ratio: 16/9;
    border-radius: var(--vc-radius);
    overflow: hidden;
    background: #e6e8ec;
    text-decoration: none;
}

.vc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.vc-slide:hover img {
    transform: scale(1.05);
}

.vc-slide::before {
    /* véu escuro no hover */
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
    transition: background .3s ease;
    z-index: 1;
}

.vc-slide:hover::before {
    background: rgba(0, 0, 0, .35);
}

/* Botão de play (feito só com CSS) */
.vc-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, background .3s ease;
}

.vc-play::after {
    /* triângulo */
    content: "";
    margin-left: 4px;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #fff;
}

.vc-slide:hover .vc-play {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--vc-accent);
    border-color: var(--vc-accent);
}

/* Setas */
.vc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: var(--vc-nav-bg);
    color: var(--vc-nav-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .9;
    transition: opacity .25s ease, transform .25s ease;
}

.vc-nav:hover {
    opacity: 1;
}

.vc-prev {
    left: -8px;
}

.vc-next {
    right: -8px;
}

/* Dots */
.vc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}

.vc-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c9cbce;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.vc-dots button.is-active {
    background: var(--vc-accent);
    transform: scale(1.15);
}

/* CTA */
.vc-cta {
    text-align: center;
    margin-top: 34px;
}

.vc-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    background: var(--vc-btn-bg);
    color: var(--vc-btn-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .85rem;
    transition: opacity .25s ease, transform .25s ease;
}

.vc-btn:hover {
    opacity: .85;
    transform: translateY(-2px);
}

/* Modal de vídeo */
.vc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-modal[hidden] {
    display: none;
}

.vc-modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .9);
}

.vc-modal_body {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 16px;
    z-index: 1;
}

.vc-modal_body video {
    width: 100%;
    border-radius: 6px;
    background: #000;
    display: block;
}

.vc-modal_close {
    position: absolute;
    top: 22px;
    right: 26px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.vc-modal_close:hover {
    background: rgba(255, 255, 255, .3);
}

/* Responsivo (setas ficam para dentro no mobile) */
@media (max-width:576px) {
    .vc-track {
        gap: 0;
    }

    .vc-prev {
        left: 6px;
    }

    .vc-next {
        right: 6px;
    }

    .vc-nav {
        width: 38px;
        height: 38px;
    }
}