
        :root {
            --accent: #28A745;
            --accent-dark: #218838;
            --accent-light: #F0F8F5;
            --blue-dark: #1A3A52;
            --hero-start: #1A3A52;
            --hero-end: #2D5F4F;
            --bg-light: #F8F9FA;
            --text-primary: #333333;
            --text-secondary: #666666;
            --border: #E8E8E8;
            --purple: #A885D8;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            color: var(--text-primary);
            background: #fff;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* HEADER */
        .site-header {
            background-color: var(--blue-dark);
            padding: 16px 24px;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .logo-group {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo-group .logo {
            height: 40px;
            width: auto;
        }

        .logo-divider {
            width: 1px;
            height: 30px;
            background: rgba(255, 255, 255, 0.3);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .nav-dropdown {
            position: relative;
        }

        .dropdown-menu-custom {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%) translateY(-6px);
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            min-width: 280px;
            padding: 8px 0;
            z-index: 100;
            transition: opacity 0.2s ease, transform 0.22s ease, visibility 0s 0.2s;
        }

        .nav-dropdown:hover .dropdown-menu-custom,
        .nav-dropdown.open .dropdown-menu-custom {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
            transition: opacity 0.2s ease, transform 0.22s ease;
        }

        .dropdown-menu-custom li a {
            display: block;
            padding: 10px 20px;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.2s, color 0.2s;
        }

        .dropdown-menu-custom li a:hover {
            background-color: var(--bg-light);
            color: var(--accent);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .btn-header {
            background-color: var(--accent);
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        .btn-header:hover {
            background-color: var(--accent-dark);
            color: #fff;
        }

        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            padding: 4px;
        }

        /* Mobile nav */
        .nav-menu.open {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--blue-dark);
            padding: 16px 24px 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            z-index: 999;
        }

        .nav-menu.open .nav-link {
            padding: 12px 0;
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .nav-menu.open .nav-dropdown {
            width: 100%;
        }

        .nav-menu.open .dropdown-menu-custom {
            position: static;
            transform: none;
            box-shadow: none;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            visibility: visible;
            pointer-events: none;
            transition: max-height 0.35s ease, opacity 0.25s ease;
        }

        .nav-menu.open .nav-dropdown.open .dropdown-menu-custom {
            max-height: 300px;
            opacity: 1;
            pointer-events: auto;
        }

        .nav-menu.open .dropdown-menu-custom li a {
            color: rgba(255, 255, 255, 0.8);
            padding: 10px 24px;
        }

        .nav-menu.open .dropdown-menu-custom li a:hover {
            background-color: rgba(255, 255, 255, 0.06);
            color: var(--accent);
        }

        .nav-menu-cta {
            display: none;
            padding: 16px 0 4px;
            width: 100%;
        }

        .nav-menu.open .nav-menu-cta {
            display: block;
        }

        .nav-menu-cta .btn-header {
            display: block;
            width: 100%;
            text-align: center;
            padding: 12px 20px;
            border-radius: 8px;
        }

        /* HERO */
        .trilha-hero {
            background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
            padding: 96px 24px;
        }

        .trilha-hero-inner {
            max-width: 760px;
        }

        .trilha-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            margin-bottom: 24px;
        }

        .trilha-hero h1 {
            font-size: 44px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .trilha-hero p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 640px;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }

        .hero-stat {
            color: #fff;
        }

        .hero-stat strong {
            display: block;
            font-size: 28px;
            font-weight: 700;
        }

        .hero-stat span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--accent);
            color: #fff;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            transition: background-color 0.3s, transform 0.2s;
        }

        .btn-cta:hover {
            background-color: var(--accent-dark);
            transform: translateY(-2px);
        }

        /* CURSOS */
        .cursos-section {
            padding: 96px 0;
            background: #fff;
        }

        .section-tag {
            display: inline-block;
            background-color: var(--accent);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .cursos-section h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .cursos-section .subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 600px;
            margin-bottom: 56px;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .accordion-item {
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .accordion-item.open {
            border-color: var(--accent);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .accordion-header {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            background: #fff;
            cursor: pointer;
            user-select: none;
            transition: background-color 0.2s;
        }

        .accordion-header:hover {
            background-color: var(--bg-light);
        }

        .accordion-item.open .accordion-header {
            background-color: var(--accent-light);
        }

        .accordion-num {
            width: 36px;
            height: 36px;
            background-color: var(--accent-light);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .accordion-item.open .accordion-num {
            background-color: var(--accent);
            color: #fff;
        }

        .accordion-title {
            flex: 1;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .accordion-icon {
            font-size: 18px;
            color: var(--text-secondary);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
        }

        .accordion-item.open .accordion-icon {
            transform: rotate(180deg);
            color: var(--accent);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            padding: 0 24px 0 76px;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
        }

        .accordion-item.open .accordion-body {
            max-height: 250px;
            opacity: 1;
            padding: 0 24px 24px 76px;
        }

        .accordion-body p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* PUBLICO */
        .publico-section {
            background: var(--bg-light);
            padding: 80px 0;
        }

        .publico-section h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 40px;
        }

        .publico-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .publico-item {
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            border: 1px solid var(--border);
        }

        .publico-icon {
            width: 44px;
            height: 44px;
            background-color: var(--accent-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .publico-item h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .publico-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
            padding: 80px 24px;
            text-align: center;
        }

        .cta-section h2 {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 36px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        /* FOOTER */
        .site-footer {
            background-color: var(--blue-dark);
            padding: 48px 24px;
            text-align: center;
        }

        .footer-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 24px;
        }

        .footer-logos .footer-logo {
            height: 36px;
            width: auto;
        }

        .footer-logo-divider {
            width: 1px;
            height: 28px;
            background: rgba(255, 255, 255, 0.2);
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 24px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .trilha-hero-inner>* {
            opacity: 0;
            animation: fadeInUp 0.65s ease forwards;
        }

        .trilha-hero-inner .trilha-badge {
            animation-delay: 0.1s;
        }

        .trilha-hero-inner h1 {
            animation-delay: 0.25s;
        }

        .trilha-hero-inner p {
            animation-delay: 0.4s;
        }

        .trilha-hero-inner .hero-stats {
            animation-delay: 0.55s;
        }

        .trilha-hero-inner .btn-cta {
            animation-delay: 0.68s;
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
            animation-play-state: paused;
        }

        .fade-in.visible {
            animation-play-state: running;
        }

        .fade-in-stagger>* {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
            animation-play-state: paused;
        }

        .fade-in-stagger.visible>* {
            animation-play-state: running;
        }

        .fade-in-stagger.visible>*:nth-child(1) {
            animation-delay: 0.05s;
        }

        .fade-in-stagger.visible>*:nth-child(2) {
            animation-delay: 0.12s;
        }

        .fade-in-stagger.visible>*:nth-child(3) {
            animation-delay: 0.19s;
        }

        .fade-in-stagger.visible>*:nth-child(4) {
            animation-delay: 0.26s;
        }

        .fade-in-stagger.visible>*:nth-child(5) {
            animation-delay: 0.33s;
        }

        .fade-in-stagger.visible>*:nth-child(6) {
            animation-delay: 0.40s;
        }

        .fade-in-stagger.visible>*:nth-child(7) {
            animation-delay: 0.47s;
        }

        .fade-in-stagger.visible>*:nth-child(8) {
            animation-delay: 0.54s;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .site-header {
                padding: 12px 16px;
            }

            .header-container {
                gap: 8px;
            }

            .logo-group {
                gap: 8px;
            }

            .logo-group .logo {
                height: 30px;
            }

            .logo-divider {
                height: 22px;
            }

            .nav-menu {
                display: none;
            }

            .hamburger-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
                min-width: 36px;
                min-height: 36px;
            }

            .header-actions {
                gap: 8px;
            }

            .header-actions .btn-header {
                display: none !important;
            }

            .trilha-hero {
                padding: 64px 24px;
            }

            .trilha-hero h1 {
                font-size: 30px;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-stat strong {
                font-size: 22px;
            }

            .cursos-section {
                padding: 64px 0;
            }

            .cursos-section h2 {
                font-size: 26px;
            }

            .accordion-body {
                padding-left: 24px;
            }

            .publico-grid {
                grid-template-columns: 1fr;
            }

            .publico-section {
                padding: 64px 0;
            }
        }
