
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8fafc;
            color: #0f172a;
            padding-top: 72px;
            min-height: 100vh;
        }
        
        /* ========================================
           CONTEÚDO PRINCIPAL
           ======================================== */
        .redes-container {
            max-width: 820px;
            margin: 0 auto;
            padding: 40px 24px;
        }
        
        .redes-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .redes-header h1 {
            font-size: 36px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }
        
        .redes-header h1 i {
            color: #37A8FF;
            margin-right: 10px;
        }
        
        .redes-header p {
            font-size: 18px;
            color: #64748b;
            font-weight: 400;
        }
        
        /* ========================================
           YOUTUBE - LISTA DE VÍDEOS
           ======================================== */
        .youtube-container {
            margin-bottom: 40px;
        }
        
        .youtube-container .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .youtube-container .section-title i {
            color: #FF0000;
        }
        
        .youtube-video-wrapper {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 24px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .youtube-video-wrapper:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .youtube-video-wrapper iframe {
            width: 100%;
            aspect-ratio: 16/9;
            border: none;
            display: block;
        }
        
        .youtube-video-wrapper .video-info {
            padding: 16px 20px;
            background: #fff;
        }
        
        .youtube-video-wrapper .video-info h3 {
            font-size: 16px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 4px;
        }
        
        .youtube-video-wrapper .video-info .video-meta {
            font-size: 13px;
            color: #94a3b8;
        }
        
        .youtube-video-wrapper .video-info .video-meta i {
            margin-right: 4px;
        }
        
        /* ===== BOTÃO VER MAIS NO YOUTUBE ===== */
        .youtube-ver-mais {
            text-align: center;
            margin-top: 30px;
            padding: 20px 0;
            border-top: 1px solid #e9ecef;
        }
        
        .youtube-ver-mais a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #FF0000;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }
        
        .youtube-ver-mais a:hover {
            background: #cc0000;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
        }
        
        .youtube-ver-mais a i {
            font-size: 20px;
        }
        
        /* ========================================
           FACEBOOK E INSTAGRAM - LISTA VERTICAL
           ======================================== */
        .redes-sociais-container {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #e9ecef;
        }
        
        .redes-sociais-container .section-title {
            font-size: 24px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .redes-sociais-container .section-title i {
            color: #37A8FF;
        }
        
        .rede-social-wrapper {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 24px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .rede-social-wrapper:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .rede-social-wrapper .rede-header {
            padding: 16px 20px;
            background: #f8fafc;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .rede-social-wrapper .rede-header .rede-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .rede-social-wrapper .rede-header .rede-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
        }
        
        .rede-social-wrapper .rede-header .rede-icon.facebook {
            background: #1877F2;
        }
        
        .rede-social-wrapper .rede-header .rede-icon.instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }
        
        .rede-social-wrapper .rede-header .rede-name {
            font-weight: 600;
            font-size: 16px;
            color: #0f172a;
        }
        
        .rede-social-wrapper .rede-header .rede-status {
            font-size: 12px;
            color: #22c55e;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .rede-social-wrapper .rede-header .rede-status i {
            font-size: 8px;
        }
        
        .rede-social-wrapper .rede-body iframe {
            width: 100%;
            height: 500px;
            border: none;
            display: block;
        }
        
        .rede-social-wrapper .rede-footer {
            padding: 14px 20px;
            background: #fff;
            border-top: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .rede-social-wrapper .rede-footer a {
            color: #37A8FF;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .rede-social-wrapper .rede-footer a:hover {
            color: #115FFF;
            text-decoration: underline;
        }
        
        .rede-social-wrapper .rede-footer span {
            font-size: 13px;
            color: #64748b;
        }
        
        /* ========================================
           RESPONSIVIDADE
           ======================================== */
        @media (max-width: 768px) {
            .redes-header h1 {
                font-size: 28px;
            }
            
            .redes-header p {
                font-size: 16px;
            }
            
            .rede-social-wrapper .rede-body iframe {
                height: 400px;
            }
            
            .youtube-container .section-title {
                font-size: 20px;
            }
            
            .redes-sociais-container .section-title {
                font-size: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .redes-container {
                padding: 20px 15px;
            }
            
            .redes-header h1 {
                font-size: 24px;
            }
            
            .rede-social-wrapper .rede-body iframe {
                height: 350px;
            }
            
            .youtube-ver-mais a {
                padding: 12px 24px;
                font-size: 14px;
            }
        }
