@import url("https://fonts.googleapis.com/css2?family=Glory:wght@800&display=swap");

html {
    position: relative;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    /*background: radial-gradient(ellipse at center, rgba(255,254,234,1) 0%, rgba(255,254,234,1) 35%, #eceff1 100%);*/
}

hr {
    background-color: #333;
}
.contentMain {
    min-height: 80vh;
}

.flexRow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alignCenter {
    text-align: center;
}

.alignRigth{
    text-align: right;
}

.linkBackHistory {
    font-size: 1.2em;
    position: absolute;
    bottom: 20px;
}


/* BAARRA UTIL  */
.header_gov {
    text-align: right;
    font-size: var(--sizeDefault);
}


.header_gov {
    padding-left: 0;
    padding-right: 1em;
    line-height: 2.4em;
}

.header_gov_link {
    text-decoration: none;
    cursor: pointer;
    margin: -5px 10px;
    color: var(--gov-link) !important;
}

    .header_gov_link:hover {
        color: var(--gov-link-hover) !important;
    }

.header_gov a img {
    opacity: 0.8;
}

.header_gov a:hover img {
    opacity: 1;
}


/* MENU NAVEGACAO */
.boxBrand {
    position: relative;
    z-index: 1;
}

    .boxBrand:before {
        content: " ";
        position: absolute;
        background-image: var(--navbar-img-logo-brand-url);
        background-repeat: no-repeat;
        top: -24px;
        width: 100%;
        height: 60px;
        /*image-rendering: pixelated;*/
        z-index: 2;
    }

    .boxBrand .site-logo {
        margin-left: 48px;
    }


/*comuns*/
.cardBox {
    background-color: rgba(255,255,255, .8);
    height: 80vh;
}



/* xxxxxxxxxxxxxxxxxxxxx ANIMATIONS NAVBAR */
/*Underline move*/
.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #fff;
}

    .hover-underline-animation::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--textColorDefault);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .hover-underline-animation:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }



/*CONTEÚDO INTRO*/

.infoSedeTheme:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    /* Imagems fundo Introdução */
    background-image: var(--infosede-bgimg-url);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-filter: var(--infosede-bgfilter-config);
    -moz-filter: var(--infosede-bgfilter-config);
    -o-filter: var(--infosede-bgfilter-config);
    -ms-filter: var(--infosede-bgfilter-config);
    filter: var(--infosede-bgfilter-config);
    z-index: -1000;
}
/*layoer*/
.infoSedeTheme:after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: var(--infosede-layer-theme);
    opacity: 50%;
    z-index: -1000;
}



.contentIntro {
    position: relative;
    width: 100%;
    height: 17em;
    z-index: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .contentIntro div {
        margin-right: 20px;
    }

    .contentIntro h1 {
        font-size: 1em;
    }

    .contentIntro span:nth-child(1) {
        font-size: 1.6em;
        line-height: .8em;
        letter-spacing: .12em;
    }

    .contentIntro span:nth-child(2) {
        font-size: 2.4em;
        color: var(--textColorDefault);
        letter-spacing: .03em;
        line-height: .8em;
        font-weight: 800;
    }


.logoHeader {
    display: flex;
    flex-direction: row;
}


/* SEARCH - PESQUISA DO PORTAL */
.contentSerach {
    margin-bottom: .4em;
}

    .contentSerach .input-group-lg > .form-control:not(textarea), .input-group-lg > .custom-select {
        height: 2.6em !important;
    }

    .contentSerach .input-group-lg > .form-control, .input-group-lg > .custom-select, .input-group-lg > .input-group-prepend > .input-group-text, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-append > .btn {
        font-size: 1.4rem;
    }


/* BOTÕES DE MENU */
.contentButtonMenu {
}

    .contentButtonMenu h3 {
        font-size: 1.1em;
    }



.groupButtonMenu {
    padding: 2.8em 0;
    display: flex;
    align-items: stretch;
}

    .groupButtonMenu .itemButtonMenu {
        border: 1px solid #333;
        min-height: 6em;
    }


.button {
    border-radius: 4px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: 100%;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

    .button span {
        position: absolute;
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .button span:after {
            content: '+';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .button:hover span {
        padding-right: 25px;
    }

        .button:hover span:after {
            position: absolute;
            opacity: 1;
            right: 0;
        }


/* HOT LINKS 
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */

.containerHotLinks {
    text-align: center;
    z-index: auto;
}

.hotlinkCorTitle {
    color: var(--title-section-color);
}

.hotlinkCorSubTitle {
    color: var(--subtitle-section-color);
}

.hotlinkTitle {
    font-weight: bold;
    font-family: var(--font-title-section);
    font-size: var(--fontsize-title-section);
}

.hotlinkSubTitle {
    font-family: var(--font-subtitle-section);
    font-size: var(--fontsize-subtitle-section);
}

.boxLinksDestaques {
    line-height: 1.1;
}


.boxHotLinks {
    /* conteúdo justificado no centro */
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
}

.btnHotLink {
    text-align: center;
}

    .btnHotLink h5 {
        position: absolute;
        color: var(--textColorDefault);
        font-weight: bolder;
        width: 100%;
        font-size: 0.8rem;
        z-index: 3;
        margin-bottom: 0;
    }

        .btnHotLink h5 span {
            color: var(--hotLinks-link-span);
            font-weight: bolder;
        }



    .btnHotLink div a {
        position: absolute;
        text-decoration: none;
    }

    .btnHotLink a:hover .p-4:before {
        border: 2px solid var(#37474f);
        background-color: var(--bgroundHotLink);
        transition: color 0.4s ease-in-out, background-color 0.2s ease-in-out, opacity 0.4s ease-in-out;
    }

    .btnHotLink a:hover h5 { /*muda a cor do link*/
        color: var(--textColorWhite);
        transition: color 0.4s ease-in-out, background-color 0.2s ease-in-out, opacity 0.4s ease-in-out;
    }
    .btnHotLink a:hover span { /*muda a cor do link*/
        color: var(--textColorActive);
        transition: color 0.4s ease-in-out, background-color 0.2s ease-in-out, opacity 0.4s ease-in-out;
    }


    .btnHotLink .p-4 {
        position: relative;
        min-height: 8em;
        border-radius: 10%;
        box-shadow: var(--btn-shadow-hotlink);
        z-index: 4;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.8rem !important;
        margin-bottom: 10px
    }

        .btnHotLink .p-4:before {
            content: "";
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            position: absolute;
            background-color: var(--bgcolorwhite);
            vertical-align: middle;
            border-radius: 10%;
            border: 2px solid var(--border-color-btnhotlink);
            z-index: 2;
            transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, opacity 0.4s ease-in-out;
        }




/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
/* INTERNAS */

/*limita caracteres*/
.limitChar150 {
    max-width: 150ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.limitarCaracterLinha1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.limitarCaracterLinha2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.boxPageContainer {
    position: relative;
    min-height: 8em;
    background-color: rgb(255, 255, 255, 1);
    box-shadow: var(--btn-shadow-hotlink);
    font-size: 1rem !important;
    margin-bottom: 10px;
    min-height: 80vh;
}


.boxPageContainerHeader h1 {
    font-size: 1.6rem;
    color: var(--navbar-link-menu);
}




/*SEÇÃO*/
.contentCardFiles h6 {
    padding-left: 6px;
    color: #78909c;
}

.contentCardFiles .cardItemBox {
    position: relative;
    margin: 20px 0;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #F7F8F9;
    clear: both;
}

.contentCardFiles:first-child {
    margin: -20px 0;
}


    .contentCardFiles .cardItemBox .cardItemImg {
        background-color: #0069d9;
        color: white;
        font-size: 3em;
        width: 10%;
        height: 100%;
        float: left;
        display: flex;
        justify-content: center;
        align-items: center;
        -webkit-transition: .2s all ease;
        -o-transition: .2s all ease;
        transition: .2s all ease;
        z-index: auto;
        z-index: 1;
    }

    .contentCardFiles .cardItemBox .cardItemBody {
        padding: 5px 10px;
        width: 90%;
        height: 100%;
        float: left;
        -webkit-transition: .2s all ease;
        -o-transition: .2s all ease;
        transition: .2s all ease;
        z-index: auto;
        z-index: 2;
    }

    .contentCardFiles .cardItemBox .cardDownloadImg {
        position:absolute;
        right: 0;
        background-color: #eceff1;
        color: #b0bec5;
        font-size: 2em;
        width: 4%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        -webkit-transition: .2s all ease;
        -o-transition: .2s all ease;
        transition: .2s all ease;
        z-index: 10;
    }

        .contentCardFiles .cardItemBox .cardItemBody span {
            font-size: 1em;
            color: #90a4ae;
            -webkit-transition: .2s all ease;
            -o-transition: .2s all ease;
            transition: .2s all ease;
        }

        .contentCardFiles .cardItemBox .cardItemBody h2 {
            font-size: 1.1em;
            -webkit-transition: .2s all ease;
            -o-transition: .2s all ease;
            transition: .2s all ease;
        }

        .contentCardFiles .cardItemBox .cardItemBody p {
            font-size: 0.9em;
            color: #90a4ae;
            -webkit-transition: .2s all ease;
            -o-transition: .2s all ease;
            transition: .2s all ease;
        }

    /*hover*/
    .contentCardFiles a:hover .cardItemBox .cardItemBody span {
        color: #90a4ae;
    }
    .contentCardFiles a:hover .cardItemBox .cardItemBody h2 {
        color: #78909c;
    }
    .contentCardFiles a:hover .cardItemBox .cardItemBody p {
        color: #78909c;
    }

        .contentCardFiles a:hover .cardItemBox .cardItemImg {
            background-color: #07488F;
            color: #ffca28;
        }

        .contentCardFiles a:hover .cardItemBox .cardItemBody {
            background-color: #eceff1;
        }

        .contentCardFiles a:hover .cardItemBox .cardDownloadImg {
            background-color: #07488F;
            color: #ffca28;
        }





.selectPeriodo{ 
    height: 48px;

}







/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
/*FOOTER*/

footer {
    margin-top: 0px;
}


.footerPageIndex {
    min-height: 10em;
    background-color: var(--bgroundHotLink);
}

.boxVoltarTopo {
    padding: 1.5rem 0 1rem 0;
}



    .boxVoltarTopo a {
        text-align: right;
        text-decoration: none;
        color: white;
    }

        .boxVoltarTopo a:hover {
            color: rgba(255, 255, 255, 0.7);
            opacity: 0.7;
        }

