        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: #1f2937;
            background: #ffffff;
            overflow-x: hidden;
            padding-top: 72px;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: box-shadow 0.3s;
        }
        .header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
        .header-inner {
            display: flex; align-items: center; justify-content: space-between;
            height: 72px;
        }
        .header-logo {
            display: flex; align-items: center; gap: 10px;
            font-weight: 800; font-size: 1.35rem;
            color: #1f2937;
        }
        .header-logo img { height: 36px; width: auto; }
        .header-logo span { background: linear-gradient(135deg, #4F46E5, #7C3AED); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .header-nav { display: flex; align-items: center; gap: 12px; }
        .btn-outline {
            padding: 10px 24px; border-radius: 12px; font-weight: 600; font-size: 0.9rem;
            border: 2px solid #4F46E5; color: #4F46E5;
            transition: all 0.3s; background: transparent;
        }
        .btn-outline:hover { background: #4F46E5; color: #fff; transform: scale(1.03); }
        .btn-primary {
            padding: 12px 32px; border-radius: 12px; font-weight: 700; font-size: 0.95rem;
            background: #4F46E5; color: #fff; border: none;
            transition: all 0.3s; cursor: pointer; display: inline-block;
        }
        .btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(79,70,229,0.35); }

        .page-title {
            text-align: center;
            padding: 60px 0 20px;
            font-size: 2.2rem;
            font-weight: 800;
            color: #111827;
        }
        .page-subtitle {
            text-align: center;
            color: #6b7280;
            font-size: 1.1rem;
            margin-bottom: 48px;
        }
        .cursos-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            padding-bottom: 80px;
        }
        .curso-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 32px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        .curso-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(79,70,229,0.12);
        }
        .curso-icon {
            width: 64px;
            height: 64px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .curso-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .curso-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #111827;
        }
        .curso-card p {
            color: #6b7280;
            line-height: 1.7;
            font-size: 0.95rem;
            flex: 1;
        }
        .curso-card .btn-primary {
            align-self: flex-start;
            font-size: 0.85rem;
            padding: 10px 24px;
        }

        .footer {
            background: #111827; color: #fff; padding: 48px 0 32px;
        }
        .footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
        .footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
        .footer-links a { color: #9CA3AF; font-size: 0.9rem; transition: color 0.2s; }
        .footer-links a:hover { color: #fff; }
        .footer-copy { color: #6b7280; font-size: 0.85rem; text-align: center; }

        .fade-in-up { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
        .fade-in-up.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 768px) {
            body { padding-top: 64px; }
            .header-inner { height: 64px; }
            .cursos-grid { grid-template-columns: 1fr; }
            .page-title { font-size: 1.6rem; padding: 40px 0 16px; }
        }
