.videos-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffca2c);
    margin: 0 auto;
}

.videos-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.videos-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.video-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-overlay.playing {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 193, 7, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 193, 7, 1);
}

.play-button i {
    font-size: 1.8rem;
    color: #fff;
    margin-left: 3px;
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.video-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.navigation-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.nav-btn:hover {
    background: rgba(255, 193, 7, 1);
    transform: scale(1.1);
}

.nav-btn:disabled {
    background: rgba(200, 200, 200, 0.5);
    cursor: not-allowed;
    transform: scale(1);
}

.nav-btn i {
    color: #fff;
    font-size: 1.2rem;
}

.nav-prev {
    left: -25px;
}

.nav-next {
    right: -25px;
}

.video-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background: #ffc107;
    transform: scale(1.2);
}

/* Responsivo */
@media (max-width: 768px) {
    .videos-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .video-card {
        flex: 0 0 280px;
    }

    .video-wrapper {
        height: 350px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.4rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .nav-btn i {
        font-size: 1rem;
    }

    .nav-prev {
        left: -20px;
    }

    .nav-next {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .videos-container {
        padding: 0 15px;
    }

    .video-card {
        flex: 0 0 250px;
    }

    .video-wrapper {
        height: 320px;
    }

    .videos-track {
        gap: 15px;
    }
}