:root {
    --navy: #03132f;
    --navy-2: #061735;
    --navy-3: #0a2043;

    --gold: #d6a43b;
    --gold-light: #efc35e;

    --white: #f3f1eb;
    --text: #d6dce6;
    --muted: #9faabd;

    --line: rgba(255, 255, 255, .10);
    --line-gold: rgba(214, 164, 59, .32);
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--navy);
    color: var(--text);

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 14px;
    line-height: 1.8;

    -webkit-font-smoothing: antialiased;
}

a {
    transition: .25s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

p {
    margin-top: 0;
}


/* =========================================
   NAVBAR
========================================= */

.site-nav {
    min-height: 78px;

    background: rgba(3, 19, 47, .74);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    transition:
        background .25s ease,
        box-shadow .25s ease;
}

.site-nav.scrolled {
    background: rgba(3, 19, 47, .97);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .20);
}


/* Logo */

.site-nav .navbar-brand img {
    width: auto;
    height: 51px;
}


/* Menu */

.site-nav .navbar-nav {
    gap: 2px;
}

.site-nav .nav-link {
    padding: 8px 10px !important;

    color: #d5dbe5 !important;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--gold-light) !important;
}


/* Dropdowns */

.site-nav .dropdown-menu {
    min-width: 240px;
    margin-top: 10px;
    padding: 8px;
    background: rgba(3, 19, 47, .98);
    border: 1px solid rgba(214, 164, 59, .20);
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

.site-nav .dropdown-item {
    padding: 10px 12px;
    color: #d5dbe5;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: normal;
}

.site-nav .dropdown-item:hover,
.site-nav .dropdown-item:focus {
    color: var(--gold-light);
    background: rgba(214, 164, 59, .08);
}

@media (max-width: 991px) {
    .site-nav .dropdown-menu {
        width: 100%;
        margin-top: 4px;
        background: rgba(3, 19, 47, .96);
        border: 0;
        box-shadow: none;
    }

    .site-nav .dropdown-item {
        padding-left: 20px;
    }
}


/* Mobile */

.site-nav .navbar-toggler {
    border: 1px solid rgba(214, 164, 59, .45);

    border-radius: 0;
}

.site-nav .navbar-toggler:focus {
    box-shadow: none;
}


/* Redes sociais */

.nav-social a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    margin-left: 4px;

    color: var(--gold-light);

    border: 1px solid var(--line-gold);

    text-decoration: none;
}

.nav-social a:hover {
    color: var(--navy);

    background: var(--gold-light);

    border-color: var(--gold-light);
}



/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

   
    height: 1100px;

    overflow: hidden;

    display: flex;

    align-items: center;

    background:
        #061735;
}


/* =====================================================
   IMAGEM DO HERO
===================================================== */

.hero-image {
    position: absolute;

    inset: 0;

    z-index: 0;

    background-image:
        url("../../images/hero-rutier.png");

    background-repeat: no-repeat;

    background-size: cover;

    /*
     * O bottom ajuda a manter a pessoa
     * apoiada na composição inferior.
     */
    background-position:
        center bottom;

    transform:
        scale(1.01);
}


/* =====================================================
   OVERLAY
===================================================== */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(3, 18, 45, .96) 0%,
            rgba(3, 18, 45, .86) 32%,
            rgba(3, 18, 45, .45) 57%,
            rgba(3, 18, 45, .10) 100%
        );
}


/*
 * Escurecimento inferior
 */

.hero-overlay::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(3, 18, 45, .45) 0%,
            transparent 35%
        );
}


/* =====================================================
   CONTEÚDO
===================================================== */

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;
}


/* =====================================================
   COPY
===================================================== */

.hero-copy {
    width: 55%;

    margin-top: -200px;
    /*
     * Evita que o conteúdo fique colado
     * no topo da hero.
     */
 

    padding-bottom: 40px;
}


/* =====================================================
   LOGO
===================================================== */

.hero-logo {
    display: block;

    width: 200px;

    max-width: 100%;

    height: auto;

    margin-bottom: 38px;
}


/* =====================================================
   TÍTULO
===================================================== */

.hero-copy h1 {
    position: relative;

    margin: 0;

    color: #f5f1e9;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size:
        clamp(
            38px,
            4vw,
            76px
        );

    font-weight: 500;

    line-height: .91;

    letter-spacing: -.025em;

    text-wrap: balance;
}


/*
 * Parte dourada
 */

.hero-copy h1 em {
    display: block;

    margin-top: 7px;

    color:
        #e9b84d;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size:
        1.06em;

    font-weight: 500;

    font-style: italic;

    line-height: .88;

    letter-spacing: -.035em;

    text-shadow:
        0 2px 12px
        rgba(214, 164, 59, .20);
}


/* =====================================================
   LINHA DOURADA
===================================================== */

.hero-copy h1::after {
    content: "";

    display: block;

    position: relative;

    width: 100%;

    height: 1px;

    margin-top: 27px;

    background:
        linear-gradient(
            90deg,
            #c8912f,
            #e8b94e 65%,
            transparent
        );
}


/*
 * Pequeno losango no final da linha
 */

.hero-copy h1::before {
    content: "";

    position: absolute;

    bottom: -31px;

    left: 48%;

    width: 8px;

    height: 8px;

    background:
        #e7b84c;

    transform:
        rotate(45deg);

    z-index: 2;
}


/* =====================================================
   TEXTO
===================================================== */

.hero-copy p {
    max-width: 570px;

    margin: 27px 0 0;

    color:
        rgba(244, 242, 238, .88);

    font-family:
        'Montserrat',
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 400;

    line-height: 1.65;

    letter-spacing: .005em;
}


/* =====================================================
   BOTÕES
===================================================== */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 28px;
}


/* =====================================================
   BOTÃO DOURADO
===================================================== */

.hero-actions .btn-gold {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 25px;

    color:
        #07182f;

    background:
        linear-gradient(
            135deg,
            #dca23c,
            #f0c568
        );

    border:
        1px solid #e7b84c;

    font-family:
        'Montserrat',
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.hero-actions .btn-gold:hover {
    color:
        #07182f;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(218, 163, 59, .22);
}


/* =====================================================
   BOTÃO OUTLINE
===================================================== */

.hero-actions .btn-outline-gold {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 25px;

    color:
        #e8b84d;

    background:
        transparent;

    border:
        1px solid
        rgba(232, 184, 77, .75);

    font-family:
        'Montserrat',
        Arial,
        sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .10em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.hero-actions .btn-outline-gold:hover {
    color:
        #07182f;

    background:
        #e8b84d;

    transform:
        translateY(-2px);
}

/* =========================================
   SEÇÕES
========================================= */

.section {
    padding: 105px 0;
}

.section-dark {
    background: var(--navy);
}

.section-alt {
    background:
        linear-gradient(
            180deg,
            #061735 0%,
            #091d3e 100%
        );
}


/* Cabeçalho */

.section-heading {
    max-width: 800px;

    margin-bottom: 50px;
}

.centered-heading {
    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.section-heading h2,
.section-title {
    margin: 12px 0 18px;

    color: var(--white);

    font-size: clamp(
        38px,
        4.3vw,
        58px
    );

    font-weight: 500;

    line-height: 1.03;
}


/* Linha dourada */

.section-heading h2:after {
    content: '';

    display: block;

    width: 70px;
    height: 1px;

    margin-top: 22px;

    background: var(--gold);
}

.centered-heading h2:after {
    margin-right: auto;
    margin-left: auto;
}

.section-heading p {
    max-width: 700px;

    color: var(--muted);
}


/* =========================================
   MANIFESTO
========================================= */

.lead-serif {
    color: #eadbbd;

    font-family:
        'Cormorant Garamond',
        Georgia,
        serif;

    font-size: 26px;

    line-height: 1.27;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 12px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .16em;

    text-decoration: none;

    text-transform: uppercase;
}

.text-link:hover {
    color: #fff;

    gap: 13px;
}


/* Cards manifesto */

.manifesto-cards {
    display: grid;

    gap: 10px;
}

.manifesto-cards div {
    padding: 22px 25px;

    color: #ead9b1;

    background:
        rgba(18, 39, 72, .60);

    border: 1px solid var(--line);

    font-size: 12px;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.manifesto-cards span {
    display: inline-block;

    width: 30px;

    color: var(--gold);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 22px;

    letter-spacing: 0;
}


/* =========================================
   MISSÃO / VISÃO / VALORES
========================================= */

.info-card {
    min-height: 270px;

    padding: 32px;

    background:
        rgba(14, 35, 68, .72);

    border: 1px solid var(--line);
}

.card-kicker {
    display: block;

    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .25em;
}

.info-card h3,
.project-card h3 {
    margin-bottom: 12px;

    color: #ead9b6;

    font-size: 28px;

    font-weight: 500;

    line-height: 1.08;
}

.info-card p,
.project-card p {
    color: var(--muted);

    font-size: 13px;
}

.card-link {
    display: inline-flex;

    gap: 8px;

    margin-top: 14px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .15em;

    text-decoration: none;

    text-transform: uppercase;
}

.card-link:hover {
    color: #fff;
}


/* =========================================
   ÁREAS DE ATUAÇÃO
========================================= */

.number-card {
    min-height: 215px;

    padding: 29px;

    background:
        rgba(14, 35, 68, .68);

    border: 1px solid var(--line);
}

.number-card .number {
    display: block;

    margin-bottom: 6px;

    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 32px;

    line-height: 1;
}

.number-card h3 {
    margin-bottom: 10px;

    color: #ead9b6;

    font-size: 20px;

    font-weight: 500;

    line-height: 1.1;

    text-transform: uppercase;
}

.number-card p {
    margin-bottom: 0;

    color: var(--muted);

    font-size: 12px;
}

.section-action {
    margin-top: 40px;
}


/* =========================================
   DARIO / LEGADO
========================================= */

.legacy-photo {
    position: relative;

    overflow: hidden;

    border: 1px solid var(--line);
}

.legacy-photo:after {
    content: '';

    position: absolute;

    inset: 15px;

    border: 1px solid
        rgba(239, 195, 94, .25);

    pointer-events: none;
}

.legacy-photo img {
    display: block;

    width: 100%;

    height: 540px;

    object-fit: cover;

    object-position: center 20%;

    filter:
        saturate(.72)
        contrast(1.05);
}

.legacy-highlights {
    display: grid;

    gap: 12px;

    margin: 28px 0;
}

.legacy-highlights div {
    display: flex;

    gap: 18px;

    padding: 14px 0;

    border-bottom: 1px solid var(--line);
}

.legacy-highlights strong {
    min-width: 135px;

    color: var(--gold-light);

    font-size: 10px;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.legacy-highlights span {
    color: var(--muted);

    font-size: 12px;
}


/* =========================================
   ACERVO
========================================= */

.acervo-preview {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 14px;
}

.acervo-preview-card {
    min-height: 280px;
}

.acervo-preview-card.large {
    min-height: 360px;
}

.acervo-placeholder {
    height: 100%;

    min-height: inherit;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 15px;

    color: #9eabbc;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 164, 59, .13),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #102c53,
            #06152d
        );

    border: 1px solid var(--line);
}

.acervo-placeholder i {
    color: var(--gold);

    font-size: 38px;
}

.acervo-placeholder span {
    color: #ddd5c6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 25px;
}


/* =========================================
   PROJETOS
========================================= */

.project-card {
    min-height: 235px;

    padding: 30px;

    background:
        rgba(255, 255, 255, .025);

    border: 1px solid var(--line);
}

.project-card > i {
    display: block;

    margin-bottom: 22px;

    color: var(--gold-light);

    font-size: 29px;
}


/* =========================================
   CTA
========================================= */

.cta-band {
    padding: 65px 0;

    background:
        linear-gradient(
            100deg,
            #0b2348,
            #071832
        );

    border-top: 1px solid var(--line-gold);
    border-bottom: 1px solid var(--line-gold);
}

.cta-band .container {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cta-band h2 {
    margin: 11px 0 0;

    color: var(--white);

    font-size: clamp(
        32px,
        4vw,
        50px
    );

    font-weight: 500;

    line-height: 1;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 70px 0 25px;

    background: #020e25;

    border-top:
        1px solid rgba(255, 255, 255, .06);
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.7fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;
}


/* Marca */

.footer-brand img {
    width: auto;

    height: 70px;

    margin-bottom: 15px;
}

.footer-brand p {
    color: #8e9bad;

    font-size: 10px;

    letter-spacing: .18em;

    line-height: 1.7;

    text-transform: uppercase;
}


/* Colunas */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.footer-column h3 {
    margin-bottom: 12px;

    color: var(--gold-light);

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .2em;

    text-transform: uppercase;
}

.footer-column > a {
    color: #9da8b8;

    font-size: 11px;

    text-decoration: none;
}

.footer-column > a:hover {
    color: var(--gold-light);
}


/* Redes sociais */

.footer-social {
    display: flex;

    gap: 8px;

    margin-top: 17px;
}

.footer-social a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    color: var(--gold-light);

    border: 1px solid var(--line-gold);

    text-decoration: none;
}

.footer-social a:hover {
    color: var(--navy);

    background: var(--gold-light);
}


/* Rodapé inferior */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    color: #64728a;

    border-top:
        1px solid rgba(255, 255, 255, .06);

    font-size: 9px;

    letter-spacing: .06em;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 23px;

    z-index: 1000;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 18px;

    color: #fff;

    background: #25d366;

    border-radius: 30px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .30);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .08em;

    text-decoration: none;

    text-transform: uppercase;
}

.whatsapp-float i {
    font-size: 20px;
}

.whatsapp-float:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, .38);
}


/* =========================================
   VOLTAR AO TOPO
========================================= */

.back-top {
    position: fixed;

    right: 22px;
    bottom: 80px;

    z-index: 999;

    display: none;

    width: 42px;
    height: 42px;

    color: var(--gold-light);

    background: #071832;

    border: 1px solid var(--gold);
}

.back-top.show {
    display: block;
}


/* =========================================
   PÁGINAS INTERNAS
========================================= */

.inner-hero {
    position: relative;

    min-height: 610px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #061735,
            #0b2348
        );
}

.inner-hero:before {
    content: '';

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(214, 164, 59, .14),
            transparent 35%
        );
}

.inner-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 19, 47, .98),
            rgba(3, 19, 47, .70),
            rgba(3, 19, 47, .30)
        );
}

.inner-hero-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    padding:
        150px 0
        90px;
}

.inner-hero h1 {
    margin: 18px 0;

    color: var(--white);

    font-size:
        clamp(
            48px,
            6vw,
            78px
        );

    font-weight: 500;

    line-height: .94;
}

.inner-hero p {
    max-width: 650px;

    margin: 0;

    color: #c6cfdb;

    font-size: 15px;
}


/* =========================================
   DESTAQUE INSTITUCIONAL
========================================= */

.institution-highlight {
    position: relative;

    min-height: 420px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 50px;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 164, 59, .17),
            transparent 45%
        ),
        #071a38;

    border: 1px solid var(--line-gold);
}

.institution-highlight:before,
.institution-highlight:after {
    content: '';

    position: absolute;

    border:
        1px solid rgba(
            214,
            164,
            59,
            .20
        );
}

.institution-highlight:before {
    inset: 20px;
}

.institution-highlight:after {
    inset: 32px;
}

.institution-highlight-number {
    position: relative;

    z-index: 2;

    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 100px;

    line-height: .8;

    font-weight: 500;
}

.institution-highlight p {
    position: relative;

    z-index: 2;

    max-width: 300px;

    margin: 30px auto 0;

    color: #e6d7b9;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 26px;

    line-height: 1.2;
}


/* =========================================
   CARDS INSTITUCIONAIS
========================================= */

.institution-card {
    height: 100%;

    padding: 45px;

    background:
        rgba(14, 35, 68, .65);

    border: 1px solid var(--line);
}

.institution-card-large {
    min-height: 390px;
}

.institution-card h2 {
    margin: 14px 0 25px;

    color: #ead9b6;

    font-size: 37px;

    line-height: 1.05;

    font-weight: 500;
}

.institution-card p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================
   VALORES
========================================= */

.value-detail-card {
    min-height: 270px;

    padding: 30px;

    background:
        rgba(14, 35, 68, .68);

    border: 1px solid var(--line);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.value-detail-card:hover {
    transform: translateY(-5px);

    border-color: var(--line-gold);

    background:
        rgba(18, 43, 80, .78);
}

.value-detail-card > span {
    display: block;

    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 25px;

    line-height: 1;
}

.value-detail-card > i {
    display: block;

    margin: 20px 0;

    color: var(--gold-light);

    font-size: 25px;
}

.value-detail-card h3 {
    margin-bottom: 10px;

    color: #ead9b6;

    font-size: 22px;

    font-weight: 500;

    line-height: 1.1;
}

.value-detail-card p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================
   COMO ATUAMOS
========================================= */

.approach-list {
    border-top:
        1px solid var(--line);
}

.approach-item {
    display: grid;

    grid-template-columns:
        55px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom:
        1px solid var(--line);
}

.approach-item > span {
    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 27px;
}

.approach-item h3 {
    margin-bottom: 5px;

    color: #ead9b6;

    font-size: 23px;

    font-weight: 500;
}

.approach-item p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 1199px) {

    .site-nav .nav-link {
        padding-right: 7px !important;
        padding-left: 7px !important;

        font-size: 9px;
    }

}


@media (max-width: 991px) {

    .site-nav {
        min-height: 72px;
    }

    .site-nav .navbar-collapse {
        padding: 18px 0 22px;
    }

    .site-nav .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-social {
        display: none;
    }


    /* Hero */

    .hero {
        min-height: 900px;
    }

    .hero-image {
       background-position: 58% bottom;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 19, 47, .98) 0%,
                rgba(3, 19, 47, .83) 52%,
                rgba(3, 19, 47, .42) 100%
            );
    }


    .section {
        padding: 80px 0;
    }


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

}


@media (max-width: 767px) {

    .hero h1 {
        font-size: 52px;
    }


    .acervo-preview {
        grid-template-columns: 1fr;
    }

    .acervo-preview-card,
    .acervo-preview-card.large {
        min-height: 260px;
    }


    .legacy-photo img {
        height: 400px;
    }


    .cta-band .container {
        align-items: flex-start;

        flex-direction: column;
    }


    .inner-hero {
        min-height: 570px;
    }

    .inner-hero-content {
        padding:
            140px 0
            70px;
    }

    .inner-hero h1 {
        font-size: 47px;
    }


    .institution-highlight {
        min-height: 330px;
    }


    .institution-card {
        padding: 30px;
    }


    .institution-card-large {
        min-height: auto;
    }

}


@media (max-width: 575px) {

    body {
        font-size: 13px;
    }


    .hero {
        min-height: 760px;
    }


    .hero h1 {
        font-size: 46px;
    }


    .hero p {
        font-size: 13px;
    }


    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }


    .section {
        padding: 65px 0;
    }


    .section-heading h2,
    .section-title {
        font-size: 40px;
    }


    .lead-serif {
        font-size: 22px;
    }


    .legacy-photo img {
        height: 320px;
    }


    .legacy-highlights div {
        flex-direction: column;

        gap: 4px;
    }


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

        gap: 32px;
    }


    .footer-brand img {
        height: 60px;
    }


    .footer-bottom {
        flex-direction: column;
    }


    .whatsapp-float {
        right: 17px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        justify-content: center;

        padding: 0;

        border-radius: 50%;
    }

    .whatsapp-float span {
        display: none;
    }


    .back-top {
        right: 17px;

        bottom: 80px;
    }


    .approach-item {
        grid-template-columns:
            40px 1fr;

        gap: 10px;
    }

}


/* =========================================
   LEGADO
========================================= */

.legacy-hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--navy);
}

.legacy-hero-image {
    position: absolute;

    inset: 0;

    background-image:
        url('../../images/hero-rutier.jpeg');

    background-size: cover;

    background-position: center;

    filter: grayscale(.25);
}

.legacy-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 19, 47, .98) 0%,
            rgba(3, 19, 47, .82) 43%,
            rgba(3, 19, 47, .40) 100%
        );
}

.legacy-hero-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    padding:
        160px 0
        90px;
}

.legacy-hero h1 {
    margin: 18px 0 25px;

    color: var(--white);

    font-size:
        clamp(
            52px,
            7vw,
            92px
        );

    font-weight: 500;

    line-height: .88;
}

.legacy-hero p {
    max-width: 650px;

    color: #c5ceda;

    font-size: 14px;
}


/* Citação */

.legacy-quote {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 164, 59, .10),
            transparent 42%
        ),
        #061735;
}

.legacy-quote-inner {
    max-width: 850px;

    margin: auto;

    text-align: center;
}

.quote-mark {
    display: block;

    height: 55px;

    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 100px;

    line-height: .8;
}

.legacy-quote blockquote {
    margin: 20px 0 25px;

    color: #ead9b6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(
            30px,
            4vw,
            50px
        );

    font-weight: 500;

    line-height: 1.08;
}

.quote-line {
    display: block;

    width: 65px;
    height: 1px;

    margin: 25px auto;

    background: var(--gold);
}

.legacy-quote small {
    color: var(--gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .3em;
}


/* Galeria */

.legacy-gallery {
    display: grid;

    grid-template-columns:
        1.6fr 1fr 1fr;

    gap: 14px;

    margin-top: 50px;
}

.legacy-gallery-item {
    display: block;

    min-height: 290px;

    text-decoration: none;
}

.legacy-gallery-large {
    min-height: 390px;
}

.legacy-gallery-placeholder {
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 14px;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 164, 59, .12),
            transparent 42%
        ),
        #0a2043;

    border: 1px solid var(--line);

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.legacy-gallery-item:hover
.legacy-gallery-placeholder {
    transform: translateY(-5px);

    border-color: var(--line-gold);
}

.legacy-gallery-placeholder i {
    color: var(--gold-light);

    font-size: 35px;
}

.legacy-gallery-placeholder span {
    color: #e1d7c3;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 25px;
}


/* Pessoa */

.legacy-person-photo {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle,
            rgba(214, 164, 59, .13),
            transparent 45%
        ),
        #071a38;

    border: 1px solid var(--line);
}

.legacy-person-photo:after {
    content: '';

    position: absolute;

    inset: 18px;

    border: 1px solid
        rgba(239, 195, 94, .25);

    pointer-events: none;
}

.legacy-person-photo img {
    position: relative;

    z-index: 2;

    width: 300px;

    height: 400px;

    opacity: .9;
}


/* Responsivo */

@media (max-width: 767px) {

    .legacy-hero {
        min-height: 600px;
    }

    .legacy-hero-content {
        padding:
            140px 0
            70px;
    }

    .legacy-hero h1 {
        font-size: 51px;
    }

    .legacy-timeline:before {
        left: 23px;
    }

    .timeline-item {
        grid-template-columns:
            46px 1fr;

        gap: 15px;

        padding-bottom: 50px;
    }

    .timeline-number {
        font-size: 28px;
    }

    .timeline-content {
        padding-left: 15px;
    }

    .timeline-content h3 {
        font-size: 27px;
    }

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

    .legacy-gallery-item,
    .legacy-gallery-large {
        min-height: 270px;
    }

    .legacy-person-photo {
        min-height: 350px;
    }

}


/* =========================================
   DARIO RUTIER
========================================= */

.dario-hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--navy);
}

.dario-hero-image {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            #071a38,
            #0c2a52
        );
}

.dario-hero-image:after {
    content: '';

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 72% 40%,
            rgba(214, 164, 59, .15),
            transparent 30%
        );
}

.dario-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 19, 47, .98),
            rgba(3, 19, 47, .72),
            rgba(3, 19, 47, .25)
        );
}

.dario-hero-content {
    position: relative;

    z-index: 2;

    max-width: 820px;

    padding:
        160px 0
        90px;
}

.dario-hero h1 {
    margin: 18px 0 25px;

    color: var(--white);

    font-size:
        clamp(
            50px,
            6.5vw,
            88px
        );

    font-weight: 500;

    line-height: .9;
}

.dario-hero p {
    max-width: 600px;

    color: #c5cedb;

    font-size: 14px;
}


/* Retrato */

.dario-portrait {
    position: relative;

    min-height: 540px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 164, 59, .14),
            transparent 40%
        ),
        #071a38;

    border: 1px solid var(--line-gold);
}

.dario-portrait:before {
    content: '';

    position: absolute;

    inset: 20px;

    border: 1px solid
        rgba(239, 195, 94, .18);
}

.dario-portrait:after {
    content: '';

    position: absolute;

    inset: 35px;

    border: 1px solid
        rgba(239, 195, 94, .10);
}

.dario-portrait-frame {
    position: relative;

    z-index: 2;

    text-align: center;
}

.dario-portrait-frame span,
.dario-portrait-frame strong {
    display: block;

    font-family:
        'Cormorant Garamond',
        serif;

    line-height: .8;
}

.dario-portrait-frame span {
    color: #e3d4b5;

    font-size: 75px;

    font-weight: 400;
}

.dario-portrait-frame strong {
    margin-top: 8px;

    color: var(--gold-light);

    font-size: 92px;

    font-weight: 600;
}


/* Pilares */

.dario-pillar {
    position: relative;

    min-height: 300px;

    padding: 35px;

    background:
        rgba(14, 35, 68, .68);

    border: 1px solid var(--line);

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.dario-pillar:hover {
    transform: translateY(-5px);

    border-color: var(--line-gold);
}

.dario-pillar-number {
    display: block;

    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 27px;
}

.dario-pillar > i {
    display: block;

    margin: 25px 0 15px;

    color: var(--gold-light);

    font-size: 28px;
}

.dario-pillar h3 {
    margin-bottom: 10px;

    color: #ead9b6;

    font-size: 30px;

    font-weight: 500;
}

.dario-pillar p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* Carreira */

.dario-career-list {
    border-top: 1px solid var(--line);
}

.dario-career-list article {
    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid var(--line);
}

.dario-career-list article > span {
    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 30px;
}

.dario-career-list h3 {
    margin-bottom: 6px;

    color: #ead9b6;

    font-size: 25px;

    font-weight: 500;
}

.dario-career-list p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* Galeria */

.dario-gallery {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 14px;
}

.dario-gallery-item {
    min-height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: inherit;

    text-decoration: none;

    background:
        radial-gradient(
            circle,
            rgba(214, 164, 59, .12),
            transparent 45%
        ),
        #0a2043;

    border: 1px solid var(--line);

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.dario-gallery-main {
    min-height: 380px;
}

.dario-gallery-item:hover {
    color: inherit;

    transform: translateY(-5px);

    border-color: var(--line-gold);
}

.dario-gallery-item div {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;
}

.dario-gallery-item i {
    color: var(--gold-light);

    font-size: 36px;
}

.dario-gallery-item span {
    color: #e2d7c1;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 25px;
}


/* Legado */

.dario-legacy {
    max-width: 850px;

    margin: auto;

    text-align: center;
}

.dario-legacy h2 {
    margin: 15px 0 20px;

    color: var(--white);

    font-size:
        clamp(
            40px,
            5vw,
            65px
        );

    font-weight: 500;

    line-height: .98;
}

.dario-legacy p {
    max-width: 700px;

    margin-right: auto;
    margin-left: auto;

    color: var(--muted);

    font-size: 13px;
}

.dario-legacy-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* Responsivo */

@media (max-width: 767px) {

    .dario-hero {
        min-height: 600px;
    }

    .dario-hero-content {
        padding:
            140px 0
            70px;
    }

    .dario-hero h1 {
        font-size: 50px;
    }

    .dario-portrait {
        min-height: 390px;
    }

    .dario-portrait-frame span {
        font-size: 55px;
    }

    .dario-portrait-frame strong {
        font-size: 70px;
    }

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

    .dario-gallery-item,
    .dario-gallery-main {
        min-height: 270px;
    }

    .dario-career-list article {
        grid-template-columns:
            45px 1fr;

        gap: 12px;
    }

}


/* =========================================
   ATUAÇÃO
========================================= */

.atuacao-hero {
    background:
        linear-gradient(
            135deg,
            #061735,
            #0b2348
        );
}


/* Cards das áreas */

.area-card {
    position: relative;

    height: 100%;

    min-height: 330px;

    display: grid;

    grid-template-columns:
        70px 1fr;

    gap: 25px;

    padding: 35px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(14, 35, 68, .88),
            rgba(7, 25, 52, .72)
        );

    border: 1px solid var(--line);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.area-card:hover {
    transform: translateY(-6px);

    border-color: var(--line-gold);

    background:
        linear-gradient(
            135deg,
            rgba(18, 43, 80, .95),
            rgba(8, 28, 58, .88)
        );
}

.area-card-number {
    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 35px;

    line-height: 1;
}

.area-card-icon {
    position: absolute;

    right: 28px;
    top: 25px;

    color: rgba(239, 195, 94, .12);

    font-size: 70px;

    pointer-events: none;
}

.area-card-content {
    grid-column: 2;
}

.area-card-content .card-kicker {
    margin-bottom: 8px;
}

.area-card-content h3 {
    max-width: 430px;

    margin-bottom: 15px;

    color: #ead9b6;

    font-size: 32px;

    font-weight: 500;

    line-height: 1.02;
}

.area-card-content p {
    max-width: 480px;

    margin-bottom: 20px;

    color: var(--muted);

    font-size: 12px;
}

.area-card-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .16em;

    text-decoration: none;

    text-transform: uppercase;
}

.area-card-link:hover {
    color: #fff;

    gap: 13px;
}




/* Parcerias */

.partnership-section {
    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(214, 164, 59, .13),
            transparent 35%
        ),
        #061735;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.partnership-section:before {
    content: '';

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    top: -180px;

    border: 1px solid
        rgba(214, 164, 59, .12);

    border-radius: 50%;
}

.partnership-section:after {
    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    right: -105px;
    top: -105px;

    border: 1px solid
        rgba(214, 164, 59, .08);

    border-radius: 50%;
}

.partnership-content {
    position: relative;

    z-index: 2;

    max-width: 780px;
}

.partnership-content h2 {
    margin: 15px 0 20px;

    color: var(--white);

    font-size:
        clamp(
            42px,
            5vw,
            67px
        );

    font-weight: 500;

    line-height: .95;
}

.partnership-content p {
    max-width: 650px;

    margin-bottom: 28px;

    color: var(--muted);

    font-size: 13px;
}


/* Responsivo */

@media (max-width: 767px) {

    .area-card {
        grid-template-columns: 45px 1fr;

        gap: 15px;

        min-height: auto;

        padding: 28px;
    }

    .area-card-content {
        grid-column: 2;
    }

    .area-card-content h3 {
        font-size: 28px;
    }

    .area-card-icon {
        right: 20px;
        top: 20px;

        font-size: 55px;
    }

    .partnership-section {
        padding: 80px 0;
    }

}


/* =========================================
   ACERVO
========================================= */

.acervo-hero {
    background:
        linear-gradient(
            135deg,
            #061735,
            #0b2348
        );
}


/* =========================================
   CONTADOR
========================================= */

.acervo-counter {
    display: flex;

    align-items: baseline;

    gap: 12px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--line);
}

.acervo-counter strong {
    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 46px;

    font-weight: 500;

    line-height: 1;
}

.acervo-counter span {
    color: var(--muted);

    font-size: 10px;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* =========================================
   TOOLBAR
========================================= */

.acervo-toolbar {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

    padding:
        15px 18px;

    background:
        rgba(3, 19, 47, .45);

    border:
        1px solid var(--line);
}

.acervo-toolbar-info {
    display: flex;

    align-items: baseline;

    gap: 10px;
}

.acervo-toolbar-info span {
    color: var(--gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .18em;
}

.acervo-toolbar-info strong {
    color: var(--white);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 25px;

    font-weight: 500;
}

.acervo-toolbar-info small {
    color: var(--muted);

    font-size: 10px;
}

.acervo-view-options {
    display: flex;

    gap: 5px;
}

.acervo-view-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #8795aa;

    background: transparent;

    border:
        1px solid var(--line);

    cursor: pointer;

    transition: .25s ease;
}

.acervo-view-button:hover,
.acervo-view-button.active {
    color: var(--navy);

    background: var(--gold-light);

    border-color: var(--gold-light);
}


/* =========================================
   GRID
========================================= */

.acervo-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


/* =========================================
   ITEM
========================================= */

.acervo-item {
    min-width: 0;

    overflow: hidden;
}

.acervo-image {
    position: relative;

    display: block;

    width: 100%;

    height: 300px;

    padding: 0;

    overflow: hidden;

    background:
        #071a38;

    border: 1px solid var(--line);

    cursor: pointer;
}

.acervo-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease,
        filter .5s ease;
}

.acervo-image:hover img {
    transform: scale(1.045);

    filter: brightness(.70);
}


/* =========================================
   OVERLAY
========================================= */

.acervo-image-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(3, 19, 47, .35);

    opacity: 0;

    transition: opacity .3s ease;
}

.acervo-image:hover
.acervo-image-overlay {
    opacity: 1;
}

.acervo-image-overlay span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    color: var(--gold-light);

    background:
        rgba(3, 19, 47, .65);

    border:
        1px solid var(--gold-light);

    font-size: 18px;
}


/* =========================================
   CAPTION
========================================= */

.acervo-item-caption {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding:
        13px 3px 5px;
}

.acervo-item-caption > span {
    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 19px;

    line-height: 1;
}

.acervo-item-caption p {
    margin: 0;

    overflow: hidden;

    color: #9ba8ba;

    font-size: 9px;

    letter-spacing: .06em;

    line-height: 1.5;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================
   VISUALIZAÇÃO GRANDE
========================================= */

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

.acervo-grid.large .acervo-image {
    height: 440px;
}


/* =========================================
   ACERVO VAZIO
========================================= */

.acervo-empty {
    min-height: 400px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 50px;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(214, 164, 59, .10),
            transparent 45%
        ),
        #071a38;

    border:
        1px solid var(--line);
}

.acervo-empty i {
    margin-bottom: 20px;

    color: var(--gold-light);

    font-size: 45px;
}

.acervo-empty h3 {
    margin-bottom: 10px;

    color: #ead9b6;

    font-size: 30px;

    font-weight: 500;
}

.acervo-empty p {
    max-width: 500px;

    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================
   LIGHTBOX
========================================= */

.acervo-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(1, 8, 20, .97);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.acervo-lightbox.open {
    opacity: 1;

    visibility: visible;
}

.acervo-lightbox-content {
    position: relative;

    width: min(1200px, 90vw);

    max-height: 92vh;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.acervo-lightbox-image-wrapper {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    max-height: 78vh;
}

.acervo-lightbox-image-wrapper img {
    display: block;

    max-width: 100%;

    max-height: 78vh;

    object-fit: contain;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, .45);
}

.acervo-lightbox-info {
    width: 100%;

    padding-top: 17px;

    text-align: center;
}

.acervo-lightbox-info > span {
    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 20px;
}

.acervo-lightbox-info h3 {
    margin: 3px 0;

    color: #ead9b6;

    font-size: 25px;

    font-weight: 500;
}

.acervo-lightbox-info small {
    display: block;

    overflow: hidden;

    color: #78869b;

    font-size: 9px;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================
   BOTÕES LIGHTBOX
========================================= */

.acervo-lightbox-close,
.acervo-lightbox-prev,
.acervo-lightbox-next {
    position: absolute;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold-light);

    background:
        rgba(7, 24, 50, .88);

    border:
        1px solid var(--line-gold);

    cursor: pointer;

    transition: .25s ease;
}

.acervo-lightbox-close:hover,
.acervo-lightbox-prev:hover,
.acervo-lightbox-next:hover {
    color: var(--navy);

    background: var(--gold-light);
}

.acervo-lightbox-close {
    top: 22px;
    right: 22px;

    width: 45px;
    height: 45px;
}

.acervo-lightbox-prev,
.acervo-lightbox-next {
    top: 50%;

    width: 50px;
    height: 50px;

    margin-top: -25px;
}

.acervo-lightbox-prev {
    left: 25px;
}

.acervo-lightbox-next {
    right: 25px;
}


/* =========================================
   RESPONSIVIDADE
========================================= */

@media (max-width: 991px) {

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

    .acervo-grid.large {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 575px) {

    .acervo-toolbar {
        align-items: flex-start;

        flex-direction: column;
    }

    .acervo-grid,
    .acervo-grid.large {
        grid-template-columns: 1fr;
    }

    .acervo-image,
    .acervo-grid.large .acervo-image {
        height: 290px;
    }

    .acervo-lightbox {
        padding: 12px;
    }

    .acervo-lightbox-prev,
    .acervo-lightbox-next {
        top: auto;
        bottom: 85px;

        width: 42px;
        height: 42px;

        margin-top: 0;
    }

    .acervo-lightbox-prev {
        left: 15px;
    }

    .acervo-lightbox-next {
        right: 15px;
    }

    .acervo-lightbox-close {
        top: 15px;
        right: 15px;
    }

}





/* =========================================
   PROJETOS
========================================= */

.projetos-hero {
    background:
        linear-gradient(
            135deg,
            #061735,
            #0b2348
        );
}


/* =========================================
   CARD
========================================= */

.project-card {
    height: 100%;

    overflow: hidden;

    background:
        #081c3a;

    border:
        1px solid var(--line);

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.project-card:hover {
    transform: translateY(-6px);

    border-color:
        var(--line-gold);
}


/* =========================================
   IMAGEM
========================================= */

.project-card-image {
    position: relative;

    height: 280px;

    overflow: hidden;

    background:
        #061735;
}

.project-placeholder {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 164, 59, .14),
            transparent 45%
        );
}

.project-placeholder i {
    color:
        rgba(239, 195, 94, .30);

    font-size: 70px;
}


/* =========================================
   CONTEÚDO
========================================= */

.project-card-content {
    padding: 30px;
}

.project-card-content h3 {
    margin: 8px 0 13px;

    color: #ead9b6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 35px;

    font-weight: 500;
}

.project-card-content p {
    max-width: 500px;

    margin-bottom: 22px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================
   LINK
========================================= */

.project-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .16em;

    text-decoration: none;

    text-transform: uppercase;

    transition: .25s ease;
}

.project-link:hover {
    color: #fff;

    gap: 14px;
}


/* =========================================
   PROCESSO
========================================= */

.project-process {
    border-top:
        1px solid var(--line);
}

.project-process-item {
    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 20px;

    padding: 25px 0;

    border-bottom:
        1px solid var(--line);
}

.project-process-item > span {
    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 30px;
}

.project-process-item h3 {
    margin-bottom: 5px;

    color: #ead9b6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 27px;

    font-weight: 500;
}

.project-process-item p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================
   PARCERIA
========================================= */

.project-partnership {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(214, 164, 59, .14),
            transparent 35%
        ),
        #061735;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}

.project-partnership-content {
    position: relative;

    z-index: 2;

    max-width: 780px;
}

.project-partnership-content h2 {
    margin: 15px 0 20px;

    color: var(--white);

    font-size:
        clamp(
            42px,
            5vw,
            67px
        );

    font-weight: 500;

    line-height: .95;
}

.project-partnership-content p {
    max-width: 650px;

    margin-bottom: 28px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .project-card-image {
        height: 230px;
    }

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

    .project-process-item {
        grid-template-columns:
            45px 1fr;

        gap: 12px;
    }

    .project-partnership {
        padding: 80px 0;
    }

}





/* =========================================
   CONTATO
========================================= */

.contato-hero {
    background:
        linear-gradient(
            135deg,
            #061735,
            #0b2348
        );
}


/* =========================================
   INTRO
========================================= */

.contact-intro {
    max-width: 500px;

    margin-bottom: 40px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================
   INFORMAÇÕES
========================================= */

.contact-info-item {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    margin-bottom: 25px;
}

.contact-info-icon {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    color: var(--gold-light);

    border:
        1px solid var(--line);
}

.contact-info-item span {
    display: block;

    margin-bottom: 5px;

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .16em;
}

.contact-info-item a,
.contact-info-item p {
    margin: 0;

    color: #a8b4c4;

    font-size: 11px;

    line-height: 1.6;

    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--gold-light);
}


/* =========================================
   REDES
========================================= */

.contact-social {
    margin-top: 40px;

    padding-top: 25px;

    border-top:
        1px solid var(--line);
}

.contact-social > span {
    display: block;

    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .16em;
}

.contact-social > div {
    display: flex;

    gap: 7px;
}

.contact-social a {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    color: #8795aa;

    border:
        1px solid var(--line);

    text-decoration: none;

    transition: .25s ease;
}

.contact-social a:hover {
    color: var(--navy);

    background: var(--gold-light);

    border-color: var(--gold-light);
}


/* =========================================
   FORMULÁRIO
========================================= */

.contact-form-wrapper {
    padding: 40px;

    background:
        #081c3a;

    border:
        1px solid var(--line);
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading h2 {
    margin-top: 10px;

    color: #ead9b6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 38px;

    font-weight: 500;
}


/* =========================================
   CAMPOS
========================================= */

.contact-form label {
    display: block;

    margin-bottom: 8px;

    color: #a8b4c4;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    display: block;

    width: 100%;

    padding: 13px 14px;

    color: #dce3ed;

    background:
        #061735;

    border:
        1px solid var(--line);

    border-radius: 0;

    outline: none;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 11px;

    transition: .25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #53647a;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color:
        rgba(239, 195, 94, .55);

    box-shadow:
        0 0 0 2px
        rgba(239, 195, 94, .05);
}

.contact-form textarea {
    resize: vertical;

    min-height: 160px;
}

.contact-form select {
    appearance: auto;
}


/* =========================================
   CHECKBOX
========================================= */

.contact-checkbox {
    display: flex !important;

    align-items: flex-start;

    gap: 10px;

    cursor: pointer;
}

.contact-checkbox input {
    flex-shrink: 0;

    width: 15px;

    height: 15px;

    margin-top: 1px;

    accent-color: var(--gold-light);
}

.contact-checkbox span {
    color: #718096;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: 0;

    line-height: 1.5;

    text-transform: none;
}


/* =========================================
   BOTÃO
========================================= */

.contact-submit {
    min-width: 190px;
}


/* =========================================
   WHATSAPP
========================================= */

.contact-whatsapp {
    padding: 75px 0;

    background:
        #061735;

    border-top:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}

.contact-whatsapp-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.contact-whatsapp-content h2 {
    margin: 10px 0;

    color: #ead9b6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 42px;

    font-weight: 500;
}

.contact-whatsapp-content p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}

.btn-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    color: #fff;

    background: #25d366;

    border: 1px solid #25d366;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .12em;

    text-decoration: none;

    text-transform: uppercase;

    white-space: nowrap;

    transition: .25s ease;
}

.btn-whatsapp:hover {
    color: #fff;

    background: #20bd5b;

    border-color: #20bd5b;

    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-form-heading h2 {
        font-size: 32px;
    }

    .contact-whatsapp {
        padding: 60px 0;
    }

    .contact-whatsapp-content {
        align-items: flex-start;

        flex-direction: column;
    }

    .contact-whatsapp-content h2 {
        font-size: 36px;
    }

}


/* =========================================
   PÁGINA DE OBRIGADO
========================================= */

.thanks-page {
    min-height: 75vh;

    display: flex;

    align-items: center;

    padding: 150px 0 100px;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 164, 59, .10),
            transparent 40%
        ),
        #061735;
}

.thanks-content {
    max-width: 760px;

    margin: 0 auto;

    text-align: center;
}

.thanks-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 76px;

    height: 76px;

    margin: 0 auto 28px;

    color: var(--gold-light);

    border:
        1px solid var(--gold-light);

    border-radius: 50%;

    font-size: 32px;
}

.thanks-content h1 {
    margin: 14px 0 22px;

    color: var(--white);

    font-size:
        clamp(
            48px,
            6vw,
            78px
        );

    font-weight: 500;

    line-height: .95;
}

.thanks-content p {
    max-width: 620px;

    margin: 0 auto 10px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.thanks-actions {
    display: flex;

    justify-content: center;

    gap: 14px;

    margin-top: 34px;

    flex-wrap: wrap;
}





/* =========================================
   DOCUMENTOS
========================================= */

.documentos-hero {
    background:
        linear-gradient(
            135deg,
            #061735,
            #0b2348
        );
}


/* =========================================
   CONTADOR
========================================= */

.documentos-counter {
    display: flex;

    align-items: baseline;

    gap: 12px;

    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid var(--line);
}

.documentos-counter strong {
    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 48px;

    font-weight: 500;

    line-height: 1;
}

.documentos-counter span {
    color: var(--muted);

    font-size: 10px;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* =========================================
   TOOLBAR
========================================= */

.documentos-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 25px;

    padding: 15px 18px;

    background:
        rgba(3, 19, 47, .45);

    border:
        1px solid var(--line);
}


/* Informação */

.documentos-toolbar-info {
    display: flex;

    align-items: center;

    gap: 10px;
}

.documentos-toolbar-info i {
    color: var(--gold-light);

    font-size: 17px;
}

.documentos-toolbar-info span {
    color: #a8b4c4;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* Busca */

.documentos-search {
    position: relative;

    width: min(320px, 100%);
}

.documentos-search i {
    position: absolute;

    top: 50%;

    left: 13px;

    color: #68788d;

    transform:
        translateY(-50%);
}

.documentos-search input {
    width: 100%;

    height: 40px;

    padding:
        0 14px 0 38px;

    color: #dce3ed;

    background:
        #061735;

    border:
        1px solid var(--line);

    outline: none;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 10px;

    transition: .25s ease;
}

.documentos-search input::placeholder {
    color: #596a80;
}

.documentos-search input:focus {
    border-color:
        rgba(239, 195, 94, .55);
}


/* =========================================
   LISTA
========================================= */

.documents-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* =========================================
   CARD
========================================= */

.document-card {
    display: grid;

    grid-template-columns:
        60px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 20px;

    background:
        #081c3a;

    border:
        1px solid var(--line);

    transition:
        border-color .25s ease,
        transform .25s ease,
        background .25s ease;
}

.document-card:hover {
    transform: translateX(4px);

    background:
        #0a2143;

    border-color:
        var(--line-gold);
}


/* =========================================
   ÍCONE
========================================= */

.document-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    color: #e25757;

    background:
        rgba(226, 87, 87, .07);

    border:
        1px solid
        rgba(226, 87, 87, .25);

    font-size: 25px;
}


/* =========================================
   CONTEÚDO
========================================= */

.document-content {
    min-width: 0;

    position: relative;

    padding-left: 45px;
}

.document-number {
    position: absolute;

    top: 2px;

    left: 0;

    color: var(--gold-light);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 18px;
}

.document-content h3 {
    margin: 0 0 5px;

    overflow: hidden;

    color: #ead9b6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 25px;

    font-weight: 500;

    line-height: 1.1;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.document-content p {
    margin: 0;

    color: #6f8096;

    font-size: 9px;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* =========================================
   AÇÕES
========================================= */

.document-actions {
    display: flex;

    align-items: center;

    gap: 7px;
}

.document-action {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 105px;

    padding: 10px 13px;

    color: #9caabd;

    background:
        transparent;

    border:
        1px solid var(--line);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .08em;

    text-decoration: none;

    text-transform: uppercase;

    transition: .25s ease;
}

.document-action:hover {
    color: var(--navy);

    background:
        var(--gold-light);

    border-color:
        var(--gold-light);
}

.document-download {
    color: var(--gold-light);

    border-color:
        rgba(239, 195, 94, .25);
}


/* =========================================
   SEM RESULTADOS
========================================= */

.documents-no-results {
    display: none;

    padding: 60px 20px;

    text-align: center;

    background:
        #081c3a;

    border:
        1px solid var(--line);
}

.documents-no-results i {
    color: var(--gold-light);

    font-size: 30px;
}

.documents-no-results h3 {
    margin: 15px 0 8px;

    color: #ead9b6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 30px;

    font-weight: 500;
}

.documents-no-results p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================
   NENHUM DOCUMENTO
========================================= */

.documents-empty {
    min-height: 400px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 50px;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(214, 164, 59, .10),
            transparent 45%
        ),
        #071a38;

    border:
        1px solid var(--line);
}

.documents-empty i {
    margin-bottom: 20px;

    color: var(--gold-light);

    font-size: 50px;
}

.documents-empty h3 {
    margin-bottom: 10px;

    color: #ead9b6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 32px;

    font-weight: 500;
}

.documents-empty p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 767px) {

    .documentos-toolbar {
        align-items: stretch;

        flex-direction: column;
    }

    .documentos-search {
        width: 100%;
    }

    .document-card {
        grid-template-columns:
            50px 1fr;

        gap: 15px;

        padding: 15px;
    }

    .document-icon {
        width: 50px;

        height: 50px;

        font-size: 21px;
    }

    .document-content {
        padding-left: 35px;
    }

    .document-content h3 {
        font-size: 22px;
    }

    .document-actions {
        grid-column: 1 / -1;

        width: 100%;

        padding-top: 5px;
    }

    .document-action {
        flex: 1;

        min-width: 0;
    }

}


@media (max-width: 400px) {

    .document-actions {
        flex-direction: column;
    }

    .document-action {
        width: 100%;
    }

}



.timeline-section {
    position: relative;
    padding: 140px 0;
    background: #f7f5f0;
    overflow: hidden;
}

.timeline-header {
    max-width: 700px;
    margin: 0 auto 100px;
    text-align: center;
}


.timeline-header h2, p {
   color: #020e25;
}

.timeline-header span {
    display: block;
    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #a88b55;
}


/* ================================
   TIMELINE
================================ */

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


/* LINHA CENTRAL */

.timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 50%;

    width: 2px;

    background: #d8d1c3;

    transform: translateX(-50%);
}


/* LINHA DE PROGRESSO */

.timeline::after {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 2px;
    height: var(--timeline-progress, 0%);

    background: #a88b55;

    transform: translateX(-50%);

    transition: height .15s linear;
}


/* ================================
   ITEM
================================ */

.timeline-item {
    position: relative;

    display: flex;

    width: 100%;

    min-height: 500px;

    margin-bottom: 80px;

    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}


/* ================================
   CONTEÚDO
================================ */

.timeline-content {
    width: calc(50% - 70px);

    display: flex;

    /* IMPORTANTE:
       imagem em cima
       texto embaixo */
    flex-direction: column;

    align-items: flex-start;

    gap: 25px;

    opacity: 0;

    transform: translateY(70px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);
}


.timeline-item.visible .timeline-content {
    opacity: 1;

    transform: translateY(0);
}


/* ================================
   LADO ESQUERDO
================================ */

.timeline-left {
    justify-content: flex-start;
}

.timeline-left .timeline-content {
    margin-right: auto;
}


/* ================================
   LADO DIREITO
================================ */

.timeline-right {
    justify-content: flex-end;
}

.timeline-right .timeline-content {
    margin-left: auto;

    /* NÃO inverter */
    flex-direction: column;
}


/* ================================
   IMAGEM
================================ */

.timeline-image {
    width: 100%;
    max-width: 420px;

    height: 360px;

    overflow: hidden;

    border-radius: 4px;

    background: #ddd;
}


.timeline-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.08);

    transition: transform .8s ease;
}


.timeline-item.visible .timeline-image img {
    transform: scale(1);
}


/* ================================
   TEXTO
================================ */

.timeline-text {
    width: 100%;
    max-width: 420px;
}


.timeline-number {
    display: block;

    margin-bottom: 12px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #a88b55;
}


.timeline-text h3 {
    margin: 0 0 12px;

    font-size: 28px;

    line-height: 1.15;

    font-weight: 500;

    color: #222;
}


.timeline-text p {
    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color: #666;
}


/* ================================
   MARCADOR DA LINHA
================================ */

.timeline-dot {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 18px;
    height: 18px;

    border: 4px solid #f7f5f0;

    border-radius: 50%;

    background: #d8d1c3;

    transform: translate(-50%, -50%);

    z-index: 5;

    transition:
        background .5s ease,
        transform .5s ease;
}


.timeline-item.visible .timeline-dot {
    background: #a88b55;

    transform:
        translate(-50%, -50%)
        scale(1.25);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .timeline-section {
        padding: 90px 20px;
    }


    .timeline::before,
    .timeline::after {
        left: 15px;

        transform: none;
    }


    .timeline-item {
        min-height: auto;

        margin-bottom: 70px;

        padding-left: 45px;

        justify-content: flex-start !important;
    }


    .timeline-content,
    .timeline-right .timeline-content {
        width: 100%;

        margin: 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .timeline-image {
        width: 100%;

        max-width: none;

        height: 360px;
    }


    .timeline-text {
        max-width: none;
    }


    .timeline-dot {
        left: 15px;

        top: 30px;

        transform: translate(-50%, 0);
    }


    .timeline-item.visible .timeline-dot {
        transform:
            translate(-50%, 0)
            scale(1.25);
    }

}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;

    padding: 80px 0 25px;

    background:
        #04142d;

    border-top:
        1px solid var(--line);
}


/* Logo */

.footer-logo {
    display: inline-block;

    margin-bottom: 20px;
}

.footer-logo img {
    display: block;

    width: 145px;

    height: auto;
}


.footer-description {
    max-width: 270px;

    margin-bottom: 25px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}


/* Redes */

.footer-social {
    display: flex;

    gap: 8px;
}

.footer-social a {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    color: #9aa8bb;

    border:
        1px solid var(--line);

    text-decoration: none;

    transition: .25s ease;
}

.footer-social a:hover {
    color: var(--navy);

    background:
        var(--gold-light);

    border-color:
        var(--gold-light);
}


/* Títulos */

.footer-title {
    margin-bottom: 20px;

    color: #ead9b6;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 25px;

    font-weight: 500;
}


/* Links */

.footer-links {
    margin: 0;

    padding: 0;

    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #8998ad;

    font-size: 10px;

    text-decoration: none;

    transition: .25s ease;
}

.footer-links a:hover {
    color: var(--gold-light);

    padding-left: 4px;
}


/* Contato */

.footer-contact-text {
    max-width: 330px;

    margin-bottom: 20px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;
}

.footer-contact-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .12em;

    text-decoration: none;

    text-transform: uppercase;
}

.footer-contact-link:hover {
    color: #fff;

    gap: 15px;
}


/* WhatsApp */

.footer-whatsapp {
    display: flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    padding: 11px 15px;

    color: #dce6dd;

    background:
        rgba(37, 211, 102, .08);

    border:
        1px solid rgba(37, 211, 102, .25);

    font-size: 10px;

    text-decoration: none;

    transition: .25s ease;
}

.footer-whatsapp i {
    font-size: 17px;
}

.footer-whatsapp:hover {
    color: #fff;

    background:
        rgba(37, 211, 102, .15);

    border-color:
        rgba(37, 211, 102, .5);
}


/* Rodapé inferior */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 60px;

    padding-top: 20px;

    color: #66758b;

    border-top:
        1px solid var(--line);

    font-size: 8px;

    letter-spacing: .05em;
}


/* =========================================
   WHATSAPP FLUTUANTE
========================================= */

.whatsapp-floating {
    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 999;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    color: #fff;

    background: #25d366;

    border-radius: 50%;

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, .25);

    font-size: 25px;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.whatsapp-floating:hover {
    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 12px 35px
        rgba(37, 211, 102, .25);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .site-footer {
        padding: 60px 0 25px;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        margin-top: 40px;
    }

    .whatsapp-floating {
        right: 18px;

        bottom: 18px;

        width: 52px;

        height: 52px;

        font-size: 22px;
    }

}

/* =========================================
   IDENTIDADE VISUAL — DOURADO E BRANCO
========================================= */
h1, h2, h3, h4, h5, h6,
.section-title, .section-heading h2, .inner-hero-content h1,
.dario-hero-content h1, .hero h1 {
    color: var(--gold-light) !important;
}

p, .section-heading p, .lead-serif, .info-card p, .project-card p,
.number-card p, .legacy-highlights span, .footer-description,
.footer-contact-text, .institution-card p, .value-detail-card p,
.approach-item p, .dario-career-list p, .dario-legacy p {
    color: #fff !important;
}

.site-nav .navbar-brand img, .footer-logo img {
    object-fit: contain;
}

.site-nav .navbar-brand img { height: 56px; max-width: 180px; }
.footer-logo img { height: 105px; max-width: 230px; }

.acervo-mini-grid {
    display:grid; grid-template-columns:repeat(4,1fr); gap:12px;
}
.acervo-mini-item { position:relative; overflow:hidden; border:1px solid var(--line); min-height:150px; background:#091d3e; }
.acervo-mini-item img { width:100%; height:180px; object-fit:cover; display:block; transition:transform .35s ease; }
.acervo-mini-item:hover img { transform:scale(1.04); }
.acervo-mini-label { position:absolute; left:10px; bottom:10px; padding:5px 9px; background:rgba(3,19,47,.82); color:#fff; font-size:10px; text-transform:uppercase; letter-spacing:.12em; }

.recognition-section { background:var(--navy-2); border-top:1px solid var(--line-gold); }
.recognition-copy { max-width:900px; margin:0 auto 35px; text-align:center; }
.recognition-names { column-count:3; column-gap:35px; padding:28px; border:1px solid var(--line); background:rgba(255,255,255,.025); color:#fff; line-height:1.9; font-size:12px; }
.recognition-note { margin-top:25px; padding:20px 24px; border-left:2px solid var(--gold); background:rgba(214,164,59,.06); }
.recognition-note strong { display:block; color:var(--gold-light); margin-bottom:8px; }
@media(max-width:991px){ .acervo-mini-grid{grid-template-columns:repeat(2,1fr)} .recognition-names{column-count:2} }
@media(max-width:575px){ .acervo-mini-grid,.recognition-names{grid-template-columns:1fr; column-count:1} }


/* Acervo compacto */
.acervo-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.acervo-image { height: 220px; }
.acervo-grid.large { grid-template-columns: repeat(3, 1fr); }
.acervo-grid.large .acervo-image { height: 300px; }
@media(max-width:991px){ .acervo-grid{grid-template-columns:repeat(3,1fr)} }
@media(max-width:767px){ .acervo-grid,.acervo-grid.large{grid-template-columns:repeat(2,1fr)} .acervo-image,.acervo-grid.large .acervo-image{height:210px} }
@media(max-width:575px){ .acervo-grid,.acervo-grid.large{grid-template-columns:1fr 1fr} .acervo-image,.acervo-grid.large .acervo-image{height:170px} }

/* =========================================
   AJUSTES DA NOVA COPY — HOME
========================================= */

/* Uma única linha para as frentes no desktop. */
.areas-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.areas-row .number-card {
    min-width: 0;
    min-height: 0;
    padding: 24px 20px;
}

.areas-row .number-card h3 {
    font-size: 18px;
}

.areas-row .number-card p {
    font-size: 11px;
    line-height: 1.65;
}

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

.work-card {
    padding: 26px 22px;
    min-height: 205px;
    border: 1px solid var(--line);
    background: rgba(14, 35, 68, .68);
}

.work-card > span {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    line-height: 1;
}

.work-card h3 {
    margin: 0 0 10px;
    color: var(--gold-light);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.08;
}

.work-card p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.7;
}

.acervo-note {
    margin: 25px auto 0;
    max-width: 760px;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

/* Em qualquer bloco realmente branco, usar azul para títulos e parágrafos. */
.section-light,
.bg-white,
.white-section {
    color: #12345b;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.white-section h1,
.white-section h2,
.white-section h3,
.white-section h4,
.white-section h5,
.white-section h6 {
    color: #12345b;
}

.section-light p,
.bg-white p,
.white-section p,
.section-light li,
.bg-white li,
.white-section li {
    color: #244c76;
}

.section-light .eyebrow,
.bg-white .eyebrow,
.white-section .eyebrow,
.section-light .card-kicker,
.bg-white .card-kicker,
.white-section .card-kicker {
    color: #b88624;
}

/* Contraste dos cards escuros permanece branco no corpo e dourado nos títulos. */
.number-card p,
.project-card p,
.info-card p,
.legacy-highlights span,
.recognition-copy p,
.recognition-note p,
.recognition-names {
    color: #fff;
}

.info-card h3,
.project-card h3,
.number-card h3,
.recognition-copy h3,
.recognition-section .section-heading h2 {
    color: var(--gold-light);
}

.recognition-section .section-heading h2 {
    font-size: clamp(38px, 4.3vw, 58px);
}

.recognition-copy h3 {
    font-size: 30px;
}

@media (max-width: 1199px) {
    .areas-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .works-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .areas-row,
    .works-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   GRID ÚNICA LINHA + ÍCONES
   Ajuste solicitado para desktop
========================================= */

@media (min-width: 992px) {

    /* Frentes de atuação: 5 cards em uma única linha */
    .areas-row {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 14px;
        align-items: stretch;
    }

    .areas-row .number-card {
        min-height: 245px;
        padding: 24px 18px;
    }

    /* Projetos: 5 cards em uma única linha */
    .projects-home-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        align-items: stretch;
    }

    .projects-home-grid .project-card {
        min-width: 0;
        min-height: 245px;
        padding: 24px 18px;
    }

    /* Cargos: 6 cards em uma única linha */
    .career-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
        align-items: stretch;
    }

    .career-grid > div {
        min-width: 0;
    }

    .career-grid .number-card {
        min-height: 255px;
        padding: 22px 16px;
    }

    /* Grandes obras: 8 cards em uma única linha */
    .dario-works-grid {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 10px;
        align-items: stretch;
    }

    .dario-works-grid > div {
        min-width: 0;
    }

    .dario-works-grid .number-card {
        min-height: 265px;
        padding: 20px 13px;
    }

    .dario-works-grid .number-card h3 {
        font-size: 15px;
        line-height: 1.08;
    }

    .dario-works-grid .number-card p {
        font-size: 10px;
        line-height: 1.55;
    }

    /* Acervo: miniaturas em uma única linha */
    .acervo-mini-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Ícones das frentes */
.area-icon {
    display: block;
    margin-bottom: 13px;
    color: var(--gold-light);
    font-size: 25px;
    line-height: 1;
}

/* Ícones de cargos */
.career-icon {
    display: block;
    margin-bottom: 13px;
    color: var(--gold-light);
    font-size: 24px;
    line-height: 1;
}

/* Ícones de grandes obras */
.work-icon {
    display: block;
    margin-bottom: 13px;
    color: var(--gold-light);
    font-size: 23px;
    line-height: 1;
}

/* Ícones dos projetos */
.projects-home-grid .project-card > i {
    margin-bottom: 17px;
    color: var(--gold-light);
    font-size: 27px;
}

/* Melhor aproveitamento dos cards de atuação */
.areas-row .number-card .number {
    margin-bottom: 8px;
    font-size: 25px;
}

.areas-row .number-card h3 {
    font-size: 16px;
    line-height: 1.12;
}

.areas-row .number-card p {
    font-size: 10px;
    line-height: 1.55;
}

/* Responsivo: a exigência de linha única vale para desktop;
   em telas menores os cards voltam a se organizar em linhas. */
@media (max-width: 991px) {
    .projects-home-grid,
    .career-grid,
    .dario-works-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 575px) {
    .projects-home-grid,
    .career-grid,
    .dario-works-grid,
    .areas-row {
        grid-template-columns: 1fr;
    }
}

/* Fundos claros: tipografia azul */
.section-light,
.bg-white,
.white-section,
.background-white {
    color: #12345b;
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6,
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.white-section h1,
.white-section h2,
.white-section h3,
.white-section h4,
.white-section h5,
.white-section h6,
.background-white h1,
.background-white h2,
.background-white h3,
.background-white h4,
.background-white h5,
.background-white h6 {
    color: #12345b !important;
}

.section-light p,
.section-light li,
.bg-white p,
.bg-white li,
.white-section p,
.white-section li,
.background-white p,
.background-white li {
    color: #244c76 !important;
}

/* No acervo, documentos continuam sendo categoria de registro,
   mas não existe mais uma página independente de documentos. */


/* =========================================
   MEMÓRIA E HISTÓRIA
========================================= */
.memory-group {
    margin-top: 48px;
}

.memory-group-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.memory-group-heading i {
    color: var(--gold);
    font-size: 22px;
}

.memory-group-heading h3 {
    margin: 0;
    color: var(--white);
    font-size: 30px;
    font-weight: 500;
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.memory-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line-gold);
    background: var(--navy-3);
    cursor: pointer;
}

.memory-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease, opacity .3s ease;
}

.memory-thumb:hover img {
    transform: scale(1.06);
    opacity: .9;
}

.memory-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(3, 19, 47, .96);
}

.memory-lightbox.is-open {
    display: flex;
}

.memory-lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 20px 70px rgba(0,0,0,.45);
}

.memory-lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
}

.memory-lightbox-open {
    overflow: hidden;
}

@media (max-width: 1200px) {
    .memory-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .memory-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .memory-group-heading h3 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .memory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* =========================================================
   LIGHTBOX - MEMÓRIA
   ========================================================= */

.memory-thumb {
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.memory-thumb img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.memory-thumb:hover img {
    transform: scale(1.04);
    opacity: 0.9;
}

/* Overlay */

.memory-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.92);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.memory-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Imagem ampliada */

.memory-lightbox img {
    display: block;

    max-width: 92vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 4px;

    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);

    transform: scale(0.94);
    transition: transform 0.3s ease;
}

.memory-lightbox.is-open img {
    transform: scale(1);
}

/* Botão fechar */

.memory-lightbox-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);
    color: #fff;

    font-size: 36px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.memory-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(90deg);
}

/* Bloqueia scroll da página */

body.memory-lightbox-open {
    overflow: hidden;
}

/* Responsivo */

@media (max-width: 768px) {

    .memory-lightbox {
        padding: 20px;
    }

    .memory-lightbox img {
        max-width: 96vw;
        max-height: 82vh;
    }

    .memory-lightbox-close {
        top: 12px;
        right: 12px;

        width: 42px;
        height: 42px;

        font-size: 30px;
    }

    .memory-thumb img {
        height: 180px;
    }
}

/* =========================================
   AJUSTES FINAIS — INSTITUTO RUTIER
========================================= */

.hero-recognition {
    max-width: 620px;
    margin: 22px 0 0;
    color: #f3f1eb;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.35;
}

.hero-recognition strong {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--gold-light);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.haras-highlight-section {
    background: var(--navy-2);
}

.haras-highlight {
    border: 1px solid var(--line-gold);
    padding: clamp(30px, 5vw, 70px);
    background:
        linear-gradient(135deg, rgba(214,164,59,.09), rgba(255,255,255,.02)),
        #071a38;
}

.haras-highlight-content {
    max-width: 920px;
    margin: 0 auto;
}

.haras-highlight h2 {
    margin: 8px 0 18px;
    color: var(--gold-light);
    font-size: clamp(38px, 5vw, 62px);
}

.haras-highlight p {
    color: #fff;
}

.institution-highlight-logo {
    position: relative;
    z-index: 2;
    display: block;
    width: min(330px, 80%);
    height: auto;
    object-fit: contain;
}

.works-grid,
.dario-works-grid {
    align-items: stretch;
}

.work-card,
.works-grid .number-card,
.dario-works-grid .number-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work-card p,
.works-grid .number-card p,
.dario-works-grid .number-card p {
    flex: 1;
}

.memory-thumb {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 767px) {
    .hero-recognition {
        font-size: 18px;
    }

    .haras-highlight {
        padding: 30px 22px;
    }

    .institution-highlight {
        min-height: 300px;
    }

    .institution-highlight-logo {
        width: min(270px, 82%);
    }

    .memory-lightbox {
        padding: 18px;
    }

    .memory-lightbox img {
        max-width: 96vw;
        max-height: 82vh;
    }
}


.dario-highlight{
    background: linear-gradient(135deg,#1f1f1f 0%, #2b2b2b 100%);
    border-left: 4px solid #C8A45D;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.dario-highlight i{
    font-size: 2rem;
    color: #C8A45D;
    flex-shrink: 0;
}

.dario-highlight .highlight-label{
    display: block;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #C8A45D;
    margin-bottom: 6px;
    font-weight: 600;
}

.dario-highlight h3{
    margin: 0;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 600;
}

.haras-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}