
        :root {
            --primary-color: #00b2ff;
            --text-color: #272727;
            --bg-color: #ffffff;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Poppins', Arial, sans-serif; line-height: 1.6; color: var(--text-color); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        header { padding: 20px 0; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
        .logo-placeholder { font-weight: bold; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
        nav a { margin-left: 20px; text-decoration: none; color: #333; font-weight: 500; }
        
        .hero { 
            position: relative; height: 60vh; display: flex; align-items: center; justify-content: center;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/assets/EVENTO+WIM+FEB20-21+(1).JPG');
            background-size: cover; background-position: center; color: white; text-align: center;
        }
        
        .btn { display: inline-block; padding: 12px 24px; border-radius: 50px; text-decoration: none; font-weight: bold; margin: 10px; }
        .btn-primary { background: var(--primary-color); color: white; }
        .btn-secondary { background: white; color: var(--primary-color); }
        
        .content-section { padding: 60px 0; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
        
        .client-logos { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 40px 0; filter: grayscale(1); opacity: 0.7; }
        .client-logos img { height: 50px; width: auto; object-fit: contain; }
        
        footer { background: #23282f; color: white; padding: 40px 0; text-align: center; margin-top: 50px; }
        
        @media (max-width: 768px) {
            nav { display: none; }
        }
    