﻿@import url(fonts.css);
@import url(fonts/unimedslab-bold-webfont.woff);

/*Fontes Unimed*/
@font-face {
    font-family: "Unimed Slab";
    src: url('fonts/unimedslab-regular-webfont.eot');
    src: url('fonts/unimedslab-regular-webfont.eot') format('embedded-opentype'), url('fonts/unimedslab-regular-webfont.woff') format('woff'), url('fonts/unimedslab-regular-webfont.svg') format('svg'), url('fonts/unimedslab-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Unimed SlabBold";
    src: url('fonts/unimedslab-bold-webfont.eot');
    src: url('fonts/unimedslab-bold-webfont.eot') format('embedded-opentype'), url('fonts/unimedslab-bold-webfont.woff') format('woff'), url('fonts/unimedslab-bold-webfont.svg') format('svg'), url('fonts/unimedslab-bold-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Unimed SlabEb";
    src: url('fonts/unimedslab-');
    src: url('fonts/unimedslab-extrabold-webfont.eot') format('embedded-opentype'), url('fonts/unimedslab-extrabold-webfont.woff') format('woff'), url('fonts/unimedslab-extrabold-webfont.svg') format('svg'), url('fonts/unimedslab-extrabold-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Unimed SlabItalic";
    src: url('fonts/unimedslab-regularitalic-webfont.eot');
    src: url('fonts/unimedslab-regularitalic-webfont.eot') format('embedded-opentype'), url('fonts/unimedslab-regularitalic-webfont.woff') format('woff'), url('fonts/unimedslab-regularitalic-webfont.svg') format('svg'), url('fonts/unimedslab-regularitalic-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Unimed SlabEbi";
    src: url('fonts/unimedslab-extrabolditalic-webfont.eot');
    src: url('fonts/unimedslab-extrabolditalic-webfont.eot') format('embedded-opentype'), url('fonts/unimedslab-extrabolditalic-webfont.woff') format('woff'), url('fonts/unimedslab-extrabolditalic-webfont.svg') format('svg'), url('fonts/unimedslab-extrabolditalic-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: "Unimed SansLi";
    src: url('fonts/unimedsans-lightitalic-webfont.eot');
    src: url('fonts/unimedsans-lightitalic-webfont.eot') format('embedded-opentype'), url('fonts/unimedsans-lightitalic-webfont.woff') format('woff'), url('fonts/unimedsans-lightitalic-webfont.svg') format('svg'), url('fonts/unimedsans-lightitalic-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Unimed Serif';
    src: url('fonts/._UnimedSerif-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Unimed Serif-Book';
    src: url('fonts/._UnimedSerif-Book.otf') format('opentype');
}

:root {
    --green-light: #B1D34B;
    --green: #00995D;
    --green-dark: #00401A;
    --deep-sea-green: #0A5F55;
    --egg-white: #FFF0C7;
    --pink: #ED1651;
    --medium-red-violet: #A3238E;
    --violet: #411564;
    --yellow: #FFCB08;
    --orange: #F47920;
    --light-gray: #C4CBCF;
    --gray: #5B5C65;
    --brown: #682D00;
    --bg-gray: #F8F8F8;
    --base-gray: #606061;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    outline: none;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Unimed Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: #606061;
    overflow-x: hidden;
    /*scrollbar-width: thin;
    scrollbar-color: blue orange;*/
}

    body::-webkit-scrollbar {
        width: 13px;
    }

    body::-webkit-scrollbar-track {
        background: #ececec; /* color of the tracking area */
    }

    body::-webkit-scrollbar-thumb {
        background-color: #969696; /* color of the scroll thumb */
        border-radius: 20px; /* roundness of the scroll thumb */
        border: 3px solid #ececec; /* creates padding around scroll thumb */
    }

a {
    color: #fff;
}

p {
    text-align: justify;
}

main {
    position: relative;
    margin-top: 98px;
}

@media( max-width: 600px ) {
    main {
        margin-top: 0px;
    }
}

h1 {
    color: var(--gray);       
    font-family: 'Unimed SlabEb';
}

h2, h4 {
    font-weight: bold;
}

h4 {
    color: var(--orange);
}

h2, h3, h4, h5 {
    font-family: 'Unimed Sans', sans-serif;
} 

h6 {
    color: var(--gray);
    font-family: 'Unimed Slab';
}

.letter-spac {
    letter-spacing: 2px;
}

.uppercase {
    text-transform: uppercase;
}

small, .small {
    font-size: 60% !important;
    font-weight: 400;
}

img {
    transition: .4s ease-out;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: .4s ease-in;
}

.ff-unimed-sans, h5 {
    font-family: 'Unimed Sans', sans-serif;
}

.carde {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}

    .carde:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    }

.box-shadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.img-shadow {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 4px;
}

.dropdown-menu.show { 
    box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
}

/*Cores*/
.base-gray {
    color: var(--bg-gray);
}

.orange {
    color: var(--orange);
}

.gray {
    color: var(--gray)
}

.base-gray {
    color: var(--base-gray)
}

.light-gray {
    color: var(--light-gray);
}

.green {
    color: var(--green)
}

.green-dark {
    color: var(--green-dark)
}

.deep-sea-green {
    color: var(--deep-sea-green)
}

.bg-orange {
    background-color: var(--orange);
}

.bg-gray {
    background-color: var(--gray)
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-green {
    background-color: var(--green)
}

.bg-green-dark {
    background-color: var(--green-dark)
}

.bg-base-gray {
    background-color: var(--bg-gray);
}

/*HEADER*/
#home {
    position: relative;
    overflow-x: hidden;
}

.titulos-nav {
    font-family: 'Unimed Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
}

header {
    /*position: absolute;*/
    z-index: 999;
    width: 100%;
    background: transparent;
}

    header.fixed {
        /*position: fixed;*/
        top: 0;
        z-index: 99;
        transition: all .5s;
        background: #fff;
        width: 100%;
        -webkit-transition: 0.15s linear;
        -moz-transition: 0.15s linear;
        -o-transition: 0.15s linear;
        transition: 0.15s linear;
    }

@media( min-width: 1199px ) {
    header.fixed {
        position: fixed;
    }
}

header .nav-principal .logo-img {
    width: 8rem;
}


.nav-principal {
    background-color: var(--orange);
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.3) !important;
    z-index: 999999;
    position: fixed;
}

@media( max-width: 1199px ) {
    #navPrincipal {
        animation: inOpacity .5s ease-out;
    }
}

#navPrincipal li {
    margin-bottom: 0;
    text-align: center;
}

    #navPrincipal li a.nav-link:hover {
        border-bottom: 3px solid #fff;
        transition: all ease-in-out .1s;
    }

    #navPrincipal li a.nav-link {
        height: 100%;
        padding: 1.5rem 0.3rem;
        border-bottom: 3px solid transparent;
        transition: all ease-in-out .1s;
    }

        #navPrincipal li a.nav-link::after {
            font-size: inherit;
            -webkit-transition: 0.1s linear;
            -moz-transition: 0.1s linear;
            -o-transition: 0.1s linear;
            transition: 0.1s linear;
        }

    #navPrincipal li.show a.nav-link::after {
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate( 180deg );
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate( 180deg );
        -webkit-transition: 0.1s linear;
        -moz-transition: 0.1s linear;
        -o-transition: 0.1s linear;
        transition: 0.1s linear;
    }

    #navPrincipal li .dropdown-menu {
        margin: 0;
        padding: 0;
        border: none;
    }

        #navPrincipal li .dropdown-menu .dropdown-item {
            color: var(--orange);
            padding: 0.6rem 3rem 0.6rem 1.4rem;
            background: #fff;
            transition: all 0.1s ease 0s;
        }
            /*#navPrincipal li .dropdown-menu .dropdown-item.sub-dropdown::after {
                display: inline-block;
                margin-left: 0.255em;
                vertical-align: 0;
                border: none !important;
                font-family: 'FontAwesome';
                content: '\f078';
                color: #fff;
            }*/
            #navPrincipal li .dropdown-menu .dropdown-item.sub-item {                
                background-color: rgba(244, 121, 32, 0.25);
                padding: 1rem 1.6rem 1rem 1.8rem;
            }

                #navPrincipal li .dropdown-menu .dropdown-item.sub-item::before {
                    display: inline-block;
                    margin-right: 0.85em;
                    vertical-align: 0.2rem;
                    border: none !important;
                    font-family: 'FontAwesome';
                    content: '\f054';
                    color: rgba(255, 255, 255, 0.30);
                    font-size: 0.5rem;
                }

            #navPrincipal li .dropdown-menu .dropdown-item:hover {
                background: var(--orange);
                color: #fff;
                transition: all 0.1s ease 0s;
            }

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0;
    border: none !important;
    font-family: 'FontAwesome';
    content: '\f078';
    /*color: rgba(255, 255, 255, 0.80);*/
}

@media( max-width: 1199px ) {
    .dropdown-toggle::after {
        color: #fff;
    }

    #navPrincipal li a.nav-link {
        padding: 1.2rem;
        text-align: center;
        justify-content: center;
        background: #f9cb9d;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    #navPrincipal li .dropdown-menu .dropdown-item {
        text-align: center;
        color: rgb(255, 255, 255);
        background: #F47920;
        padding: 1rem;
        font-size: .9rem;
        white-space: normal;
    }
}

.nav-principal .navbar-toggler {
    border: 1px solid white;
    height: 50px;
}

    .nav-principal .navbar-toggler .icon-bar {
        display: block;
        width: 30px;
        height: 3px;
        border-radius: 1px;
        background: white;
        transform: rotate( 0deg ) translate(0px, 0px);
        transition: ease all .2s;
    }

    .nav-principal .navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
        transform: rotate( 45deg ) translate(5px, 5px);
        transition: ease all .2s;
    }

    .nav-principal .navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
        opacity: 0;
        transition: ease all .2s;
    }

    .nav-principal .navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        transition: ease all .2s;
    }

/*BANNER HOME*/
.img-banner {
    padding-top: 100px !important;
    background-image: url('images/capa.jpg');
    background-size: cover;
    height: 694px;
    /* z-index: -999999; */
}

#banner h1 {
    font-family: 'Unimed Slab', sans-serif;
    text-align: left;
    animation: moveInLeft 1s ease-out;
}

.titulo-banner {
    font-size: 4em;
    font-family: 'Unimed SlabEb', sans-serif !important;
    font-weight: bold;
}

.titulo-2022 {
    font-size: 8em !important;
}

.btn-prj {
    color: #F47920;
    padding: 12px;
    border: 2px solid #F47920;
    border-radius: 12px 12px 0px 12px;
    -webkit-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

    .btn-prj:hover {
        color: white;
        text-decoration: none;
        background-color: #F47920;
    }

/*FOOTER*/
footer {
    border-top: 1px solid #dedede;
    font-size: .8rem;
    /*text-align: center;*/
}

    footer #footer-links {
        padding: 4rem 2rem;
        border-bottom: 1px solid #dedede;
    }

        /*footer #footer-links p {
            color: #0A5F55;
        }

        footer #footer-links a {
            display: inline-block;
            width: 100%;
            color: #5B5C65;
            text-align: left;
        }*/

/*.links-center {
    justify-content: center;
    display: inline-grid;
}*/


/* ************* KEYFRAMES ************* */
@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    80% {
        /*transform: translateX(10px);*/
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    80% {
        /*transform: translateX(-10px);*/
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes inOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.top-page {
    text-align: center;
    vertical-align: middle;
    position: fixed;
    bottom: 0.5rem;
    right: 1.5rem;
    cursor: pointer;
    display: none;
    color: #5B5C65;
    font-size: 3rem;
    -moz-opacity: 0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
    transition-duration: 1s;
}


/*------------------------------------- Institucional - Diretoria -------------------------------------*/
#diretoria .name {
    color: #2f2f2f;
    text-align: center;
    line-height: 1.2;
    margin-top: 0.6rem;
    font-weight: 400;
}

#diretoria .dir-fiscal .name-type {
    background: var(--orange);
    color: white;
    padding: 0.8rem 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .9rem;
    border-radius: 10px 10px 0px 10px;
}

.ajuste-carde {
    margin: 16px;
}

.borda-img {
    border: 5px solid var(--orange);
    border-radius: 22px 22px 0px 22px;
}


/*------------------------------------- Sobre Relatório -------------------------------------*/
table thead {
    color: #fff;
    /*background-color: #00995D;*/
    background-color: var(--orange);
    text-align: center;
}

@media( min-width: 916px ) {
    .ajuste-display {
        width: 900px;
        height: 500px;
    }
}

/*------------------------------------- Mercado -------------------------------------*/
.num_card {
    padding: 3rem;
}

    .num_card div {
        font-size: 1.4rem;
        color: var(--orange);
        font-weight: 700;
        font-family: 'Unimed Slab';
        margin-bottom: 0.4rem;
        text-align: center;
    }

    .num_card p {
        margin: 0;
        text-transform: uppercase;
        font-size: 1rem;
        color: #606061;
        text-align: center;
        font-family: 'Unimed Slab';
        font-weight: 800;
    }

@media( min-width: 916px ) {
    .ajuste-evolucao {
        width: 800px;
        height: 400px;
    }
}


/*------------------------------------- Garantir Padrões Excelencia -------------------------------------*/
#main-banner .head {
    min-height: 30rem;
    background: #411564;
    background-position: center;
    background-size: cover;
    padding: 18rem 0 0;
    text-align: center;
    z-index: 99;
    animation: background 1.2s ease-in-out;
}

    #main-banner .head h1 {
        color: #fff;
        font-size: 2.6rem;
        font-weight: 700;
        animation: inOpacity 1s ease-in-out;
        text-shadow: 2px 4px 3px rgb(0 0 0 / 50%);
    }

#page-banner .head {
    background: rgba(244, 121, 32, 0.55);
    color: #fff;
}

/* HMS */
#page-banner .head-img-hms {
    /*background-image: url('../../../Content/images/unidades/Atrio2.jpg');*/
    background-image: url('images/unidades/Atrio2.jpg');
    background-position: center center;
}

#main-banner .head .head-img-hms {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    min-height: 30rem;
    top: 0;
    left: 0;
    /*background-image: url('../../../Content/images/unidades/Atrio2.jpg');*/
    background-image: url('images/unidades/Atrio2.jpg');
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
    animation: inOpacity 1s ease-in-out;
}

/* NAIS */
#page-banner .head-img-nais {    
    background-image: url('images/unidades/nais.jpg');
    background-position: center center;
}

#main-banner .head .head-img-nais {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    min-height: 30rem;
    top: 0;
    left: 0;
    background-image: url('images/unidades/nais.jpg');
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
    animation: inOpacity 1s ease-in-out;
}

/* Unidade JK */
#page-banner .head-img-jk {
    background-image: url('images/unidades/unidade_jk.jpg');
    background-position: center center;
}

#main-banner .head .head-img-jk {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    min-height: 30rem;
    top: 0;
    left: 0;
    background-image: url('images/unidades/unidade_jk.jpg');
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
    animation: inOpacity 1s ease-in-out;
}

/* Iguatemi */
#page-banner .head-img-iguatemi {
    background-image: url('images/unidades/Iguatemi.jpg');
    background-position: center center;
}

#main-banner .head .head-img-iguatemi {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    min-height: 30rem;
    top: 0;
    left: 0;
    background-image: url('images/unidades/Iguatemi.jpg');
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
    animation: inOpacity 1s ease-in-out;
}

/* Zona Norte */
#page-banner .head-img-zn {
    background-image: url('images/unidades/zona_norte.jpg');
    background-position: center center;
}

#main-banner .head .head-img-zn {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    min-height: 30rem;
    top: 0;
    left: 0;
    background-image: url('images/unidades/zona_norte.jpg');
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
    animation: inOpacity 1s ease-in-out;
}

/*------------------------------------- Localizações das Operações -------------------------------------*/
.card.btn-outline-light {
    color: #5B5C65;
    background-color: #FFF !important;
    background-image: none;
    border-color: #C4CBCF;
}

.card {
    border-radius: 0.4rem !important;
    transition: ease all .2s;
    border: 1px solid #C4CBCF;
}

.btn-outline-light, .btn-outline-light.disabled, .btn-outline-light:disabled, .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
    color: #5B5C65;
    background-color: transparent;
    background-image: none;
    border-color: #C4CBCF;
}

.card.btn-outline-light:hover, .card.btn-outline-light:focus, .card.btn-outline-light:active {
    /* box-shadow: 0px 5px 20px rgb(196 203 207); */
    /* box-shadow: 1px 1px 0px #00995d inset, -1px -1px 0px #00995d inset, 0 0.225rem 0.5rem rgb(0 0 0 / 15%) !important; */
    /*color: #3E3E44;
    background-color: #FFF !important;
    border: 1px solid #C4CBCF !important;
    transition: ease all .3s;
    transform: translate(0, -0.15em);
    box-shadow: 0px 10px 30px rgb(91 92 101 / 30%) !important;*/


    box-shadow: 0 8px 16px 0 rgb(0 0 0 / 20%);
}

.grafico-default {
    width: 600px;
    height: 400px;
}

@media(min-width: 916px) {
    .controle-img {
        height: 220px;
    }
}

.img-menor {
    max-width: 70%;
}

.a-link {
    color: var(--orange);
}

    .a-link:hover {
        color: var(--orange);
        font-weight: bold;
        transition: .2s ease;
        cursor: pointer;
    }



/****************************************************CONFIG MOBILE****************************************************/
@media(max-width: 500px) {
    h1 {
        font-size: 2rem;
    }

    canvas {
        width: 320px !important;
        height: 320px !important;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .scroll-navbar {
        max-height: 75vh;
        overflow-y: auto;
    }
}

@media(min-width: 501px){
    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }
}

.img-banner-mobile {
    padding-top: 100px !important;   
    background-image: url('images/mobile_capa.png');
    background-size: cover;
    height: 694px;
    /* z-index: -999999;     */
}

