        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #f8f4ff 0%, #fff5f8 100%);
            color: #2c3e50;
        }
        
        header {
            background: linear-gradient(135deg, #6B2E6E 0%, #9B4D96 50%, #D96C9C 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo { font-size: 1.5rem; font-weight: 700; font-family: 'Playfair Display', serif; }
        .logo span { color: #D9FFA8; }
        
        .nav-links { display: flex; list-style: none; gap: 2rem; }
        .nav-links a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
        .nav-links a:hover, .nav-links a.active { color: #D9FFA8; }
        
        .menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; }
        
        .hero {
            background: linear-gradient(135deg, rgba(107,46,110,0.85), rgba(217,108,156,0.85)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: white;
            padding: 120px 0 60px;
            text-align: center;
        }
        
        .hero h1 { font-size: 3rem; font-family: 'Playfair Display', serif; margin-bottom: 1rem; }
        
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .videos-section { padding: 60px 0; }
        
        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .video-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(107,46,110,0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease both;
        }
        
        .video-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(107,46,110,0.2); }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: #1a1a2e;
        }
        
        .video-container iframe, .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #2c3e50, #1a1a2e);
            color: white;
            text-align: center;
        }
        
        .video-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.7;
        }
        
        .video-placeholder p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .video-info { padding: 1.5rem; }
        .video-info h3 { color: #6B2E6E; font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; }
        
        .video-plataforma {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            margin-bottom: 10px;
        }
        
        .btn-video {
            display: inline-block;
            margin-top: 10px;
            padding: 8px 20px;
            background: linear-gradient(135deg, #D96C9C, #9B4D96);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        
        .btn-video:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(107,46,110,0.3);
        }
        
        .plataforma-youtube { background: #FF0000; color: white; }
        .plataforma-facebook { background: #1877F2; color: white; }
        .plataforma-instagram { background: #E4405F; color: white; }
        .plataforma-tiktok { background: #000000; color: white; }
        .plataforma-vimeo { background: #1AB7EA; color: white; }
        .plataforma-local { background: #28a745; color: white; }
        .plataforma-otro { background: #6c757d; color: white; }
        
        footer {
            background: linear-gradient(135deg, #6B2E6E 0%, #9B4D96 100%);
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav-links { display: none; width: 100%; flex-direction: column; text-align: center; padding: 1rem 0; gap: 1rem; }
            .nav-links.active { display: flex; }
            .hero h1 { font-size: 2rem; }
            .videos-grid { grid-template-columns: 1fr; }
        }
    