:root {
    --blue: #1800AD;
    --blue-deep: #100078;
    --yellow: #FFED00;
    --orange: #FF3D00;
    --cyan: #02BDEB;
    --white: #FFFFFF;
    --ink: #101010;
    --muted: #666666;
    --max: 1180px;
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(24, 0, 173, .96);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: baseline; gap: 8px; font-family: "Barlow Condensed", sans-serif; font-weight: 900; }
.brand-name { font-size: 24px; letter-spacing: -.5px; }
.brand-number { color: var(--yellow); font-size: 22px; }
.main-nav { display: flex; gap: 24px; margin-left: auto; font-size: 14px; font-weight: 700; }
.main-nav a { opacity: .9; }
.main-nav a:hover { opacity: 1; color: var(--yellow); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .4px;
    transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-header { background: var(--yellow); color: var(--blue); }
.btn-primary { background: var(--yellow); color: var(--blue); }
.btn-outline { color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-dark { background: var(--blue); color: #fff; }

.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 80% 30%, rgba(255,237,0,.24), transparent 28%),
        linear-gradient(125deg, var(--blue) 0%, var(--blue) 56%, #2b10d5 100%);
    color: #fff;
}
.hero-pattern {
    position: absolute;
    inset: auto -4% 5% auto;
    color: rgba(255,255,255,.06);
    font: 900 clamp(90px, 15vw, 220px)/.8 "Barlow Condensed", sans-serif;
    white-space: nowrap;
    transform: rotate(-8deg);
    pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 60px; padding-block: 58px; }
.eyebrow, .section-kicker { display: inline-block; font-size: 12px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase; }
.eyebrow { color: var(--yellow); margin-bottom: 18px; }
.hero h1, .section h2 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .92;
    letter-spacing: -1.5px;
}
.hero h1 { font-size: clamp(58px, 8vw, 116px); max-width: 720px; }
.hero h1 span { color: var(--yellow); }
.hero-copy > p { max-width: 630px; margin: 24px 0 0; font-size: clamp(17px, 2vw, 21px); line-height: 1.6; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-number { margin-top: 32px; display: flex; align-items: baseline; font-family: "Barlow Condensed", sans-serif; font-weight: 900; line-height: .8; }
.hero-number span { font-size: clamp(84px, 12vw, 160px); color: var(--cyan); }
.hero-number strong { font-size: clamp(84px, 12vw, 160px); color: #fff; }

.hero-visual { position: relative; }
.photo-card { border-radius: 36px 36px 0 36px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,.3); transform: rotate(2deg); }
.photo-card img { width: 100%; max-height: 680px; object-fit: cover; object-position: center top; }
.stamp {
    position: absolute;
    right: -18px;
    bottom: 28px;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--blue);
    display: grid;
    place-items: center;
    text-align: center;
    font: 900 20px/.95 "Barlow Condensed", sans-serif;
    transform: rotate(-8deg);
}

.section { padding: 100px 0; }
.section-light { background: #f7f7f4; }
.section-blue { background: var(--blue); color: #fff; }
.section-orange { background: var(--orange); color: #fff; }
.section-yellow { background: var(--yellow); color: var(--blue); }
.section-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.section-kicker { color: var(--orange); margin-bottom: 14px; }
.section-kicker-yellow { color: var(--yellow); }
.section h2 { font-size: clamp(46px, 6vw, 82px); max-width: 900px; }
.section-text p, .lead { font-size: 18px; line-height: 1.7; max-width: 760px; }
.text-link { display: inline-block; margin-top: 10px; font-weight: 800; color: var(--blue); }

.cards-placeholder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.info-card { padding: 28px; border: 1px solid #e8e8e8; border-radius: var(--radius); background: #fff; }
.info-card span { color: var(--orange); font-weight: 900; }
.info-card h3 { font: 800 34px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; margin: 16px 0 10px; }
.info-card p { color: var(--muted); line-height: 1.6; }

.site-footer { background: #0d0d20; color: #fff; padding: 40px 0; }
.footer-inner { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.footer-inner strong { font: 900 30px/1 "Barlow Condensed", sans-serif; }
.footer-inner p { margin: 8px 0 0; color: rgba(255,255,255,.65); }
.footer-legal { max-width: 540px; font-size: 12px; text-align: right; }

@media (max-width: 900px) {
    .header-inner { min-height: 68px; }
    .btn-header { display: none; }
    .menu-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        margin: 0;
        padding: 24px 16px 28px;
        background: var(--blue);
        flex-direction: column;
        border-top: 1px solid rgba(255,255,255,.12);
    }
    .main-nav.is-open { display: flex; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 34px; padding-block: 46px; }
    .hero-visual { max-width: 620px; }
    .section-grid { grid-template-columns: 1fr; gap: 28px; }
    .cards-placeholder { grid-template-columns: 1fr; }
    .footer-inner { align-items: start; flex-direction: column; }
    .footer-legal { text-align: left; }
}


/* ======================================================
   REALIZAÇÕES
====================================================== */

.realizacoes {
    padding: 110px 0;
    background: #f8f8f8;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    color: #ff3d00;
}

.section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.95;
    color: #1800ad;
}

.section-heading p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
}


/* PILARES */

.pilares-realizacoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 90px;
}

.pilar-card {
    min-height: 330px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #1800ad;
    color: white;

    border-radius: 22px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.pilar-card:nth-child(2) {
    background: #ffed00;
    color: #1800ad;
}

.pilar-card:nth-child(3) {
    background: #ff3d00;
}

.pilar-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(0,0,0,.13);
}

.pilar-numero {
    font-size: 22px;
    font-weight: 900;
    opacity: .7;
}

.pilar-conteudo h3 {
    margin-bottom: 15px;
    font-size: 34px;
}

.pilar-conteudo p {
    margin-bottom: 28px;
    line-height: 1.6;
}

.pilar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: inherit;
    font-weight: 800;
    text-decoration: none;
}

.btn-link {
    padding: 0;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}


/* REALIZAÇÕES EM DESTAQUE */

.subtitulo-realizacoes {
    margin-bottom: 35px;
}

.subtitulo-realizacoes span {
    color: #ff3d00;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 800;
}

.subtitulo-realizacoes h3 {
    margin-top: 8px;
    color: #1800ad;
    font-size: clamp(32px, 4vw, 52px);
}

.grid-realizacoes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.realizacao-card {
    overflow: hidden;
    background: white;

    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(0,0,0,.07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.realizacao-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.realizacao-imagem {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #ddd;
}

.realizacao-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .4s ease;
}

.realizacao-card:hover img {
    transform: scale(1.05);
}

.realizacao-local {
    position: absolute;
    bottom: 14px;
    left: 14px;

    padding: 7px 12px;

    background: #ffed00;
    color: #1800ad;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 900;
}

.realizacao-conteudo {
    padding: 27px;
}

.realizacao-categoria {
    color: #ff3d00;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 900;
}

.realizacao-conteudo h4 {
    margin: 10px 0;
    color: #1800ad;
    font-size: 26px;
}

.realizacao-conteudo p {
    margin-bottom: 24px;
    line-height: 1.6;
    color: #555;
}

.btn-detalhes {
    padding: 12px 20px;

    background: #1800ad;
    color: white;

    border: 0;
    border-radius: 50px;

    font-weight: 800;

    cursor: pointer;

    transition: .25s ease;
}

.btn-detalhes:hover {
    background: #ff3d00;
}

.todas-realizacoes {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.btn-todas-realizacoes {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 16px 26px;

    background: #1800ad;
    color: white;

    border-radius: 50px;

    font-weight: 800;
    text-decoration: none;
}

.btn-todas-realizacoes span {
    font-size: 22px;
}


/* ======================================================
   MODAIS
====================================================== */

.modal-realizacao {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.modal-realizacao.ativo {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(11, 5, 60, .78);
    backdrop-filter: blur(6px);
}

.modal-caixa {
    position: relative;
    z-index: 2;

    width: min(850px, 100%);
    max-height: 90vh;

    overflow-y: auto;

    padding: 45px;

    background: white;

    border-radius: 25px;

    animation: modalEntrada .25s ease;
}

@keyframes modalEntrada {

    from {
        opacity: 0;
        transform: translateY(30px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-fechar {
    position: absolute;
    top: 18px;
    right: 20px;

    width: 44px;
    height: 44px;

    border: none;

    background: #f2f2f2;
    color: #1800ad;

    border-radius: 50%;

    font-size: 29px;
    line-height: 1;

    cursor: pointer;
}

.modal-categoria {
    color: #ff3d00;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2px;
}

.modal-caixa h2 {
    margin: 10px 0 35px;

    color: #1800ad;

    font-size: clamp(34px, 5vw, 55px);
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.modal-info-grid div {
    padding: 20px;

    background: #f7f7f7;

    border-radius: 15px;
}

.modal-info-grid span {
    display: block;

    margin-bottom: 8px;

    color: #ff3d00;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.modal-info-grid p {
    margin: 0;

    line-height: 1.6;
}

.modal-comprovacao {
    margin-top: 30px;

    padding: 25px;

    background: #1800ad;
    color: white;

    border-radius: 18px;
}

.modal-comprovacao h3 {
    margin-top: 0;
}

.modal-comprovacao a {
    color: #ffed00;
    font-weight: 800;
}

.modal-intro {
    margin-top: -20px;
    margin-bottom: 30px;

    color: #555;
    line-height: 1.6;
}


/* DOCUMENTOS */

.lista-documentos {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.documento-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px;

    background: #f5f5f5;

    border-radius: 15px;

    color: #1800ad;
    text-decoration: none;

    transition: background .2s ease;
}

.documento-item:hover {
    background: #ffed00;
}

.documento-item strong,
.documento-item span {
    display: block;
}

.documento-item div span {
    margin-top: 5px;

    color: #777;

    font-size: 13px;
}


/* ======================================================
   RESPONSIVO
====================================================== */

@media (max-width: 900px) {

    .pilares-realizacoes,
    .grid-realizacoes {
        grid-template-columns: 1fr;
    }

    .pilar-card {
        min-height: 260px;
    }

}

@media (max-width: 650px) {

    .realizacoes {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .pilares-realizacoes {
        margin-bottom: 65px;
    }

    .realizacao-imagem {
        height: 230px;
    }

    .modal-caixa {
        padding:
            55px
            22px
            28px;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
    }

    .documento-item {
        flex-direction: column;
        align-items: flex-start;
    }

}




@media (max-width: 560px) {
    .container { width: min(calc(100% - 24px), var(--max)); }
    .brand-name { font-size: 20px; }
    .brand-number { font-size: 19px; }
    .hero-copy > p { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-number { margin-top: 26px; }
    .photo-card { border-radius: 24px; transform: none; }
    .stamp { width: 94px; height: 94px; right: 8px; bottom: -18px; font-size: 16px; }
    .section { padding: 72px 0; }
}
