@charset "UTF-8";

:root {
    --blue-950: #042b58;
    --blue-900: #07396f;
    --blue-800: #0754a6;
    --blue-700: #0f66c2;
    --blue-100: #e9f4ff;
    --green-700: #2c9a49;
    --green-600: #3bae57;
    --green-500: #52bd62;
    --green-100: #eaf8ed;
    --yellow-500: #ffd21d;
    --yellow-100: #fff8cf;
    --ink: #12325b;
    --muted: #66778d;
    --line: #dce5ef;
    --soft: #f4f8fc;
    --white: #ffffff;
    --shadow: 0 16px 40px rgba(4, 43, 88, .12);
    --radius: 18px;
    --container: 1140px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

.section {
    padding: 74px 0;
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    color: var(--blue-900);
    box-shadow: var(--shadow);
}

.skip-link:focus {
    top: 12px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.mobile-only {
    display: none;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 78px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(10, 69, 128, .08);
    backdrop-filter: blur(12px);
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand img {
    width: 116px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 31px;
    font-size: 14px;
    font-weight: 700;
    color: #2c3746;
}

.main-nav a {
    position: relative;
    padding: 29px 0 26px;
    transition: color .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 2px;
    background: var(--blue-700);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--blue-800);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.online {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #3a4758;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.online i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39ad53;
    box-shadow: 0 0 0 4px rgba(57, 173, 83, .13);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    border-radius: 10px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--blue-900);
    transition: transform .25s, opacity .25s;
}

/* Buttons */
.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(4, 43, 88, .16);
}

.btn-small {
    min-height: 42px;
    padding-inline: 19px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
}

.btn-green {
    color: #fff;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
}

.btn-yellow {
    color: var(--blue-950);
    background: var(--yellow-500);
}

.btn-light {
    color: var(--blue-800);
    background: #fff;
}

.btn-outline {
    color: var(--blue-800);
    background: #fff;
    border-color: #ccd9e8;
}

.btn-outline-blue {
    color: var(--blue-800);
    border-color: var(--blue-700);
    background: transparent;
}

/* Flash */
.flash {
    position: relative;
    z-index: 80;
    color: #fff;
    font-weight: 700;
}

.flash.success {
    background: #278d43;
}

.flash.error {
    background: #bd3543;
}

.flash .container {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.flash button {
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 575px;
    background: var(--blue-900);
}

.hero-slides {
    position: relative;
    min-height: 575px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(7, 68, 132, .2), rgba(7, 68, 132, 0)),
        var(--slide-image) center / cover no-repeat;
    transition: opacity .55s ease;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 54%;
    background: linear-gradient(135deg, #0751a3, #032f68);
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
}

.hero-overlay::after {
    content: "";
    position: absolute;
    left: 31%;
    bottom: 0;
    width: 17%;
    height: 34%;
    background: var(--slide-accent);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    opacity: .95;
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding-bottom: 80px;
}

.hero-copy {
    width: min(410px, 42%);
    color: #fff;
}

.hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 13px;
    border-radius: 5px;
    color: var(--blue-950);
    background: var(--yellow-500);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy time {
    display: block;
    margin: 16px 0 7px;
    color: #d7e8fb;
    font-size: 13px;
    font-weight: 700;
}

.hero-copy h1 {
    max-width: 380px;
    margin: 0 0 12px;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.06;
    letter-spacing: -.04em;
}

.hero-copy p {
    max-width: 310px;
    margin: 0 0 27px;
    color: #d5e6f8;
    font-size: 16px;
}

.slider-arrow {
    position: absolute;
    z-index: 8;
    top: 44%;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    color: #fff;
    background: rgba(5, 47, 98, .24);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.slider-arrow.prev {
    left: 22px;
}

.slider-arrow.next {
    right: 22px;
}

.slider-panel {
    position: absolute;
    z-index: 9;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    min-height: 89px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0 30px;
    border-radius: 12px 12px 0 0;
    background: #fff;
    box-shadow: 0 -7px 30px rgba(7, 53, 103, .12);
}

.slider-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(125px, 1fr));
    align-self: stretch;
}

.slider-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    border: 0;
    border-right: 1px solid #e5ebf2;
    color: #66778a;
    background: transparent;
    cursor: pointer;
}

.slider-tab strong {
    color: var(--ink);
    font-size: 22px;
}

.slider-tab span {
    font-size: 13px;
    font-weight: 700;
}

.slider-tab::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 12px;
    height: 3px;
    border-radius: 5px;
    background: var(--green-500);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.slider-tab.is-active::after {
    transform: scaleX(1);
}

.slider-tab.is-active {
    color: var(--blue-900);
}

.slider-status {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 25px;
}

.counter {
    color: #63758a;
    font-size: 13px;
    white-space: nowrap;
}

.counter b {
    color: var(--blue-900);
}

.progress {
    position: relative;
    width: 118px;
    height: 5px;
    border-radius: 99px;
    background: #dce3ea;
    overflow: hidden;
}

.progress i {
    display: block;
    width: 0;
    height: 100%;
    background: var(--green-600);
}

.round-button {
    width: 38px;
    height: 38px;
    border: 1px solid #b8cce3;
    border-radius: 50%;
    color: var(--blue-800);
    background: #fff;
    font-weight: 900;
    cursor: pointer;
}

/* Generic headings */
.section-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.section-title.centered {
    text-align: center;
}

.section-title h2,
.section-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.section-title > span {
    display: block;
    width: 44px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--green-500);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 28px;
}

.text-link {
    color: var(--blue-700);
    font-size: 14px;
    font-weight: 900;
}

/* About */
.about {
    padding-top: 78px;
    padding-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 465px;
    align-items: stretch;
}

.about-copy {
    padding: 44px 50px 44px 35px;
    background:
        radial-gradient(circle at 10% 10%, rgba(22, 112, 210, .08), transparent 28%),
        #fff;
}

.about-copy h2 {
    margin: 0;
    font-size: clamp(36px, 4.1vw, 56px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.about-copy > p {
    max-width: 430px;
    margin: 18px 0 25px;
    color: var(--muted);
}

.about-photo {
    position: relative;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    min-height: 465px;
    object-fit: cover;
    object-position: center;
}

.about-photo::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 21%);
}

.corner-detail {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 92px;
    height: 92px;
    background: var(--yellow-500);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.process {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
}

.process > i {
    height: 2px;
    background: linear-gradient(90deg, var(--green-500), #dce7f1);
}

.process-item {
    text-align: center;
    font-size: 13px;
    color: #3d5572;
}

.process-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    border: 2px solid;
    border-radius: 50%;
    font-size: 25px;
    font-weight: 900;
}

.process-icon.people {
    color: var(--green-600);
}

.process-icon.idea {
    color: var(--blue-700);
}

.process-icon.result {
    color: #e5b80b;
}

/* Stats */
.stats-section {
    background:
        radial-gradient(circle at 80% 30%, rgba(7, 101, 194, .08), transparent 23%),
        linear-gradient(180deg, #eff8ff 0%, #f8fbfe 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.18fr;
    gap: 16px;
    margin-top: 30px;
}

.stat-card,
.region-card {
    min-height: 155px;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(11, 58, 106, .08);
}

.stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card strong {
    display: block;
    font-size: 39px;
    line-height: 1;
}

.stat-card span {
    margin-top: 8px;
    font-weight: 800;
    line-height: 1.2;
}

.stat-card.green {
    color: #fff;
    background: linear-gradient(145deg, #43b75b, #278f44);
}

.stat-card.blue {
    color: #fff;
    background: linear-gradient(145deg, #1670d2, #064e9c);
}

.stat-card.yellow {
    color: var(--blue-950);
    background: linear-gradient(145deg, #ffdb36, #ffc817);
}

.stat-card.white {
    color: var(--blue-800);
    background: #fff;
    border: 1px solid #d6e3ee;
}

.region-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.55);
    box-shadow: none;
}

.region-card strong {
    font-size: 14px;
    text-align: center;
}

.mini-map {
    position: relative;
    width: 120px;
    height: 90px;
    margin-inline: auto;
    border: 2px solid #a8bdd1;
    border-radius: 46% 54% 42% 58% / 61% 42% 58% 39%;
    transform: rotate(-6deg);
}

.mini-map::before,
.mini-map::after {
    content: "";
    position: absolute;
    border: 1px solid #b8c8d7;
    border-radius: 50%;
}

.mini-map::before {
    inset: 12px 20px;
}

.mini-map::after {
    inset: 28px 8px 12px 35px;
}

.mini-map span {
    position: absolute;
    z-index: 2;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-600);
    box-shadow: 0 0 0 3px rgba(59, 174, 87, .12);
}

/* Projects */
.projects {
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1.22fr .88fr;
    gap: 22px;
}

.project-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(5, 48, 98, .08);
}

.project-featured {
    min-height: 355px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
}

.project-featured .project-content {
    padding: 32px;
}

.project-featured img {
    width: 100%;
    height: 100%;
    min-height: 355px;
    object-fit: cover;
}

.project-card h3 {
    margin: 10px 0 8px;
    font-size: 27px;
    line-height: 1.1;
}

.project-card p {
    color: var(--muted);
    font-size: 14px;
}

.tag {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    padding: 0 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.tag.green {
    background: var(--green-600);
}

.tag.blue {
    background: var(--blue-700);
}

.project-progress-label {
    color: var(--muted);
    font-size: 14px;
}

.project-progress-label strong {
    color: var(--green-600);
    font-size: 21px;
}

.project-progress {
    height: 5px;
    margin: 8px 0 20px;
    border-radius: 10px;
    overflow: hidden;
    background: #e5eaf0;
}

.project-progress span {
    display: block;
    height: 100%;
    background: var(--green-600);
}

.project-progress.blue span {
    background: var(--blue-700);
}

.projects-side {
    display: grid;
    gap: 18px;
}

.project-card.compact {
    min-height: 166px;
    display: grid;
    grid-template-columns: 1fr 38%;
}

.project-card.compact .project-content {
    padding: 22px 24px;
}

.project-card.compact h3 {
    margin-top: 9px;
    font-size: 21px;
}

.project-card.compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Transparency */
.transparency {
    padding-top: 0;
}

.transparency-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    display: grid;
    grid-template-columns: 1.08fr 1fr .92fr;
    gap: 35px;
    padding: 38px 48px;
    border-radius: var(--radius);
    color: #fff;
    background:
        radial-gradient(circle at 33% 70%, rgba(18, 112, 210, .35), transparent 20%),
        linear-gradient(135deg, #064b94, #032c5c 65%, #05254a);
    box-shadow: var(--shadow);
}

.transparency-card::after {
    content: "A";
    position: absolute;
    right: 26px;
    bottom: -72px;
    color: rgba(49, 113, 177, .2);
    font-size: 240px;
    font-weight: 900;
    line-height: 1;
}

.transparency-intro,
.finance-summary,
.transparency-action {
    position: relative;
    z-index: 2;
}

.transparency-intro h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.07;
}

.transparency-intro p,
.transparency-action p {
    color: #ccdef1;
    font-size: 13px;
}

.search-box {
    height: 39px;
    display: grid;
    grid-template-columns: 1fr 38px;
    margin-top: 16px;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
}

.search-box input {
    min-width: 0;
    padding: 0 13px;
    border: 0;
    outline: 0;
    color: var(--ink);
}

.search-box button {
    border: 0;
    color: var(--blue-800);
    background: #fff;
    cursor: pointer;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 11px;
}

.quick-links a {
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    color: #d7e8f8;
    font-size: 10px;
}

.finance-summary {
    padding-inline: 28px;
    border-inline: 1px solid rgba(255,255,255,.18);
}

.finance-summary h3 {
    margin: 0 0 16px;
    font-size: 13px;
}

.finance-layout {
    display: grid;
    grid-template-columns: 106px 1fr;
    align-items: center;
    gap: 16px;
}

.donut {
    width: 105px;
    height: 105px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(
        #1474d3 0 45%,
        #48b75d 45% 75%,
        #ffd31f 75% 90%,
        #82a5c9 90% 100%
    );
}

.donut span {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #064077;
}

.finance-layout ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 11px;
}

.finance-layout li {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    gap: 7px;
    align-items: center;
    margin-bottom: 7px;
}

.finance-layout li i {
    width: 7px;
    height: 7px;
    border-radius: 2px;
}

.finance-layout li i.blue { background: #1474d3; }
.finance-layout li i.green { background: #48b75d; }
.finance-layout li i.yellow { background: #ffd31f; }
.finance-layout li i.light { background: #82a5c9; }

.updated {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    margin-top: 17px;
    padding: 0 12px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 6px;
    color: #d8f3df;
    font-size: 11px;
}

.transparency-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.transparency-action .btn {
    margin-top: 20px;
}

/* Participation */
.participation {
    padding-top: 0;
}

.participation-grid {
    display: grid;
    grid-template-columns: .86fr 1.54fr;
    gap: 18px;
}

.proposal-card,
.agenda-card {
    min-height: 320px;
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(6, 50, 101, .09);
}

.proposal-card {
    padding: 30px 35px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(255,255,255,.16), transparent 31%),
        linear-gradient(135deg, #38ad50, #269342);
}

.proposal-heading {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
}

.proposal-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 12px;
    font-size: 31px;
}

.proposal-card h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1.08;
}

.proposal-card p {
    margin: 9px 0 0;
    color: #e5f7e9;
    font-size: 13px;
}

.proposal-form {
    margin-top: 22px;
}

.proposal-form textarea {
    width: 100%;
    min-height: 82px;
    resize: vertical;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.08);
}

.proposal-form textarea::placeholder {
    color: #d7f1dc;
}

.proposal-form .btn {
    width: 100%;
    margin-top: 12px;
}

.agenda-card {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}

.agenda-list {
    padding: 29px 33px;
}

.agenda-list h2 {
    margin: 0 0 18px;
    font-size: 26px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 13px;
    bottom: 20px;
    width: 2px;
    background: #bcd3e9;
}

.agenda-item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 15px;
}

.agenda-item time {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid #d8e5f0;
    border-radius: 50%;
    background: #fff;
}

.agenda-item time small {
    color: var(--green-600);
    font-size: 9px;
    font-weight: 900;
}

.agenda-item time strong {
    color: var(--blue-800);
    font-size: 18px;
    line-height: 1;
}

.agenda-item h3 {
    margin: 0;
    font-size: 14px;
}

.agenda-item p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.agenda-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA */
.cta-section {
    padding: 34px 0;
    background:
        linear-gradient(135deg, rgba(8, 83, 166, .06), rgba(255,255,255,.94)),
        #f5f9fd;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr auto;
    align-items: center;
    gap: 24px;
}

.cta-copy {
    display: grid;
    grid-template-columns: 105px 1fr;
    align-items: center;
}

.cta-copy h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.05;
}

.cta-copy p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.cta-shapes {
    position: relative;
    width: 90px;
    height: 82px;
}

.cta-shapes::before,
.cta-shapes::after {
    content: "";
    position: absolute;
    transform: rotate(45deg);
}

.cta-shapes::before {
    width: 56px;
    height: 56px;
    left: 4px;
    top: 22px;
    background: var(--yellow-500);
}

.cta-shapes::after {
    width: 48px;
    height: 48px;
    right: 4px;
    top: 0;
    background: var(--blue-700);
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 1px solid #cddbe8;
    border-radius: 8px;
    outline: none;
    background: #fff;
}

/* Footer */
.site-footer {
    color: #dce9f6;
    background: linear-gradient(135deg, #063b74, #03284f);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .7fr .7fr 1.35fr 1fr;
    gap: 40px;
    padding: 42px 0 30px;
}

.footer-brand img {
    width: 140px;
    filter: brightness(1.15);
}

.site-footer h3 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 13px;
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 0 0 6px;
    color: #c2d5e7;
    font-size: 11px;
}

.footer-online {
    color: #bfe9c8;
    font-size: 11px;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.socials a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    margin: 0;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
}

.footer-bottom {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #9fb9d2;
    font-size: 10px;
}

/* Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(255, 210, 29, .75);
    outline-offset: 3px;
}

/* Tablet */
@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 130px 1fr auto;
        gap: 18px;
    }

    .main-nav {
        gap: 18px;
        font-size: 12px;
    }

    .online {
        display: none;
    }

    .hero-overlay::before {
        width: 62%;
    }

    .hero-copy {
        width: 48%;
    }

    .slider-tabs {
        grid-template-columns: repeat(4, minmax(105px, 1fr));
    }

    .slider-tab {
        padding-inline: 12px;
    }

    .slider-tab strong {
        font-size: 18px;
    }

    .slider-status .progress {
        width: 70px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .region-card {
        grid-column: 1 / -1;
        grid-template-columns: auto auto;
        justify-content: center;
    }

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

    .transparency-action {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .transparency-action .btn {
        margin: 0;
    }

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

    .cta-grid {
        grid-template-columns: 1fr 1.2fr;
    }

    .cta-grid > .btn {
        grid-column: 2;
    }
}

/* Mobile navigation */
@media (max-width: 860px) {
    .site-header {
        height: 70px;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .brand img {
        width: 105px;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .main-nav {
        position: fixed;
        z-index: 99;
        inset: 70px 0 auto 0;
        display: grid;
        gap: 0;
        padding: 16px 20px 26px;
        background: #fff;
        box-shadow: 0 16px 35px rgba(4, 43, 88, .18);
        transform: translateY(-130%);
        opacity: 0;
        visibility: hidden;
        transition: transform .28s ease, opacity .28s ease, visibility .28s;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 14px 4px;
        border-bottom: 1px solid #edf1f5;
    }

    .main-nav a::after {
        display: none;
    }

    .header-actions .btn {
        min-height: 39px;
        padding-inline: 13px;
        font-size: 12px;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero,
    .hero-slides {
        min-height: 690px;
    }

    .hero-slide {
        background-position: 62% center;
    }

    .hero-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(3, 40, 79, .1) 0%, rgba(3, 40, 79, .96) 68%);
    }

    .hero-overlay::before {
        width: 100%;
        height: 58%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
        background: linear-gradient(180deg, rgba(7, 81, 163, .4), #053b76);
    }

    .hero-overlay::after {
        left: auto;
        right: 0;
        width: 28%;
        height: 18%;
    }

    .hero-content {
        align-items: end;
        min-height: 610px;
        padding-bottom: 125px;
    }

    .hero-copy {
        width: 100%;
        max-width: 550px;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 9vw, 48px);
    }

    .slider-arrow {
        top: 33%;
    }

    .slider-panel {
        min-height: 88px;
        grid-template-columns: 1fr auto;
        padding: 0 16px;
    }

    .slider-tabs {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .slider-tabs::-webkit-scrollbar {
        display: none;
    }

    .slider-tab {
        min-width: 135px;
    }

    .slider-tab:nth-child(n+3) {
        display: none;
    }

    .slider-status .progress {
        display: none;
    }

    .slider-status {
        padding-left: 12px;
    }

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

    .about-copy {
        padding: 30px 0 42px;
    }

    .about-photo {
        min-height: 380px;
    }

    .about-photo img {
        min-height: 380px;
    }

    .about-photo::before {
        background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,0) 22%);
    }

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

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

    .project-featured {
        grid-template-columns: 1fr 1fr;
    }

    .transparency-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .finance-summary {
        padding: 25px 0;
        border-inline: 0;
        border-block: 1px solid rgba(255,255,255,.18);
    }

    .transparency-action {
        grid-column: auto;
    }

    .agenda-card {
        grid-template-columns: 1fr 40%;
    }

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

    .cta-grid > .btn {
        grid-column: auto;
    }

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

/* Small phones */
@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 54px 0;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .header-actions .btn {
        font-size: 0;
        width: 42px;
        padding: 0;
    }

    .header-actions .btn::before {
        content: "✉";
        font-size: 17px;
    }

    .hero,
    .hero-slides {
        min-height: 640px;
    }

    .hero-slide {
        background-position: 68% 0;
        background-size: auto 59%;
        background-color: var(--blue-900);
        background-repeat: no-repeat;
    }

    .hero-content {
        min-height: 565px;
        padding-bottom: 105px;
    }

    .hero-copy {
        padding-top: 280px;
    }

    .hero-copy h1 {
        margin-top: 5px;
        font-size: 36px;
    }

    .hero-copy p {
        font-size: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        top: 28%;
    }

    .slider-arrow.prev {
        left: 12px;
    }

    .slider-arrow.next {
        right: 12px;
    }

    .slider-panel {
        width: calc(100% - 28px);
        min-height: 74px;
        padding: 0 10px;
        border-radius: 12px 12px 0 0;
    }

    .slider-tab {
        min-width: 110px;
        padding-inline: 8px;
    }

    .slider-tab strong {
        font-size: 16px;
    }

    .slider-tab span {
        font-size: 11px;
    }

    .slider-status {
        gap: 7px;
    }

    .round-button {
        width: 34px;
        height: 34px;
    }

    .process {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .process > i {
        display: none;
    }

    .process-item {
        font-size: 11px;
    }

    .process-icon {
        width: 48px;
        height: 48px;
    }

    .about-photo,
    .about-photo img {
        min-height: 320px;
    }

    .stats-grid {
        gap: 11px;
    }

    .stat-card {
        min-height: 132px;
        padding: 18px;
    }

    .stat-card strong {
        font-size: 32px;
    }

    .stat-card span {
        font-size: 13px;
    }

    .region-card {
        grid-column: 1 / -1;
        min-height: 128px;
    }

    .project-featured {
        grid-template-columns: 1fr;
    }

    .project-featured img {
        min-height: 230px;
        order: -1;
    }

    .project-card.compact {
        grid-template-columns: 1fr 42%;
    }

    .project-card.compact .project-content {
        padding: 18px;
    }

    .projects-mobile-link {
        margin-top: 20px;
        text-align: center;
    }

    .transparency-card {
        padding: 27px 22px;
    }

    .finance-layout {
        grid-template-columns: 94px 1fr;
    }

    .donut {
        width: 92px;
        height: 92px;
    }

    .transparency-action {
        align-items: stretch;
    }

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

    .agenda-card > img {
        height: 220px;
    }

    .proposal-card {
        padding: 26px 22px;
    }

    .proposal-heading {
        grid-template-columns: 45px 1fr;
    }

    .proposal-icon {
        width: 45px;
        height: 45px;
    }

    .cta-copy {
        grid-template-columns: 76px 1fr;
    }

    .cta-shapes {
        transform: scale(.72);
        transform-origin: left center;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .newsletter-form .btn,
    .cta-grid > .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px 20px;
    }

    .footer-brand,
    .footer-grid > div:nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   REFINAMENTO VISUAL V2
   Ajustes de proporção, alinhamento e estabilidade do layout
   ========================================================= */

html {
    scroll-padding-top: 92px;
}

main section[id] {
    scroll-margin-top: 92px;
}

body {
    background: #ffffff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(calc(100% - 48px), 1180px);
}

.section {
    padding-block: 58px;
}

.site-header {
    height: 76px;
    box-shadow: 0 1px 0 rgba(5, 55, 108, .08);
}

.header-inner {
    grid-template-columns: 142px minmax(0, 1fr) auto;
    gap: 24px;
}

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

.brand img {
    width: 124px;
    max-height: 62px;
    object-fit: contain;
}

.main-nav {
    gap: clamp(16px, 2vw, 30px);
    white-space: nowrap;
}

.header-actions {
    gap: 20px;
}

.hero,
.hero-slides {
    min-height: 550px;
}

.hero-slide {
    isolation: isolate;
    background-position: center 42%;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(4, 47, 96, .05) 47%, rgba(4, 32, 68, .08));
}

.hero-overlay::before {
    width: 55%;
    background: linear-gradient(138deg, #075bb3 0%, #064c99 50%, #03356f 100%);
    clip-path: polygon(0 0, 68% 0, 100% 100%, 0 100%);
}

.hero-overlay::after {
    left: 31.5%;
    width: 17.5%;
    height: 32%;
}

.hero-content {
    min-height: 470px;
    padding-bottom: 62px;
}

.hero-copy {
    width: min(430px, 42%);
    padding-left: 8px;
}

.hero-copy h1 {
    max-width: 420px;
    font-size: clamp(38px, 4.05vw, 55px);
    line-height: 1.04;
}

.hero-copy p {
    max-width: 330px;
    font-size: 15px;
}

.slider-panel {
    min-height: 82px;
    padding-inline: 26px;
    border-radius: 11px 11px 0 0;
}

.slider-tabs {
    min-width: 0;
    overflow: hidden;
}

.slider-tab {
    min-width: 0;
    padding-inline: 18px;
}

.slider-tab strong {
    font-size: 20px;
}

.slider-tab::after {
    bottom: 10px;
}

.slider-status {
    padding-left: 20px;
}

.about {
    padding-top: 0;
}

.about-grid {
    min-height: 430px;
}

.about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 48px 38px 34px;
}

.about-copy h2 {
    font-size: clamp(38px, 4vw, 54px);
}

.about-photo img {
    min-height: 430px;
    object-position: center 45%;
}

.process {
    margin-top: 30px;
}

.stats-section {
    padding-block: 48px 52px;
}

.stats-grid {
    gap: 14px;
    margin-top: 27px;
}

.stat-card,
.region-card {
    min-height: 146px;
    padding: 22px;
}

.stat-card strong {
    font-size: 37px;
}

.projects {
    padding-block: 54px 58px;
}

.section-heading {
    margin-bottom: 24px;
}

.projects-grid {
    gap: 18px;
}

.project-featured {
    min-height: 330px;
}

.project-featured img {
    min-height: 330px;
}

.project-featured .project-content {
    padding: 28px;
}

.project-card.compact {
    min-height: 156px;
}

.transparency-card {
    min-height: 250px;
    gap: 30px;
    padding: 34px 42px;
}

.participation-grid {
    gap: 16px;
}

.proposal-card,
.agenda-card {
    min-height: 305px;
}

.agenda-list {
    padding: 27px 30px;
}

.cta-section {
    padding-block: 28px;
}

.site-footer {
    border-top: 4px solid #37a950;
}

.footer-grid {
    padding-block: 38px 27px;
}

@media (max-width: 1180px) {
    .container {
        width: min(calc(100% - 36px), 1120px);
    }

    .header-inner {
        grid-template-columns: 126px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .brand img {
        width: 112px;
    }

    .main-nav {
        gap: 15px;
        font-size: 12px;
    }

    .header-actions {
        gap: 13px;
    }

    .header-actions .btn {
        padding-inline: 15px;
    }
}

@media (max-width: 860px) {
    html {
        scroll-padding-top: 78px;
    }

    main section[id] {
        scroll-margin-top: 78px;
    }

    .container {
        width: min(calc(100% - 32px), 760px);
    }

    .site-header {
        height: 70px;
    }

    .main-nav {
        top: 70px;
        inset: 70px 0 auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .hero,
    .hero-slides {
        min-height: 660px;
    }

    .hero-slide {
        background-position: 62% 18%;
    }

    .hero-content {
        min-height: 590px;
        padding-bottom: 112px;
    }

    .hero-copy {
        width: min(100%, 560px);
        padding-left: 0;
    }

    .slider-panel {
        min-height: 78px;
        padding-inline: 13px;
    }

    .slider-tabs {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .slider-tabs::-webkit-scrollbar {
        display: none;
    }

    .slider-tab,
    .slider-tab:nth-child(n+3) {
        display: flex;
        flex: 0 0 132px;
        scroll-snap-align: center;
    }

    .about-grid {
        min-height: auto;
    }

    .about-copy {
        padding: 42px 4px 44px;
    }

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

    .region-card {
        grid-column: 1 / -1;
    }

    .project-featured {
        min-height: 310px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 24px), 560px);
    }

    .section {
        padding-block: 46px;
    }

    .hero,
    .hero-slides {
        min-height: 632px;
    }

    .hero-slide {
        background-position: 66% top;
        background-size: auto 58%;
    }

    .hero-content {
        min-height: 558px;
        padding-bottom: 99px;
    }

    .hero-copy {
        padding-top: 270px;
    }

    .hero-copy h1 {
        font-size: clamp(32px, 9.3vw, 39px);
    }

    .hero-copy .eyebrow {
        min-height: 27px;
        font-size: 10px;
    }

    .slider-panel {
        width: calc(100% - 24px);
        min-height: 72px;
    }

    .slider-tabs {
        max-width: calc(100vw - 122px);
    }

    .slider-tab,
    .slider-tab:nth-child(n+3) {
        flex-basis: 112px;
        padding-inline: 8px;
    }

    .slider-tab strong {
        font-size: 16px;
    }

    .slider-tab span {
        font-size: 10px;
    }

    .slider-tab::after {
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .counter {
        display: none;
    }

    .about-copy {
        padding-top: 36px;
    }

    .about-photo,
    .about-photo img {
        min-height: 300px;
    }

    .stats-section {
        padding-block: 42px;
    }

    .stat-card,
    .region-card {
        min-height: 126px;
    }

    .project-featured .project-content {
        padding: 24px;
    }

    .project-card.compact {
        min-height: 145px;
    }

    .transparency-card {
        padding: 26px 20px;
    }

    .agenda-list {
        padding: 25px 22px;
    }

    .footer-grid {
        padding-top: 32px;
    }
}

/* =========================================================
   SITE COMPLETO — REFINOS GERAIS E PÁGINAS INTERNAS
   ========================================================= */

:root {
    --header-height: 78px;
    --blue-975: #032448;
    --shadow-soft: 0 12px 34px rgba(4, 43, 88, .09);
    --shadow-card: 0 16px 42px rgba(4, 43, 88, .12);
}

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

body {
    min-width: 320px;
}

svg {
    display: block;
}

.btn svg,
.text-link svg,
.card-link svg,
.axis-card a svg,
.summary-card a svg,
.contact-card > svg:last-child {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Cabeçalho e hover sem deslocamento */
.site-header {
    height: var(--header-height);
    box-shadow: 0 1px 0 rgba(4, 43, 88, .06);
}

.header-inner {
    grid-template-columns: 132px minmax(0, 1fr) auto;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
}

.brand img {
    width: 112px;
}

.main-nav {
    gap: 5px;
    min-width: 0;
}

.main-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 9px;
    color: #26374c;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    transition: color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.main-nav a::after {
    left: 50%;
    right: auto;
    bottom: 4px;
    width: calc(100% - 24px);
    height: 3px;
    border-radius: 999px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
}

.main-nav a:hover {
    color: var(--blue-800);
    background: rgba(15, 102, 194, .07);
}

.main-nav a.active {
    color: var(--blue-800);
    background: rgba(15, 102, 194, .09);
    box-shadow: inset 0 0 0 1px rgba(15, 102, 194, .08);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.header-actions {
    gap: 17px;
}

.header-contact-icon {
    display: none;
}

.header-contact-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.menu-backdrop {
    display: none;
}

/* Flash fixo na estrutura, sem cobrir conteúdo */
.flash {
    position: relative;
    z-index: 89;
}

/* Animação de entrada discreta */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Home — pequenos refinamentos */
.section-title .title-line {
    display: block;
    width: 44px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 99px;
    background: var(--green-500);
}

.section-title > span:not(.section-kicker):not(.title-line) {
    display: none;
}

.section-lead {
    max-width: 690px;
    margin: 18px auto 0;
    color: var(--muted);
}

.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 29px;
    height: 29px;
    opacity: .55;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-card > span:last-child {
    margin-top: 8px;
    font-weight: 800;
    line-height: 1.2;
}

.process-icon svg,
.proposal-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.search-box button svg {
    width: 18px;
    height: 18px;
    margin: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.newsletter-strip {
    padding: 34px 0;
    background: linear-gradient(135deg, #eef7ff, #fff);
    border-top: 1px solid #e3edf6;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr minmax(420px, .95fr);
    align-items: center;
    gap: 34px;
}

.newsletter-inner h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 35px);
    line-height: 1.1;
}

/* CTA global e rodapé */
.global-cta {
    position: relative;
    overflow: hidden;
    padding: 48px 0;
    color: #fff;
    background: linear-gradient(135deg, #0757a9 0%, #06396f 64%, #03264c 100%);
}

.global-cta::before,
.global-cta::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.global-cta::before {
    width: 250px;
    height: 250px;
    right: -70px;
    top: -120px;
    border: 45px solid rgba(255, 255, 255, .07);
    transform: rotate(45deg);
}

.global-cta::after {
    width: 90px;
    height: 90px;
    left: 4%;
    bottom: -55px;
    background: var(--yellow-500);
    transform: rotate(45deg);
    opacity: .95;
}

.global-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.global-cta h2 {
    margin: 0;
    font-size: clamp(29px, 3.5vw, 43px);
    line-height: 1.06;
    letter-spacing: -.035em;
}

.global-cta p {
    margin: 10px 0 0;
    color: #d4e5f6;
}

.section-kicker.light {
    color: #b8edc3;
}

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

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .04);
}

.footer-brand p {
    max-width: 220px;
    margin-top: 14px;
    line-height: 1.55;
}

.site-footer a {
    width: max-content;
    transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover {
    color: #fff;
    transform: translateX(3px);
}

.socials a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.1);
}

/* Hero das páginas internas */
.page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-950));
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 42, 83, .98) 0%, rgba(4, 57, 111, .88) 46%, rgba(4, 43, 88, .28) 100%),
        var(--page-image) center / cover no-repeat;
}

.page-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(50, 178, 84, .14), transparent 36%),
        linear-gradient(180deg, transparent 65%, rgba(3, 36, 72, .28));
}

.page-hero-bg::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -140px;
    width: 310px;
    height: 310px;
    border: 55px solid rgba(255,255,255,.07);
    transform: rotate(45deg);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    padding: 66px 0 72px;
}

.page-hero-inner.compact {
    padding-right: 44%;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: #c8dbed;
    font-size: 12px;
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs strong {
    color: #fff;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: var(--blue-950);
    background: var(--yellow-500);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.page-hero p {
    max-width: 660px;
    margin: 19px 0 0;
    color: #d4e4f4;
    font-size: 17px;
}

.page-hero-projects .page-hero-bg {
    background-position: center 58%;
}

.page-hero-contact .page-hero-bg {
    filter: saturate(.8);
}

.soft-section {
    background: linear-gradient(180deg, #f3f8fd 0%, #f8fbfe 100%);
}

.section-aside {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
}

/* O Vereador */
.profile-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 72px;
}

.profile-media {
    position: relative;
    min-height: 540px;
}

.profile-media::before {
    content: "";
    position: absolute;
    left: -18px;
    top: -18px;
    width: 120px;
    height: 120px;
    background: var(--yellow-500);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.profile-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: 65% center;
    border-radius: 22px;
    box-shadow: var(--shadow-card);
}

.profile-badge {
    position: absolute;
    z-index: 2;
    right: -28px;
    bottom: 32px;
    min-width: 230px;
    padding: 19px 22px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-600), var(--green-700));
    box-shadow: 0 14px 34px rgba(24, 112, 57, .28);
}

.profile-badge strong,
.profile-badge span {
    display: block;
}

.profile-badge strong {
    font-size: 18px;
}

.profile-badge span {
    margin-top: 3px;
    font-size: 12px;
    color: #def3e2;
}

.profile-copy h2,
.presence-copy h2,
.office-copy h2,
.faq-heading h2,
.finance-page-copy h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 49px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.profile-copy > p,
.presence-copy > p,
.office-copy > p,
.faq-heading > p,
.finance-page-copy > p {
    color: var(--muted);
}

.profile-copy blockquote {
    position: relative;
    margin: 27px 0;
    padding: 19px 22px 19px 28px;
    border-left: 4px solid var(--green-600);
    border-radius: 0 11px 11px 0;
    color: var(--blue-900);
    background: var(--green-100);
    font-size: 17px;
    font-weight: 700;
}

.history-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.history-timeline::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-500), var(--blue-700), var(--yellow-500));
}

.history-card {
    position: relative;
    z-index: 1;
    min-height: 255px;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.history-year {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border: 7px solid #eef5fb;
    border-radius: 50%;
    color: #fff;
    background: var(--blue-700);
    box-shadow: 0 0 0 2px var(--blue-700);
    font-size: 15px;
    font-weight: 900;
}

.history-card:nth-child(1) .history-year {
    background: var(--green-600);
    box-shadow: 0 0 0 2px var(--green-600);
}

.history-card.featured .history-year {
    color: var(--blue-950);
    background: var(--yellow-500);
    box-shadow: 0 0 0 2px var(--yellow-500);
}

.history-card h3 {
    margin: 0 0 9px;
    font-size: 23px;
}

.history-card p {
    margin: 0;
    color: var(--muted);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-card {
    min-height: 250px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: #c8d9e8;
    box-shadow: var(--shadow-card);
}

.value-icon,
.mandate-stat-icon,
.summary-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
}

.value-icon svg,
.mandate-stat-icon svg,
.summary-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-icon.green,
.mandate-stat-icon.green,
.summary-icon.green {
    color: var(--green-700);
    background: var(--green-100);
}

.value-icon.blue,
.mandate-stat-icon.blue,
.mandate-stat-icon.white,
.summary-icon.blue {
    color: var(--blue-700);
    background: var(--blue-100);
}

.value-icon.yellow,
.mandate-stat-icon.yellow,
.summary-icon.yellow {
    color: #b28a00;
    background: var(--yellow-100);
}

.value-card h3 {
    margin: 20px 0 8px;
    font-size: 21px;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.profile-action-section {
    padding-top: 0;
}

.profile-action {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 45px 48px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #319f4b, #19743a);
}

.profile-action::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: 18%;
    top: -110px;
    border: 32px solid rgba(255,255,255,.08);
    transform: rotate(45deg);
}

.profile-action > * {
    position: relative;
    z-index: 1;
}

.profile-action h2 {
    margin: 0;
    font-size: clamp(29px, 3vw, 41px);
}

.profile-action p {
    margin: 8px 0 0;
    color: #def2e2;
}

/* Mandato */
.mandate-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.mandate-stat {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.mandate-stat strong {
    margin-top: auto;
    font-size: 43px;
    line-height: 1;
    color: var(--blue-900);
}

.mandate-stat p {
    margin: 7px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.axis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.axis-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    padding: 28px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(145deg, #075bab, #06386d);
    box-shadow: var(--shadow-card);
}

.axis-card:nth-child(2) {
    background: linear-gradient(145deg, #257d3c, #155c2d);
}

.axis-card:nth-child(3) {
    background: linear-gradient(145deg, #1266b6, #07376b);
}

.axis-card:nth-child(4) {
    color: var(--blue-950);
    background: linear-gradient(145deg, #ffdb39, #ffc619);
}

.axis-number {
    position: absolute;
    right: 17px;
    top: 4px;
    color: rgba(255,255,255,.12);
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
}

.axis-card:nth-child(4) .axis-number {
    color: rgba(4,43,88,.12);
}

.axis-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 14px;
    background: rgba(255,255,255,.09);
}

.axis-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.axis-card h3 {
    margin: 27px 0 9px;
    font-size: 24px;
}

.axis-card p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.axis-card:nth-child(4) p {
    color: rgba(4,43,88,.74);
}

.axis-card a {
    position: absolute;
    left: 28px;
    bottom: 27px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 13px;
}

.presence-grid,
.office-map-grid,
.finance-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 68px;
}

.presence-map,
.office-map {
    position: relative;
}

.presence-map img,
.office-map img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.map-floating-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 25px;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
    padding: 17px 19px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 14px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.map-floating-card > span {
    grid-row: 1 / 3;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--green-600);
}

.map-floating-card svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.map-floating-card strong {
    font-size: 16px;
}

.map-floating-card p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 25px 0 29px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #354c68;
    font-weight: 700;
}

.check-list svg {
    width: 22px;
    height: 22px;
    padding: 4px;
    border-radius: 50%;
    color: #fff;
    background: var(--green-600);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    flex: 0 0 auto;
}

.agenda-public-grid {
    display: grid;
    gap: 13px;
}

.agenda-public-card {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(4,43,88,.06);
}

.agenda-public-card time {
    width: 63px;
    height: 63px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 14px;
    color: var(--blue-900);
    background: var(--blue-100);
}

.agenda-public-card time small {
    color: var(--green-700);
    font-size: 9px;
    font-weight: 900;
}

.agenda-public-card time strong {
    font-size: 25px;
    line-height: 1;
}

.agenda-type {
    color: var(--green-700);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.agenda-public-card h3 {
    margin: 2px 0;
    font-size: 18px;
}

.agenda-public-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.agenda-public-card > a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #cbd9e7;
    border-radius: 50%;
    color: var(--blue-700);
    background: #fff;
    font-weight: 900;
    transition: .2s ease;
}

.agenda-public-card > a:hover {
    color: #fff;
    border-color: var(--blue-700);
    background: var(--blue-700);
}

/* Projetos */
.projects-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 30px;
}

.projects-toolbar h2,
.list-heading h2 {
    margin: 0;
    font-size: clamp(29px, 3.4vw, 42px);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.filter-button {
    min-height: 39px;
    padding: 0 15px;
    border: 1px solid #d4e0eb;
    border-radius: 999px;
    color: #4f6278;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
}

.filter-button:hover {
    transform: translateY(-2px);
    color: var(--blue-800);
    border-color: #9fc0de;
}

.filter-button.is-active {
    color: #fff;
    border-color: var(--blue-700);
    background: var(--blue-700);
    box-shadow: 0 8px 18px rgba(15, 102, 194, .2);
}

.project-catalog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.catalog-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.catalog-card[hidden] {
    display: none !important;
}

.catalog-image {
    position: relative;
    height: 225px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.045);
}

.catalog-status {
    position: absolute;
    top: 15px;
    right: 15px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--blue-950);
    background: rgba(255,255,255,.93);
    box-shadow: 0 6px 15px rgba(4,43,88,.12);
    font-size: 10px;
    font-weight: 900;
}

.catalog-content {
    padding: 25px;
}

.catalog-content h3 {
    margin: 11px 0 9px;
    font-size: 23px;
    line-height: 1.15;
}

.catalog-content > p {
    min-height: 65px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.catalog-progress-head {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
    color: var(--muted);
    font-size: 12px;
}

.catalog-progress-head strong {
    color: var(--green-700);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 900;
}

.card-link:hover {
    color: var(--green-700);
}

.empty-state {
    max-width: 620px;
    margin: 30px auto 0;
    padding: 55px 30px;
    text-align: center;
    border: 1px dashed #bfd0df;
    border-radius: 18px;
    color: var(--muted);
    background: #f7fbfe;
}

.empty-state.compact {
    margin: 0;
    max-width: none;
    border: 0;
    border-radius: 0;
}

.empty-state > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    color: var(--blue-700);
    background: var(--blue-100);
}

.empty-state svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.empty-state h3 {
    margin: 0;
    color: var(--ink);
}

.empty-state p {
    margin: 7px 0 18px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.method-card {
    position: relative;
    min-height: 225px;
    padding: 27px;
    border-top: 4px solid var(--green-600);
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.method-card:nth-child(even) {
    border-top-color: var(--blue-700);
}

.method-card > span {
    color: #d9e5ef;
    font-size: 40px;
    font-weight: 900;
}

.method-card h3 {
    margin: 7px 0;
    font-size: 22px;
}

.method-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* Notícias */
.news-feature {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.news-feature-image {
    position: relative;
}

.news-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.news-feature-image .tag {
    position: absolute;
    left: 22px;
    top: 22px;
}

.news-feature-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.news-meta span {
    color: var(--green-700);
}

.news-feature-copy h2 {
    margin: 15px 0 13px;
    font-size: clamp(30px, 3.6vw, 45px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.news-feature-copy p {
    margin: 0 0 25px;
    color: var(--muted);
}

.news-search-panel,
.document-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.search-field {
    min-height: 46px;
    flex: 1;
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid #cedce9;
    border-radius: 9px;
    background: #fff;
}

.search-field svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--blue-700);
    stroke-width: 2;
    stroke-linecap: round;
}

.search-field input {
    min-width: 0;
    width: 100%;
    height: 44px;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.select-field select {
    min-width: 190px;
    height: 46px;
    padding: 0 38px 0 14px;
    border: 1px solid #cedce9;
    border-radius: 9px;
    color: var(--ink);
    background: #fff;
}

.list-heading {
    margin: 42px 0 25px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.news-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.news-card-image {
    position: relative;
    display: block;
    height: 215px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.045);
}

.news-card-image .tag {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.news-card-content {
    padding: 23px;
}

.news-card-content time {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.news-card-content h3 {
    margin: 9px 0;
    font-size: 21px;
    line-height: 1.18;
}

.news-card-content h3 a:hover {
    color: var(--blue-700);
}

.news-card-content p {
    min-height: 64px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.newsletter-page-section {
    padding-top: 0;
}

.newsletter-page-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr minmax(390px, .8fr);
    align-items: center;
    gap: 40px;
    padding: 43px 46px;
    border-radius: 19px;
    color: #fff;
    background: linear-gradient(135deg, #2fa44b, #176b34);
}

.newsletter-page-card::after {
    content: "";
    position: absolute;
    right: -75px;
    top: -100px;
    width: 220px;
    height: 220px;
    border: 38px solid rgba(255,255,255,.08);
    transform: rotate(45deg);
}

.newsletter-page-card > * {
    position: relative;
    z-index: 1;
}

.newsletter-page-card h2 {
    margin: 0;
    font-size: clamp(29px, 3.4vw, 42px);
    line-height: 1.08;
}

.newsletter-page-card p {
    margin: 10px 0 0;
    color: #ddf1e1;
}

.light-form input[type="email"] {
    border-color: rgba(255,255,255,.5);
}

/* Transparência */
.page-hero-transparency {
    min-height: 450px;
    background:
        radial-gradient(circle at 80% 25%, rgba(48, 180, 84, .24), transparent 18%),
        linear-gradient(135deg, #075baa, #03264b 72%);
}

.transparency-hero-visual {
    position: absolute;
    right: max(6%, calc((100vw - var(--container)) / 2));
    top: 50%;
    width: 360px;
    height: 270px;
    transform: translateY(-45%);
}

.hero-donut {
    position: absolute;
    right: 20px;
    top: 3px;
    width: 180px;
    height: 180px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(#1d78d1 0 45%, #4db861 45% 75%, #ffd21d 75% 90%, #7f9fbe 90% 100%);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.hero-donut span {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #06427d;
}

.hero-bars {
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 220px;
    height: 120px;
    display: flex;
    align-items: end;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

.hero-bars i {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: rgba(255,255,255,.75);
}

.hero-bars i:nth-child(1) { height: 36%; }
.hero-bars i:nth-child(2) { height: 72%; background: var(--green-500); }
.hero-bars i:nth-child(3) { height: 51%; }
.hero-bars i:nth-child(4) { height: 90%; background: var(--yellow-500); }
.hero-bars i:nth-child(5) { height: 64%; }

.transparency-summary-section {
    padding-bottom: 22px;
}

.transparency-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.summary-card {
    min-height: 235px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.summary-card > strong {
    margin-top: 20px;
    font-size: 29px;
    color: var(--blue-900);
}

.summary-card > p {
    margin: 6px 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.summary-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--blue-700);
    font-size: 13px;
    font-weight: 900;
}

.finance-page-grid {
    min-height: 440px;
}

.legend-list {
    display: grid;
    gap: 10px;
    max-width: 500px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.legend-list li {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(4,43,88,.05);
    font-size: 13px;
}

.legend-list i {
    width: 9px;
    height: 9px;
    border-radius: 3px;
}

.legend-list i.blue { background: #1474d3; }
.legend-list i.green { background: #48b75d; }
.legend-list i.yellow { background: #ffd31f; }
.legend-list i.light { background: #82a5c9; }

.finance-dashboard {
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 28px;
    padding: 35px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(145deg, #074f98, #032c58);
    box-shadow: var(--shadow-card);
}

.finance-donut-large {
    width: 230px;
    height: 230px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(#1474d3 0 45%, #48b75d 45% 75%, #ffd31f 75% 90%, #82a5c9 90% 100%);
}

.finance-donut-large > span {
    width: 125px;
    height: 125px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 50%;
    background: #063d75;
}

.finance-donut-large strong,
.finance-donut-large small {
    display: block;
}

.finance-donut-large strong {
    font-size: 29px;
}

.finance-donut-large small {
    color: #cde0f1;
}

.finance-metrics {
    display: grid;
    gap: 13px;
}

.finance-metrics > div {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 11px;
    background: rgba(255,255,255,.05);
}

.finance-metrics span,
.finance-metrics strong {
    display: block;
}

.finance-metrics span {
    color: #aecaE3;
    font-size: 10px;
    text-transform: uppercase;
}

.finance-metrics strong {
    margin-top: 3px;
    font-size: 15px;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 11px;
    border-radius: 999px;
    color: #856800;
    background: var(--yellow-100);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.document-toolbar {
    margin-bottom: 20px;
}

.documents-table-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.documents-table {
    width: 100%;
    border-collapse: collapse;
}

.documents-table th,
.documents-table td {
    padding: 17px 18px;
    text-align: left;
    border-bottom: 1px solid #e6edf4;
}

.documents-table th {
    color: #5e7188;
    background: #f4f8fc;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.documents-table td {
    color: #52667c;
    font-size: 13px;
}

.documents-table td strong {
    color: var(--ink);
}

.documents-table tr:last-child td {
    border-bottom: 0;
}

.document-type {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: 10px;
    font-weight: 900;
}

.download-button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #cbd9e7;
    border-radius: 9px;
    color: var(--blue-700);
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.download-button:hover {
    color: #fff;
    border-color: var(--blue-700);
    background: var(--blue-700);
}

.download-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.transparency-help {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 38px 42px;
    border: 1px solid #dce7f0;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.transparency-help h2 {
    margin: 0;
    font-size: clamp(27px, 3vw, 38px);
}

.transparency-help p {
    margin: 7px 0 0;
    color: var(--muted);
}

/* Contato */
.contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: start;
    gap: 56px;
}

.contact-info h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.contact-info > p {
    color: var(--muted);
}

.contact-cards {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

.contact-card {
    display: grid;
    grid-template-columns: 48px 1fr 21px;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(4,43,88,.05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-card:not(.static):hover {
    transform: translateX(5px);
    border-color: #b7cede;
    box-shadow: var(--shadow-soft);
}

.contact-card > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--blue-700);
    background: var(--blue-100);
}

.contact-card > span svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.contact-card small,
.contact-card strong {
    display: block;
}

.contact-card small {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
}

.contact-card strong {
    margin-top: 2px;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.contact-form-card {
    padding: 33px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.contact-form-heading {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

.form-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: var(--green-600);
}

.form-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.contact-form-heading h2 {
    margin: 0;
    font-size: 27px;
}

.contact-form-heading p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label:not(.privacy-check) {
    display: grid;
    gap: 7px;
}

.contact-form label > span {
    color: #41566f;
    font-size: 12px;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cddbe7;
    border-radius: 9px;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.contact-form input,
.contact-form select {
    height: 47px;
    padding: 0 13px;
}

.contact-form textarea {
    min-height: 145px;
    padding: 13px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue-700);
    box-shadow: 0 0 0 4px rgba(15,102,194,.1);
}

.privacy-check {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 9px;
    cursor: pointer;
}

.privacy-check input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
}

.privacy-check span {
    color: var(--muted) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

.btn-block {
    width: 100%;
}

.office-map {
    min-height: 430px;
}

.office-map img {
    height: 430px;
    filter: saturate(.85);
}

.office-pin {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 8px solid rgba(255,255,255,.85);
    border-radius: 50%;
    color: #fff;
    background: var(--green-600);
    box-shadow: 0 10px 25px rgba(27, 124, 58, .3);
    transform: translate(-50%, -50%);
}

.office-pin svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
    gap: 62px;
}

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

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 16px rgba(4,43,88,.05);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: 18px;
    transition: transform .2s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    margin: 0;
    padding: 0 20px 19px;
    color: var(--muted);
    font-size: 14px;
}

/* Responsividade refinada */
@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: 118px minmax(0, 1fr) auto;
        gap: 13px;
    }

    .brand img {
        width: 104px;
    }

    .main-nav a {
        padding-inline: 8px;
        font-size: 12px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-actions .online {
        display: none;
    }

    .header-contact {
        padding-inline: 13px;
        font-size: 12px;
    }

    .value-grid,
    .axis-grid,
    .mandate-stats-grid,
    .transparency-summary-grid,
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-catalog,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .finance-dashboard {
        grid-template-columns: 200px 1fr;
    }

    .finance-donut-large {
        width: 190px;
        height: 190px;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 70px;
    }

    .site-header {
        height: var(--header-height);
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }

    .brand img {
        width: 103px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 103;
        order: 3;
    }

    .header-actions {
        order: 2;
    }

    .header-contact-label {
        display: none;
    }

    .header-contact-icon {
        display: block;
    }

    .header-contact {
        width: 42px;
        min-height: 40px;
        padding: 0;
    }

    .main-nav {
        position: fixed;
        z-index: 102;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: auto;
        width: min(390px, 92vw);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4px;
        padding: 23px 20px 34px;
        overflow-y: auto;
        background: #fff;
        box-shadow: -18px 0 45px rgba(4,43,88,.18);
        transform: translateX(105%);
        opacity: 1;
        visibility: visible;
        transition: transform .28s ease;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav a {
        min-height: 50px;
        justify-content: flex-start;
        padding: 0 15px;
        border: 0;
        border-radius: 10px;
        font-size: 14px;
    }

    .main-nav a::after {
        left: 0;
        top: 11px;
        bottom: 11px;
        width: 4px;
        height: auto;
        transform: scaleY(0);
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
        transform: scaleY(1);
    }

    .menu-backdrop {
        position: fixed;
        z-index: 101;
        inset: var(--header-height) 0 0;
        display: block;
        border: 0;
        background: rgba(2, 28, 55, .48);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s;
    }

    .menu-open .menu-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .newsletter-inner,
    .global-cta-inner,
    .profile-action,
    .newsletter-page-card,
    .transparency-help {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        width: 100%;
    }

    .global-cta-actions {
        justify-content: flex-start;
    }

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

    .page-hero-inner,
    .page-hero-inner.compact {
        padding: 56px 0 62px;
        padding-right: 0;
    }

    .page-hero h1 {
        max-width: 660px;
        font-size: clamp(38px, 7vw, 56px);
    }

    .transparency-hero-visual {
        display: none;
    }

    .profile-grid,
    .presence-grid,
    .office-map-grid,
    .finance-page-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .profile-media {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .profile-copy,
    .presence-copy,
    .office-copy,
    .faq-heading,
    .finance-page-copy {
        max-width: 760px;
    }

    .history-timeline {
        grid-template-columns: 1fr;
    }

    .history-timeline::before {
        left: 35px;
        top: 6%;
        bottom: 6%;
        width: 2px;
        height: auto;
    }

    .history-card {
        display: grid;
        grid-template-columns: 74px 1fr;
        column-gap: 25px;
        min-height: 0;
    }

    .history-card h3,
    .history-card p {
        grid-column: 2;
    }

    .history-year {
        grid-row: 1 / 3;
        margin: 0;
    }

    .projects-toolbar,
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .filter-group {
        justify-content: flex-start;
    }

    .news-feature {
        grid-template-columns: 1fr;
    }

    .news-feature-image,
    .news-feature-image img {
        min-height: 340px;
        height: 340px;
    }

    .news-feature-copy {
        padding: 35px;
    }

    .finance-dashboard {
        max-width: 680px;
    }

    .contact-info {
        max-width: 760px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-grid > div:nth-child(4),
    .footer-grid > div:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .section {
        padding-block: 55px;
    }

    .page-hero {
        min-height: 360px;
    }

    .page-hero-bg {
        background:
            linear-gradient(90deg, rgba(3, 42, 83, .98) 0%, rgba(4, 57, 111, .88) 72%, rgba(4, 43, 88, .65) 100%),
            var(--page-image) center / cover no-repeat;
    }

    .page-hero-inner {
        padding: 44px 0 50px;
    }

    .breadcrumbs {
        margin-bottom: 20px;
    }

    .page-hero h1 {
        font-size: clamp(34px, 9vw, 47px);
    }

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

    .value-grid,
    .axis-grid,
    .mandate-stats-grid,
    .transparency-summary-grid,
    .method-grid,
    .project-catalog,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .value-card,
    .mandate-stat,
    .summary-card,
    .method-card {
        min-height: 0;
    }

    .axis-card {
        min-height: 280px;
    }

    .profile-media,
    .profile-media img {
        min-height: 430px;
        height: 430px;
    }

    .profile-badge {
        right: 18px;
        bottom: 18px;
    }

    .profile-action,
    .newsletter-page-card,
    .transparency-help {
        padding: 32px 26px;
    }

    .presence-map img,
    .office-map img {
        height: 360px;
    }

    .map-floating-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .project-catalog {
        max-width: 580px;
        margin-inline: auto;
    }

    .catalog-content > p,
    .news-card-content p {
        min-height: 0;
    }

    .news-grid {
        max-width: 580px;
        margin-inline: auto;
    }

    .news-search-panel,
    .document-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .select-field select {
        width: 100%;
    }

    .finance-dashboard {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .finance-metrics {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

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

    .documents-table thead {
        display: none;
    }

    .documents-table tr {
        padding: 14px 16px;
        border-bottom: 1px solid #e4ecf3;
    }

    .documents-table tr:last-child {
        border-bottom: 0;
    }

    .documents-table td {
        display: grid;
        grid-template-columns: 94px 1fr;
        gap: 10px;
        padding: 8px 0;
        border: 0;
    }

    .documents-table td::before {
        content: attr(data-label);
        color: #718296;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 26px 22px;
    }

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

    .footer-brand,
    .footer-grid > div:nth-child(4) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

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

    .page-kicker {
        font-size: 9px;
    }

    .global-cta {
        padding-block: 39px;
    }

    .global-cta-actions,
    .global-cta-actions .btn,
    .profile-action .btn,
    .transparency-help .btn {
        width: 100%;
    }

    .newsletter-inner {
        gap: 22px;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .profile-media,
    .profile-media img {
        min-height: 340px;
        height: 340px;
    }

    .profile-media::before {
        left: -8px;
        top: -8px;
        width: 80px;
        height: 80px;
    }

    .profile-badge {
        right: 10px;
        left: 10px;
        bottom: 10px;
        min-width: 0;
    }

    .history-card {
        grid-template-columns: 64px 1fr;
        gap: 17px;
        padding: 22px;
    }

    .history-year {
        width: 60px;
        height: 60px;
        border-width: 5px;
        font-size: 13px;
    }

    .history-timeline::before {
        left: 29px;
    }

    .agenda-public-card {
        grid-template-columns: 58px 1fr;
        padding: 15px;
    }

    .agenda-public-card time {
        width: 55px;
        height: 55px;
    }

    .agenda-public-card > a {
        grid-column: 2;
        justify-self: start;
    }

    .projects-toolbar {
        margin-bottom: 22px;
    }

    .filter-group {
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: none;
    }

    .filter-group::-webkit-scrollbar {
        display: none;
    }

    .filter-button {
        flex: 0 0 auto;
    }

    .catalog-image,
    .news-card-image {
        height: 200px;
    }

    .news-feature-image,
    .news-feature-image img {
        height: 260px;
        min-height: 260px;
    }

    .news-feature-copy {
        padding: 25px 22px;
    }

    .finance-dashboard {
        padding: 25px 20px;
    }

    .finance-donut-large {
        width: 180px;
        height: 180px;
    }

    .finance-metrics {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 44px 1fr 18px;
    }

    .contact-card > span {
        width: 44px;
        height: 44px;
    }

    .contact-form-heading {
        grid-template-columns: 46px 1fr;
    }

    .form-icon {
        width: 46px;
        height: 46px;
    }

    .office-map,
    .office-map img {
        min-height: 300px;
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 18px;
    }

    .footer-brand,
    .footer-grid > div:nth-child(4),
    .footer-grid > div:nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   V4 — CORREÇÃO DEFINITIVA DA RESPONSIVIDADE MOBILE
   Mantém o menu fora do fluxo do hero e evita que filtros do
   cabeçalho transformem elementos fixed em caixas recortadas.
   ========================================================= */

@media (max-width: 960px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }

    .site-header {
        position: sticky;
        top: 0;
        overflow: visible;
        background: #fff;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .header-inner {
        position: relative;
        z-index: 106;
        width: min(calc(100% - 24px), 760px);
        grid-template-columns: minmax(0, 1fr) 42px 44px;
        gap: 8px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 108px;
        max-width: 100%;
    }

    .header-actions {
        width: 42px;
        justify-content: center;
    }

    .header-contact {
        width: 42px;
        height: 40px;
        min-height: 40px;
        padding: 0;
        border-radius: 9px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
        border-radius: 10px;
        background: transparent;
    }

    .menu-toggle span {
        width: 23px;
        margin-inline: auto;
    }

    .main-nav {
        position: absolute;
        z-index: 105;
        top: 100%;
        right: 0;
        bottom: auto;
        left: auto;
        width: min(350px, 90vw);
        height: calc(100dvh - var(--header-height));
        max-height: calc(100dvh - var(--header-height));
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        padding: 20px 18px max(26px, env(safe-area-inset-bottom));
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        border-top: 1px solid #e6edf5;
        background: #fff;
        box-shadow: -18px 18px 45px rgba(4, 43, 88, .2);
        transform: translate3d(105%, 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .28s ease, opacity .2s ease, visibility .28s;
    }

    .main-nav.is-open {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav a {
        flex: 0 0 auto;
        width: 100%;
        min-height: 50px;
        justify-content: flex-start;
        padding: 0 16px 0 18px;
        border: 1px solid transparent;
        border-radius: 11px;
        color: #26374c;
        background: transparent;
        font-size: 14px;
        font-weight: 800;
    }

    .main-nav a:hover,
    .main-nav a:focus-visible {
        color: var(--blue-800);
        border-color: rgba(15, 102, 194, .1);
        background: rgba(15, 102, 194, .06);
    }

    .main-nav a.active {
        color: var(--blue-800);
        border-color: rgba(15, 102, 194, .13);
        background: #eaf4ff;
        box-shadow: none;
    }

    .main-nav a::after {
        left: 0;
        top: 10px;
        bottom: 10px;
        width: 4px;
        height: auto;
        border-radius: 0 5px 5px 0;
        transform: scaleY(0);
        transform-origin: center;
    }

    .main-nav a:hover::after,
    .main-nav a:focus-visible::after,
    .main-nav a.active::after {
        transform: scaleY(1);
    }

    .menu-backdrop {
        position: absolute;
        z-index: 104;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        width: 100vw;
        height: calc(100dvh - var(--header-height));
        display: block;
        border: 0;
        background: rgba(2, 28, 55, .52);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .24s ease, visibility .24s ease;
    }

    .menu-open .menu-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hero,
    .hero-slides,
    .hero-slide {
        width: 100%;
        min-width: 0;
    }

    .slider-panel {
        max-width: calc(100% - 28px);
    }
}

@media (max-width: 760px) {
    .hero,
    .hero-slides {
        min-height: 650px;
    }

    .hero-slide {
        min-height: 650px;
        background-image: var(--slide-image);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: auto 310px;
        background-color: #05386f;
    }

    .hero-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background:
            linear-gradient(180deg, rgba(3, 43, 84, .02) 0, rgba(3, 43, 84, .08) 34%, rgba(4, 52, 103, .88) 48%, #05386f 63%, #05386f 100%);
        pointer-events: none;
    }

    .hero-overlay {
        z-index: 1;
        pointer-events: none;
    }

    .hero-overlay::before {
        top: 288px;
        right: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: linear-gradient(145deg, #0757a8 0%, #06498e 52%, #033568 100%);
        clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
        opacity: .98;
    }

    .hero-overlay::after {
        right: auto;
        left: 0;
        bottom: 0;
        width: 43%;
        height: 42%;
        background: rgba(4, 45, 91, .34);
        clip-path: polygon(0 0, 76% 0, 100% 100%, 0 100%);
        opacity: 1;
    }

    .hero-content {
        z-index: 2;
        min-height: 570px;
        align-items: flex-end;
        padding-top: 0;
        padding-bottom: 98px;
    }

    .hero-copy {
        width: 100%;
        max-width: 520px;
        margin: 0;
        padding: 0 0 8px;
    }

    .hero-copy .eyebrow {
        min-height: 28px;
        padding-inline: 12px;
        font-size: 10px;
    }

    .hero-copy time {
        margin: 14px 0 7px;
        font-size: 12px;
    }

    .hero-copy h1 {
        max-width: 100%;
        margin-bottom: 13px;
        font-size: clamp(33px, 9.2vw, 43px);
        line-height: 1.08;
        letter-spacing: -.035em;
    }

    .hero-copy p {
        max-width: 94%;
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-copy .btn {
        min-height: 46px;
        padding-inline: 20px;
    }

    .slider-arrow {
        top: 145px;
        width: 42px;
        height: 42px;
        background: rgba(3, 46, 91, .5);
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .slider-panel {
        width: calc(100% - 24px);
        min-height: 72px;
        padding-inline: 10px;
    }

    .slider-tabs {
        max-width: calc(100vw - 120px);
    }

    .slider-tab,
    .slider-tab:nth-child(n+3) {
        flex: 0 0 112px;
        min-width: 112px;
    }

    .about-grid,
    .projects-grid,
    .participation-grid,
    .transparency-card,
    .cta-grid,
    .footer-grid {
        min-width: 0;
    }

    .about-copy,
    .project-content,
    .proposal-card,
    .agenda-list,
    .transparency-card {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 430px) {
    .header-inner {
        width: calc(100% - 20px);
    }

    .brand img {
        width: 100px;
    }

    .hero,
    .hero-slides,
    .hero-slide {
        min-height: 625px;
    }

    .hero-slide {
        background-size: auto 285px;
    }

    .hero-overlay::before {
        top: 264px;
    }

    .hero-content {
        min-height: 551px;
        padding-bottom: 91px;
    }

    .hero-copy h1 {
        font-size: clamp(31px, 9.1vw, 38px);
    }

    .slider-arrow {
        top: 128px;
    }

    .slider-panel {
        width: calc(100% - 20px);
    }
}

/* Ajuste fino da composição do banner em telas estreitas */
@media (max-width: 760px) {
    .hero,
    .hero-slides,
    .hero-slide {
        min-height: 690px;
    }

    .hero-content {
        min-height: 618px;
        align-items: flex-start;
        padding-top: 315px;
        padding-bottom: 80px;
    }
}

@media (max-width: 430px) {
    .hero,
    .hero-slides,
    .hero-slide {
        min-height: 670px;
    }

    .hero-content {
        min-height: 598px;
        padding-top: 296px;
        padding-bottom: 76px;
    }
}

@media (max-width: 430px) {
    .slider-panel {
        grid-template-columns: minmax(0, 1fr) 38px;
        gap: 4px;
    }

    .slider-tabs {
        width: 100%;
        max-width: none;
    }

    .slider-tab,
    .slider-tab:nth-child(n+3) {
        flex: 0 0 96px;
        min-width: 96px;
        gap: 6px;
        padding-inline: 7px;
    }

    .slider-tab strong {
        font-size: 15px;
    }

    .slider-tab span {
        font-size: 9px;
    }

    .slider-status {
        gap: 0;
        padding-left: 0;
    }
}

@media (max-width: 430px) {
    .slider-tabs {
        width: 288px;
        max-width: 100%;
    }
}
