:root {
    --bg-header: #64cce7;
    --bg-gray: #f4f4f4;
    --bg-white: #F9FAFB;

    --blue-primary: #20aed2;
    --blue-medium: #3e96ca;
    --blue-dark: #004cb3;
    --blue-dark-btn: #3e6bc9;
    --blue-light: #b8e6f2;

    --green-teal: #2f9e84;
    --green-ppa: #00ad69;

    --yellow-accent: #ffb000;
    --yellow-loa: #ffc765;
    --yellow-highlight: #f2c94c;

    --text-dark: #1d2435;
    --text-white: #f9fafb;
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-white);
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

#flux-vertical-topo {
    width: 100%;
    height: 70px;
    background-color: #64cce7;
}

#flux-vertical-topo-conteudo {
    position: relative;
    max-width: 960px;
    height: 100%;
    margin: 0 auto;
}

#flux-vertical-topo-logo-flux {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 106px;
    transform: translateY(-50%) scale(0.8);
}

/* ---- Containers ---- */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 80px 0;
}

.container-wide {
    max-width: 1608px;
    width: 95%;
    margin: 0 auto;
    padding: 80px 0;
}

.container.text-center,
.container-wide.text-center {
    padding-bottom: 0;
}

.section-white {
    background-color: var(--bg-white);
}

/* =========================================
   HERO — COLAGEM ANIMADA
   ========================================= */
.section-hero-collage {
    position: relative;
}

.cena-orcamento {
    position: relative;
    width: 100%;
    aspect-ratio: 7 / 4;
    overflow: hidden;
    background-image: url('./img/fundo-titulo.png');
    background-size: cover;
    background-position: center;
}

.img-carro {
    top: 47%;
    left: 30%;
}

.img-escola {
    top: 35%;
    left: 73%;
}

.img-aviao {
    top: 50%;
    left: 69%;
}

.img-medico {
    top: 64%;
    left: 74%;
}

.img-tenis {
    top: 35%;
    left: 25%;
}

.img-carrinho {
    top: 63%;
    left: 23%;
}

/* Os recortes dos recursos (carro, escola, etc.) */
.item-recurso {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 14%;
    height: auto;
    transition: top 0.8s ease-in-out, left 0.8s ease-in-out, transform 0.8s ease-in-out;
}


.mao-mascara {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    clip-path: inset(0 0 24% 0);
}

.mao-animada {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 30%;
    transform-origin: top center;
    transform: translate(-50%, 0) rotate(0deg);
    width: 12%;
    height: auto;
    transition: top 0.8s ease-in-out, left 0.8s ease-in-out, transform 0.8s ease-in-out;
    pointer-events: auto;
}


.img-titulo-principal {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: auto;
    z-index: 5;
    pointer-events: auto;
}

.frente-cenario {
    position: absolute;
    bottom: -0.5%;
    left: 1%;
    width: 99%;
    z-index: 4;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.frente-cenario img {
    width: 80%;
}

.cena-orcamento.ativo .mao-animada {
    top: 35%;
}

/* =========================================
   TIPOGRAFIA — INTRO TEXT
   ========================================= */
.intro-text {
    width: 100%;
    max-width: none;
    text-align: justify;
}

.intro-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    padding: 0 150px;
}

.intro-text ul {
    font-size: 28px;
    color: var(--text-dark);
    padding-left: 180px;
    padding-right: 150px;
    margin: 0 0 20px 0;
}

.intro-text p strong {
    font-weight: 700;
}

/* =========================================
   PÍLULAS DE TÍTULO
   ========================================= */
.pill-title {
    display: block;
    width: fit-content;
    margin: 0 auto 40px auto;
    padding: 15px 50px;
    border-radius: 20px;
    color: var(--text-white);
    font-size: clamp(20px, 2.5vw, 40px);
    font-weight: 400;
    text-align: center;
}

.title-blue {
    background-color: var(--blue-medium);
}

/* =========================================
   "ORÇAMENTO PÚBLICO" — IMAGEM
   ========================================= */
.section-orcamento-titulo .container {
    padding: 60px 0;
}

.img-orcamento-titulo {
    max-width: 800px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* =========================================
   CÍRCULOS INTERATIVOS
   ========================================= */
.interactive-circles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2%;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1600px;
    margin: clamp(30px, 4vw, 70px) auto 0 auto;
}

.circle-wrapper {
    width: 18%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.circle-img {
    width: 100%;
    max-width: clamp(80px, 12vw, 220px);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: clamp(5px, 1.5vw, 15px);
    transition: transform 0.2s, filter 0.2s;
}

.circle-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(10px, 1.5vw, 28px);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
}

.circle-wrapper:hover {
    transform: translateY(-8px);
}

.circle-wrapper.active .circle-img {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 15px rgba(32, 174, 210, 0.4));
}

/* =========================================
   ÁREA DE EXIBIÇÃO (CIDADE)
   ========================================= */
.info-display-area {
    position: relative;
    width: 100%;
    margin-top: clamp(-60px, -5vw, -20px);
    min-height: clamp(250px, 35vw, 650px);
    padding-bottom: 0vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-cidade-fundo {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 2108px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

/* =========================================
   RETÂNGULO DE INFO
   ========================================= */
.info-rectangle {
    width: min(90%, 952px);
    min-height: clamp(120px, 18vw, 330px);
    border-radius: clamp(20px, 4vw, 80px);
    padding: clamp(24px, 4vw, 60px) clamp(24px, 5vw, 80px);
    margin: 0 auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.info-rectangle h3 {
    font-size: clamp(1.5rem, 3.5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: bold;
}

.info-rectangle p {
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    line-height: 1.5;
    max-width: 800px;
}

#info-compras {
    background-color: #3E96CA;
    color: var(--text-white);
}

#info-saude {
    background-color: #2F9E84;
    color: var(--text-white);
}

#info-educacao {
    background-color: #F2C94C;
    color: var(--text-dark);
}

#info-trabalho {
    background-color: #2F939E;
    color: var(--text-white);
}

#info-programas {
    background-color: #3EC2C9;
    color: var(--text-white);
}

.info-rectangle.show {
    display: flex;
    animation: fadeInDown 0.4s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* =========================================
   COMPOSIÇÃO: ORIGEM DO DINHEIRO
   ========================================= */
.money-origin-canvas {
    position: relative;
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 1920 / 940;
    margin: 120px 0;
    margin-bottom: -150px;
    pointer-events: none;
    overflow: hidden;
}

.money-origin-canvas img {
    position: absolute;
    pointer-events: auto;
    height: auto;
}

.canvas-title {
    position: absolute;
    width: 39.8%;
    left: 17%;
    top: 1%;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(12px, 3.6vw, 70px);
    line-height: 1.2;
    text-align: right;
    color: #2F9E84;
    z-index: 10;
    pointer-events: auto;
}

.canvas-text {
    position: absolute;
    width: 31.2%;
    left: 25.8%;
    top: 24%;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(8px, 1.8vw, 28px);
    line-height: 1.5;
    text-align: right;
    color: var(--text-dark);
    z-index: 10;
    pointer-events: auto;
}

.canvas-text-post-it {
    position: absolute;
    width: 22.5%;
    left: 70.4%;
    top: 20.2%;
    font-family: "Jaro", sans-serif;
    font-weight: 400;
    font-size: clamp(10px, 2.9vw, 57px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-white);
    text-align: right;
    transform: rotate(6.6deg);
    z-index: 11;
    pointer-events: auto;
}

.canvas-text strong {
    font-weight: 700;
}

.img-post-it {
    width: 32.8%;
    left: 66.5%;
    top: 2%;
    z-index: 2;
}

.post-it-css {
    position: absolute;
    display: none;
    aspect-ratio: 1 / 1;
    background-color: #4ecda0;
    background-image:
        radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.18), transparent 60%),
        radial-gradient(ellipse at 80% 90%, rgba(0, 0, 0, 0.08), transparent 65%);
    box-shadow:
        6px 8px 0 0 #1d2435,
        0 14px 22px rgba(0, 0, 0, 0.18);
    transform: rotate(-3deg);
    z-index: 2;
}

.post-it-css__fita {
    position: absolute;
    top: -8%;
    left: 22%;
    width: 56%;
    height: 18%;
    background: linear-gradient(135deg,
            rgba(165, 210, 195, 0.85) 0%,
            rgba(205, 230, 220, 0.95) 50%,
            rgba(165, 210, 195, 0.85) 100%);
    transform: rotate(-4deg);
    clip-path: polygon(2% 28%, 9% 6%, 20% 22%, 32% 8%, 45% 24%,
            58% 4%, 70% 20%, 82% 8%, 94% 22%, 100% 48%,
            96% 75%, 100% 94%, 88% 96%, 75% 84%, 60% 96%,
            46% 80%, 32% 95%, 20% 84%, 8% 96%, 1% 70%);
}

.post-it-css__texto {
    position: absolute;
    top: 9%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    margin: 0;
    font-family: "Jaro", sans-serif;
    font-weight: 400;
    font-size: clamp(11px, 4.1vw, 18px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-celular-mao {
    width: 34.1%;
    left: 0;
    top: 9.4%;
    z-index: 3;
}

.img-cofrinho {
    width: 23.8%;
    left: 59.2%;
    top: 31.9%;
    z-index: 6;
}

.svg-pontilhado {
    position: absolute;
    left: -4%;
    top: 1%;
    width: 126%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    overflow: visible;
    transform: rotate(0deg)
}

.img-sifrao {
    width: 3.7%;
    left: 36.7%;
    top: 55.1%;
    z-index: 4;
    border-radius: 50%;
}

/* =========================================
   ORIGEM DO DINHEIRO — ANIMAÇÕES
   ========================================= */
@keyframes dinheiroMaoPulsa {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.15)
    }

    55% {
        transform: scale(0.96)
    }

    80% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes dinheiroCofrinhoRecebe {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.12)
    }

    42% {
        transform: scale(0.93)
    }

    65% {
        transform: scale(1.10)
    }

    85% {
        transform: scale(0.99);
    }

    100% {
        transform: scale(1);
    }
}

.img-celular-mao.dinheiro-mao-ativa {
    animation: dinheiroMaoPulsa 0.6s ease-in-out;
}

.img-cofrinho.dinheiro-cofrinho-ativo {
    animation: dinheiroCofrinhoRecebe 3s ease-in-out;
}

.br-desktop {
    display: block;
}

.br-mobile {
    display: none;
}

/* =========================================
   SEÇÃO: MAS COMO É FEITO
   ========================================= */
.secao-ciclo-ppa {
    position: relative;
    width: 100%;
    min-height: 900px;
    margin-top: 100px;
    background-image: url('./img/fundo_da_mulher_pensativa.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    padding-bottom: 200px;
    overflow: hidden;
    z-index: 1;
}

.container-ciclo {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 150px;
    padding-right: 5%;
    position: relative;
    z-index: 2;
}

.bloco-img-mulher {
    position: absolute;
    left: 0%;
    bottom: -450px;
    width: 45%;
    max-width: 650px;
    z-index: 1;
}

.img-mulher-pensativa {
    width: 100%;
    height: auto;
}

.img-titulo-ciclo {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 10;
}

.bloco-txt-ciclo {
    width: 50%;
    max-width: 600px;
    position: relative;
    z-index: 2;
    text-align: left;
    transform: translateY(60px);
}

.txt-ciclo-paragrafo {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.8vw, 28px);
    line-height: 1.6;
    color: var(--text-white);
}

.img-fundo-papel {
    position: absolute;
    left: -25%;
    top: 180%;
    margin-top: -180px;
    width: 150%;
    height: auto;
    min-height: 100px;
    z-index: 1;
    pointer-events: none;
    transform-origin: top center;
}

.titulo-orcamento-img {
    width: 85%;
    margin-top: -85px;
    margin-bottom: -131px;
    margin-left: 88px;
    position: relative;
    z-index: 3;
}

/* =========================================
   SEÇÃO: PPA / LDO / LOA
   ========================================= */
.section-ppa-ldo-loa {
    background-image: url('./img/fundo_papel_ppa.png');
    background-size: cover;
    background-position: center;
    padding: 80px 20px 180px 20px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    gap: 20px;
    z-index: 2;
    transform: translateY(50px);
    margin-top: -200px;
}

.ppa-card-wrapper {
    background-image: url('./img/fundo_blocos_ppa.png');
    background-size: 100% 100%;
    background-position: center;
    padding: 50px 80px;
    width: 100%;
    max-width: 1060px;
    flex-shrink: 0;
    margin-top: 100px;
}

.lei-bloco {
    display: flex;
    align-items: center;
    gap: clamp(40px, 9vw, 130px);
    padding: 40px 0;
}

.lei-bloco:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lei-bloco-invertido {
    flex-direction: row;
    margin-left: -10px;
}

.lei-bloco-texto {
    flex: 1;
    max-width: 565px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: static;
}

.lei-bloco:nth-child(1) .lei-bloco-texto {
    position: relative;
    left: 100px;
    top: -50px;
}

.lei-bloco:nth-child(2) .lei-bloco-texto {
    position: relative;
    right: 40px;
    left: 20px;
    top: -20px
}

.lei-bloco:nth-child(3) .lei-bloco-texto {
    position: relative;
    left: 80px;
    top: 25px;
}

.lei-cabecalho {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.lei-sigla {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.lei-separator {
    width: 2px;
    height: 44px;
    background-color: var(--yellow-highlight);
    flex-shrink: 0;
}

.lei-nome {
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.2vw, 18px);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
}


.lei-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.lei-lista li {
    font-size: clamp(13px, 1.1vw, 18px);
    color: var(--text-white);
    padding: 4px 0 4px 22px;
    position: relative;
    line-height: 1.5;
}

.lei-lista li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--yellow-highlight);
    font-weight: 700;
}

.lei-prazo {
    display: inline;
    width: fit-content;
    background-color: var(--yellow-loa);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 1vw, 18px);
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 20px;
}

.lei-img {
    width: clamp(300px, 25vw, 313px);
    height: clamp(300px, 25vw, 313px);
    object-fit: contain;
    flex-shrink: 0;
}

.seta-ppa {
    width: clamp(100px, 18vw, 235px);
    height: auto;
    object-fit: contain;
    position: absolute;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
}

.seta-ppa.seta-esq {
    top: 23%;
    left: calc(50% - 657px);
}

.seta-ppa.seta-dir {
    top: 54%;
    right: calc(50% - 657px);
    transform: scaleX(-1);
}

/* =========================================
   SEÇÃO: LEGISLATIVO — JORNADA (ESCADA)
   ========================================= */
.jornada-canvas-esquerda,
.jornada-canvas-direita {
    position: relative;
    width: 97%;
    line-height: 0;
}

.jornada-canvas-direita+.jornada-canvas-esquerda,
.jornada-canvas-esquerda+.jornada-canvas-direita {
    z-index: 2;
    margin-top: -11%;
}

.jornada-canvas-esquerda {
    margin-left: 0;
    margin-right: auto;
}

.jornada-canvas-direita {
    margin-left: auto;
    margin-right: -0;
}

.jornada-img-base {
    width: 100%;
    height: auto;
    display: block;
}

.jornada-textos-sobrepostos {
    position: absolute;
    line-height: 1.5;
    display: flex;
    flex-direction: column;

}

.pos-1 {
    top: 35%;
    left: 5%;
    width: 38%;
}

.pos-2 {
    top: 35%;
    left: 55%;
    width: 38%;
}

.pos-3 {
    top: 16%;
    left: 7%;
    width: 38%;
}

.pos-4 {
    top: 41%;
    left: 60%;
    width: 34%;
}

.pos-5 {
    top: 77%;
    left: 5%;
    width: 43%;
}

.pos-6 {
    top: 39%;
    left: 53%;
    width: 40%;
}

.pos-7 {
    top: 37%;
    left: 8%;
    width: 30%;
}

.pos-8 {
    top: 28%;
    left: 56%;
    width: 35%;
}

.jornada-textos-sobrepostos h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 2.5vw, 48px);
    font-weight: 800;
    color: #000;
    margin: 0;
}

.jornada-textos-sobrepostos p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 1.2vw, 23px);
    color: #000;
    margin: 0;
}

.jornada-textos-sobrepostos ul {
    padding-left: 2rem;
    margin-left: 1rem;
}

.jornada-textos-sobrepostos li {
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 1.2vw, 23px);
    color: #000;
}

.img-mobile-decor {
    display: none;
}

.degrau-animado {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.degrau-animado.visivel {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   SEÇÃO: CORTIÇA "VOCÊ SABIA?"
   ========================================= */
.section-cork {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    position: relative;
    margin-top: 10%;
}

.img-titulo-curiosidade {
    position: absolute;
    z-index: 10;
    display: block;
    width: 75%;
    height: auto;
    transition: width 0.3s ease, top 0.3s ease;
    top: 5%;
    left: 45%;
    transform: translateX(-50%) rotate(3deg);
}

.img-cortica {
    width: 100%;
    height: auto;
    display: block;
}

.img-pin-estrela,
.img-pin-x,
.img-pin-raio,
.img-pin-rabisco,
.img-pin-pentagrama,
.img-pin-sorriso,
.img-titulo-curiosidade-mobile {
    display: none;
}

.post-it-verde {
    position: absolute;
    top: 45%;
    left: 19%;
    width: 23%;
    transform: rotate(-5deg);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    font-size: clamp(6px, 1.4vw, 28px);
    line-height: 1.4;
}

.post-it-bege {
    position: absolute;
    top: 30%;
    right: 23%;
    width: 20%;
    transform: rotate(3.9deg);
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    font-size: clamp(6px, 1.3vw, 28px);
    line-height: 1.6;
}

.post-it-titulo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: var(--text-white);
    margin: 0 0 15px 0;
    font-size: clamp(24px, 3vw, 60px);
    -webkit-text-stroke: 0.25em #2f9e84;
    paint-order: stroke fill;
}

.post-it-verde p,
.post-it-bege p {
    margin-bottom: 10px;
}

/* =========================================
   SEÇÃO: LRF
   ========================================= */
.section-lrf .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.lrf-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.lrf-imagem {
    flex-shrink: 0;
    width: 50%;
    position: relative;
}

.textos-lrf-sobrepostos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-5deg);
    pointer-events: none;
}

.lrf-texto-fita {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 128px;
    line-height: 1;
    letter-spacing: 0.14em;
    text-align: center;
    color: var(--text-white);
    margin: 0;
    pointer-events: auto;
}

.lrf-texto-frase {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-45%);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    line-height: 1.2;
    margin: 0;
    font-size: clamp(16px, 2.2vw, 28px);
    pointer-events: auto;
}

.img-carteira-lrf {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.lrf-conteudo {
    flex: 1;
    min-width: 0;
}

.lrf-conteudo .pill-title {
    margin-left: 0;
    margin-right: 0;
}

.lrf-conteudo .intro-text p {
    padding: 0;
}

.lrf-conteudo .intro-text ul {
    padding-left: 30px;
    padding-right: 0;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: clamp(16px, 1.5vw, 24px);
    line-height: 1.5;
    color: var(--text-dark);
}

.check-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 1.25rem;
    line-height: 1.4;
}

/* =========================================
   ESTEIRA ANIMADA & TÍTULO FLUTUANTE
   ========================================= */

.esteira-banner {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    background-color: var(--bg-white);
}

.esteira-track {
    display: flex;
    width: max-content;
    animation: moverEsteira 20s linear infinite;
    will-change: transform;
}

.img-esteira {
    display: block;
    height: auto;
    min-width: 100vw;
    object-fit: cover;
}

.img-titulo-esteira {
    position: relative;
    z-index: 11;
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
    width: 75%;
    height: auto;
}

@keyframes moverEsteira {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* =========================================
   SEÇÃO: FISCALIZAR ORÇAMENTO (ACCORDION)
   ========================================= */
.fiscalizar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 10% auto;
    align-items: start;
}

.fiscalizar-card {
    border-radius: 24px;
    color: #ffffff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.card-header {
    width: 100%;
    border: none;
    padding: 20px 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    color: white;
    transition: background-color 0.3s, filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card-header::after {
    content: '▼';
    margin-left: auto;
    transition: transform 0.3s ease;
}

.card-header:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card-header:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.card-icon {
    width: 50px;
    height: auto;
    flex-shrink: 0;
}

.card-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.card-body>.card-content {
    overflow: hidden;
}

.fiscalizar-card.ativo .card-body {
    grid-template-rows: 1fr;
}

.fiscalizar-card.ativo .card-header {
    border-radius: 24px 24px 0 0;
}

.fiscalizar-card:nth-child(odd) .card-header {
    background-color: #3E96CA;
}

.fiscalizar-card:nth-child(odd) {
    background-color: #3E6BC9;
}

.fiscalizar-card:nth-child(even) .card-header {
    background-color: #3E6BC9;
}

.fiscalizar-card:nth-child(even) {
    background-color: #3E96CA;
}

.card-content {
    padding: 0 25px 25px 25px;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.card-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.card-content li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.btn-acessar {
    display: inline-block;
    background-color: #f7ca44;
    color: #1d2435;
    font-weight: 800;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-acessar:hover {
    color: var(--text-white);
    transform: scale(1.05);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.sub-topic {
    margin-bottom: 25px;
}

.sub-topic:last-child {
    margin-bottom: 0;
}

.sub-topic.divider {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* =========================================
   CRÉDITOS & IMPRESSÃO
   ========================================= */
#links-creditos-impressao {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 70px auto 20px auto;
}

#link-creditos,
#link-impressao {
    margin: 0;
}

#link-creditos img,
#link-impressao img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

#link-creditos a:hover img,
#link-impressao a:hover img {
    transform: translateY(-5px);
}

/* =========================================
   SEÇÃO: MULHER E CONGRESSO
   ========================================= */
.section-congresso-mulher {
    width: 100%;
    padding: 60px 0;
    background-color: var(--bg-white);
}

.congresso-mulher-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.img-bg-congresso {
    width: 100%;
    height: auto;
    display: block;
}

.congresso-textos-papel {
    position: absolute;
    top: 25%;
    left: 52%;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2.5vw, 35px);
}

.congresso-titulo {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3.5vw, 65px);
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
}

.text-blue-medium {
    color: var(--blue-medium);
}

.text-dark {
    color: var(--text-dark);
}

.congresso-paragrafo {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 36px);
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0;
    width: 54%;
}

.congresso-destaque {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.destaque-lembrete {
    background-color: var(--green-teal);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(16px, 2.2vw, 38px);
    padding: 6px 18px;
    border-radius: 12px;
}

.destaque-texto {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 2.2vw, 38px);
    font-weight: 400;
    color: var(--text-dark);
}

/* =========================================
   RODAPÉ FLUX
   ========================================= */
#flux-vertical-rodape {
    width: 100%;
    height: 120px;
    background-color: #64cce7;
    line-height: 1.5;
    font-size: 14px;
    padding-top: 40px;
}

#flux-vertical-rodape h2 {
    margin-top: 0;
    margin-bottom: .5rem;
}

#flux-vertical-rodape h2:before {
    content: none;
}

#flux-vertical-rodape-conteudo {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    transform: scale(1.2);
    transform-origin: center top;
}

#flux-vertical-rodape-logos {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#flux-vertical-rodape-logo-flux {
    position: relative;
    transform: scale(0.8);
}

/* =========================================
   BOTÃO VOLTAR AO TOPO
   ========================================= */
#voltar-para-o-topo {
    position: fixed;
    right: clamp(35px, 3vw, 40px);
    bottom: clamp(55px, 3vw, 40px);
    width: clamp(44px, 5vw, 60px);
    height: clamp(44px, 5vw, 60px);
    background-color: var(--blue-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    min-width: 44px;
    min-height: 44px;
}

#voltar-para-o-topo.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#voltar-para-o-topo svg {
    width: clamp(20px, 2.5vw, 28px);
    height: clamp(20px, 2.5vw, 28px);
    transition: transform 0.3s ease;
}

#voltar-para-o-topo:hover {
    background-color: var(--blue-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

#voltar-para-o-topo:hover svg {
    transform: translateY(-3px);
}


.ppa-carousel-track {
    display: contents;
}

.ppa-carousel-dots {
    display: none;
}

.legislativo-mobi-carousel {
    display: none;
}


@media screen and (max-width: 1199px) {

    .container,
    .container-wide {
        padding: 60px 0;
    }

    .img-carro {
        top: 50%;
        left: 23%;
    }

    .img-escola {
        top: 38%;
        left: 75%;
    }

    .img-aviao {
        top: 52%;
        left: 75%;
    }

    .img-medico {
        top: 65%;
        left: 80%;
    }

    .img-tenis {
        top: 38%;
        left: 17%;
    }

    .img-carrinho {
        top: 65%;
        left: 15%;
    }

    .cena-orcamento {
        aspect-ratio: 4 / 3;
    }

    .item-recurso {
        width: 18%;
    }

    .mao-animada {
        width: 16%;
    }

    .frente-cenario {
        position: absolute;
        bottom: -0.5%;
        width: 90%;
        left: 3%;
        display: flex;
        justify-content: center;
        pointer-events: none;
    }

    .frente-cenario img {
        width: 116%;
    }

    .intro-text p {
        font-size: 22px;
        padding: 0 60px;
    }

    .intro-text ul {
        font-size: 22px;
        padding-left: 80px;
        padding-right: 60px;
    }

    .info-rectangle {
        min-height: auto;
    }

    .container-ciclo {
        flex-direction: row;
        justify-content: flex-end;
        text-align: left;
        padding-right: 30px;
    }

    .money-origin-canvas {
        margin-bottom: -97px;
    }

    .bloco-img-mulher {
        width: 45%;
        max-width: 480px;
        bottom: -350px;
        left: -5%;
    }

    .bloco-txt-ciclo {
        width: 55%;
        position: relative;
        z-index: 2;
    }

    .txt-ciclo-paragrafo {
        line-height: 1.5;
        max-width: 80%;
        margin: 0;
    }

    .secao-ciclo-ppa {
        padding-bottom: 150px;
        min-height: 700px;
        margin-top: 50px;
    }

    .titulo-orcamento-img {
        margin-top: 18px;
        margin-bottom: -64px;
    }

    .section-ppa-ldo-loa {
        flex-direction: column;
        align-items: center;
        padding: 50px 16px;
        background-size: auto;
        margin-top: -58px;
    }

    .seta-ppa {
        display: none;
    }

    .ppa-card-wrapper {
        background-image: none !important;
        background-color: transparent;
        display: block;
        align-items: stretch;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        width: 100%;
        max-width: 520px;
        margin-top: -6%;
        position: relative;
        overflow: hidden;
    }

    .lei-bloco,
    .lei-bloco-invertido {
        flex: 1;
        width: auto;
        padding: 20px 14px;
        border-radius: 40px 8px 40px 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 0 !important;
        transform: none !important;
    }


    .lei-bloco[data-slide="ppa"],
    .lei-bloco-invertido[data-slide="ppa"] {
        background-color: #0092c6;
        color: #ffffff;
    }

    .lei-bloco[data-slide="ldo"],
    .lei-bloco-invertido[data-slide="ldo"] {
        background-color: #00bbc1;
        color: #1d2435;
    }

    .lei-bloco[data-slide="loa"],
    .lei-bloco-invertido[data-slide="loa"] {
        background-color: #0a66c4;
        color: #ffffff;
    }


    .lei-bloco .lei-img,
    .lei-bloco-invertido .lei-img {
        order: 1;
        width: 55%;
        height: auto;
        position: static !important;
        display: block;
    }

    .lei-bloco-texto {
        order: 2;
        width: 100%;
        max-width: none;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0;
        margin: 0;
    }

    .lei-cabecalho {
        display: flex;
        justify-content: center;
    }

    .lei-sigla {
        font-size: 30px;
    }

    .lei-separator {
        height: 28px;
    }


    .lei-bloco-texto h3 {
        font-size: 12px;
        margin-bottom: 8px;
        color: inherit;
    }

    .lei-nome {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 4px;
    }

    .lei-prazo {
        font-size: 15px;
        padding: 5px 8px;
        margin-bottom: 10px;
    }

    .lei-lista {
        padding-left: 14px;
    }

    .lei-lista li {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 5px;
    }

    .lrf-layout {
        gap: 1;
    }

    .lrf-imagem {
        width: 50%;
    }

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


    .jornada-textos-sobrepostos p,
    .jornada-textos-sobrepostos li {
        font-size: clamp(13px, 1.5vw, 20px);
    }


    .post-it-verde,
    .post-it-bege {
        font-size: clamp(7px, 1.4vw, 22px);
    }

    .post-it-bege {
        top: 25%;
    }

    .post-it-titulo {
        font-size: clamp(22px, 3vw, 50px);
    }

    .lrf-texto-fita {
        font-size: 92px;
        top: 14%;
    }


    .congresso-textos-papel {
        top: 22%;
        left: 51%;
        width: 47%;
    }


    #flux-vertical-rodape {
        height: auto;
        min-height: 100px;
        padding: 28px 16px;
    }

    #flux-vertical-rodape-conteudo {
        transform: none;
    }


    #voltar-para-o-topo {
        width: 52px;
        height: 52px;
        right: 28px;
        bottom: 28px;
        min-width: unset;
        min-height: unset;
    }

    #voltar-para-o-topo svg {
        width: 24px;
        height: 24px;
    }

    .ppa-carousel-track {
        display: flex;
        flex-direction: row;
        width: 100%;
        transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
    }

    .ppa-carousel-track.arrastando {
        cursor: grabbing;
        transition: none;
    }

    .lei-bloco,
    .lei-bloco-invertido {
        flex: 0 0 100%;
        min-width: 100%;
        box-sizing: border-box;
    }

    .ppa-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 18px;
        padding-bottom: 8px;
    }

    .ppa-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.18);
        border: 2px solid rgba(255, 255, 255, 0.6);
        cursor: pointer;
        padding: 0;
        transition: background-color 0.3s, transform 0.2s;
        flex-shrink: 0;
    }

    .ppa-dot.ativo {
        background-color: #0092c6;
        transform: scale(1.35);
    }

    .jornada-canvas-direita,
    .jornada-canvas-esquerda {
        display: none;
    }

    .legislativo-mobi-carousel {
        display: block;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

    .mobi-track {
        overflow-y: scroll;
        scroll-snap-type: y proximity;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: auto;
    }

    .mobi-slide {
        width: 100%;
        scroll-snap-align: start;
        position: relative;
    }

    .mobi-slide:last-child {
        scroll-snap-align: none;
    }

    .mobi-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .mobi-texto {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 20px 18px;
    }

    .mobi-texto h2 {
        font-size: 30px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #1d2435;
        line-height: 1.2;
    }

    .mobi-texto p {
        font-size: 18px;
        line-height: 1.55;
        color: #1d2435;
        margin-bottom: 9px;
    }

    .mobi-texto p:last-child {
        margin-bottom: 0;
    }

    .mobi-texto ul {
        font-size: 16px;
        line-height: 1.55;
        padding-left: 18px;
        margin-bottom: 9px;
        color: #1d2435;
    }

    .mobi-texto li {
        margin-bottom: 4px;
    }

    .mobi-slide:nth-child(1) .mobi-texto {
        top: 9%;
        left: 0;
        right: 0;
        padding: 43px 49px;
    }

    .mobi-slide:nth-child(2) .mobi-texto {
        top: 11%;
        left: 0;
        right: 0;
        padding: 28px 50px;
    }

    .mobi-slide:nth-child(3) .mobi-texto {
        top: 13%;
        left: 0;
        right: 0;
        padding: 28px 52px;
    }

    .mobi-slide:nth-child(4) .mobi-texto {
        top: 6%;
        left: 0%;
        right: 0;
        padding: 22px 41px;
    }

    .mobi-slide:nth-child(5) .mobi-texto {
        top: 14%;
        left: 0;
        right: 0;
        padding: 28px 51px;
    }

    .mobi-slide:nth-child(6) .mobi-texto {
        top: 11%;
        left: 0;
        right: 0;
        padding: 28px 47px;
    }

    .mobi-slide:nth-child(7) .mobi-texto {
        top: 10%;
        left: 0;
        right: 0;
        padding: 29px 41px;
    }

    .mobi-slide:nth-child(8) .mobi-texto {
        top: 7%;
        left: 0;
        right: 0;
        padding: 32px 61px;
    }

    .mobi-dots {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 10px 0 6px;
    }

    .mobi-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.25);
        border: 2px solid rgba(255, 255, 255, 0.5);
        cursor: pointer;
        padding: 0;
        transition: background-color 0.3s, transform 0.2s;
        flex-shrink: 0;
    }

    .mobi-dot.ativo {
        background-color: #1d2435;
        transform: scale(1.4);
    }

    .mobi-reiniciar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background-color: #1d2435;
        border: 3px solid rgba(255, 255, 255, 0.25);
        cursor: pointer;
        margin: 28px auto 40px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
        transition: background-color 0.3s ease, transform 0.3s ease;
        flex-shrink: 0;
    }

    .mobi-reiniciar:hover,
    .mobi-reiniciar:active {
        background-color: var(--blue-primary);
        transform: scale(1.12);
    }

    .mobi-reiniciar svg {
        width: 26px;
        height: 26px;
        color: #fff;
        display: block;
        transition: transform 0.4s ease;
    }

    .mobi-reiniciar:hover svg {
        transform: rotate(-45deg);
    }

}

@media screen and (max-width: 834px) {

    .intro-text p {
        font-size: 18px;
        padding: 0 25px;
    }

    .intro-text ul {
        font-size: 18px;
        padding-left: 40px;
        padding-right: 25px;
    }

    .pill-title {
        font-size: 20px;
        padding: 12px 28px;
    }

    .interactive-circles {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .circle-wrapper {
        width: 28%;
    }

    .info-display-area {
        min-height: 351px;
    }

    .money-origin-canvas {
        margin-bottom: -76px;
    }

    .canvas-title {
        font-size: clamp(12px, 2.8vw, 36px);
    }

    .canvas-text {
        font-size: clamp(9px, 1.5vw, 18px);
    }

    .secao-ciclo-ppa {
        min-height: 540px;
        padding-bottom: 100px;
    }

    .bloco-img-mulher {
        width: 48%;
        bottom: -260px;
    }

    .bloco-txt-ciclo {
        width: 53%;
        transform: translateY(6px);
    }

    .titulo-orcamento-img {
        width: 92%;
        margin-top: 4px;
        margin-bottom: -60px;
        margin-left: 40px;
    }

    .ppa-card-wrapper {
        margin-top: 4%;
    }

    .jornada-textos-sobrepostos h2 {
        font-size: clamp(14px, 2.2vw, 28px);
    }

    .jornada-textos-sobrepostos p,
    .jornada-textos-sobrepostos li {
        font-size: clamp(11px, 1.6vw, 18px);
    }

    .section-cork {
        width: 107%;
        position: relative;
        overflow: hidden;
        background-image: url('./img/quadro.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        min-height: 100dvh;
        padding: 100px 30px 60px 30px;
        line-height: 1.4;
        margin-left: -7%;
    }

    .img-cortica {
        display: none !important;
    }

    .img-titulo-curiosidade {
        display: none !important;
    }

    .img-titulo-curiosidade-mobile {
        display: block;
        position: absolute;
        z-index: 2;
        width: 77%;
        left: 13%;
        top: 0.5%;
    }

    .img-pin-estrela {
        display: block;
        position: absolute;
        z-index: 2;
        width: 35%;
        height: auto;
        top: 11%;
        left: 7%;
        transform: rotate(3deg);
    }

    .img-pin-x {
        display: block;
        position: absolute;
        z-index: 2;
        width: 16%;
        height: auto;
        top: 46%;
        left: 9%;
        transform: rotate(3deg);
    }

    .img-pin-raio {
        display: block;
        position: absolute;
        z-index: 2;
        width: 16%;
        height: auto;
        top: 87%;
        left: 69%;
        transform: rotate(3deg);
    }

    .img-pin-rabisco {
        display: block;
        position: absolute;
        z-index: 2;
        width: 45%;
        height: auto;
        top: 34%;
        left: 52%;
        transform: rotate(3deg);
    }

    .img-pin-pentagrama {
        display: block;
        position: absolute;
        z-index: 3;
        width: 16%;
        height: auto;
        top: 14%;
        left: 72%;
        transform: rotate(3deg);
    }

    .img-pin-sorriso {
        display: block;
        position: absolute;
        z-index: 2;
        width: 16%;
        height: auto;
        top: 47%;
        left: 73%;
        transform: rotate(3deg);
    }

    .post-it-verde,
    .post-it-bege {
        position: relative !important;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 60px 30px 40px 30px;
        font-size: clamp(0.75rem, 3.2vw, 2rem) !important;
        line-height: 1.4;
        color: #333;
    }

    .post-it-verde {
        background-image: url('./img/post-it-verde.png');
        width: 80%;
        aspect-ratio: 3 / 4;
        left: 14%;
        transform: rotate(-3deg);
        top: 43px;
        z-index: 2;
    }

    .post-it-verde p {
        position: absolute !important;
        margin: 0;
        top: 35%;
        left: 17%;
        width: 68%;
        text-align: left;
        transform: rotate(-1deg);
    }

    .post-it-bege {
        background-image: url('./img/post-it-bege.png');
        width: 90%;
        aspect-ratio: 3 / 4;
        margin-left: 32%;
        transform: rotate(4deg);
        top: 0;
        z-index: 1;
        padding-top: 22%;
        padding-left: 18%;
        padding-right: 10%;
        padding-bottom: 8%;
    }

    .post-it-bege .post-it-titulo {
        position: static;
        margin: 0 0 6px 0;
        width: 100%;
        text-align: left;
    }

    .post-it-bege p {
        position: static;
        margin: 0 0 4px 0;
        width: 100%;
        text-align: left;
    }

    .post-it-titulo {
        font-size: clamp(22px, 7vw, 58px) !important;
        margin-bottom: 12px;
        text-align: center;
    }

    .mobi-texto h2 {
        font-size: 35px;
    }

    .mobi-texto p {
        font-size: 20px;
    }

    .mobi-slide:nth-child(1) .mobi-texto {
        top: 7%;
        left: 0;
        right: 0;
        padding: 43px 40px;
    }

    .mobi-slide:nth-child(2) .mobi-texto {
        top: 7%;
        left: 0;
        right: 0;
        padding: 28px 40px;
    }

    .mobi-slide:nth-child(3) .mobi-texto {
        top: 7%;
        left: 0;
        right: 0;
        padding: 28px 50px;
    }

    .mobi-slide:nth-child(4) .mobi-texto {
        top: 4%;
        left: 0%;
        right: 0;
        padding: 22px 60px;
    }

    .mobi-slide:nth-child(5) .mobi-texto {
        top: 7%;
        left: 0;
        right: 0;
        padding: 28px 48px;
    }

    .mobi-slide:nth-child(6) .mobi-texto {
        top: 7%;
        left: 0;
        right: 0;
        padding: 28px 40px;
    }

    .mobi-slide:nth-child(7) .mobi-texto {
        top: 7%;
        left: 0;
        right: 0;
        padding: 30px 45px;
    }

    .mobi-slide:nth-child(8) .mobi-texto {
        top: 7%;
        left: 0;
        right: 0;
        padding: 28px 45px;
    }

    .lrf-layout {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .lrf-texto-fita {
        top: 16%;
        font-size: 73px;
    }

    .lrf-imagem {
        width: 60%;
    }

    .congresso-textos-papel {
        top: 28%;
        left: 50%;
        width: 48%;
    }

    .congresso-titulo {
        font-size: clamp(16px, 3vw, 40px);
    }

    .congresso-paragrafo {
        width: 90%;
        font-size: clamp(12px, 1.8vw, 24px);
    }

    .fiscalizar-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 8% auto;
    }

    #links-creditos-impressao {
        max-width: 65%;
    }

    #voltar-para-o-topo {
        width: 46px;
        height: 46px;
        right: 20px;
        bottom: 20px;
        min-width: unset;
        min-height: unset;
    }

    #voltar-para-o-topo svg {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 480px) {

    .container,
    .container-wide {
        padding: 65px 0;
    }

    .img-carro {
        top: 47%;
        left: 28%;
    }

    .img-escola {
        top: 37%;
        left: 80%;
    }

    .img-aviao {
        top: 53%;
        left: 76%;
    }

    .img-medico {
        top: 67%;
        left: 82%;
    }

    .img-tenis {
        top: 35%;
        left: 20%;
    }

    .img-carrinho {
        top: 65%;
        left: 20%;
    }

    .cena-orcamento {
        aspect-ratio: 0.9 / 0.65;
    }

    .item-recurso {
        width: 20%;
    }

    .mao-animada {
        width: 22%;
    }

    .frente-cenario {
        bottom: -0.5%;
        left: 4%;
    }

    .frente-cenario img {
        width: 110%;
    }

    .intro-text p {
        font-size: 15px;
        line-height: 1.5;
    }

    .section-orcamento-titulo .container {
        padding: 0 0;
    }

    .circle-wrapper {
        width: 45%;
        max-width: 95px;
    }

    .circle-label {
        font-size: 12px;
    }

    .info-display-area {
        padding-top: 60px;
        min-height: 200px;
    }

    .info-rectangle {
        border-radius: 16px;
    }

    .container-ciclo {
        padding-top: 30px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .bloco-txt-ciclo {
        width: 100%;
        position: relative;
        z-index: 10;
        text-align: left;
        transform: translateY(-6px);
    }

    .txt-ciclo-paragrafo {
        line-height: 1.5;
        margin: 10px 25px;
        max-width: 100%;
    }

    .bloco-img-mulher {
        position: absolute;
        top: 100%;
        left: 40%;
        transform: translateX(-50%);
        width: 85vw;
        max-width: 320px;
        z-index: 1;
    }

    .secao-ciclo-ppa {
        min-height: 650px;
        padding-bottom: 120px;
        margin-top: 50px;
    }

    .img-fundo-papel {
        margin-top: 120px;
    }

    .img-titulo-ciclo {
        width: 90%;
    }

    .br-desktop {
        display: none;
    }

    .money-origin-canvas {
        aspect-ratio: 3 / 3.2;
        margin-top: 120px;
        margin-bottom: -23%;
    }

    .canvas-title {
        width: 65%;
        left: 5%;
        top: -1%;
        font-size: 20px;
        text-align: left;
    }

    .canvas-text {
        width: 46%;
        left: 6%;
        top: 12%;
        font-size: 13px;
        text-align: left;
    }

    .img-post-it {
        display: none;
    }

    .post-it-css {
        display: block;
        width: 36%;
        left: 61%;
        top: 6%;
        transform: rotate(5.6deg);
    }

    .canvas-text-post-it {
        display: none;
    }

    .img-celular-mao {
        width: 46%;
        left: 0px;
        top: 33%;
    }

    .svg-pontilhado {
        display: block;
        left: -3%;
        top: 14%;
        width: 135%;
        transform: rotate(-1.4deg);
    }

    .img-sifrao {
        width: 8%;
        left: 47%;
        top: 66%;
        transform: rotate(-13.4deg);
    }

    .img-cofrinho {
        width: 40%;
        left: 63%;
        top: 49%;
    }


    .ppa-card-wrapper {
        flex-direction: column !important;
        width: 100% !important;
        max-width: none !important;
        gap: 20px !important;
        padding: 10px 15px !important;
        margin-top: -14%;
    }

    .lei-bloco,
    .lei-bloco-invertido {
        flex: none !important;
        width: 100% !important;
        padding: 30px 20px !important;
    }

    .lei-bloco .lei-img,
    .lei-bloco-invertido .lei-img {
        width: 70% !important;
    }

    .lei-bloco-texto {
        text-align: left !important;
    }

    .lei-cabecalho {
        justify-content: flex-start !important;
    }

    .lei-sigla {
        font-size: 28px !important;
    }

    .lei-separator {
        height: 44px !important;
    }

    .lei-bloco-texto h3 {
        font-size: 22px !important;
    }

    .lei-lista li {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 8px !important;
    }

    .lei-prazo {
        font-size: 14px !important;
    }

    .lei-lista {
        padding-left: 20px;
    }

    .titulo-orcamento-img {
        width: 100%;
        margin-top: 10px;
        margin-bottom: -60px;
        margin-left: -6px;
        height: auto;
    }

    .section-lrf .container {
        padding-top: 5px;
        padding-bottom: 40px;
    }

    .lrf-imagem {
        width: 100%;
    }

    .img-carteira-lrf {
        padding-bottom: 14%;
    }

    .lrf-texto-fita {
        letter-spacing: 0.15em;
        font-size: 48px;
    }

    .lrf-texto-frase {
        width: 90%;
    }

    body {
        overflow-x: hidden;
    }

    .img-titulo-curiosidade-mobile {
        display: block;
        position: absolute;
        z-index: 2;
        width: 90%;
        left: 4%;
        top: 1%;
    }

    .img-cortica {
        display: none !important;
    }

    .img-titulo-curiosidade {
        display: none !important;
    }

    .jornada-img-base {
        display: none !important;
    }

    .jornada-canvas-direita+.jornada-canvas-esquerda,
    .jornada-canvas-esquerda+.jornada-canvas-direita {
        z-index: 2;
        margin-top: -20%;
    }

    .section-legislativo>div:nth-of-type(1) {
        background-color: #76D7EA;
        transition: background-color 0.4s ease;
    }

    .section-legislativo .jornada-textos-sobrepostos {
        display: none;
    }

    .img-mobile-decor {
        display: block;
        position: absolute;
        z-index: 1;
    }

    .img-pos-1 {
        bottom: 25%;
        right: 0;
        width: 70%;
        height: auto;
    }

    .pos-1 p,
    .pos-1 h2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .img-pos-2 {
        top: 0;
        left: 0;
        width: 60%;
        height: auto;
    }

    .section-cork {
        background-image: url('./img/quadro.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        min-height: 120dvh;
        padding: 120px 20px 60px 20px;
        width: 100%;
        position: relative;
        overflow: hidden;
        margin-left: 0%;
    }

    .img-pin-estrela {
        display: block;
        position: absolute;
        z-index: 2;
        width: 50%;
        height: auto;
        top: 11%;
        left: 0%;
        transform: rotate(3deg);
    }

    .img-pin-x {
        display: block;
        position: absolute;
        z-index: 2;
        width: 25%;
        height: auto;
        top: 43%;
        left: 5%;
        transform: rotate(3deg);
    }

    .img-pin-raio {
        display: block;
        position: absolute;
        z-index: 2;
        width: 25%;
        height: auto;
        top: 85%;
        left: 70%;
        transform: rotate(3deg);
    }

    .img-pin-rabisco {
        display: block;
        position: absolute;
        z-index: 2;
        width: 65%;
        height: auto;
        top: 33%;
        left: 36%;
        transform: rotate(3deg);
    }

    .img-pin-pentagrama {
        display: block;
        position: absolute;
        z-index: 3;
        width: 25%;
        height: auto;
        top: 12%;
        left: 70%;
        transform: rotate(3deg);
    }

    .img-pin-sorriso {
        display: block;
        position: absolute;
        z-index: 2;
        width: 25%;
        height: auto;
        top: 45%;
        left: 70%;
        transform: rotate(3deg);
    }

    .post-it-verde,
    .post-it-bege {
        position: relative !important;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        padding: 60px 30px 40px 30px;
        font-size: clamp(0.7rem, 4.3vw, 0.9rem) !important;
        line-height: 1.4;
        color: #333;
    }

    .post-it-verde {
        background-image: url('./img/post-it-verde.png');
        width: 100%;
        aspect-ratio: 3 / 4;
        left: 10%;
        transform: rotate(-3deg);
        top: -10px;
        z-index: 2;
    }

    .post-it-bege {
        background-image: url('./img/post-it-bege.png');
        width: 130%;
        aspect-ratio: 3 / 4;
        margin-left: 8%;
        transform: rotate(4deg);
        top: 0;
        z-index: 1;
        padding-top: 32%;
        padding-left: 29%;
        padding-right: 10%;
        padding-bottom: 8%;
    }

    .post-it-titulo {
        font-size: clamp(22px, 7.5vw, 36px) !important;
        margin-bottom: 12px;
        text-align: center;
    }

    .post-it-verde p {
        position: absolute !important;
        margin: 0;
        top: 33%;
        left: 17%;
        width: 69%;
        text-align: left;
        transform: rotate(-1deg);
    }

    .post-it-bege .post-it-titulo {
        position: static;
        margin: 0 0 6px 0;
        width: 100%;
        text-align: left;
    }

    .post-it-bege p {
        position: static;
        margin: 0 0 4px 0;
        width: 80%;
        text-align: left;
    }

    .img-titulo-esteira {
        width: 100%;
        bottom: 0px;
    }

    .img-esteira {
        width: 100vw;
        max-width: 150vw;
        min-width: 250vw;
        height: auto;
    }

    .card-header h3 {
        font-size: 18px;
    }

    .section-congresso-mulher {
        padding: 20px 0;
    }

    .congresso-mulher-container {
        display: block;
        background-color: transparent;
        width: 100%;
        box-shadow: none;
    }

    .congresso-textos-papel {
        position: absolute;
        top: 22%;
        left: 50%;
        width: 46%;
        padding: 0;
        gap: clamp(2px, 0.8vw, 6px);
    }

    .congresso-titulo {
        font-size: clamp(10px, 3.1vw, 15px) !important;
        line-height: 1.1;
    }

    .congresso-paragrafo {
        width: 100%;
        font-size: clamp(9px, 2.9vw, 14px) !important;
        line-height: 1.3;
    }

    .congresso-destaque {
        gap: clamp(0px, 0.3vw, 2px);
    }

    .destaque-lembrete {
        font-size: clamp(9px, 2.7vw, 13px) !important;
        padding: clamp(1px, 0.6vw, 3px) clamp(6px, 2.3vw, 11px);
        border-radius: clamp(5px, 1.6vw, 8px);
    }

    .destaque-texto {
        font-size: clamp(9px, 2.9vw, 14px) !important;
    }

    #links-creditos-impressao {
        max-width: 50%;
        margin-top: 40px;
        justify-content: center;
        gap: 60px;
    }

    #link-creditos img,
    #link-impressao img {
        width: 110px;
        height: auto;
    }


    #voltar-para-o-topo {
        right: 20px;
        bottom: 25px;
        width: 48px;
        height: 48px;
        transform: none;
    }

    #voltar-para-o-topo.show {
        transform: none;
    }

    #voltar-para-o-topo svg {
        width: 24px;
        height: 24px;
    }


    #voltar-para-o-topo:hover {
        background-color: var(--blue-primary);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    #voltar-para-o-topo:hover svg {
        transform: none;
    }

    #flux-vertical-rodape {
        height: auto;
        padding: 10px 10px;
        min-height: 76px;
    }

    #flux-vertical-rodape-logos {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 12px;
    }

    #flux-vertical-rodape-logo-flux img {
        max-height: 48px;
        width: auto;
    }

    .legislativo-mobi-carousel {
        max-width: 100%;
    }

    .mobi-texto {
        padding: 28px 24px;
    }

    .mobi-texto h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .mobi-texto p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 12px;
    }

    .mobi-texto ul {
        font-size: 13px;
        line-height: 1.65;
        padding-left: 20px;
        margin-bottom: 12px;
    }

    .mobi-texto li {
        margin-bottom: 5px;
    }

    .mobi-slide:nth-child(1) .mobi-texto {
        top: 6%;
        left: 0;
        right: 0;
        padding: 28px 28px;
    }

    .mobi-slide:nth-child(2) .mobi-texto {
        top: 6%;
        left: 0;
        right: 0;
        padding: 28px 28px;
    }

    .mobi-slide:nth-child(3) .mobi-texto {
        top: 6%;
        left: 0;
        right: 0;
        padding: 28px 28px;
    }

    .mobi-slide:nth-child(4) .mobi-texto {
        top: 4%;
        left: 0;
        right: 0;
        padding: 16px 16px;
    }

    .mobi-slide:nth-child(5) .mobi-texto {
        top: 6%;
        left: 0;
        right: 0;
        padding: 28px 28px;
    }

    .mobi-slide:nth-child(6) .mobi-texto {
        top: 6%;
        left: 0;
        right: 0;
        padding: 28px 28px;
    }

    .mobi-slide:nth-child(7) .mobi-texto {
        top: 6%;
        left: 0;
        right: 0;
        padding: 28px 28px;
    }

    .mobi-slide:nth-child(8) .mobi-texto {
        top: 4%;
        left: 0;
        right: 0;
        padding: 28px 28px;
    }

}