/* Seção de Vídeo Moderna */
.video-section {
    padding: 80px 5%;
    background-color: var(--light);
}

.video-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.video-text {
    flex: 1;
}

.video-text .subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.video-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.video-text h2 span {
    color: var(--primary);
}

.video-player-container {
    flex: 1.5;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 15px 30px rgba(184, 115, 51, 0.2);
}

.video-player-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    cursor: pointer;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 0 rgba(184, 115, 51, 0.6);
    animation: pulse-border 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(184, 115, 51, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(184, 115, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 115, 51, 0); }
}

/* Responsividade */
@media (max-width: 992px) {
    .video-wrapper {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .video-text h2 { font-size: 2rem; }
}