/* === VIDEO SECTION (DESIGN PRINT NOVO) === */

.video-new-section {
    padding: 80px 0;
    background-color: #F3F4F6;
    /* Fundo cinza claro conforme imagem */
    text-align: center;
}

.video-header-new {
    max-width: 800px;
    margin: 0 auto 40px;
}

.video-tag-new {
    color: #2563EB;
    /* Azul vibrante */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.video-subtitle-new {
    color: #6B7280;
    /* Cinza médio */
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.video-title-new {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    /* Preto Quase Total */
    line-height: 1.2;
    margin-bottom: 30px;
}

/* Container do Vídeo */
.video-wrapper-new {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-cover-new {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Proporção padrão de vídeo */
    background-color: #000;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-thumb-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.video-cover-new:hover .video-thumb-new {
    opacity: 0.7;
}

.play-button-new {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    /* Fundo semi-transparente */
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(4px);
    transition: transform 0.2s, background-color 0.2s;
    z-index: 10;
}

.play-button-new:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .video-title-new {
        font-size: 1.8rem;
    }
}