    .video--section {
        padding: 40px 20px;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video--container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    .video--section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .video--section-title {
        font-size: 3rem;
        font-weight: bold;
        color: #ffd700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .video--section-subtitle {
        font-size: 1.8rem;
        color: #cccccc;
        max-width: 600px;
        margin: 0 auto;
    }

    .video--content {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 60px;
        align-items: center;
        padding: 0px 40px 0px 40px;
    }

    .video--text {
        color: #e0e0e0;
    }

    .video--description {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 25px;
        color: #cccccc;
    }

    .video--features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .video--features li {
        padding: 8px 0;
        color: #e0e0e0;
        font-size: 1.1rem;
        position: relative;
        padding-left: 25px;
    }

    .video--features li:before {
        content: '✓';
        color: #ffd700;
        font-weight: bold;
        position: absolute;
        left: 0;
        font-size: 1.2rem;
    }

    .video--player {
        display: flex;
        justify-content: center;
    }

    .video--element {
        width: 300px;
        height: 530px;
        border-radius: 12px;
        object-fit: cover;
        border: 2px solid #333;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    /* Mobile */
/* Mobile apenas - sem subtítulo e descrição */
@media (max-width: 768px) {
    .video--section {
        padding: 40px 15px;
        min-height: auto;
    }

    .video--section-header {
        margin-bottom: 30px;
    }

    .video--section-title {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .video--section-subtitle {
        display: none;
    }

    .video--content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .video--text {
        display: none;
    }

    .video--description {
        display: none;
    }

    .video--features {
        display: none;
    }

    .video--element {
        width: 280px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .video--section-title {
        font-size: 1.8rem;
    }

    .video--element {
        width: 250px;
        height: 440px;
    }
}

    @media (max-width: 480px) {
        .video--section-title {
            font-size: 2rem;
        }

        .video--section-subtitle {
            font-size: 1rem;
        }

        .video--element {
            width: 250px;
            height: 440px;
        }

        .video--description {
            font-size: 1rem;
        }}