/* Video simple sin recuadro */
.video-section {
    padding: 60px 20px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-title {
    margin-bottom: 40px;
}

.video-title h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 0;
}

.video-frame {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-frame iframe {
    width: 100%;
    height: 405px;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 15px;
    }
    
    .video-title h1 {
        font-size: 2rem;
    }
    
    .video-frame iframe {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .video-frame iframe {
        height: 200px;
    }
    
    .video-title h1 {
        font-size: 1.6rem;
    }
}
