:root {
    --navy-980: #03111d;
    --navy-950: #041421;
    --navy-900: #061b2e;
    --navy-850: #08233a;
    --navy-800: #0a2d49;
    --blue-500: #1f79b8;
    --cyan-400: #37b8d8;
    --orange-500: #ff7a18;
    --orange-400: #ff9d3a;
    --green-500: #35b16a;
    --teal-500: #20a99a;
    --violet-500: #8156c8;
    --ice-100: #edf4f8;
    --ice-50: #f7fbfe;
    --ink: #0f2740;
    --muted: #587086;
    --line: #cddde8;
    --white: #fff;
    --header-height: 62px;
    --radius-sm: 6px;
    --shadow-deep: 0 30px 90px rgba(1, 9, 16, 0.45);
    --shadow-soft: 0 18px 42px rgba(4, 20, 33, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    background: var(--ice-50);
    color: var(--ink);
    font-family: "Segoe UI", Inter, Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
    text-rendering: geometricPrecision;
}

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

.screen-stack picture,
.platform-aside picture,
.mp5-book-stage picture,
.knowledge-cover picture {
    display: contents;
}

a {
    color: inherit;
}

a,
button {
    touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(255, 122, 24, 0.78);
    outline-offset: 4px;
}

.container-xxl {
    max-width: 1320px;
    padding-inline: 28px;
}

.site-header .container-xxl,
.hero-section .container-xxl {
    max-width: 1390px;
}

.skip-link {
    background: var(--orange-500);
    color: var(--navy-950);
    font-weight: 800;
    left: 20px;
    padding: 10px 14px;
    position: fixed;
    top: 8px;
    transform: translateY(-150%);
    transition: transform 160ms ease;
    z-index: 3000;
}

.skip-link:focus {
    transform: translateY(0);
}

.error-section {
    align-items: center;
    background: var(--ice-50);
    display: flex;
    min-height: 62vh;
    padding: 7rem 0 5rem;
}

.error-layout {
    max-width: 760px;
}

.error-layout h1 {
    color: var(--navy-950);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 850;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.error-layout p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.site-header {
    background: rgba(3, 17, 29, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1040;
}

.site-header .navbar {
    min-height: var(--header-height);
    padding-block: 0;
}

.site-header .navbar-collapse.show {
    display: block !important;
    flex-basis: 100%;
}

.brand-lockup {
    align-items: center;
    color: var(--white);
    display: inline-flex;
    font-size: 1.48rem;
    font-weight: 750;
    gap: 9px;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand-lockup:hover,
.brand-lockup:focus {
    color: var(--white);
}

.brand-mark {
    height: 42px;
    object-fit: contain;
    width: 36px;
}

.site-header .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    font-weight: 700;
    padding-inline: 0.7rem !important;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
    color: var(--white);
}

.header-tools {
    align-items: center;
    display: flex;
    gap: 11px;
}

.login-link {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
}

.language-switcher {
    align-items: center;
    display: flex;
    gap: 10px;
}

.language-switcher a {
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 5px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.language-switcher a.active {
    color: var(--white);
}

.btn {
    border-radius: var(--radius-sm);
    font-weight: 800;
    letter-spacing: 0;
}

.btn-brand {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: var(--white);
}

.hero-section .btn-lg {
    font-size: 0.86rem;
    min-height: 46px;
    padding: 0.66rem 1.1rem;
}

.hero-video-toggle {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.hero-video-toggle small {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    font-size: 0.72rem;
    font-weight: 650;
    margin-left: 2px;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--orange-400);
    border-color: var(--orange-400);
    color: var(--navy-950);
}

.btn-outline-brand {
    border: 1px solid var(--orange-500);
    color: var(--orange-500);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: var(--orange-500);
    color: var(--white);
}

.btn-academy {
    background: rgba(129, 86, 200, 0.42);
    border: 1px solid rgba(196, 159, 255, 0.5);
    color: var(--white);
}

.eyebrow {
    color: var(--orange-500);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-heading.centered {
    margin-inline: auto;
    max-width: 820px;
    text-align: center;
}

#exultar,
#jornadas,
#exultarone,
#capacidades,
#maturidade,
#ecossistema,
#mp5,
#academy,
#servicos,
#governo-parceiros,
#governo,
#parceiros,
#clientes,
#conhecimento,
#demonstracao,
#contato,
#idiomas {
    scroll-margin-top: 96px;
}

.section-heading h2,
.knowledge-head h2,
.services-head h2,
.mp5-copy h2,
.academy-head h2,
.final-cta h2 {
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    font-weight: 830;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.circuit-field,
.tech-pattern {
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.circuit-field {
    background-image:
        linear-gradient(90deg, transparent 0 22px, rgba(29, 125, 184, 0.16) 22px 24px, transparent 24px 80px),
        linear-gradient(0deg, transparent 0 32px, rgba(255, 122, 24, 0.12) 32px 34px, transparent 34px 90px);
    mask-image: radial-gradient(circle at 76% 42%, #000 0 28%, transparent 58%);
    opacity: 0.7;
}

.circuit-field.light {
    background-image:
        linear-gradient(90deg, transparent 0 25px, rgba(31, 121, 184, 0.16) 25px 27px, transparent 27px 88px),
        linear-gradient(0deg, transparent 0 36px, rgba(31, 121, 184, 0.12) 36px 38px, transparent 38px 96px);
    mask-image: radial-gradient(circle at 20% 54%, #000 0 20%, transparent 46%), radial-gradient(circle at 82% 78%, #000 0 18%, transparent 42%);
}

.hero-section {
    background:
        radial-gradient(circle at 77% 48%, rgba(18, 82, 128, 0.72), transparent 34%),
        linear-gradient(115deg, #041523 0%, #06253e 58%, #03111d 100%);
    color: var(--white);
    min-height: 648px;
    overflow: hidden;
    padding: 52px 0 24px;
    position: relative;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(330px, 0.34fr) minmax(0, 0.66fr);
    min-height: 510px;
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    font-size: clamp(2.38rem, 3.18vw, 3.55rem);
    font-weight: 720;
    letter-spacing: -0.028em;
    line-height: 1.11;
    margin: 0 0 24px;
    max-width: 520px;
}

.hero-copy h1 span {
    color: var(--orange-400);
    display: inline;
}

.hero-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.96rem, 1.08vw, 1.06rem);
    line-height: 1.7;
    max-width: 455px;
}

.button-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-visual {
    margin-right: -1.5rem;
    min-height: 480px;
    position: relative;
}

.screen-stack {
    height: 480px;
    position: relative;
    perspective: 1400px;
}

.screen-stack::before {
    border: 2px solid rgba(255, 122, 24, 0.68);
    border-radius: 26px;
    content: "";
    height: 215px;
    left: 13%;
    position: absolute;
    top: 238px;
    transform: perspective(800px) rotateX(58deg) skewX(-4deg);
    width: 76%;
    z-index: 0;
}

.hero-circuitry {
    background:
        radial-gradient(circle, rgba(255, 122, 24, 0.9) 0 2px, transparent 3px) 0 0 / 96px 58px,
        linear-gradient(90deg, transparent 0 22%, rgba(255, 122, 24, 0.7) 22% 23%, transparent 23% 30%, rgba(255, 122, 24, 0.7) 30% 31%, transparent 31%),
        linear-gradient(0deg, transparent 0 54%, rgba(34, 132, 194, 0.55) 54% 55%, transparent 55%);
    border-bottom: 2px solid rgba(255, 122, 24, 0.56);
    border-radius: 26px;
    bottom: 26px;
    height: 205px;
    left: 9%;
    opacity: 0.5;
    position: absolute;
    right: 3%;
    z-index: 0;
}

.hero-circuitry::before,
.hero-circuitry::after {
    background: rgba(255, 122, 24, 0.56);
    bottom: 0;
    box-shadow:
        110px -34px 0 rgba(255, 122, 24, 0.42),
        230px -20px 0 rgba(255, 122, 24, 0.42);
    content: "";
    height: 2px;
    position: absolute;
    width: 120px;
}

.hero-circuitry::before {
    left: 14%;
    transform: rotate(36deg);
}

.hero-circuitry::after {
    right: 10%;
    transform: rotate(-32deg);
}

.hero-screen {
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.42));
    height: auto;
    object-fit: contain;
    position: absolute;
    transform-style: preserve-3d;
}

.hero-screen-analytics {
    left: 17.5%;
    top: 82px;
    width: 64%;
    z-index: 4;
}

.hero-screen-governance {
    left: 0;
    top: 134px;
    transform: rotateY(8deg) rotateZ(-1.8deg);
    transform-origin: right center;
    width: 42%;
    z-index: 2;
}

.hero-screen-ai {
    right: 0;
    top: 128px;
    transform: rotateY(-8deg) rotateZ(1.8deg);
    transform-origin: left center;
    width: 44%;
    z-index: 2;
}

.hero-video-frame {
    inset: 0;
    position: absolute;
    z-index: 5;
}

.hero-video-frame video {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    box-shadow: var(--shadow-deep);
    height: 420px;
    object-fit: contain;
    width: 100%;
}

.hero-controls {
    align-items: center;
    display: flex;
    gap: 16px;
    margin-top: 24px;
    position: relative;
    z-index: 6;
}

.hero-arrow,
.hero-tab {
    background: rgba(12, 62, 96, 0.72);
    border: 1px solid rgba(117, 174, 210, 0.46);
    color: rgba(255, 255, 255, 0.82);
    min-height: 44px;
}

.hero-arrow {
    border-radius: 6px;
    font-size: 1.35rem;
    width: 50px;
}

.hero-tab {
    border-radius: 999px;
    min-width: 156px;
    padding: 0 24px;
    text-align: left;
}

.hero-tab span {
    color: var(--orange-500);
    font-weight: 900;
    margin-right: 8px;
}

.hero-tab.is-active {
    background: rgba(255, 122, 24, 0.16);
    border-color: rgba(255, 122, 24, 0.76);
    color: var(--orange-400);
}

.hero-tab.is-active span {
    align-items: center;
    background: var(--orange-500);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    height: 30px;
    justify-content: center;
    margin-left: -10px;
    width: 30px;
}

.journey-section {
    background: var(--ice-100);
    padding: 56px 0 78px;
}

.journey-section h2 {
    color: #1b344d;
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
    margin-bottom: 46px;
}

.journey-track {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.journey-track::before {
    background: linear-gradient(90deg, transparent 0 3%, #a9bbc8 3% 97%, transparent 97%);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 35px;
}

.journey-track a {
    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: 262px;
    padding: 0 18px;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.journey-node {
    align-items: center;
    background: var(--navy-950);
    border: 4px solid var(--ice-100);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    font-size: 0.8rem;
    font-weight: 900;
    height: 60px;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    width: 60px;
    z-index: 2;
}

.line-icon {
    border: 2px solid currentColor;
    color: #6b8396;
    display: inline-block;
    height: 48px;
    margin-bottom: 20px;
    position: relative;
    width: 48px;
}

.line-icon::before,
.line-icon::after {
    content: "";
    position: absolute;
}

.icon-organization {
    border-radius: 4px;
}

.icon-organization::before {
    border: 2px solid currentColor;
    border-bottom: 0;
    height: 14px;
    left: 9px;
    top: -10px;
    width: 12px;
}

.icon-chart::before {
    border-bottom: 3px solid currentColor;
    border-left: 3px solid currentColor;
    bottom: 7px;
    height: 18px;
    left: 7px;
    transform: skewY(-24deg);
    width: 18px;
}

.icon-gear {
    border-radius: 50%;
}

.icon-gear::before {
    border: 2px solid currentColor;
    border-radius: 50%;
    height: 12px;
    left: 9px;
    top: 9px;
    width: 12px;
}

.icon-people {
    border: 0;
}

.icon-people::before,
.icon-people::after {
    border: 2px solid currentColor;
    border-radius: 50% 50% 4px 4px;
    height: 28px;
    top: 4px;
    width: 16px;
}

.icon-people::before { left: 1px; }
.icon-people::after { right: 1px; }

.icon-building::before {
    border-bottom: 7px solid currentColor;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    height: 0;
    left: -2px;
    top: -9px;
    width: 0;
}

.icon-handshake {
    border-radius: 17px;
    transform: rotate(-12deg);
}

.icon-book {
    border-radius: 4px;
}

.icon-book::before {
    background: currentColor;
    height: 100%;
    left: 14px;
    top: 0;
    width: 2px;
}

.icon-method {
    border-radius: 50%;
}

.icon-method::before {
    background: currentColor;
    height: 2px;
    left: -8px;
    top: 15px;
    width: 46px;
}

.journey-track strong {
    color: #1d3147;
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 11px;
}

.journey-track small {
    color: #425e75;
    display: block;
    font-size: 0.88rem;
    line-height: 1.48;
}

.exultarone-section {
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 122, 24, 0.14), transparent 24%),
        linear-gradient(145deg, #041421, #073456);
    color: var(--white);
    padding: 54px 0 62px;
}

.platform-layout {
    display: grid;
    gap: 40px;
    grid-template-columns: 0.32fr 0.68fr;
}

.platform-aside {
    padding-top: 28px;
}

.exultarone-logo {
    height: auto;
    margin-bottom: 24px;
    max-width: 260px;
    width: 100%;
}

.platform-aside h2 {
    font-size: clamp(1.85rem, 2.5vw, 2.7rem);
    font-weight: 760;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 22px;
}

.platform-aside p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.66;
    margin-bottom: 28px;
}

.platform-gallery {
    min-width: 0;
}

.domain-tabs {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 12px;
}

.domain-tabs button,
.capability-tabs button {
    background: rgba(7, 37, 61, 0.78);
    border: 1px solid rgba(117, 174, 210, 0.65);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 800;
    min-height: 46px;
    padding: 0.76rem 1.08rem;
}

.domain-tabs button.is-active,
.capability-tabs button.is-active {
    background: var(--orange-500);
    border-color: var(--orange-500);
    color: var(--white);
}

.capability-tabs {
    align-items: center;
    display: flex;
    gap: 12px;
    margin: 0 0 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.capability-tabs button {
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.84rem;
    min-height: 38px;
    padding: 0.5rem 0.85rem;
    white-space: nowrap;
}

.capability-tabs button.is-active {
    background: transparent;
    border-bottom-color: var(--orange-400);
    color: var(--orange-400);
}

.gallery-frame {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow-deep);
    padding: 10px;
}

.gallery-panel {
    margin: 0;
}

.gallery-panel img {
    aspect-ratio: 16 / 7.75;
    border-radius: 5px;
    object-fit: cover;
    object-position: top left;
    width: 100%;
}

.gallery-panel figcaption {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(220px, 0.42fr) 1fr;
    padding-top: 14px;
}

.gallery-panel strong {
    color: var(--white);
    font-size: 1.02rem;
}

.gallery-panel span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.48;
}

.gallery-actions {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-top: 10px;
}

.gallery-counter {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
    margin-right: auto;
}

.circle-btn {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    height: 44px;
    justify-content: center;
    width: 48px;
}

.expand-btn,
.all-capabilities {
    background: transparent;
    border: 0;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.all-capabilities {
    color: var(--orange-500);
    display: block;
    margin-top: 6px;
    text-align: right;
}

.maturity-road {
    margin: 44px auto 0;
    max-width: 1180px;
    min-height: 194px;
}

.maturity-road p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.maturity-road ol {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    margin: 0 auto 18px;
    max-width: 1140px;
    padding: 0;
    position: relative;
}

.maturity-road ol::before {
    display: none;
}

.maturity-road li {
    background: rgba(255, 122, 24, 0.86);
    border: 0;
    clip-path: polygon(0 0, calc(100% - 23px) 0, 100% 50%, calc(100% - 23px) 100%, 0 100%, 23px 50%);
    min-height: 84px;
    padding: 16px 30px 14px;
    position: relative;
    text-align: center;
}

.maturity-road li::before {
    background: rgba(4, 25, 42, 0.9);
    clip-path: inherit;
    content: "";
    inset: 1.5px;
    position: absolute;
    z-index: 0;
}

.maturity-road li::after {
    background: var(--orange-500);
    border-radius: 50%;
    bottom: -18px;
    box-shadow: 0 0 0 5px rgba(255, 122, 24, 0.14);
    content: "";
    height: 7px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 7px;
    z-index: 2;
}

.maturity-road strong,
.maturity-road span {
    display: block;
    position: relative;
    z-index: 1;
}

.maturity-road strong {
    font-size: 1.08rem;
    line-height: 1.15;
}

.maturity-road span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    line-height: 1.3;
    margin-top: 5px;
}

.governance-foundation {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    color: var(--white);
    display: flex;
    gap: 18px;
    justify-content: center;
    margin: 26px auto 0;
    max-width: 620px;
    min-height: 76px;
    padding-inline: 26px;
    width: 52%;
}

.governance-foundation span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
}

.ecosystem-section {
    background: #edf4f8;
    padding: 80px 0 96px;
}

.ecosystem-section h2 {
    font-size: clamp(2.38rem, 3.1vw, 2.85rem);
    line-height: 1.08;
    margin: 0 auto 58px;
    max-width: 680px;
}

.ecosystem-diagram {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(330px, 1fr) 318px minmax(330px, 1fr);
    margin-inline: auto;
    max-width: 1180px;
    position: relative;
}

.ecosystem-diagram::before,
.ecosystem-diagram::after {
    background: linear-gradient(90deg, transparent, rgba(36, 73, 98, 0.92), transparent);
    content: "";
    height: 3px;
    position: absolute;
    top: 50%;
    width: 34%;
}

.ecosystem-diagram::before { left: 18%; }
.ecosystem-diagram::after { right: 18%; }

.eco-side {
    display: grid;
    gap: 26px;
}

.eco-side article {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 70px 1fr;
    position: relative;
    z-index: 2;
}

.eco-left article {
    grid-template-columns: 1fr 70px;
    text-align: right;
}

.eco-left article .hex {
    grid-column: 2;
    grid-row: 1;
}

.eco-left article div {
    grid-column: 1;
    grid-row: 1;
}

.eco-side strong {
    display: block;
    font-size: 1.12rem;
    line-height: 1.2;
}

.eco-side small {
    color: #405d72;
    display: block;
    font-size: 0.9rem;
    line-height: 1.48;
    margin-top: 4px;
}

.hex {
    align-items: center;
    background: var(--navy-800);
    clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
    color: var(--white);
    display: flex;
    font-weight: 900;
    justify-content: center;
}

.hex.mini {
    background: var(--navy-800);
    font-size: 0.8rem;
    height: 66px;
    width: 70px;
}

.hex.teal { background: var(--teal-500); }
.hex.orange { background: var(--orange-500); }
.hex.green { background: var(--green-500); }
.hex.violet { background: var(--violet-500); }

.eco-core {
    align-items: center;
    background: radial-gradient(circle, #123b5c, var(--navy-950));
    clip-path: polygon(25% 3%, 75% 3%, 100% 50%, 75% 97%, 25% 97%, 0 50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    height: 282px;
    justify-content: center;
    padding: 34px;
    position: relative;
    text-align: center;
    z-index: 3;
}

.eco-core .core {
    background: transparent;
    height: 56px;
    margin-bottom: 10px;
    width: 56px;
}

.eco-core img {
    height: 54px;
    object-fit: contain;
    width: 48px;
}

.eco-core strong {
    color: var(--orange-500);
    font-size: 1.48rem;
}

.eco-core small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
    line-height: 1.38;
}

.mp5-section {
    background: #fff8ec;
    padding: 44px 0 28px;
    position: relative;
}

.mp5-section .circuit-field.light {
    opacity: 0.22;
}

.mp5-layout {
    align-items: center;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(470px, 0.42fr) minmax(0, 0.58fr);
    position: relative;
    z-index: 2;
}

.mp5-copy h2 {
    color: #153151;
    font-size: clamp(2.2rem, 2.7vw, 2.78rem);
    line-height: 1.08;
    max-width: 640px;
}

.mp5-book {
    background: transparent;
    filter: drop-shadow(0 24px 24px rgba(4, 20, 33, 0.25));
    margin-top: 14px;
    max-height: 448px;
    object-fit: contain;
}

.mp5-track-wrap {
    align-self: center;
}

.mp5-label {
    color: #36536d;
    font-size: 1.34rem;
    font-weight: 900;
    margin-bottom: 18px;
    margin-top: 0;
}

.mp5-label span {
    font-size: 0.84rem;
    font-weight: 700;
}

.mp5-track {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    position: relative;
}

.mp5-track::before {
    background: var(--orange-500);
    content: "";
    height: 2px;
    left: 8%;
    position: absolute;
    right: 8%;
    top: 62px;
}

.mp5-track li {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hex.step {
    background: var(--navy-950);
    font-size: 1.28rem;
    height: 114px;
    margin: 0 auto 18px;
    width: 110px;
}

.mp5-track strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.mp5-track small {
    color: var(--muted);
    display: block;
    font-size: 0.88rem;
    line-height: 1.45;
}

.mp5-track-wrap > .btn {
    display: table;
    margin-top: 0;
    min-height: 42px;
    padding: 0.6rem 1.05rem;
}

.academy-section {
    background:
        radial-gradient(circle at 82% 16%, rgba(129, 86, 200, 0.4), transparent 28%),
        linear-gradient(145deg, #17184f, #061b3a 56%, #092342);
    color: var(--white);
    overflow: hidden;
    padding: 62px 0 56px;
    position: relative;
}

.tech-pattern {
    background:
        linear-gradient(120deg, transparent 0 44%, rgba(255, 122, 24, 0.2) 44% 45%, transparent 45%),
        linear-gradient(70deg, transparent 0 60%, rgba(82, 187, 216, 0.15) 60% 61%, transparent 61%);
    opacity: 0.75;
}

.academy-head {
    align-items: start;
    display: grid;
    gap: 30px;
    grid-template-columns: 0.66fr 0.34fr;
    position: relative;
    z-index: 2;
}

.academy-head h2 {
    font-size: clamp(1.9rem, 3.15vw, 3.08rem);
}

.academy-head p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 690px;
}

.academy-illustration {
    min-height: 174px;
    position: relative;
}

.academy-illustration span {
    border: 2px solid rgba(255, 122, 24, 0.76);
    border-bottom: 0;
    display: block;
    height: 96px;
    margin: 26px auto 0;
    transform: perspective(200px) rotateX(48deg);
    width: 228px;
}

.academy-illustration::after {
    background: rgba(255, 122, 24, 0.54);
    content: "";
    height: 94px;
    left: 50%;
    position: absolute;
    top: 95px;
    width: 2px;
}

.academy-domains {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 36px 0 34px;
    position: relative;
    z-index: 2;
}

.domain-pill {
    align-items: center;
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    min-height: 40px;
    padding: 0 20px;
}

.domain-pill.green { background: #1e9a5f; }
.domain-pill.cyan { background: #178cb0; }
.domain-pill.purple { background: #7146a8; }
.domain-pill.orange { background: #ec681c; }

.academy-panels {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    z-index: 2;
}

.academy-panel {
    background: rgba(4, 20, 33, 0.5);
    border: 1px solid rgba(117, 174, 210, 0.4);
    border-radius: 8px;
    padding: 26px;
}

.academy-panel h3 {
    font-size: 1.12rem;
    margin-bottom: 18px;
}

.academy-panel h3 span {
    color: rgba(255, 255, 255, 0.55);
    float: right;
    font-size: 0.72rem;
    font-weight: 600;
}

.academy-panel ul,
.academy-panel ol {
    display: grid;
    gap: 13px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.academy-panel li {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    font-size: 0.92rem;
    gap: 12px;
    min-height: 52px;
    padding: 11px 13px;
}

.academy-panel li::before {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    color: var(--cyan-400);
    content: "⌁";
    display: flex;
    flex: 0 0 28px;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.academy-panel ol li::before {
    display: none;
}

.academy-panel ol span {
    align-items: center;
    background: var(--navy-800);
    border: 2px solid currentColor;
    border-radius: 50%;
    color: var(--orange-400);
    display: flex;
    flex: 0 0 38px;
    font-size: 0.62rem;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.portfolio-note {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    margin: 18px 0;
    position: relative;
    text-align: center;
    z-index: 2;
}

.academy-section .btn-academy {
    display: table;
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.services-section {
    background:
        radial-gradient(circle at 38% 52%, rgba(30, 143, 130, 0.22), transparent 22%),
        linear-gradient(135deg, #042132, #052944 62%, #03111d);
    color: var(--white);
    overflow: hidden;
    padding: 68px 0 62px;
    position: relative;
}

.services-head {
    display: grid;
    gap: 80px;
    grid-template-columns: 0.54fr 0.46fr;
    position: relative;
    z-index: 2;
}

.services-head p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.58;
}

.service-road {
    display: grid;
    gap: 78px;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    margin: 60px 0 32px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.service-road::before {
    background: linear-gradient(90deg, rgba(53, 177, 106, 0.75), rgba(255, 255, 255, 0.48), rgba(255, 122, 24, 0.75));
    content: "";
    height: 2px;
    left: 15%;
    position: absolute;
    right: 15%;
    top: 36px;
}

.service-road li {
    text-align: center;
}

.service-orb {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 3px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 0 34px currentColor;
    color: var(--green-500);
    display: flex;
    height: 88px;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    width: 88px;
    z-index: 2;
}

.service-orb::before {
    border: 2px solid currentColor;
    content: "";
    height: 30px;
    width: 30px;
}

.service-orb.network { color: #4aa7d8; }
.service-orb.gear { color: var(--orange-500); }
.service-orb.gear::before { border-radius: 50%; }
.service-orb.compass::before { transform: rotate(45deg); }

.service-road strong {
    display: block;
    font-size: 1.38rem;
}

.service-road em {
    color: var(--orange-500);
    display: block;
    font-style: normal;
}

.service-road small {
    color: rgba(255, 255, 255, 0.76);
    display: block;
    font-size: 0.94rem;
    line-height: 1.52;
    margin-inline: auto;
    max-width: 310px;
}

.business-foundation {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    gap: 18px;
    margin: 28px auto;
    max-width: 840px;
    padding-top: 22px;
    position: relative;
    z-index: 2;
}

.business-foundation strong,
.business-foundation small {
    display: block;
}

.business-foundation small {
    color: rgba(255, 255, 255, 0.74);
}

.services-section .btn-brand {
    display: table;
    margin-inline: auto;
    min-height: 42px;
    padding: 0.6rem 1.08rem;
    position: relative;
    z-index: 2;
}

.relationship-section {
    background: var(--navy-950);
    overflow: hidden;
}

.relationship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.relationship-grid::after {
    background: var(--orange-500);
    bottom: -5%;
    content: "";
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: -5%;
    transform: rotate(12deg);
    transform-origin: center;
    width: 2px;
    z-index: 3;
}

.relationship-panel {
    color: var(--white);
    min-height: 455px;
    overflow: hidden;
    padding: 66px clamp(34px, 7vw, 122px);
    position: relative;
}

.government-panel {
    background:
        linear-gradient(110deg, rgba(7, 91, 84, 0.9), rgba(6, 48, 73, 0.95)),
        var(--navy-800);
}

.partners-panel {
    background:
        linear-gradient(110deg, rgba(4, 20, 33, 0.96), rgba(5, 42, 69, 0.92)),
        var(--navy-950);
}

.relationship-panel::after {
    background:
        radial-gradient(circle, rgba(255, 122, 24, 0.28) 0 2px, transparent 3px) 0 0 / 72px 54px,
        linear-gradient(115deg, transparent 0 62%, rgba(255, 122, 24, 0.14) 62% 63%, transparent 63%);
    content: "";
    inset: 0;
    opacity: 0.32;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.relationship-panel h3 {
    font-size: clamp(2rem, 3vw, 3.35rem);
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.relationship-panel h3 span {
    color: var(--green-500);
}

.partners-panel h3 span {
    color: var(--orange-500);
}

.relationship-panel p,
.relationship-panel li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.58;
    position: relative;
    z-index: 2;
}

.relationship-panel ul {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 24px 0 28px;
    padding: 0;
}

.relationship-panel li {
    padding-left: 28px;
    position: relative;
}

.relationship-panel li::before {
    border: 2px solid currentColor;
    border-radius: 50%;
    color: var(--green-500);
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    top: 3px;
    width: 18px;
}

.partners-panel li::before {
    color: var(--orange-500);
}

.relationship-panel .btn {
    min-height: 42px;
    padding: 0.58rem 1rem;
}

.gov-illustration {
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    bottom: 42px;
    height: 170px;
    left: 30px;
    opacity: 0.32;
    position: absolute;
    width: 170px;
}

.gov-illustration::before {
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50% 50% 0 0;
    bottom: 0;
    content: "";
    height: 120px;
    left: 48px;
    position: absolute;
    width: 76px;
}

.partner-symbol {
    border: 2px solid rgba(255, 122, 24, 0.72);
    border-radius: 50%;
    height: 92px;
    left: 34px;
    position: absolute;
    top: 58px;
    width: 92px;
}

.partner-symbol::before,
.partner-symbol::after {
    background: var(--orange-500);
    border-radius: 50%;
    content: "";
    height: 12px;
    position: absolute;
    width: 12px;
}

.partner-symbol::before { left: 8px; top: 16px; }
.partner-symbol::after { right: 8px; bottom: 16px; }

.clients-section {
    background: #ffffff;
    padding: 80px 0 86px;
}

.clients-head {
    max-width: 760px;
}

.clients-head h2 {
    color: #17314d;
    font-size: clamp(2.1rem, 3vw, 2.82rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.clients-head p:not(.eyebrow) {
    color: #4b667b;
    font-size: 1.02rem;
    line-height: 1.58;
    margin-inline: auto;
    max-width: 760px;
}

.clients-logo-strip {
    align-items: center;
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    border: 1px solid rgba(188, 207, 220, 0.72);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(4, 20, 33, 0.08);
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    list-style: none;
    margin: 48px auto 0;
    max-width: 1180px;
    min-height: 148px;
    padding: 24px 34px;
}

.clients-logo-strip li {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 94px;
}

.client-logo {
    filter: saturate(0.88);
    height: auto;
    max-height: 64px;
    max-width: 198px;
    object-fit: contain;
    object-position: center;
    transition: filter 160ms ease, transform 160ms ease;
    width: auto;
}

.client-logo-square {
    max-height: 66px;
    max-width: 92px;
}

.client-logo-civic {
    max-height: 72px;
    max-width: 162px;
}

.clients-logo-strip li:hover .client-logo,
.clients-logo-strip li:focus-within .client-logo {
    filter: saturate(1);
    transform: translateY(-1px);
}

.knowledge-section {
    background: #f7fbfe;
    padding: 58px 0 64px;
    position: relative;
}

.knowledge-head {
    align-items: start;
    display: grid;
    gap: 58px;
    grid-template-columns: 0.52fr 0.48fr;
    margin-bottom: 34px;
    position: relative;
    z-index: 2;
}

.knowledge-head h2 {
    color: #19314c;
}

.knowledge-head p {
    color: var(--muted);
    align-self: end;
    font-size: 1.02rem;
    line-height: 1.62;
}

.knowledge-layout {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: 0.36fr 0.42fr 0.22fr;
    position: relative;
    z-index: 2;
}

.chapter-cover {
    margin: 0;
}

.chapter-cover img {
    border-radius: 7px;
    box-shadow: var(--shadow-soft);
    max-height: 520px;
    object-fit: contain;
}

.chapter-feature h3 {
    color: #1c3b69;
    font-size: clamp(1.78rem, 2.55vw, 2.75rem);
    font-weight: 830;
}

.chapter-feature p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.62;
}

.chapter-feature .author {
    color: #2d5a7b;
    font-weight: 800;
    margin-bottom: 14px;
}

.content-menu {
    display: grid;
    gap: 16px;
}

.content-menu a {
    align-items: center;
    background: var(--white);
    border: 1px solid #d9e6ef;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(4, 20, 33, 0.08);
    color: #1c3651;
    display: grid;
    font-weight: 800;
    gap: 12px;
    grid-template-columns: 44px 1fr auto;
    min-height: 86px;
    padding: 16px;
    text-decoration: none;
}

.knowledge-section .portfolio-note {
    color: var(--muted);
}

.knowledge-section > .container-xxl > .btn {
    display: table;
    margin: 26px auto 0;
    min-height: 42px;
    padding: 0.58rem 1.05rem;
    position: relative;
    z-index: 2;
}

.final-cta {
    background:
        radial-gradient(circle at 72% 48%, rgba(255, 122, 24, 0.18), transparent 27%),
        linear-gradient(115deg, #041421, #082a45);
    color: var(--white);
    overflow: hidden;
    padding: 62px 0 56px;
    position: relative;
}

.cta-grid {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: 0.58fr 0.18fr 0.24fr;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    max-width: 620px;
}

.final-cta p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.03rem;
    line-height: 1.62;
    max-width: 640px;
}

.project-link {
    align-self: end;
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.cta-tech {
    aspect-ratio: 1;
    border: 3px solid var(--orange-500);
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
    max-width: 250px;
    opacity: 0.95;
    position: relative;
}

.cta-tech::before,
.cta-tech::after {
    border: 2px solid rgba(255, 122, 24, 0.55);
    clip-path: inherit;
    content: "";
    inset: 25%;
    position: absolute;
}

.cta-tech::after {
    inset: 42%;
}

.site-footer {
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.68);
    padding: 40px 0 26px;
}

.footer-top {
    align-items: center;
    display: flex;
    gap: 30px;
    margin-bottom: 28px;
}

.footer-top p {
    margin: 0;
}

.footer-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.footer-grid nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-grid h2 {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.footer-grid a,
.footer-languages a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    text-decoration: none;
}

.footer-grid a:hover,
.footer-languages a:hover {
    color: var(--orange-400);
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 18px;
}

.footer-bottom p {
    font-size: 0.84rem;
    margin: 0;
}

.footer-languages {
    display: flex;
    gap: 14px;
}

.image-lightbox {
    align-items: center;
    background: rgba(0, 0, 0, 0.86);
    inset: 0;
    justify-content: center;
    padding: 34px;
    position: fixed;
    z-index: 3000;
}

.image-lightbox:not([hidden]) {
    display: flex;
}

.image-lightbox img {
    max-height: 92vh;
    max-width: 94vw;
}

.lightbox-close {
    background: var(--orange-500);
    border: 0;
    color: var(--white);
    font-size: 2rem;
    height: 48px;
    position: absolute;
    right: 22px;
    top: 18px;
    width: 48px;
}

@media (max-width: 1199.98px) {
    .site-header .nav-link {
        font-size: 0.72rem;
        padding-inline: 0.42rem !important;
    }

    .header-tools {
        gap: 8px;
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 4.2vw, 3.35rem);
    }

    .hero-grid {
        grid-template-columns: minmax(310px, 0.38fr) minmax(0, 0.62fr);
    }

    .hero-screen-analytics {
        left: 18%;
        width: 60%;
    }

    .hero-screen-governance {
        width: 39%;
    }

    .hero-screen-ai {
        width: 40%;
    }

    .hero-circuitry::before,
    .hero-circuitry::after {
        box-shadow: 90px -26px 0 rgba(255, 122, 24, 0.32);
    }

    .platform-layout,
    .mp5-layout {
        grid-template-columns: 1fr;
    }

    .platform-aside {
        max-width: 760px;
    }

    .ecosystem-diagram {
        grid-template-columns: minmax(280px, 1fr) 248px minmax(280px, 1fr);
        max-width: 1010px;
    }

    .ecosystem-section h2 {
        font-size: clamp(2.15rem, 3.6vw, 2.65rem);
    }

    .mp5-layout {
        gap: 34px;
    }

    .mp5-copy {
        max-width: 760px;
    }

    .mp5-copy h2 {
        max-width: 760px;
    }

    .clients-logo-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: auto;
    }
}

/* Home V2: abertura institucional */
.home-v2-hero-proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 1.75rem 0 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    list-style: none;
}

.home-v2-hero-proofs li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.home-v2-hero-proofs span {
    color: var(--brand-green, #42d392);
    font-weight: 800;
}

.home-v2-fragmentation {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7.5rem) 0;
    background: #f5f7fa;
    color: var(--ink, #172033);
}

.home-v2-section-heading {
    max-width: 790px;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.home-v2-section-heading h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 4.2vw, 4rem);
    line-height: 1.05;
}

.home-v2-section-heading > p:last-child {
    max-width: 720px;
    margin: 0;
    color: #526074;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.7;
}

.home-v2-fragmentation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-v2-fragmentation-card {
    min-width: 0;
    padding: clamp(1.35rem, 2vw, 2rem);
    border: 1px solid rgba(23, 32, 51, 0.1);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 16px 42px rgba(23, 32, 51, 0.07);
}

.home-v2-fragmentation-icon {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1.4rem;
    place-items: center;
    border-radius: 0.75rem;
    background: rgba(29, 100, 242, 0.1);
    color: var(--brand-blue, #1d64f2);
    font-size: 1.35rem;
}

.home-v2-fragmentation-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.18rem;
}

.home-v2-fragmentation-card p {
    margin: 0;
    color: #5c6879;
    line-height: 1.6;
}

.home-v2-fragmentation-close {
    margin: clamp(2rem, 4vw, 3.5rem) 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(23, 32, 51, 0.14);
    color: #26344a;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.home-v2-platform-message {
    color: var(--brand-blue, #1d64f2);
    font-weight: 700;
}

.home-v2-platform-highlight {
    display: block;
    margin: 1.25rem 0 1.75rem;
    padding-left: 1rem;
    border-left: 3px solid var(--brand-green, #42d392);
    font-size: 1.05rem;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .home-v2-fragmentation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .home-v2-hero-proofs {
        display: grid;
        gap: 0.65rem;
    }

    .home-v2-fragmentation-grid {
        grid-template-columns: 1fr;
    }

    .home-v2-fragmentation-card {
        padding: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 58px;
    }

    #exultar,
    #jornadas,
    #exultarone,
    #capacidades,
    #maturidade,
    #ecossistema,
    #mp5,
    #academy,
    #servicos,
    #governo-parceiros,
    #governo,
    #parceiros,
    #clientes,
    #conhecimento,
    #demonstracao,
    #contato,
    #idiomas {
        scroll-margin-top: 84px;
    }

    .site-header .navbar-collapse {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        margin-top: 8px;
        padding: 14px 0 18px;
    }

    .site-header .nav-link {
        font-size: 1rem;
        padding: 8px 0 !important;
    }

    .header-tools {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 12px;
    }

    .hero-section {
        padding-top: 48px;
    }

    .hero-grid,
    .services-head,
    .academy-head,
    .knowledge-head,
    .knowledge-layout,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 390px;
    }

    .screen-stack {
        height: 390px;
    }

    .hero-screen-analytics {
        left: 20%;
        top: 34px;
        width: 60%;
    }

    .hero-screen-governance {
        left: 3%;
        top: 82px;
        width: 39%;
    }

    .hero-screen-ai {
        top: 80px;
        width: 40%;
    }

    .screen-stack::before {
        top: 170px;
    }

    .hero-circuitry {
        height: 250px;
    }

    .journey-track {
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-track::before {
        display: none;
    }

    .domain-tabs,
    .academy-panels,
    .relationship-grid,
    .service-road,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-road {
        gap: 28px;
    }

    .service-road::before {
        bottom: 40px;
        height: auto;
        left: 50%;
        right: auto;
        top: 40px;
        width: 2px;
    }

    .ecosystem-diagram {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .ecosystem-diagram::before,
    .ecosystem-diagram::after {
        display: none;
    }

    .eco-left article,
    .eco-side article {
        grid-template-columns: 70px 1fr;
        text-align: left;
    }

    .eco-left article .hex,
    .eco-left article div {
        grid-column: auto;
        grid-row: auto;
    }

    .eco-core {
        height: 210px;
        margin-inline: auto;
        order: -1;
        width: 230px;
    }

    .ecosystem-section {
        padding: 62px 0 68px;
    }

    .ecosystem-section h2 {
        margin-bottom: 38px;
    }

    .mp5-section {
        padding: 50px 0 42px;
    }

    .mp5-book {
        margin-top: 16px;
        max-height: 430px;
    }

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

    .mp5-track::before {
        display: none;
    }

    .maturity-road ol {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .maturity-road ol::before {
        display: none;
    }

    .maturity-road li {
        clip-path: none;
        text-align: left;
    }

    .maturity-road li::after {
        bottom: -15px;
        left: 24px;
        transform: none;
    }

    .governance-foundation {
        justify-content: flex-start;
        width: 100%;
    }

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

@media (max-width: 767.98px) {
    .container-xxl {
        padding-inline: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 11vw, 3.45rem);
        line-height: 1.02;
        max-width: 100%;
    }

    .hero-controls,
    .button-row,
    .gallery-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-controls {
        margin-top: 22px;
    }

    .hero-tab,
    .hero-arrow,
    .button-row .btn,
    .button-row button {
        width: 100%;
    }

    .hero-section {
        padding-top: 44px;
    }

    .hero-visual {
        min-height: 310px;
    }

    .screen-stack {
        height: 310px;
    }

    .hero-screen-analytics {
        left: 11%;
        top: 34px;
        width: 78%;
    }

    .hero-screen-governance {
        left: -4%;
        top: 96px;
        width: 43%;
    }

    .hero-screen-ai {
        right: -4%;
        top: 92px;
        width: 44%;
    }

    .screen-stack::before {
        height: 150px;
        top: 140px;
    }

    .hero-circuitry {
        height: 185px;
    }

    .journey-track {
        grid-template-columns: 1fr;
    }

    .ecosystem-section {
        padding: 52px 0 58px;
    }

    .ecosystem-section h2 {
        font-size: clamp(2rem, 9vw, 2.55rem);
        margin-bottom: 34px;
    }

    .eco-side {
        gap: 18px;
    }

    .eco-side strong {
        font-size: 1.08rem;
    }

    .eco-side small {
        font-size: 0.9rem;
    }

    .mp5-copy h2 {
        font-size: clamp(2rem, 8.8vw, 2.55rem);
        max-width: 100%;
    }

    .mp5-book {
        max-height: 360px;
    }

    .journey-track a {
        min-height: auto;
    }

    .gallery-panel figcaption {
        grid-template-columns: 1fr;
    }

    .capability-tabs {
        gap: 12px;
    }

    .mp5-track {
        grid-template-columns: 1fr;
    }

    .relationship-panel {
        min-height: auto;
        padding: 44px 22px;
    }

    .clients-section {
        padding: 54px 0 60px;
    }

    .clients-head h2 {
        font-size: clamp(1.95rem, 8vw, 2.45rem);
    }

    .clients-logo-strip {
        gap: 18px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 36px;
        padding: 22px;
    }

    .clients-logo-strip li {
        min-height: 86px;
    }

    .client-logo {
        max-height: 58px;
        max-width: 150px;
    }

    .client-logo-civic {
        max-height: 64px;
        max-width: 128px;
    }

    .knowledge-layout {
        gap: 28px;
    }

    .content-menu a {
        min-height: 68px;
    }
}

@media (max-width: 420px) {
    .hero-section {
        min-height: 820px;
    }

    .hero-visual {
        min-height: 255px;
    }

    .screen-stack {
        height: 255px;
    }

    .hero-screen-analytics {
        left: 8%;
        top: 30px;
        width: 84%;
    }

    .hero-screen-governance {
        left: -10%;
        top: 86px;
        width: 45%;
    }

    .hero-screen-ai {
        right: -10%;
        top: 84px;
        width: 47%;
    }

    .screen-stack::before {
        height: 130px;
        top: 115px;
    }

    .hero-circuitry {
        height: 150px;
    }

    .domain-tabs button {
        font-size: 0.68rem;
    }

    .clients-logo-strip {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
/* =========================================================
   HEADER / NAVEGAÇÃO PRINCIPAL
   ========================================================= */

.site-header .site-navbar {
    min-height: 82px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
}

/* Menu principal */
.site-header .main-navigation {
    gap: 0.15rem;
}

.site-header .main-navigation .nav-link {
    position: relative;
    padding: 0.8rem 0.72rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Indicador discreto no hover */
.site-header .main-navigation .nav-link::after {
    content: "";
    position: absolute;
    left: 0.72rem;
    right: 0.72rem;
    bottom: 0.42rem;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.site-header .main-navigation .nav-link:hover::after,
.site-header .main-navigation .nav-link:focus-visible::after {
    transform: scaleX(1);
}

/* Área de ferramentas */
.site-header .header-tools {
    gap: 0.8rem;
}

.site-header .login-link {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

/* CTA principal do header */
.site-header .header-cta {
    padding: 0.65rem 1rem;
    font-size: 0.94rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Idiomas */
.language-switcher a span[aria-hidden="true"] {
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1;
}

.language-switcher a.active {
    color: var(--white);
}

/* Ajuste para notebooks / telas intermediárias */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .site-header .main-navigation .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        font-size: 0.94rem;
    }

    .site-header .header-tools {
        margin-left: 0.6rem !important;
        gap: 0.55rem;
    }

    .site-header .header-cta {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        font-size: 0.88rem;
    }
}

/* Menu mobile */
@media (max-width: 1199.98px) {
    .site-header .main-navigation {
        padding-top: 1rem;
    }

    .site-header .main-navigation .nav-link {
        padding: 0.8rem 0;
        font-size: 1.05rem;
    }

    .site-header .main-navigation .nav-link::after {
        display: none;
    }

    .site-header .header-tools {
        padding: 0.75rem 0 1rem;
    }
}

/* Home V2 header alignment with approved ExultarOne mockup */
.site-header .site-navbar { min-height: 72px; padding-top: .45rem; padding-bottom: .45rem; }
.site-header .brand-logo-exultarone { display:block; width: 178px; height:auto; object-fit:contain; }
.site-header .main-navigation .nav-link { font-size:.86rem; padding:.7rem .58rem; }
.site-header .header-tools { gap:.65rem; }
.site-header .login-link { font-size:.82rem; }
.site-header .header-cta { font-size:.84rem; padding:.62rem .9rem; }
.site-header .language-switcher a { font-size:.72rem; }
@media (max-width:1199.98px) {
  .site-header .brand-logo-exultarone { width:155px; }
}
