@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&family=Source+Sans+Pro:wght@300;400;700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/SF-Pro-Display-Black.otf') format('truetype');
   }

/* =================== COLORS TO USE ======================= */

:root {
    --bs-white: #FFFFFF;
    --bs-gray-light: #EEEEEE;
    --bs-gray: #919191;
    --bs-gray-dark: #4A4C4E;
    --bs-green-light: #6BC72A;
    --bs-green: #008A5B;
    --bs-green-dark: #41943e;
    --bs-green-whatsapp:#07B240;
    --bs-blue-light:#00B0F2;
    --bs-blue: #0074A6;
    --bs-blue-2: #0056FF;
    --bs-blue-dark: #2342BA;
    --bs-blue-dark-2: #0D278D;
    --bs-ocean-blue-dark: #3A6C8C;
    --bs-purple: #9520E2;
    --bs-black: #000000;
    --bs-black-2: #232323;
    --bs-red-dark: #8f0c1e;
    --bs-yellow: #f1b900;
    
}

/* rounded borders */
.rounded-15 {
    border-radius: 15px;
}

.rounded-40 {
    border-radius: 40px;
}


/* =================== TEXT COLORS ========================= */
.text-white {
    color: var(--bs-white) !important;
    filter: brightness(100%);
}

.text-gray{
    color: var(--bs-gray) !important;
}

.text-gray-dark {
    color: var(--bs-gray-dark) !important;
}

.text-green-light {
    color:  var(--bs-green-light) !important;
}

.text-green {
    color:  var(--bs-green) !important;
}

.text-blue {
    color: var(--bs-blue-light) !important;
}
.text-blue-2 {
    color: var(--bs-blue-2) !important;
}

.text-blue-bold {
    color: var(--bs-blue);
}
.text-ocean-dark {
    color: var(--bs-ocean-blue-dark);
}

.text-blue-dark {
    color: var(--bs-blue-dark) !important;
}

.text-purple {
    color: var(--bs-purple);
}

.text-justify {
    text-align: justify !important;
}

.goog-te-banner-frame{
    display: none;
}

.title-section{
    text-align: center;
    letter-spacing: 4px;
    opacity: 1;
    font-weight: 900;
    font-size: 20px;
}

/* =================== LINE-HEIGHT ======================== */

.lh {
    line-height: 8px;
}
.lh-1 {
    line-height: 15px;
}

.lh-2 {
    line-height: 25px;
}

/* =================== SIZE OF TEXT FONTS ================== */

.fs-12 {
    font-size: 12px
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-28 {
    font-size: 28px;
}

.fs-30 {
    font-size: 30px;
}

.fs-40 {
    font-size: 40px;
}

.fs-50 {
    font-size: 50px;
}

.fs-60 {
    font-size: 60px;
}

.font-weight-900{
    font-weight: 900;
}

/* =================== BUTTONS ============================= */
.btn,
.btn-white-shorcuts,
.btn-white,
.btn-gray,
.btn-blue-light,
.btn-blue,
.btn-blue-dark,
.btn-green-light {
    transition: 0.2s ease-in-out;
}

.btn {
    border-radius: 50px !important;
    padding: 14px 30px;
}


.btn-white {
    background-color: var(--bs-white);
    border: 1px solid #000000;
}
.btn-white:hover {
    background-color: var(--bs-blue-dark) !important;
    color: #ffffff!important;
}
.btn-white:hover a{
    color: #ffffff !important;
}

.btn-black {
    background-color: var(--bs-black-2);
}
.btn-black:hover {
    background-color: var(--bs-white);
    border: 1px solid #000000;
    color: var(--bs-black-2)!important;
}

.btn-gray {
    background-color: var(--bs-gray);
}
.btn-gray:hover {
    background-color: #6c6b6b;
}

.btn-ocean-dark {
    background-color: var(--bs-ocean-blue-dark);
}

.btn-ocean-dark:hover {
    background-color: #6c6b6b;
}

.btn-blue-light {
    background-color: var(--bs-blue-light);
}

.btn-blue-light:hover {
    background-color: #ffffff;
    color: var(--bs-blue-light)!important;
}

.btn-blue {
    background-color: var(--bs-blue);
}

.btn-blue-dark {
    background-color: var(--bs-blue-dark);
}

.btn-blue-dark:hover{
    background-color: #021a59;
}

.btn-green-light {
    background-color: var(--bs-green-light);
}

.btn-green-light:hover {
    background-color: #4da20f;
}

/* =================== Text and Fonts ====================== */
.text-center {
    text-align: center;
}

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

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

.text-truncate-250 {
    white-space: nowrap; /* Impede quebra de linha */
    overflow: hidden; /* Esconde o conteúdo que transborda */
    text-overflow: ellipsis; /* Adiciona reticências */
}

.text-shadow-black {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* =================== INPUTS ============================= */

.form-input-text {
    height: 40px;
    padding: 0 20px;
}

.form-text-area {
    padding: 10px 20px;
}

.form-input-text,
.form-text-area {
    width: 100%;
    border: 1px solid var(--bs-gray) !important;
    border-radius: 10px;
    outline: transparent !important;
    background: #FFFFFF;
}

.form-inputs-reservar-espaco,
.form-select-reservar-espaco,
.form-input-search{
    width: 100%;
    color: var(--bs-gray);
    height: 40px;
    border: 1px solid var(--bs-gray);
    background-color: var(--bs-white);
}

.form-input-search,
.form-inputs-reservar-espaco {
    padding: 0 12px;
}

.form-select-reservar-espaco {
    padding: 0 8px;
}

.form-inputs-reservar-espaco::placeholder,
.form-select-reservar-espaco select {
    font-size: 14px;
    color: var(--bs-gray);
}

.form-input-search input,
.form-select-reservar-espaco select {
    width: 100%!important;
    height: 100%!important;
    border: none;
    background-color: transparent;
    color: var(--bs-gray);
    outline: none;
}

.filter-evento {
    height: 100%;
    width: 100%;
    color: var(--bs-gray);
    padding: 0 10px;
    border:none;
    outline: none;
    background-color: transparent;
}

.content-date {
    width: 80px;
    height: 80px;
}

/* =================== MAPS ============================= */
#gmap_canvas {
    overflow:hidden;
    background:none !important;
    min-height: 475px;
    width:100%;
    border: 8px solid var(--bs-white) !important;
}

.mapouter{
    position:relative;
    text-align:right;
    height:100%;
    width:100%;
}

/* =================== SHADOWS ============================= */
.shadow {
    box-shadow: 0px 3px 6px #00000029!important;
}

.shadow-2 {
    box-shadow: 0px 12px 12px #00000029!important;
}

/* =================== BORDER RADIUS ======================= */
.br-1 {
    border-radius: 10px;
}

.br-2 {
    border-radius: 20px;
}

/* =================== Z-INDEX ============================= */

.z-index-1 {
    z-index: 1 !important;
}

.z-index-2 {
    z-index: 2 !important;
}

.z-index-3 {
    z-index: 3 !important;
}




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

.card{
    /* border-radius: 5%; */
}

.card.text-center.px-3.py-5{
    min-height: 582px;
}

.card-white {
    background-color: var(--bs-white);
    width: 100%;
    border-radius: 15px;
}
.card-white a:hover{
    color: var(--bs-blue)!important;
}

.card-news div > img{
    width:100%;
}

.card-news a:hover{
    color: var(--bs-blue-dark)!important;
}

.card-clipping {
    min-height: 230px;
    max-height: 230px;
}

.card-category {
    height: 475px;
    max-height: 475px;
}

.card-diferentials {
    height: 150px;
    border-bottom: 11px solid transparent;
    border-image: linear-gradient(90deg, #780078 0%, #00D0F8 100%) 0% 0%;
    border-image-slice: 1;
}

.card-why-visite {
    height: 130px;
    border-radius: 10px;
}

.card-infomation {
    height: 205px;
}

.card.sistema{
    /* height: 181px; */
    box-shadow: 0 6px 12px #00000029;
    padding: 30px 20px;
}


/* ================== DOTS CAROUSEL  ======================== */

.owl-theme .owl-dots .owl-dot span,
.owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--bs-green-light);
}

.owl-theme .owl-dots .owl-dot.active span {
    transform: scale(1.4);
}



/* ================== NAV CAROUSEL  ======================== */

.owl-carousel .owl-nav button.owl-prev{
    background-image: url('../images/icones/chevron-left.svg') !important;
}

.owl-carousel .owl-nav button.owl-next {
    background-image: url('../images/icones/chevron-right.svg') !important;
}

.owl-theme .owl-nav [class*=owl-]:hover{
    background-color: transparent !important;
}

.owl-theme .owl-nav {
    position: absolute;
    top: 45%;
    left: -4%;
    width: 108% !important;
    display: flex;
    justify-content: space-between !important;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    color: transparent !important;
    height: 30px !important;
    width: 30px !important;
}

#evento .owl-carousel .owl-nav button.owl-prev{
    background-image: url('../images/icones/arrow-left-circle-blue.svg') !important;
}

#evento .owl-carousel .owl-nav button.owl-next {
    background-image: url('../images/icones/arrow-right-circle-blue.svg') !important;
}

/* ================== TABS ================================== */
.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 20px !important;
    text-align: start !important;
    border-bottom-width: 1px;
    border-color: transparent transparent var(--bs-gray) transparent !important;
    border-style: solid !important;
}

.nav-tabs .nav-link.active {
    color: var(--bs-blue-dark) !important;
    background: var(--bs-gray-light) !important;
    border-color: transparent transparent var(--bs-blue-dark) transparent !important;
    border-width: 3px !important;
    border-style: solid !important;
    margin-top: -3px !important;
}

.nav-tabs .nav-link-galeria {
    width: 100%;
    padding: 5px 20px;
    font-size: 20px !important;
    border:none !important;
    background: transparent;
    color: var(--bs-gray-dark) !important;
}

.nav-tabs .nav-link-galeria.active {
    color: var(--bs-green-light) !important;
    border-bottom: 1px solid var(--bs-gray) !important;
}

/* =================== BACKGROUNDS COLORS ==================== */
.bg-white {
    background-color: var(--bs-white);
}

.bg-blue-light {
    background-color: var(--bs-blue-light);
}

.bg-blue {
    background-color: var(--bs-blue);
}

.bg-blue-dark {
    background-color: var(--bs-blue-dark);
}

.bg-blue-dark-2 {
    background-color: var(--bs-blue-dark-2);
}

.bg-blue-2 {
    background-color: var(--bs-blue-2);
}
.bg-ocean-blue-dark {
    background-color: var(--bs-ocean-blue-dark);
}

.bg-green-light {
    background-color: var(--bs-green-light);
}

.bg-gray-light {
    background-color: var(--bs-gray-light);
}

.bg-gray {
    background-color: var(--bs-gray);
}

.bg-gray-dark {
    background-color: var(--bs-gray-dark);
}

.bg-purple {
    background-color: var(--bs-purple);
}


.bg-red-dark {
    background-color: var(--bs-red-dark);
}

.bg-yellow {
    background-color: var(--bs-yellow);
}

/* ================== Footer ===================== */
.bg-footer {
    background-color: var(--bs-black-2);
}

footer .list-none-style a.text-white:hover{
    border-bottom: 1px solid #ffffff;
}

footer .img-tel{
    max-height: 20px;
}

/* ================== LISTAS  =============================== */

.list-none-style {
    list-style: none;
}



/* ================== FAQS ================================== */

.accordion-button-perfil-expositor {
    color: var(--bs-blue-dark) !important;
    /*border-radius: 10px !important;*/
    box-shadow: none;
    border-bottom: 1px solid #00000029;
}

.accordion-button::after {
    background-image: url("../images/icones/faq-open.svg") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../images/icones/faq-close.svg") !important;
    height: 30px;
    width: 30px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-gray-light) !important;
}

.accordion-item{
    border: none!important;
    background: transparent;
    margin-bottom: 30px;
}
/* ================== TABELAS =============================== */


.table {
    margin-left: 0;
    overflow-x: auto;
    max-height: 500px !important;
    overflow-y: auto !important;
}

.table-download {
    width: 100%;
    min-width: 650px;
    border-spacing: 0 12px !important;
    border-collapse: separate !important;
}

.table-download thead tr th,
.table-download tbody tr td {
    padding: 10px 0px 10px 10px;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 14px;
}

.table-download thead tr,
.table-download tbody tr {
    border-radius: 2px;
    box-shadow: 0px 3px 3px #00000029;
}

.table-download thead th:first-child,
.table-download tbody tr td:first-child {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.table-download thead th:last-child,
.table-download tbody tr td:last-child {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

/* ================== ESTILIZAÇÃO HEADER ==================== */

.nav-item {
    padding: 0 10px;
}
.nav-link {
    font-size: 16px;
    color: var(--bs-gray-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #ffffff !important;
}
.nav-link:hover {
    border-bottom: 3px solid var(--bs-blue-2) !important;
}


.header-fixed{
    position: fixed;
    z-index: 6;
    box-shadow: 0px 3px 6px #00000029;
}

body{
    top: 0!important;
}

.dropdown-menu.show {
    -webkit-animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
    animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

.dropdown-toggle::after {
    background-image: url("../images/icones/chevron-down.png");
    background-position: center;
    background-size: cover;
    width: 15px;
    height: 15px;
    border: transparent!important;
}

.dropdown-menu li a:hover
{
    background-image: linear-gradient(90deg, #1497ee 0%, #0056ff 100%) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    color: var(--bs-white) !important;
}

.dropdown-menu li a i:hover {
    color: var(--bs-white) !important;
}

.fa-circle-icon {
    color: var(--bs-blue-light);
}

.custom-dropdown-menu {
    max-width: 280px;
    word-break: break-word;
    white-space: normal;
    right: 0;
    left: auto;
    max-height: 60vh;
    overflow-y: auto;
}

[id] {scroll-margin-top: 90px;}
#precos, #quem-somos-index { scroll-margin-top: 90px !important;}

/* ================== ESTILIZAÇÃO BANNER ============ */
#banner .bg-banner{
    min-height: 400px;
    height: auto;
    max-height: 800px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}


#banner .bg-banner.bg-banner-text::after {
    background: rgba(0, 0, 0, 0.3);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#banner .bg-banner .container {
    position: relative;
    z-index: 2;
}


#banner .bg-banner h1{
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--bs-blue-dark) !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(150, 150, 150, 0.7);
    margin-bottom: 1rem;
    line-height: 1.2;
}


#banner .bg-banner h3{
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--bs-white) !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

#banner .bg-banner p{
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--bs-white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Estilo para os dots de navegação */
.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.3);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .banner-dots {
        bottom: 15px;
    }
    
    .banner-dot {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    #banner .bg-banner {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    #banner .bg-banner {
        min-height: 300px;
    }
}

@media (min-width: 1920px) {
    #banner .bg-banner {
        min-height: 500px;
    }
}

.banner-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.banner-link:hover {
    text-decoration: none;
    color: inherit;
}


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

.content-menu-mobile {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    position: fixed;
    top:0;
    bottom: 0;
    left: 0;
    z-index: 2!important;
}


.button-mobile {
    position: fixed;
    left: 262px;
    top: 38px;
    background: red;
    border-radius: 50%;
    height: 42px;
    width: 42px;
    background-image: linear-gradient(90deg, var(--bs-blue)  0%,  var(--bs-blue-2) 100%);
    color: var(--bs-white)!important;
    font-weight: bolder;
}

.menu-mobile {
    width: 285px;
    height: 100vh;
    left: 0!important;
    position: fixed;
    z-index: 3!important;
    background-color: var(--bs-white);
    border-left-width: 0!important;
    border-top-width: 0!important;
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(to bottom, var(--bs-blue) , var(--bs-blue-2), rgba(0, 0, 0, 2%)) 0.5 50%;
    -webkit-animation: slide-right 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-right 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.menu-mobile .nav-link {
    font-size: 14px;
}

.border-bottom-gray {
    border-bottom: 1px solid var(--bs-gray);
}

/* =================== FALE CONOSCO ======================= */

#fale-conosco{
    position:fixed;
    height: 50px;
    right: -50px;
    top: 260px;
    padding: 5px;
    transform: rotate(270deg);
    background-color: #3065f3;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 15px;
    color:#FFFFFF;
    z-index: 99999999;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.30) !important;
    transition: 0.2s ease-in-out!important;
    text-decoration: none;
}
#fale-conosco:hover{
    background-color: #022a86;
}
#fale-conosco a{
    font-size: 14px;
    color:#FFFFFF;
    padding-right: 5px;

}

#icone-fale-conosco{
    height: 25px;
    transform: rotate(90deg)!important;
}

#id_pessoa{
    display: flex;
}
#id_pessoa div label{
    padding-right: 5px;
}


/* =================== COOKIES ======================== */

#cookies{
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: var(--bs-blue-2);;
    color: #ffffff;
    z-index: 99999999;
    align-items: center;
    justify-content: center;
    display: none;
    padding: 5px;
}

#cookies h6{
    color: #ffffff;
    margin: 0;
    font-size: 15px;
}

#cookies p{
    color: #ffffff;
    margin: 0;
    font-size: 15px;
}
#cookies a{
    color: #ffffff!important;
    text-decoration: underline;
}
#cookies a:hover{
    text-decoration: unset;
}

#cookies-btn{
    color: #000000!important;
    background-color: white;
    border-radius: 20px;
    padding: 3px 27px;
    -webkit-appearance: media-volume-sliderthumb;
    min-width: 109px;
    font-weight: 100;
}



/* =================== SOLUÇÕES ================== */

#solucoes .card-header{
    border-radius: 20px 20px 0px 0px;
    opacity: 1;
    margin: 0 auto;
    width: 80%;

}

#solucoes .card h3{
    font-weight: 900!important;
    font-size: 30px;
}
#solucoes a strong{
    font-weight: 900!important;
}

#solucoes ul li::marker {
    content: url("../images/icones/marker.png");
    margin-right: 5px;
    padding-right: 10px;
}

/* =================== Preços e Planos ================== */
#precos .card-header{
    border-radius: 20px 20px 0px 0px;
    opacity: 1;
    margin: 0 auto;
    width: 80%;

}
#precos .card .price {
    font-size: 20px;
    /*color: var(--bs-blue);*/
    vertical-align: super;
    font-weight: 900;
}
#precos .preco {
    font-weight: 900;
    font-size: 70px;
}
#precos .cents {
    position: relative;
    left: -14px;
    top: 40px;
    line-height: 18px;
    text-align: left;
}

#precos .periodo {
    font-weight: normal;
    margin-left: 30px;
}

#precos .card .cents {
    font-size: 20px;
    font-weight: 900;
}
#precos .card small.periodo {
    vertical-align: middle!important;

}

#precos ul li::marker {
    content: url("../images/icones/marker.png");
    margin-right: 5px;
    padding-right: 10px;
}

.pacote-list-unstyled {
    margin: 0 auto;
    padding: 0;
    width: 80%;
}
.pacote-list-unstyled li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    position: relative;
    margin-bottom: 0.5rem;
    min-width: 200px;
}
.pacote-list-unstyled li i {
    margin-right: 0.5rem;
    width: 16px;
    flex-shrink: 0;
}
.pacote-list-unstyled li span {
    text-align: left;
    flex: 1;
}

/* =================== Quem somos ================== */
#quem-somos p{
    letter-spacing: 0;
    line-height: 22px;
}
/* =================== Quem somos index ================== */
#quem-somos-index p{
    letter-spacing: 0;
    line-height: 40px;
}

/* =================== Login ================== */
#login .bar{
    border: 2px solid var(--bs-blue-2);
    border-radius: 20px;
    width: 120px;
}

.sticky-col {
  position: sticky;
  left: 0;
  background: #fff !important; /* Força opaco */
  z-index: 2;
  box-shadow: 2px 0 5px -2px #ccc;
  opacity: 1 !important;
}
.table thead .sticky-col {
  z-index: 3;
  background: #fff !important;
  opacity: 1 !important;
}


/* =================== Slide Bar Dashboard Sistema===================*/
.sidebar-divider {
    border-top: 3px solid white !important; /* Define a cor e o estilo da linha */
    margin: 10px 0 !important; /* Define a margem superior e inferior */
}

/* =================== ANIMAÇÕES =========================== */

.swing-in-top-fwd {
    -webkit-animation: swing-in-top-fwd 0.9s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
    animation: swing-in-top-fwd 0.9s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}

@keyframes swing-in-top-fwd {
    0% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
}

slide-right {
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translateX(-280px);
        transform: translateX(-280px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes slide-right {
    0% {
        -webkit-transform: translateX(-280px);
        transform: translateX(-280px);
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}


/* =================== MEDIA QUERYS ======================== */

@media (max-width: 400px) {
    .nav-tabs .nav-link {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .logo-header {
        max-width: 200px !important;
    }

    .nav-tabs {
        display: flex;
        justify-content: center;
    }
    #banner .bg-banner h1{
        font-size: 1.8rem;
    }
    #banner .bg-banner h3{
        font-size: 2.1rem;
    }
    #quem-somos-index p{
        font-size: 30px;
    }
    #quem-somos-index h3{
        font-size: 40px;
    }
    
    footer #btn-footer li{
        display: block!important;
    }
}


@media (max-width: 768px) {
    .bg-banner {
        background-position: center right !important;
        min-height: 400px !important;
    }
}


@media (min-width: 992px) {
    .header-fixed {
        -webkit-animation: fadeInDown 700ms ease-in-out; /* Chrome, Safari, Opera */
        animation: fadeInDown 700ms ease-in-out;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        margin-top: 0px;
        box-shadow: 0px 3px 6px #00000029;
    }

}

/* Gráficos */
/* Estilo para os gráficos */
.grafico-container {
    width: 100%;
    height: 400px;
    min-height: 400px;
    position: relative;
}