:root {
            --azul-900: #06314a;
            --azul-800: #084866;
            --azul-700: #006699;
            --azul-500: #0e8fbd;
            --azul-100: #eaf6fb;
            --laranja-600: #f3993a;
            --laranja-500: #ff9f1c;
            --cinza-900: #17212b;
            --cinza-700: #44515c;
            --cinza-500: #6b7a86;
            --cinza-200: #d9e5ec;
            --cinza-100: #f5f8fa;
            --branco: #ffffff;
            --sombra: 0 18px 50px rgba(6, 49, 74, 0.12);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: 'DM Sans', Arial, Helvetica, sans-serif;
            color: var(--cinza-900);
            background: #ffffff;
            line-height: 1.5;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }

        .top-strip {
            background: var(--azul-900);
            color: #d7ecf5;
            font-size: 13px;
        }

        .top-strip .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 8px 0;
        }

        .top-contact {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .top-contact a,
        .top-contact span {
            color: #ffffff;
            font-weight: 600;
        }

        .top-contact i {
            color: var(--laranja-500);
            margin-right: 6px;
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
        }

        .social-links a {
            color: #ffffff;
            font-weight: 600;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(217, 229, 236, 0.9);
        }

        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            min-height: 84px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            flex: 0 0 auto;
        }

        .brand img {
            width: 200px;
            max-height: 64px;
            object-fit: contain;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 15px;
            font-weight: 500;
            color: var(--azul-900);
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 10px;
            border-radius: 999px;
            font-weight: 500;
            transition: background 0.15s ease, color 0.15s ease;
        }


        .nav-item::after {
            content: "";
            display: none;
            position: absolute;
            left: 0;
            right: 0;
            top: 100%;
            height: 14px;
            z-index: 190;
        }

        .nav-item:hover::after,
        .nav-item:focus-within::after {
            display: block;
        }

        .nav-link:hover,
        .nav-item:hover .nav-link,
        .nav-item:focus-within .nav-link {
            background: var(--azul-100);
            color: var(--azul-700);
        }

        .mega-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: min(920px, calc(100vw - 40px));
            padding: 22px;
            background: #ffffff;
            border: 1px solid var(--cinza-200);
            border-radius: 24px;
            box-shadow: var(--sombra);
            z-index: 200;
        }

        .nav-item:hover .mega-menu,
        .nav-item:focus-within .mega-menu {
            display: block;
        }

        .mega-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .training-menu {
            width: min(980px, calc(100vw - 40px));
        }

        .training-menu .mega-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px 20px;
        }

        .cert-menu {
            width: min(940px, calc(100vw - 40px));
        }

        .cert-grid {
            grid-template-columns: 1.2fr 1fr 0.95fr 0.75fr;
            align-items: start;
        }

        .cert-grid .mega-group {
            align-self: start;
            margin-top: 0;
            padding-top: 0;
        }

        .cert-grid .mega-group h3 {
            margin-top: 0;
        }

        .mega-group h3 {
            margin: 0 0 8px;
            padding-bottom: 7px;
            color: #ff7a00;
            font-size: 13px;
            line-height: 1.25;
            letter-spacing: 0.055em;
            text-transform: uppercase;
            border-bottom: 2px solid rgba(255, 122, 0, 0.55);
        }

        .mega-group a {
            display: block;
            padding: 4px 0;
            color: var(--cinza-700);
            font-size: 13px;
            font-weight: 600;
            line-height: 1.28;
        }

        .mega-all-courses {
            grid-column: 1 / -1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 4px;
            padding: 11px 16px;
            border-radius: 14px;
            color: #ffffff !important;
            background: linear-gradient(135deg, #ff7a00, #f3993a);
            font-size: 14px !important;
            font-weight: 800 !important;
            text-align: center;
            box-shadow: 0 10px 22px rgba(255, 122, 0, 0.22);
        }

        .mega-all-courses:hover {
            color: #ffffff !important;
            background: linear-gradient(135deg, #e86600, #f08a22);
        }

        .mega-group a:hover {
            color: var(--azul-700);
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 260px;
            padding: 12px;
            background: #ffffff;
            border: 1px solid var(--cinza-200);
            border-radius: 18px;
            box-shadow: var(--sombra);
            z-index: 210;
        }

        .nav-item:hover .dropdown-menu,
        .nav-item:focus-within .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            display: block;
            padding: 9px 10px;
            border-radius: 10px;
            color: var(--cinza-700);
            font-size: 13px;
            font-weight: 700;
            line-height: 1.25;
        }

        .dropdown-menu a:hover {
            background: var(--azul-100);
            color: var(--azul-700);
        }

        .dropdown-separator {
            height: 1px;
            margin: 8px 4px;
            background: var(--cinza-200);
        }


        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 0 0 auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 42px;
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 800;
            font-size: 14px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
        }

        .btn:hover {
            transform: translateY(-1px);
        }

        .btn-primary {
            color: #ffffff;
            background: linear-gradient(135deg, var(--laranja-500), #f07b19);
            box-shadow: 0 12px 24px rgba(243, 153, 58, 0.28);
        }

        .btn-secondary {
            color: var(--azul-900);
            background: #ffffff;
            border-color: var(--cinza-200);
        }

        .btn-blue {
            color: #ffffff;
            background: linear-gradient(135deg, var(--azul-700), #084866);
            box-shadow: 0 12px 24px rgba(0, 102, 153, 0.22);
        }

        .signin {
            min-height: 38px;
            padding: 8px 13px;
            border-radius: 999px;
            border: 1px solid var(--cinza-200);
            background: #ffffff;
            color: var(--azul-900);
            font-weight: 700;
            cursor: pointer;
        }

        #formlogin {
            position: absolute;
            top: 72px;
            right: 20px;
            width: 280px;
            padding: 18px;
            background: #ffffff;
            border: 1px solid var(--cinza-200);
            border-radius: 16px;
            box-shadow: var(--sombra);
        }

        #formlogin table {
            width: 100%;
        }

        #formlogin td {
            display: block;
            width: 100%;
            color: var(--azul-900);
            font-size: 13px;
        }

        #formlogin input.inputs {
            width: 100%;
            min-height: 38px;
            border: 1px solid var(--cinza-200);
            border-radius: 8px;
            padding: 8px 10px;
        }

        #formlogin .botao {
            width: 100%;
            min-height: 38px;
            margin-top: 8px;
            background: var(--azul-700);
            color: #ffffff;
            border: 0;
            border-radius: 8px;
            font-weight: 700;
        }

        .hero {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 12% 10%, rgba(255, 159, 28, 0.18), transparent 28%),
                radial-gradient(circle at 90% 12%, rgba(0, 102, 153, 0.16), transparent 30%),
                linear-gradient(135deg, #ffffff 0%, #f3f8fb 55%, #e7f3f8 100%);
            padding: 76px 0 54px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
            gap: 44px;
            align-items: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            background: rgba(0, 102, 153, 0.08);
            color: var(--azul-800);
            border: 1px solid rgba(0, 102, 153, 0.12);
            border-radius: 999px;
            font-size: 13px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .hero h1 {
            margin: 0 0 18px;
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: clamp(42px, 5vw, 68px);
            line-height: 1.02;
            color: var(--azul-900);
            letter-spacing: -0.04em;
        }

        .hero h1 span {
            color: var(--azul-700);
        }

        .hero-text {
            max-width: 670px;
            margin: 0 0 26px;
            color: var(--cinza-700);
            font-size: 19px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 26px;
        }

        .hero-proof {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
            max-width: 690px;
        }

        .proof-card {
            padding: 16px;
            border: 1px solid rgba(217, 229, 236, 0.9);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.78);
        }

        .proof-card strong {
            display: block;
            color: var(--azul-900);
            font-size: 22px;
            line-height: 1.1;
        }

        .proof-card span {
            display: block;
            margin-top: 4px;
            color: var(--cinza-500);
            font-size: 13px;
        }

        .hero-panel {
            position: relative;
            background: #ffffff;
            border: 1px solid var(--cinza-200);
            border-radius: 28px;
            box-shadow: var(--sombra);
            overflow: hidden;
        }

        .hero-panel-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 22px 22px 0;
        }

        .hero-panel-head h2 {
            margin: 0;
            color: var(--azul-900);
            font-size: 20px;
        }

        .badge-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 800;
            color: #ffffff;
            background: var(--laranja-600);
            padding: 6px 10px;
            border-radius: 999px;
            white-space: nowrap;
        }

        .course-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 20px 22px 22px;
        }

        .course-card {
            display: grid;
            grid-template-columns: 62px minmax(0, 1fr);
            gap: 14px;
            align-items: center;
            padding: 14px;
            border-radius: 18px;
            background: var(--cinza-100);
            border: 1px solid rgba(217, 229, 236, 0.8);
        }

        .course-date {
            display: grid;
            place-items: center;
            min-height: 62px;
            color: #ffffff;
            background: linear-gradient(135deg, var(--azul-700), var(--azul-900));
            border-radius: 16px;
            font-weight: 800;
            text-align: center;
        }

        .course-date strong {
            font-size: 23px;
            line-height: 1;
        }

        .course-date span {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .course-info h3 {
            margin: 0 0 5px;
            color: var(--azul-900);
            font-size: 15px;
            line-height: 1.28;
        }

        .course-info p {
            margin: 0;
            color: var(--cinza-500);
            font-size: 13px;
        }

        .section {
            padding: 72px 0;
        }

        .section.alt {
            background: var(--cinza-100);
        }

        .section-head {
            max-width: 740px;
            margin-bottom: 30px;
        }

        .section-head.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .section-kicker {
            color: #f26a00;
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .section h2 {
            margin: 8px 0 12px;
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: clamp(30px, 3.2vw, 44px);
            line-height: 1.08;
            color: var(--azul-900);
            letter-spacing: -0.03em;
        }

        .section-head p {
            margin: 0;
            color: var(--cinza-700);
            font-size: 17px;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .feature-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: 24px;
            border: 1px solid var(--cinza-200);
            border-radius: 24px;
            background: #ffffff;
            box-shadow: 0 10px 28px rgba(6, 49, 74, 0.06);
            transition: transform 0.16s ease, box-shadow 0.16s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--sombra);
        }

        .feature-icon {
            display: grid;
            place-items: center;
            width: 48px;
            height: 48px;
            margin-bottom: 16px;
            border-radius: 14px;
            color: #ffffff;
            background: linear-gradient(135deg, var(--azul-700), var(--azul-900));
            font-size: 20px;
        }

        .feature-card.orange .feature-icon {
            background: linear-gradient(135deg, var(--laranja-500), #f07b19);
        }

        .feature-card h3 {
            margin: 0 0 8px;
            color: var(--azul-900);
            font-size: 20px;
        }

        .feature-card p {
            margin: 0 0 18px;
            color: var(--cinza-700);
            font-size: 15px;
        }

        .feature-card .link {
            margin-top: auto;
            color: var(--azul-700);
            font-weight: 900;
        }

        .cert-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 28px;
            align-items: center;
        }

        .cert-box {
            padding: 28px;
            border-radius: 28px;
            background: linear-gradient(135deg, var(--azul-900), var(--azul-700));
            color: #ffffff;
            box-shadow: var(--sombra);
        }

        .cert-box h3 {
            margin: 0 0 12px;
            font-size: 28px;
            line-height: 1.1;
        }

        .cert-box p {
            margin: 0 0 20px;
            color: #d7ecf5;
        }

        .cert-badges {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .cert-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            min-height: 104px;
            padding: 16px;
            border-radius: 22px;
            background: #ffffff;
            color: var(--azul-900);
            border: 1px solid var(--cinza-200);
            text-align: left;
            font-weight: 800;
            box-shadow: 0 10px 26px rgba(6, 49, 74, 0.07);
            transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
        }

        .cert-badge:hover {
            transform: translateY(-3px);
            border-color: rgba(241, 126, 18, 0.35);
            box-shadow: 0 16px 34px rgba(6, 49, 74, 0.12);
        }

        .cert-badge img {
            width: 62px;
            height: 62px;
            flex: 0 0 62px;
            display: block;
        }

        .cert-badge span {
            display: block;
            color: var(--azul-900);
            font-size: 16px;
            line-height: 1.15;
        }

        .cert-badge small {
            display: block;
            margin-top: 4px;
            color: var(--cinza-600);
            font-size: 12px;
            font-weight: 600;
        }


        .featured-course {
            background: linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
        }

        .featured-course-card {
            display: block;
            padding: 32px;
            border: 1px solid var(--cinza-200);
            border-radius: 30px;
            background: #ffffff;
            box-shadow: var(--sombra);
        }

        .featured-course-copy {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .featured-course-title-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 14px 0 12px;
        }

        .pmp-inline-icon {
            flex: 0 0 auto;
            width: 126px;
            height: auto;
            display: block;
            filter: drop-shadow(0 8px 14px rgba(0, 43, 68, 0.12));
        }

        .course-tagline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            padding: 7px 12px;
            border-radius: 999px;
            color: #ffffff;
            background: linear-gradient(135deg, var(--azul-700), var(--azul-900));
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .featured-course-title {
            margin: 0;
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: clamp(30px, 3.4vw, 44px);
            line-height: 1.05;
            color: var(--azul-900);
            letter-spacing: -0.03em;
        }

        .featured-course-copy p {
            margin: 0;
            color: var(--cinza-700);
            font-size: 16px;
        }

        .course-highlights {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin: 22px 0 0;
        }

        .course-highlight {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            padding: 10px 12px;
            border-radius: 14px;
            background: var(--cinza-100);
            color: var(--azul-900);
            font-size: 13px;
            font-weight: 800;
        }

        .course-highlight i {
            color: #f26a00;
            margin-top: 2px;
        }

        .course-integrated-schedule {
            display: grid;
            gap: 10px;
            margin-top: 22px;
            padding: 16px;
            border-radius: 18px;
            background: linear-gradient(135deg, #f4fbff, #fff8f0);
            border: 1px solid #dceaf1;
        }

        .course-integrated-schedule-title {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--azul-900);
            font-size: 14px;
            font-weight: 900;
        }

        .course-integrated-schedule-title i {
            color: #f26a00;
        }

        .course-integrated-schedule-list {
            display: grid;
            gap: 8px;
        }

        .course-integrated-schedule-item {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
            color: var(--cinza-700);
            font-size: 14px;
            line-height: 1.45;
        }

        .course-integrated-schedule-item strong {
            color: var(--laranja-600);
        }

        .course-integrated-schedule-item small {
            color: #c94135;
            font-weight: 800;
        }

        .course-integrated-schedule-empty {
            color: var(--cinza-700);
            font-size: 14px;
            font-weight: 700;
        }

        .course-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .course-schedule-panel {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: 24px;
            border-radius: 24px;
            background: linear-gradient(135deg, var(--azul-900), var(--azul-700));
            color: #ffffff;
        }

        .course-schedule-panel h3 {
            margin: 0 0 6px;
            font-size: 23px;
        }

        .course-schedule-panel > p {
            margin: 0 0 18px;
            color: #d7ecf5;
            font-size: 14px;
        }

        .pmp-schedule-list {
            display: grid;
            gap: 12px;
            margin-bottom: 18px;
        }

        .pmp-schedule-item {
            padding: 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.11);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .pmp-schedule-item strong {
            display: block;
            margin-bottom: 4px;
            color: var(--laranja-500);
            font-size: 14px;
        }

        .pmp-schedule-item span {
            display: block;
            color: #ffffff;
            font-size: 14px;
            line-height: 1.42;
        }

        .pmp-schedule-item small {
            display: block;
            margin-top: 6px;
            color: #ffd1d1;
            font-size: 12px;
            font-weight: 800;
        }

        .pmp-schedule-empty {
            padding: 18px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.11);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #ffffff;
            font-weight: 800;
        }

        .course-schedule-panel .btn {
            margin-top: auto;
            width: 100%;
        }

        .split {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 360px;
            gap: 26px;
            align-items: start;
        }

        .download-card {
            padding: 28px;
            border-radius: 28px;
            background: #ffffff;
            border: 1px solid var(--cinza-200);
            box-shadow: var(--sombra);
        }

        .download-card h3 {
            margin: 0 0 10px;
            color: var(--azul-900);
            font-size: 24px;
        }

        .download-card p {
            margin: 0 0 20px;
            color: var(--cinza-700);
        }

        .download-list {
            display: grid;
            gap: 10px;
        }

        .download-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 14px 16px;
            background: var(--cinza-100);
            border: 1px solid var(--cinza-200);
            border-radius: 16px;
            color: var(--azul-900);
            font-weight: 800;
        }

        .download-item-main {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .download-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            flex: 0 0 28px;
            border-radius: 9px;
            color: var(--laranja-700);
            background: rgba(255, 122, 0, 0.12);
        }

        .download-icon.excel {
            color: #1d7a45;
            background: rgba(29, 122, 69, 0.12);
        }

        .materials-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 22px;
        }

        .materials-layout .section-head {
            max-width: 820px;
            margin: 0 auto 8px;
            text-align: center;
        }

        .materials-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .materials-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: 24px;
            border-radius: 24px;
            background: #ffffff;
            border: 1px solid var(--cinza-200);
            box-shadow: 0 10px 28px rgba(6, 49, 74, 0.06);
        }

        .materials-card h3 {
            margin: 0 0 8px;
            color: var(--azul-900);
            font-size: 20px;
        }

        .materials-card p {
            margin: 0 0 18px;
            color: var(--cinza-700);
            font-size: 15px;
        }

        .materials-card .link {
            margin-top: auto;
            color: var(--azul-700);
            font-weight: 900;
        }

        .featured-downloads {
            padding: 24px;
            border-radius: 26px;
            background: #ffffff;
            border: 1px solid var(--cinza-200);
            box-shadow: var(--sombra);
        }

        .featured-downloads h3 {
            margin: 0 0 10px;
            color: var(--azul-900);
            font-size: 22px;
        }

        .featured-downloads p {
            margin: 0 0 16px;
            color: var(--cinza-700);
        }

        .featured-downloads .download-list {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .cta {
            position: relative;
            overflow: hidden;
            padding: 64px 0;
            background: linear-gradient(135deg, var(--azul-900), var(--azul-700));
            color: #ffffff;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
        }

        .cta-card {
            min-height: 100%;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.08);
        }

        .cta-card h2 {
            margin: 0 0 10px;
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: clamp(28px, 3.3vw, 42px);
            line-height: 1.08;
        }

        .cta-card p {
            margin: 0 0 20px;
            color: #d7ecf5;
            font-size: 17px;
        }

        .site-footer {
            background: #061d2d;
            color: #b7c8d4;
            padding: 42px 0 28px;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.85fr 0.95fr 0.95fr 1.15fr;
            gap: 28px;
            margin-bottom: 24px;
        }

        .site-footer h3 {
            margin: 0 0 12px;
            color: #ffffff;
            font-size: 15px;
        }

        .site-footer p,
        .site-footer ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .site-footer li {
            margin-bottom: 8px;
        }

        .site-footer a {
            color: #d7ecf5;
        }

        .footer-logo {
            width: 176px;
            margin-bottom: 14px;
            background: #ffffff;
            border-radius: 12px;
            padding: 10px;
        }

        .footer-contact {
            display: grid;
            gap: 8px;
            margin-top: 16px;
        }

        .footer-contact a,
        .footer-contact span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #d7ecf5;
        }

        .footer-contact i,
        .footer-social a {
            color: var(--laranja-500);
        }

        .footer-social {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            margin-top: 0;
        }

        .footer-social-block {
            margin-top: 18px;
            text-align: left;
        }

        .footer-social-label {
            display: block;
            margin: 0 0 8px;
            color: #d7ecf5;
            font-weight: 700;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            font-size: 16px;
        }

        .footer-subtitle {
            margin-top: 18px;
        }

        .footer-social a:hover {
            background: rgba(255, 159, 28, 0.14);
        }

        .newsletter-form {
            display: flex;
            margin-top: 12px;
        }

        .newsletter-form .btn {
            min-height: 42px;
            white-space: nowrap;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 18px;
            color: #8ca4b3;
            font-size: 12px;
        }

        .mobile-menu-toggle {
            display: none;
            border: 1px solid var(--cinza-200);
            background: #ffffff;
            border-radius: 12px;
            width: 44px;
            height: 44px;
            color: var(--azul-900);
            font-size: 20px;
        }

        @media (max-width: 1080px) {
            .training-menu .mega-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 1020px) {
            .main-nav {
                display: none;
                position: absolute;
                left: 20px;
                right: 20px;
                top: 84px;
                flex-direction: column;
                align-items: stretch;
                padding: 14px;
                background: #ffffff;
                border: 1px solid var(--cinza-200);
                border-radius: 18px;
                box-shadow: var(--sombra);
            }

            .main-nav.is-open {
                display: flex;
            }

            .nav-item {
                position: static;
            }

            .nav-link {
                width: 100%;
                justify-content: space-between;
            }

            .mega-menu,
            .dropdown-menu {
                position: static;
                width: 100%;
                margin-top: 8px;
                padding: 16px;
                box-shadow: none;
            }

            .mega-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .mobile-menu-toggle {
                display: inline-grid;
                place-items: center;
            }

            .hero-grid,
            .featured-course-card,
            .cert-grid,
            .split,
            .cta-grid,
            .materials-grid,
            .featured-downloads .download-list {
                grid-template-columns: 1fr;
            }

            .hero-panel {
                max-width: 680px;
            }

            .cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }


            .featured-course-title-row {
                align-items: flex-start;
                gap: 12px;
            }

            .pmp-inline-icon {
                width: 96px;
                margin-top: 2px;
            }

            .footer-social-block,
            .footer-social {
                justify-content: flex-start;
            }
        }

        @media (max-width: 720px) {
            .container {
                width: min(100% - 28px, 1180px);
            }

            .top-strip .container,
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .top-strip .container {
                gap: 8px;
                padding: 7px 0;
            }

            .top-contact {
                gap: 8px 14px;
                font-size: 12px;
                line-height: 1.35;
            }

            .social-links {
                gap: 10px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .nav-wrap {
                min-height: 72px;
                gap: 12px;
            }

            .brand img {
                width: 150px;
                max-height: 50px;
            }

            .mobile-menu-toggle {
                width: 42px;
                height: 42px;
                flex: 0 0 auto;
            }

            .main-nav {
                left: 14px;
                right: 14px;
                top: 72px;
                max-height: calc(100vh - 90px);
                overflow-y: auto;
                padding: 12px;
            }

            .main-nav.is-open .mega-menu,
            .main-nav.is-open .dropdown-menu {
                display: block;
            }

            .mega-menu,
            .dropdown-menu {
                padding: 12px;
                border-radius: 14px;
            }

            .mega-grid,
            .training-menu .mega-grid,
            .cert-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .mega-group h3 {
                margin-top: 2px;
                font-size: 12px;
            }

            .mega-group a,
            .dropdown-menu a {
                font-size: 13px;
                padding: 7px 0;
            }

            .nav-actions .btn-secondary {
                display: none;
            }

            .hero {
                padding: 38px 0 36px;
            }

            .hero h1 {
                font-size: clamp(31px, 9vw, 38px);
                line-height: 1.08;
                letter-spacing: -0.03em;
                margin-bottom: 14px;
            }

            .hero-text {
                font-size: 16px;
                line-height: 1.5;
                margin-bottom: 20px;
            }

            .hero-actions {
                gap: 10px;
                margin-bottom: 20px;
            }

            .hero-actions .btn,
            .course-actions .btn,
            .cta-actions .btn {
                width: 100%;
            }

            .hero-proof,
            .course-highlights,
            .cards,
            .cert-badges,
            .materials-grid,
            .featured-downloads .download-list,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .proof-card {
                padding: 13px 14px;
            }

            .proof-card strong {
                font-size: 19px;
            }

            .hero-panel {
                border-radius: 22px;
            }

            .hero-panel-head {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
                padding: 18px 18px 0;
            }

            .course-list {
                padding: 16px 18px 18px;
            }

            .course-card {
                grid-template-columns: 56px minmax(0, 1fr);
                padding: 12px;
                gap: 12px;
            }

            .course-date {
                min-height: 56px;
            }

            .course-date strong {
                font-size: 20px;
            }

            .section {
                padding: 48px 0;
            }

            .section h2,
            .featured-course-title {
                font-size: clamp(26px, 8vw, 34px);
                line-height: 1.12;
            }

            .section-head p,
            .featured-course-copy p {
                font-size: 15px;
            }

            .featured-course-card,
            .cert-box,
            .feature-card,
            .materials-card {
                border-radius: 22px;
                padding: 22px;
            }

            .featured-course-title-row {
                align-items: center;
                gap: 12px;
                margin: 12px 0 12px;
            }

            .pmp-inline-icon {
                width: 96px;
                margin-top: 0;
            }

            .course-integrated-schedule-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

            .footer-social-block,
            .footer-social {
                justify-content: flex-start;
            }
        }

        @media (max-width: 460px) {
            .container {
                width: min(100% - 24px, 1180px);
            }

            .top-contact {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .brand img {
                width: 138px;
            }

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

            .hero-text {
                font-size: 15px;
            }

            .btn {
                min-height: 40px;
                padding: 9px 14px;
                font-size: 13px;
            }

            .featured-course-title-row {
                gap: 10px;
            }

            .pmp-inline-icon {
                width: 84px;
            }

            .featured-course-title {
                font-size: 25px;
            }

            .course-tagline {
                font-size: 11px;
            }

            .cert-badge {
                min-height: 90px;
                padding: 14px;
            }

            .cert-badge img {
                width: 54px;
                height: 54px;
                flex-basis: 54px;
            }
        }


/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    color: #6b7c88;
    font-size: 13px;
    font-weight: 600;
}

.breadcrumb a {
    color: #006699;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #e35f00;
    text-decoration: underline;
}

.breadcrumb span {
    color: #8a9aa6;
}

.breadcrumb span:last-child {
    color: #526878;
}

/* Agenda completa */
.page-hero {
    padding: 58px 0 36px;
    background: linear-gradient(135deg, #f4fbff 0%, #ffffff 56%, #fff3e8 100%);
    border-bottom: 1px solid rgba(0, 86, 120, 0.10);
}

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #e35f00;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero h1 {
    margin: 0;
    max-width: 760px;
    color: #0f3345;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
}

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: #526878;
    font-size: 17px;
    line-height: 1.7;
}

.agenda-section {
    background: #ffffff;
}

.agenda-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.agenda-toolbar h2 {
    margin: 0 0 6px;
    color: #0f3345;
    font-size: 28px;
}

.agenda-toolbar p {
    margin: 0;
    color: #667985;
}

.agenda-months {
    display: grid;
    gap: 34px;
}

.agenda-month h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
    color: #005678;
    font-size: 20px;
}

.agenda-month h3:after {
    content: "";
    height: 1px;
    flex: 1;
    background: #d9e8ef;
}

.agenda-list {
    display: grid;
    gap: 14px;
}

.agenda-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #dce9ef;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 86, 120, 0.07);
}

.agenda-card-main {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

.agenda-date-badge {
    width: 76px;
    min-width: 76px;
    padding: 10px 8px;
    border-radius: 14px;
    background: #f0f8fb;
    border: 1px solid #cfe3ec;
    text-align: center;
    color: #005678;
}

.agenda-date-badge span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.agenda-date-badge strong {
    display: block;
    margin-top: 3px;
    font-size: 20px;
    line-height: 1;
}

.agenda-card-content h4 {
    margin: 0 0 9px;
    color: #0f3345;
    font-size: 18px;
    line-height: 1.3;
}

.agenda-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: #526878;
    font-size: 14px;
    line-height: 1.5;
}

.agenda-meta span {
    display: inline-flex;
    align-items: flex-start;
    gap: 7px;
}

.agenda-meta i {
    margin-top: 3px;
    color: #e35f00;
}

.agenda-obs {
    margin: 10px 0 0;
    color: #667985;
    font-size: 13px;
    line-height: 1.55;
}

.agenda-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    min-width: 164px;
}

.agenda-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.agenda-status.open {
    color: #0f6b42;
    background: #e4f7ed;
}

.agenda-status.soldout {
    color: #9a3412;
    background: #fff1e8;
}

.agenda-empty {
    padding: 34px;
    background: #f7fbfd;
    border: 1px solid #dce9ef;
    border-radius: 20px;
    text-align: center;
}

.agenda-empty h2 {
    margin: 0 0 8px;
    color: #0f3345;
}

.agenda-empty p {
    max-width: 680px;
    margin: 0 auto 18px;
    color: #526878;
    line-height: 1.65;
}

@media (max-width: 760px) {
    .page-hero {
        padding: 36px 0 26px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .agenda-toolbar {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 22px;
    }

    .agenda-toolbar .btn {
        width: 100%;
    }

    .agenda-card {
        flex-direction: column;
    }

    .agenda-card-main {
        gap: 12px;
    }

    .agenda-date-badge {
        width: 64px;
        min-width: 64px;
    }

    .agenda-card-content h4 {
        font-size: 16px;
    }

    .agenda-card-actions {
        align-items: stretch;
        min-width: 0;
    }

    .agenda-card-actions .btn {
        width: 100%;
    }
}

/* Agenda completa em tabela */
.agenda-table-card {
    overflow: hidden;
    border: 1px solid #d7e7ee;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 86, 120, 0.08);
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.agenda-table thead th {
    padding: 14px 16px;
    background: #005678;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.agenda-table thead th.agenda-col-status,
.agenda-table thead th.agenda-col-acao {
    text-align: center;
}

.agenda-month-row td {
    padding: 11px 16px;
    background: linear-gradient(90deg, #eef7fb, #ffffff);
    color: #005678;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    border-top: 1px solid #d7e7ee;
    border-bottom: 1px solid #d7e7ee;
}

.agenda-course-row td {
    padding: 16px;
    vertical-align: middle;
    border-bottom: 1px solid #e6f0f5;
}

.agenda-course-row:nth-child(even) td {
    background: #fbfdfe;
}

.agenda-course-row:hover td {
    background: #f2f8fb;
}

.agenda-col-inicio,
.agenda-start-cell {
    width: 118px;
}

.agenda-col-datas,
.agenda-dates-cell {
    width: 310px;
}

.agenda-col-status,
.agenda-status-cell {
    width: 150px;
}

.agenda-col-acao,
.agenda-action-cell {
    width: 150px;
}

.agenda-start-cell {
    text-align: center;
}

.agenda-start-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 64px;
    padding: 7px 10px;
    border-radius: 16px;
    background: #e35f00;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(227, 95, 0, 0.20);
}

.agenda-start-badge strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.agenda-start-badge span {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.agenda-start-full {
    margin-top: 7px;
    color: #526878;
    font-size: 12px;
    font-weight: 700;
}

.agenda-title-cell a {
    color: #0f3345;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
}

.agenda-title-cell a:hover {
    color: #005678;
    text-decoration: underline;
}

.agenda-course-code {
    display: inline-flex;
    margin-top: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eaf4f8;
    color: #005678;
    font-size: 12px;
    font-weight: 700;
}

.agenda-course-local {
    margin-top: 8px;
    color: #526878;
    font-size: 13px;
}

.agenda-course-local i,
.agenda-dates i,
.agenda-time i {
    color: #e35f00;
    margin-right: 6px;
}

.agenda-dates {
    color: #0f3345;
    font-weight: 700;
    line-height: 1.45;
}

.agenda-time {
    margin-top: 7px;
    color: #526878;
    line-height: 1.45;
}

.agenda-status-cell,
.agenda-action-cell {
    text-align: center;
}

.agenda-btn {
    padding: 10px 14px;
    white-space: nowrap;
}

@media (max-width: 860px) {
    .agenda-table-card {
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .agenda-table,
    .agenda-table thead,
    .agenda-table tbody,
    .agenda-table th,
    .agenda-table td,
    .agenda-table tr {
        display: block;
        width: 100%;
    }

    .agenda-table thead {
        display: none;
    }

    .agenda-month-row td {
        margin: 24px 0 10px;
        border: 1px solid #d7e7ee;
        border-radius: 14px;
        background: #eef7fb;
    }

    .agenda-course-row {
        margin-bottom: 14px;
        padding: 16px;
        border: 1px solid #d7e7ee;
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 12px 28px rgba(0, 86, 120, 0.07);
    }

    .agenda-course-row td {
        display: grid;
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        padding: 10px 0;
        border-bottom: 1px solid #edf3f6;
        background: transparent !important;
        text-align: left;
    }

    .agenda-course-row td:last-child {
        border-bottom: 0;
    }

    .agenda-course-row td:before {
        content: attr(data-label);
        color: #005678;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .agenda-start-cell {
        text-align: left;
    }

    .agenda-start-badge {
        min-width: 58px;
        min-height: 58px;
    }

    .agenda-start-badge strong {
        font-size: 24px;
    }

    .agenda-status-cell,
    .agenda-action-cell {
        text-align: left;
    }

    .agenda-btn {
        width: 100%;
        text-align: center;
    }
}

/* Ajustes da agenda completa - v5 */
.agenda-hero {
    padding-top: 84px;
}

.agenda-table thead th.agenda-col-acao {
    text-align: center;
}

.agenda-course-row.agenda-row-odd td {
    background: #ffffff;
}

.agenda-course-row.agenda-row-even td {
    background: #f3f8fb;
}

.agenda-course-row:hover td {
    background: #eaf4f8;
}

.agenda-col-inicio,
.agenda-start-cell {
    width: 96px;
}

.agenda-col-datas,
.agenda-dates-cell {
    width: 360px;
}

.agenda-col-acao,
.agenda-action-cell {
    width: 160px;
}

@media (max-width: 860px) {
    .agenda-hero {
        padding-top: 48px;
    }

    .agenda-course-row.agenda-row-odd,
    .agenda-course-row.agenda-row-even {
        background: #ffffff;
    }

    .agenda-course-row.agenda-row-even {
        background: #f3f8fb;
    }
}

/* Downloads page */
.downloads-section {
    background: #ffffff;
}

.download-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.download-resource-card {
    display: flex;
    gap: 16px;
    min-height: 100%;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--cinza-200);
    box-shadow: 0 10px 28px rgba(6, 49, 74, 0.06);
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.download-resource-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 153, 0.26);
    box-shadow: 0 18px 36px rgba(6, 49, 74, 0.12);
}

.download-resource-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    font-size: 21px;
}

.download-resource-icon.pdf {
    color: #c0392b;
    background: #fde8e8;
}

.download-resource-icon.excel {
    color: #1d7a45;
    background: #d6f0e2;
}

.download-resource-icon.ebook {
    color: #7a4f9a;
    background: #ede6f5;
}

.download-resource-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.download-resource-tag {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 102, 153, 0.10);
    color: var(--azul-700);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.download-resource-tag.excel {
    color: #1d7a45;
    background: rgba(29, 122, 69, 0.12);
}

.download-resource-tag.ebook {
    color: #7a4f9a;
    background: rgba(122, 79, 154, 0.12);
}

.download-resource-card h3 {
    margin: 0 0 9px;
    color: var(--azul-900);
    font-size: 20px;
    line-height: 1.22;
}

.download-resource-card p {
    margin: 0 0 18px;
    color: var(--cinza-700);
    font-size: 15px;
    line-height: 1.55;
}

.download-resource-link {
    margin-top: auto;
    color: var(--azul-700);
    font-weight: 900;
}

.download-resource-link i {
    margin-left: 6px;
    transition: transform 0.18s ease;
}

.download-resource-card:hover .download-resource-link i {
    transform: translateX(4px);
}

.download-more-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--cinza-200);
    box-shadow: var(--sombra);
}

.download-more-card h2 {
    margin: 0 0 10px;
    color: var(--azul-900);
    font-size: 30px;
}

.download-more-card p {
    max-width: 760px;
    margin: 0;
    color: var(--cinza-700);
}

.download-more-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 980px) {
    .download-resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .download-more-card {
        grid-template-columns: 1fr;
    }

    .download-more-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .download-resource-grid {
        grid-template-columns: 1fr;
    }

    .download-resource-card {
        padding: 18px;
    }

    .download-more-card {
        padding: 22px;
    }

    .download-more-actions .btn {
        width: 100%;
    }
}
