/* HERO split editorial */
                .nc-hero {
                        position: relative; width: 100%;
                        background:
                                radial-gradient(circle at 12% 24%, rgba(45, 91, 255, 0.06), transparent 40%),
                                linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
                        overflow: hidden;
                }
                .nc-hero__grid {
                        display: grid;
                        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
                        gap: clamp(28px, 4vw, 64px);
                        align-items: center;
                        padding: clamp(140px, 14vw, 180px) 0 clamp(72px, 8vw, 112px);
                }
                @media (max-width: 1024px) { .nc-hero__grid { grid-template-columns: 1fr; padding-top: 120px; } }
                .nc-hero__badge {
                        display: inline-flex; align-items: center; gap: 10px;
                        padding: 6px 14px 6px 10px;
                        background: linear-gradient(135deg, #142C8E 0%, #2D5BFF 100%);
                        color: #ffffff;
                        font-family: var(--font-technical);
                        font-size: 11px; font-weight: 800;
                        letter-spacing: 0.22em; text-transform: uppercase;
                        border-radius: 999px;
                        margin-bottom: 24px;
                        align-self: flex-start;
                        box-shadow: 0 8px 20px -10px rgba(45, 91, 255, 0.5);
                }
                .nc-hero__badge-dot {
                        width: 8px; height: 8px;
                        background: #4ade80;
                        border-radius: 999px;
                        box-shadow: 0 0 8px #4ade80;
                        animation: ncPulse 1.6s ease-in-out infinite;
                }
                @keyframes ncPulse {
                        0%, 100% { opacity: 1; transform: scale(1); }
                        50%      { opacity: 0.5; transform: scale(0.85); }
                }
                @media (prefers-reduced-motion: reduce) { .nc-hero__badge-dot { animation: none; } }
                .nc-hero__title {
                        font-family: var(--font-display);
                        font-size: clamp(40px, 5.4vw, 56px);
                        line-height: 0.98; letter-spacing: -0.025em;
                        font-weight: 900;
                        color: #0F172A;
                        margin: 0 0 24px;
                        text-wrap: balance;
                }
                .nc-hero__title .nc-hero__accent {
                        background: linear-gradient(135deg, #142C8E 0%, #1F49D8 55%, #2D5BFF 100%);
                        -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
                        color: #142C8E; font-weight: 900;
                }
                .nc-hero__subtitle {
                        max-width: 540px;
                        font-family: var(--font-body);
                        font-weight: 300;
                        font-size: clamp(16px, 1.2vw, 19px);
                        line-height: 1.65;
                        color: #475569;
                        margin: 0;
                        padding-left: 18px;
                        border-left: 2px solid #142C8E;
                }
                .nc-hero__visual {
                        position: relative;
                        aspect-ratio: 4 / 3;
                        background: #020617;
                        border-radius: 18px;
                        overflow: hidden;
                        border: 1px solid rgba(148, 163, 184, 0.32);
                        box-shadow: 0 24px 56px -34px rgba(15, 23, 42, 0.4);
                }
                .nc-hero__img {
                        position: absolute; inset: 0;
                        width: 100%; height: 100%;
                        object-fit: cover; object-position: center;
                        filter: saturate(0.8) contrast(1.08) brightness(0.85);
                }
                .nc-hero__visual-grid {
                        position: absolute; inset: 0; pointer-events: none;
                }
                .nc-hero__visual-grid::before,
                .nc-hero__visual-grid::after {
                        content: ''; position: absolute;
                }
                .nc-hero__visual-grid::before {
                        top: 25%; left: 0; right: 0; height: 1px;
                        background: linear-gradient(90deg, transparent, rgba(45, 91, 255, 0.32), transparent);
                }
                .nc-hero__visual-grid::after {
                        bottom: 25%; left: 0; right: 0; height: 1px;
                        background: linear-gradient(90deg, transparent, rgba(45, 91, 255, 0.32), transparent);
                }
                .nc-hero__marker {
                        position: absolute; z-index: 2;
                        padding: 4px 8px;
                        font-family: var(--font-technical);
                        font-size: 10px; font-weight: 700;
                        letter-spacing: 0.18em; text-transform: uppercase;
                        border-radius: 4px;
                }
                .nc-hero__marker--tl {
                        top: 14px; left: 14px;
                        background: rgba(255, 255, 255, 0.94);
                        color: #142C8E;
                        border: 1px solid rgba(148, 163, 184, 0.4);
                }
                .nc-hero__marker--br {
                        bottom: 14px; right: 14px;
                        background: linear-gradient(135deg, #142C8E 0%, #2D5BFF 100%);
                        color: #ffffff;
                        box-shadow: 0 6px 14px -6px rgba(45, 91, 255, 0.6);
                }

                /* Section base */
                .nc-section { padding-block: clamp(72px, 9vw, 120px); }
                .nc-cat-header {
                        display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
                        gap: 16px;
                        padding-bottom: 18px;
                        border-bottom: 2px solid #0F172A;
                        margin-bottom: clamp(28px, 3.4vw, 44px);
                }
                .nc-cat-header__title {
                        margin: 0;
                        font-family: var(--font-display);
                        font-size: clamp(28px, 3vw, 42px);
                        font-weight: 900;
                        line-height: 1.05;
                        letter-spacing: -0.015em;
                        color: #0F172A;
                        text-wrap: balance;
                }
                .nc-cat-header__title .title-accent {
                        background: linear-gradient(135deg, #142C8E 0%, #1F49D8 55%, #2D5BFF 100%);
                        -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
                        color: #142C8E; font-weight: 900;
                }
                .nc-cat-header__ref {
                        font-family: var(--font-technical);
                        font-size: 11.5px; font-weight: 700;
                        letter-spacing: 0.22em; text-transform: uppercase;
                        color: #94a3b8;
                }

                /* ============== CATEGORIA 1 — Inteligência Operacional ============== */
                .nc-io { background: #ffffff; }
                .nc-io__grid {
                        display: grid;
                        grid-template-columns: repeat(3, minmax(0, 1fr));
                        gap: clamp(18px, 2vw, 28px);
                }
                @media (max-width: 980px) { .nc-io__grid { grid-template-columns: repeat(2, 1fr); } }
                @media (max-width: 640px)  { .nc-io__grid { grid-template-columns: 1fr; } }

                .nc-card {
                        position: relative;
                        display: flex; flex-direction: column;
                        background: #ffffff;
                        border: 1px solid rgba(148, 163, 184, 0.34);
                        border-radius: 18px;
                        overflow: hidden;
                        text-decoration: none; color: inherit;
                        cursor: pointer;
                        box-shadow: 0 18px 48px -34px rgba(15, 23, 42, 0.28);
                        transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
                                    border-color 0.42s ease,
                                    box-shadow 0.42s ease;
                }
                .nc-card::before {
                        content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
                        background: linear-gradient(90deg, #142C8E 0%, #1F49D8 52%, #2D5BFF 100%);
                        opacity: 0.92; z-index: 3;
                }
                .nc-card:hover {
                        transform: translateY(-5px);
                        border-color: rgba(31, 73, 216, 0.46);
                        box-shadow: 0 28px 60px -34px rgba(20, 44, 142, 0.42);
                }
                .nc-card__media {
                        position: relative;
                        aspect-ratio: 16 / 10;
                        overflow: hidden;
                        background: #0f172a;
                }
                .nc-card__img {
                        position: absolute; inset: 0;
                        width: 100%; height: 100%;
                        object-fit: cover; object-position: center;
                        filter: saturate(0.82) contrast(1.05) brightness(0.92);
                        transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
                }
                .nc-card:hover .nc-card__img {
                        transform: scale(1.06);
                        filter: saturate(1) contrast(1.08);
                }
                .nc-card__tag {
                        position: absolute; top: 12px; left: 12px; z-index: 2;
                        display: inline-flex; align-items: center; gap: 6px;
                        padding: 5px 10px;
                        background: rgba(2, 6, 23, 0.78);
                        backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
                        border: 1px solid rgba(136, 166, 255, 0.32);
                        color: #ffffff;
                        font-family: var(--font-technical);
                        font-size: 10px; font-weight: 800;
                        letter-spacing: 0.22em; text-transform: uppercase;
                        border-radius: 6px;
                }
                /* Variante: card sem imagem real (data viz mock) */
                .nc-card__media--mock {
                        background: linear-gradient(135deg, #050a18 0%, #142C8E 100%);
                        display: flex; align-items: center; justify-content: center;
                        padding: 24px;
                }
                .nc-card__mock-chart {
                        width: 100%; height: 100%;
                        border: 1px solid rgba(136, 166, 255, 0.22);
                        border-radius: 8px;
                        position: relative;
                        background: none;
                        background-size: 24px 24px;
                        overflow: hidden;
                }
                .nc-card__mock-bar {
                        position: absolute; bottom: 0;
                        width: 14%;
                        border-radius: 4px 4px 0 0;
                        transition: filter 0.4s ease, transform 0.4s ease;
                }
                .nc-card__mock-bar--1 { left: 14%; height: 60%; background: linear-gradient(180deg, #2D5BFF, #142C8E); }
                .nc-card__mock-bar--2 { left: 38%; height: 82%; background: linear-gradient(180deg, #88a6ff, #1F49D8); }
                .nc-card__mock-bar--3 { left: 62%; height: 42%; background: linear-gradient(180deg, rgba(136, 166, 255, 0.5), rgba(45, 91, 255, 0.7)); }
                .nc-card__mock-line {
                        position: absolute; top: 50%; left: 0; right: 0;
                        height: 1px;
                        border-top: 1px dashed rgba(136, 166, 255, 0.4);
                }
                .nc-card:hover .nc-card__mock-bar { transform: translateY(-2px); filter: brightness(1.12); }

                .nc-card__body {
                        padding: clamp(22px, 2.4vw, 28px);
                        display: flex; flex-direction: column;
                        flex: 1; gap: 14px;
                }
                .nc-card__title {
                        margin: 0;
                        font-family: var(--font-display);
                        font-size: clamp(18px, 1.5vw, 22px);
                        font-weight: 800;
                        line-height: 1.22;
                        color: #0F172A;
                        letter-spacing: -0.005em;
                        transition: color 0.3s ease;
                        text-wrap: balance;
                }
                .nc-card:hover .nc-card__title { color: #142C8E; }
                .nc-card__desc {
                        margin: 0;
                        font-family: var(--font-body);
                        font-weight: 300;
                        font-size: 16px; line-height: 1.6;
                        color: #475569;
                        flex-grow: 1;
                }
                .nc-card__footer {
                        display: flex; align-items: center; justify-content: space-between;
                        padding-top: 14px;
                        border-top: 1px dashed rgba(148, 163, 184, 0.4);
                        gap: 12px;
                }
                .nc-card__date {
                        font-family: var(--font-technical);
                        font-size: 11.5px; font-weight: 700;
                        letter-spacing: 0.18em; text-transform: uppercase;
                        color: #94a3b8;
                }
                .nc-card__arrow {
                        width: 32px; height: 32px;
                        display: inline-flex; align-items: center; justify-content: center;
                        border-radius: 999px;
                        background: #eff4ff;
                        color: #1F49D8;
                        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
                }
                .nc-card:hover .nc-card__arrow {
                        background: #142C8E; color: #ffffff;
                        transform: translate(3px, -3px);
                }

                /* ============== CATEGORIA 2 — Conteúdo Técnico (Bento) ============== */
                .nc-ct { background: #f8fafc; }
                .nc-ct__bento {
                        display: grid;
                        grid-template-columns: repeat(4, minmax(0, 1fr));
                        grid-auto-rows: 240px;
                        gap: clamp(14px, 1.6vw, 22px);
                }
                @media (max-width: 980px) {
                        .nc-ct__bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
                }
                @media (max-width: 640px) {
                        .nc-ct__bento { grid-template-columns: 1fr; }
                }

                /* Feature card (large dark) */
                .nc-ct-feature {
                        position: relative;
                        grid-column: span 2;
                        grid-row: span 2;
                        display: flex; flex-direction: column; justify-content: flex-end;
                        padding: clamp(28px, 3.2vw, 40px);
                        background: #020617;
                        border-radius: 20px;
                        overflow: hidden;
                        text-decoration: none; color: inherit;
                        cursor: pointer;
                        isolation: isolate;
                        transition: transform 0.4s ease, box-shadow 0.4s ease;
                }
                @media (max-width: 980px) { .nc-ct-feature { grid-column: 1 / -1; grid-row: auto; min-height: 360px; } }
                .nc-ct-feature__img {
                        position: absolute; inset: 0;
                        width: 100%; height: 100%;
                        object-fit: cover; object-position: center;
                        filter: saturate(0.7) contrast(1.05) brightness(0.65);
                        z-index: 0;
                        transition: transform 0.7s ease, filter 0.5s ease;
                }
                .nc-ct-feature:hover .nc-ct-feature__img { transform: scale(1.04); filter: saturate(0.85) contrast(1.1) brightness(0.7); }
                .nc-ct-feature::before {
                        content: ''; position: absolute; inset: 0; z-index: 1;
                        background:
                                linear-gradient(180deg, rgba(2, 6, 23, 0.2) 0%, rgba(2, 6, 23, 0.55) 55%, rgba(2, 6, 23, 0.95) 100%);
                }
                .nc-ct-feature:hover {
                        transform: translateY(-4px);
                        box-shadow: 0 32px 72px -36px rgba(20, 44, 142, 0.5);
                }
                .nc-ct-feature__content {
                        position: relative; z-index: 2;
                        max-width: 540px;
                        color: #ffffff;
                }
                .nc-ct-feature__tag {
                        display: inline-flex; align-items: center; gap: 8px;
                        padding: 6px 12px;
                        background: #ffffff;
                        color: #0F172A;
                        font-family: var(--font-technical);
                        font-size: 10.5px; font-weight: 800;
                        letter-spacing: 0.22em; text-transform: uppercase;
                        border-radius: 6px;
                        margin-bottom: 18px;
                }
                .nc-ct-feature__title {
                        margin: 0 0 14px;
                        font-family: var(--font-display);
                        font-size: clamp(24px, 2.6vw, 36px);
                        font-weight: 900;
                        line-height: 1.05;
                        letter-spacing: -0.015em;
                        color: #ffffff;
                        text-wrap: balance;
                }
                .nc-ct-feature__desc {
                        margin: 0 0 18px;
                        font-family: var(--font-body);
                        font-weight: 300;
                        font-size: 16px; line-height: 1.6;
                        color: rgba(226, 232, 240, 0.86);
                }
                .nc-ct-feature__action {
                        display: inline-flex; align-items: center; gap: 10px;
                        font-family: var(--font-technical);
                        font-size: 11.5px; font-weight: 800;
                        letter-spacing: 0.22em; text-transform: uppercase;
                        color: #b4c5ff;
                        transition: color 0.3s ease, transform 0.3s ease;
                }
                .nc-ct-feature:hover .nc-ct-feature__action { color: #ffffff; transform: translateX(4px); }
                .nc-ct-feature__action .material-symbols-outlined { font-size: 16px !important; }

                /* Bento small card (light) */
                .nc-ct-card {
                        position: relative;
                        display: flex; flex-direction: column; justify-content: space-between;
                        padding: clamp(20px, 2.2vw, 28px);
                        background: #ffffff;
                        border: 1px solid rgba(148, 163, 184, 0.34);
                        border-radius: 16px;
                        text-decoration: none; color: inherit;
                        cursor: pointer;
                        overflow: hidden;
                        transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
                }
                .nc-ct-card--wide { grid-column: span 2; }
                @media (max-width: 980px) { .nc-ct-card--wide { grid-column: 1 / -1; } }
                .nc-ct-card:hover {
                        transform: translateY(-3px);
                        border-color: rgba(31, 73, 216, 0.42);
                        box-shadow: 0 22px 48px -34px rgba(20, 44, 142, 0.32);
                }
                .nc-ct-card__top {
                        display: flex; justify-content: space-between; align-items: flex-start;
                        gap: 12px;
                }
                .nc-ct-card__tag {
                        display: inline-flex; align-items: center;
                        padding: 5px 10px;
                        background: #f1f5f9;
                        border: 1px solid rgba(148, 163, 184, 0.32);
                        color: #475569;
                        font-family: var(--font-technical);
                        font-size: 10px; font-weight: 800;
                        letter-spacing: 0.22em; text-transform: uppercase;
                        border-radius: 999px;
                }
                .nc-ct-card__top-icon {
                        color: #94a3b8;
                        transition: color 0.3s ease, transform 0.3s ease;
                }
                .nc-ct-card:hover .nc-ct-card__top-icon { color: #142C8E; transform: rotate(8deg); }
                .nc-ct-card__top-icon .material-symbols-outlined { font-size: 24px !important; }
                .nc-ct-card__title {
                        margin: 0 0 6px;
                        font-family: var(--font-display);
                        font-size: clamp(15px, 1.4vw, 20px);
                        font-weight: 800;
                        line-height: 1.2;
                        color: #0F172A;
                        letter-spacing: -0.005em;
                        transition: color 0.3s ease;
                }
                .nc-ct-card:hover .nc-ct-card__title { color: #142C8E; }
                .nc-ct-card__desc {
                        margin: 0;
                        font-family: var(--font-body);
                        font-weight: 300;
                        font-size: 16px; line-height: 1.55;
                        color: #64748b;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        line-clamp: 2;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                }
                .nc-ct-card__meta {
                        font-family: var(--font-technical);
                        font-size: 10.5px; font-weight: 700;
                        letter-spacing: 0.18em; text-transform: uppercase;
                        color: #94a3b8;
                }

                /* Download card (primary) */
                .nc-ct-download {
                        position: relative;
                        display: flex; flex-direction: column; justify-content: space-between;
                        padding: clamp(20px, 2.2vw, 28px);
                        background: linear-gradient(135deg, #142C8E 0%, #1F49D8 60%, #2D5BFF 100%);
                        background-size: 140% 140%; background-position: 0% 50%;
                        color: #ffffff;
                        border-radius: 16px;
                        text-decoration: none;
                        cursor: pointer;
                        overflow: hidden;
                        box-shadow: 0 18px 40px -22px rgba(20, 44, 142, 0.5);
                        transition: transform 0.4s ease, background-position 0.4s ease, box-shadow 0.4s ease;
                }
                .nc-ct-download:hover {
                        transform: translateY(-3px);
                        background-position: 100% 50%;
                        box-shadow: 0 24px 50px -22px rgba(20, 44, 142, 0.62);
                }
                .nc-ct-download__tag {
                        display: inline-flex; align-items: center;
                        padding: 5px 10px;
                        background: rgba(255, 255, 255, 0.18);
                        border: 1px solid rgba(255, 255, 255, 0.28);
                        color: #ffffff;
                        font-family: var(--font-technical);
                        font-size: 10px; font-weight: 800;
                        letter-spacing: 0.22em; text-transform: uppercase;
                        border-radius: 999px;
                        align-self: flex-start;
                }
                .nc-ct-download__icon {
                        font-size: 36px !important;
                        margin-bottom: 12px;
                        color: #ffffff;
                        text-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
                }
                .nc-ct-download__title {
                        margin: 0 0 8px;
                        font-family: var(--font-technical);
                        font-size: 12px; font-weight: 800;
                        line-height: 1.3;
                        letter-spacing: 0.16em; text-transform: uppercase;
                        color: #ffffff;
                }
                .nc-ct-download__meta {
                        font-family: var(--font-technical);
                        font-size: 10.5px; font-weight: 700;
                        letter-spacing: 0.18em; text-transform: uppercase;
                        color: rgba(255, 255, 255, 0.72);
                }

                /* ============== CATEGORIA 3 — Insights (list rows) ============== */
                .nc-in { background: #ffffff; }
                .nc-in__list { display: flex; flex-direction: column; gap: 16px; }
                .nc-in-row {
                        display: grid;
                        grid-template-columns: 200px minmax(0, 1fr) auto;
                        align-items: center;
                        gap: clamp(20px, 2.4vw, 32px);
                        padding: clamp(16px, 1.8vw, 22px);
                        background: #ffffff;
                        border: 1px solid rgba(148, 163, 184, 0.34);
                        border-radius: 16px;
                        text-decoration: none; color: inherit;
                        cursor: pointer;
                        overflow: hidden;
                        transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
                }
                @media (max-width: 768px) {
                        .nc-in-row { grid-template-columns: 1fr; }
                }
                .nc-in-row:hover {
                        transform: translateY(-2px);
                        border-color: rgba(31, 73, 216, 0.42);
                        box-shadow: 0 20px 44px -32px rgba(20, 44, 142, 0.34);
                        background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
                }
                .nc-in-row__media {
                        position: relative;
                        aspect-ratio: 5 / 3;
                        border-radius: 12px;
                        overflow: hidden;
                        background: #0f172a;
                        border: 1px solid rgba(148, 163, 184, 0.32);
                }
                @media (max-width: 768px) { .nc-in-row__media { width: 100%; } }
                .nc-in-row__img {
                        position: absolute; inset: 0;
                        width: 100%; height: 100%;
                        object-fit: cover; object-position: center;
                        filter: saturate(0.78) contrast(1.05);
                        transition: transform 0.6s ease, filter 0.5s ease;
                }
                .nc-in-row:hover .nc-in-row__img {
                        transform: scale(1.05);
                        filter: saturate(1) contrast(1.08);
                }
                .nc-in-row__media--mock {
                        display: flex; align-items: center; justify-content: center;
                        background: linear-gradient(135deg, #050a18 0%, #142C8E 100%);
                }
                .nc-in-row__diamond {
                        position: relative;
                        width: 64px; height: 64px;
                        border: 2px solid rgba(136, 166, 255, 0.6);
                        transform: rotate(45deg);
                        display: flex; align-items: center; justify-content: center;
                }
                .nc-in-row__diamond::before {
                        content: ''; position: absolute;
                        top: 50%; left: 0; right: 0; height: 2px;
                        background: rgba(136, 166, 255, 0.6);
                }
                .nc-in-row__diamond::after {
                        content: ''; position: absolute;
                        top: 0; bottom: 0; left: 50%; width: 2px;
                        background: rgba(136, 166, 255, 0.6);
                }
                .nc-in-row__meta {
                        display: inline-flex; flex-wrap: wrap; align-items: center; gap: 12px;
                        margin-bottom: 8px;
                }
                .nc-in-row__tag {
                        display: inline-flex; align-items: center;
                        padding: 4px 10px;
                        background: #0F172A;
                        color: #ffffff;
                        font-family: var(--font-technical);
                        font-size: 10px; font-weight: 800;
                        letter-spacing: 0.22em; text-transform: uppercase;
                        border-radius: 6px;
                }
                .nc-in-row__readtime {
                        font-family: var(--font-technical);
                        font-size: 11px; font-weight: 700;
                        letter-spacing: 0.18em; text-transform: uppercase;
                        color: #94a3b8;
                        display: inline-flex; align-items: center; gap: 6px;
                }
                .nc-in-row__readtime .material-symbols-outlined { font-size: 14px !important; }
                .nc-in-row__title {
                        margin: 0 0 6px;
                        font-family: var(--font-display);
                        font-size: clamp(18px, 1.6vw, 24px);
                        font-weight: 800;
                        line-height: 1.2;
                        color: #0F172A;
                        letter-spacing: -0.005em;
                        transition: color 0.3s ease;
                        text-wrap: balance;
                }
                .nc-in-row:hover .nc-in-row__title { color: #142C8E; }
                .nc-in-row__desc {
                        margin: 0;
                        font-family: var(--font-body);
                        font-weight: 300;
                        font-size: 16px; line-height: 1.55;
                        color: #475569;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        line-clamp: 2;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                }
                .nc-in-row__arrow {
                        width: 48px; height: 48px;
                        display: inline-flex; align-items: center; justify-content: center;
                        border-radius: 999px;
                        background: #eff4ff;
                        color: #1F49D8;
                        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
                }
                @media (max-width: 768px) { .nc-in-row__arrow { display: none; } }
                .nc-in-row:hover .nc-in-row__arrow {
                        background: #142C8E; color: #ffffff;
                        transform: translate(3px, -3px);
                }

                /* ============== CTA Final ============== */
                .nc-final-cta {
                        background: #2E3D6B;
                        position: relative;
                        overflow: hidden;
                }
                .nc-final-cta::before {
                        content: ''; position: absolute; inset: 0;
                        background:
                                radial-gradient(circle at 14% 24%, rgba(45, 91, 255, 0.32), transparent 38%),
                                radial-gradient(circle at 86% 78%, rgba(45, 91, 255, 0.18), transparent 32%),
                                linear-gradient(135deg, #050a18 0%, #020617 60%, #2E3D6B 100%);
                        z-index: 1; opacity: 0.92;
                }
                .nc-final-cta__content {
                        position: relative; z-index: 2;
                        min-height: clamp(180px, 22vh, 260px);
                        display: flex; align-items: center;
                }
