    /*General CSS */

    :root {
        --color-district-primary: #FFFFFF;
        --color-district-secondary: #000000;

        --theme1-color:  #319CDD;
        --theme2-color:  #D38D4F;
        --theme3-color:  #D39E09;
        --theme4-color:  #1E9634;
        --theme5-color:  #FF9239;
        --theme6-color:  #40C6DD;
        --theme7-color:  #0CA5A5;
        --theme8-color:  #FF4D4D;
        --theme9-color:  #6864F7;
        --theme10-color: #7F7F7F;
        --theme11-color: #F15A22;
        --theme12-color: #009889;
        --border-color:  #3c3d3d;
    }

    .ck {
        --ck-z-default: 10;
        --ck-z-panel: calc(var(--ck-z-default) + 10000);
        --ck-z-dialog: 10000;
    }
    

    .theme1-color    { color:            var(--theme1-color); }
    .bg-theme1-color { background-color: var(--theme1-color); }
    .theme2-color    { color:            var(--theme2-color); }
    .bg-theme2-color { background-color: var(--theme2-color); }
    .theme3-color    { color:            var(--theme3-color); }
    .bg-theme3-color { background-color: var(--theme3-color); }
    .theme4-color    { color:            var(--theme4-color); }
    .bg-theme4-color { background-color: var(--theme4-color); }
    .theme5-color    { color:            var(--theme5-color); }
    .bg-theme5-color { background-color: var(--theme5-color); }
    .theme6-color    { color:            var(--theme6-color); }
    .bg-theme6-color { background-color: var(--theme6-color); }
    .theme7-color    { color:            var(--theme7-color); }
    .bg-theme7-color { background-color: var(--theme7-color); }
    .theme8-color    { color:            var(--theme8-color); }
    .bg-theme8-color { background-color: var(--theme8-color); }
    .theme9-color    { color:            var(--theme9-color); }
    .bg-theme9-color { background-color: var(--theme9-color); }
    .theme10-color   { color:            var(--theme10-color); }
    .bg-theme10-color{ background-color: var(--theme10-color); }
    .theme11-color   { color:            var(--theme11-color); }
    .bg-theme11-color{ background-color: var(--theme11-color); }
    .theme12-color   { color:            var(--theme12-color); }
    .bg-theme12-color{ background-color: var(--theme12-color); }

    html,
    body {
        font-family: 'Poppins';
        font-variant-ligatures: none;
        transition: 0.5s;
        /*background-image: url('../img/patterns/backgrounds/dot-paper-alpha.png');*/
        background-repeat: repeat;
        overflow-x: hidden;
    }

    .hide {
        display: none !important;
    }

    .position-absolute {
        position: absolute;
    }

    .policy-link {
        color: #00678f !important;
        font-weight: 700;
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        direction: ltr;
        vertical-align: bottom;
    }

    .policy-link:hover {
        color: #0A484F;
    }

    .disable-click {
        pointer-events: none;
    }

    .enable-click {
        pointer-events: all;
    }

    /*Navbar CSS */

    .navbar-custom {
        position: fixed;
        top: 0;
        height: 100px;
        width: 100%;
        background-color: #FFFFFF;
        border-bottom: solid 2px var(--border-color);
        z-index: 1052;
    }

    .navbar-custom .navbar-brand img {
        height: 70px;
        padding: 5px 10px 5px 20px;
        width: auto;
    }

    /*icons-Navbar CSS */

    .icon-navbar-container {
        margin-left: auto;
        margin-right: 20px;
    }

    .icon-navbar,
    .icon-navbar a {
        font-size: 0.95em;
        font-weight: 700;
        color: var(--border-color);
        margin: 0 0.6em 0 0.6em;
        text-decoration: none;
    }


    .icon-navbar.active a {
        color: #0D0D0C;
    }

    .icon-navbar.dropdown {
        position: relative;
    }

    .icon-navbar .dropdown-toggle {
        align-items: center;
        display: flex;
    }

    .icon-navbar .anos300-dropdown-menu {
        border: 2px solid var(--border-color);
        border-radius: 0;
        margin-top: 0.75rem;
        min-width: 11.5rem;
        padding: 0.35rem 0;
        z-index: 1053;
    }

    .icon-navbar .anos300-dropdown-menu .dropdown-item {
        color: var(--border-color);
        font-size: 0.95em;
        font-weight: 700;
        margin: 0;
        padding: 0.55rem 1rem;
    }

    .icon-navbar .anos300-dropdown-menu .dropdown-item.active,
    .icon-navbar .anos300-dropdown-menu .dropdown-item:active,
    .icon-navbar .anos300-dropdown-menu .dropdown-item:focus,
    .icon-navbar .anos300-dropdown-menu .dropdown-item:hover {
        background-color: #f0f2f2;
        color: #0D0D0C;
    }

    .icon-navbar:hover,
    .icon-navbar a:hover {
        color: var(--border-color);
    }

    /* #content_section .hovered:hover {
        background-color: #edecec;
    } */

    #glossary_section {
        background-color: #f0f2f2;
        color: #0D0D0C;
    }

    #glossary_section .title-with-line::after {
        background-color: #f0f2f2;
    }

    .district-box {
        height: calc(100vh - 100px);
        overflow-y: auto;
    }
    .district-box.ranking-box {
        padding-bottom: 180px;
    }


    .border-box.left {
        border-left: solid 2px var(--border-color);
    }

    .border-box.right {
        border-right: solid 2px var(--border-color);
    }

    .border-box.top {
        border-top: solid 2px var(--border-color);
    }

    .border-box.bottom {
        border-bottom: solid 2px var(--border-color);
    }

    .border-box .btn-district{
        z-index:100;
    }

    .district-title-container {
        position: absolute;
        width: 25rem;
        height: 115px;
        top: 6rem;
    }

    .align-box {
        position: absolute;
        bottom: 0;
    }

    .district-title {
        font-weight: 700;
        font-size: 2.5rem;
        line-height: 2.9rem;
        margin-bottom: 8px;
        
    }

    .district-info-box {
        font-family: 'Poppins';
        display: inline-block;
        font-size: 1.3rem;
    }

    .district-info-box .label {
        font-weight: 400;
    }

    .district-info-box .value {
        font-weight: 700;
    }

    .district-sidebar {
        z-index: 1031;
        position: absolute;
        display: flex;
        width: 25%;
        height: calc(100vh - 100px);
        left: 0;
        bottom: 0;
        justify-content: center;
        background-color: transparent;
        outline: none;
    }
    .svg-container.scale-hide + .district-sidebar
    {
        z-index: 1032;
        outline: solid 2px var(--border-color);
    }

    .information-container {
        z-index: 1019;
        position: absolute;
        width: 75%;
        right: 0;
        bottom: 0;
        background-color: #ffffff;
    }

    .information-container-quiz {
        z-index: 1019;
        position: absolute;
        width: 100%;
        right: 0;
        top: 100px;
        background-color: #ffffff;
    }

    .btn-district {
        border-radius: 1.4rem;
        background-color: #FFFFFF;
        border: solid #262626 2px;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
        padding-bottom: 0.65rem !important;
        font-weight: 600;
        font-size: 1rem;
    }

    .btn.rounded,
    .btn-big-square.rounded,
    .btn-full.rounded,
    .btn-district.rounded
    {
        border-radius: 100px !important;
    }

    .btn-big-square {
        display: flex;
        align-items: center; 
        justify-content: center;
        gap: 8px;
        border-radius: 0;
        background-color: #FFFFFF;
        border: solid #262626 2px;
        font-weight: 700;
        padding: 0 24px;
        font-size: 16px;
        text-transform: uppercase;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-big-square i {
        font-size: 40px;
        margin-bottom: 4px;
    }

    .btn-full {
        width: 100%;
        border-radius: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #FFFFFF;
        outline: 2px solid var(--border-color);
        font-size: 18px;
        font-weight: 600;
        text-align: left;
    }

    .btn-full.certo {
        background-color: #00794a;
        outline: 2px solid var(--border-color);
        color: #FFFFFF;
    }
    
    .btn-full.errado {
        background-color: #5c0202;
        outline: 2px solid var(--border-color);
        color: #FFFFFF;
    }

    .btn-district.absolute {
        position: absolute;
        top: -20px;
    }
    .btn-full.black,
    .btn-big-square.black,
    .btn-district.black {
        background-color: #262626;
        border: solid #262626 2px;
        color: #F7F7F7;
    }
    .btn-full.black:hover,
    .btn-big-square.black:hover,
    .btn-district.black:hover {
        background-color: #F7F7F7;
        border: solid #262626 2px;
        color: #262626;
    }

    .btn-full.orange,
    .btn-big-square.orange,
    .btn-district.orange {
        background-color: var(--theme11-color);
        border: solid var(--theme11-color) 2px;
        color: #F7F7F7;
    }
    .btn-full.orange:hover,
    .btn-big-square.orange:hover,
    .btn-district.orange:hover {
        background-color: #F7F7F7;
        border: solid var(--theme11-color) 2px;
        color: var(--theme11-color);
    }

    .btn-full.green,
    .btn-big-square.green,
    .btn-district.green {
        background-color: var(--theme12-color);
        border: solid var(--theme12-color) 2px;
        color: #F7F7F7;
    }
    .btn-full.green:hover,
    .btn-big-square.green:hover,
    .btn-district.green:hover {
        background-color: #F7F7F7;
        border: solid var(--theme12-color) 2px;
        color: var(--theme12-color);
    }




    .btn-district:hover, .btn-full:hover, .btn-big-square:hover {
        background-color: #262626;
        color: #d3d3d3;
    }

    .btn-district.delete {
        color: #fa0000;
    }

    .title-with-line {
        position: relative;
        display: flex;
    }

    .title-with-line::after {
        --back-color-line-after: #262626;
        content: "";
        display: block;
        width: 4rem;
        height: 5px;
        margin-top: 5px;
        background-color: var(--back-color-line-after);
        position: absolute;
    }

    .info_with_line {
        position: relative;        
    }

    .info_with_line::before {
        content: '';
        position: absolute;
        height: 100%;
        width: 4px;
        left: -12px;
    }
    .info_with_line.line1::before  { background-color: var(--theme1-color);  }
    .info_with_line.line2::before  { background-color: var(--theme2-color);  }
    .info_with_line.line3::before  { background-color: var(--theme3-color);  }
    .info_with_line.line4::before  { background-color: var(--theme4-color);  }
    .info_with_line.line5::before  { background-color: var(--theme5-color);  }
    .info_with_line.line6::before  { background-color: var(--theme6-color);  }
    .info_with_line.line7::before  { background-color: var(--theme7-color);  }
    .info_with_line.line8::before  { background-color: var(--theme8-color);  }
    .info_with_line.line9::before  { background-color: var(--theme9-color);  }
    .info_with_line.line10::before { background-color: var(--theme10-color); }

    .big-margin {
        margin-top: 7rem !important;
    }

    .district-glossary {
        font-family: 'Poppins';
        width: 100%;
    }

    .district-glossary .title {
        font-weight: 700;
    }

    .district-glossary .description {
        font-weight: 400;
    }

    .district-description {
        font-family: 'Poppins';
        font-weight: 400;
    }


    .modal-district {
        border-radius: 0;
    }

    .modal-district .modal-header {
        color: #F7F7F7;
        background-color: #262626;
        border-radius: 0;
    }

    .rc-anchor-logo-img {
        filter: grayscale(1) !important;
    }

    .img-district-map {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .inline-grid {
        display: inline-grid;
    }

    .inline-grid .svg-container-relative {
        display: flex;
    }

    .inline-grid .input-group {
        height: 10px;
    }

    .none-events {
        pointer-events: none;
    }

    .footer-custom {
        position: fixed;
        bottom: 0;
        height: 3rem;
        width: 100%;
        background-color: #ffffff;
        border-top: solid 2px var(--border-color);
        z-index: 1010;
        color: #262626;
    }

    .footer-custom img {
        width: auto;
        height: 1.25rem;
    }

    .footer-custom span {
        font-size: 0.8rem;
    }

    .accordion-item {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .accordion-body {
        cursor: default;
    }

    #about .footer-custom,
    #fortaleza .footer-custom {
        z-index: 1010;
    }

    .answer-pack {
        z-index: 300;
        color: #ffffff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ffffff;
        text-align: center;
    }
    .answer-pack .unit-value{
        display: inline-block;
    }
    .answer-pack .unit-value .indicator-value {
        font-size: 70px;
        float: left;
    }

    .answer-pack .unit-value .indicator-unit {

        font-size: 29px;
        line-height: 108px;
        padding-left: 12px;
        color: #fff900;
    }

    .answer-pack .indicator-label {
        font-weight: 600;
        font-size: 24px;
    }

    .indicator-label {
        font-weight: 700;
        font-size: 17px;
        text-transform: uppercase;
    }
    .indicator-value {
        font-weight: 700;
        font-size: 36px;
    }
    .indicator-unit {
        font-weight: 600;
        font-size: 16px;
        color: #7a7e83;
    }

    .hide-story {
        font-size: 24px;
        text-align: justify;
        margin-left: 32px;
        margin-right: 32px;
    }

    .list-toggle,
    .offcanvas-menu,
    .mobile-close {
        display: none;
    }

    .m-d-top {
        margin-top: 3rem;
    }

    .m-d-bottom {
        margin-bottom: 3rem;
    }

    .container-map {
        min-height: 30rem;
    }

    .container-map.fullscreen {
        min-height: 100vh;
    }

    .leaflet-sidebar.fullscreen img {
        height: calc(100% - 11rem);
    }

    .leaflet-sidebar.fullscreen {
        top: 100px;
    }


    .district-mobile-navbar {
        display: none !important;
    }

    .toast-img {
        height: 3rem;
    }

    #policy {
        height: calc(100vh - 4rem);
        overflow: auto;
    }

    .toast-121 {
        z-index: 1032;
    }

    .big-toast {
        color: #262626;
        z-index: 2000;
        margin-bottom: 3rem;
    }

    .big-toast .text {
        color: #0d0d0d;
        font-weight: 700;
        font-size: 1.3rem;
        
    }

    .fontes-bibliograficas {
        text-decoration: none;

        p {
            word-break: break-word;
        }

        a {
            color: inherit;
            text-decoration: underline;
        }

        a:hover {
            text-decoration: underline;
        }
    }

    .animate-img{
        padding: 0;
    }

    .animate-img img{
        width: 100%;
        height: auto;
    }

    .gif-video {
        width: 100%;
        height: auto;
        max-height: 660px;
        display: block;
        object-fit: cover; /* ou contain, depende do layout */
    }

    .posicao-podio {
        font-weight: 900;
        font-size: 170px;
        opacity: .08;
        display:grid;
        margin-top: -220px;
        position: relative;
        z-index: -1;
    }

    .posicao-podio.desc{
        font-size: 170px;
        margin-top: -220px;
    }
    .posicao-podio.asc{
        font-size: 120px;
        margin-top: -190px;
    }

    .district-podio {
        position: relative;
    }

    .texto-podio {
        font-weight: 600;
        font-size: 20px;
        text-transform: capitalize;
        text-align: center;
    }

    .valor-podio {
        font-weight: 900;
        font-size: 30px;
        line-height: 30px;
        text-align: center;
        color: #246ab4;
        margin-top: 8px;
    }

    .valor-podio.desc {
        color: #246ab4;
    }

    .valor-podio.asc {
        color: #c23636;
    }


    .valor-podio .unit {
        font-weight: 500;
        font-size: 16px;
        color: #7a7e83;
        display: block;
    }
    .valor-podio .unit.inline {
        display: inline-block;
    }


    .nome-fora-podio {
        font-weight: 500;
        font-size: 12px;
        opacity: .6;
        text-align: center;
        text-transform: capitalize;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .information-full-container {
        /* z-index: 1021; */
        position: absolute;
        width: 100%;
        right: 0;
        top:100px;
        background-color: #ffffff;
        overflow: hidden;
    }
    
    .page-title {
        z-index: 1919;
        position: fixed;
        width: 100%;
        height: 95px;
        background-color: #f0f2f2;
    }

    .page-title .title-main {
        font-weight: 700;
        font-size: 34px;
        padding-left: 20px;
        padding-top: 12px;
    }
    .page-title.quiz-title {
        height: 60px;
    }
    
    .page-title.quiz-title .title-main {
        padding-top: 7px;
    }

    .tabela-classificacao {
        width: 100%;        
    }

    .tabela-classificacao thead {
        height: 40px;
    }
    .tabela-classificacao tbody tr{
        height: 38px;
        border-bottom-width: 1px;
        border-bottom-color: #F2F2F2;
        /* font-family: 'Poppins'; */
    }
    .tabela-classificacao tbody tr td.position{
        font-weight: 600;
        min-width: 45px;
    }
    .tabela-classificacao tbody tr td.text-end {
        color: #246ab4;
        font-weight: 600;
    }

    .info_bairros {
        width: 140px;
    }

    .crossbar {
        position: absolute;
        left: 180px;
        top: 72px;
        z-index: inherit;
    }

    .crossbar .theme-bar {
        width: 350px;
        padding: 8px 20px !important;
        border-radius: 25px;
        font-size: 15px;
        margin-right: 15px;
        font-variant-ligatures: none;
    }
    .crossbar select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .crossbar::after {
        content: '\25BC'; /* Código unicode para um triângulo para baixo */
        position: absolute;
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        pointer-events: none; /* Para garantir que o clique passe para o select */
        font-size: 16px;
        color: #555;
    }

    .crossbar-call {
        margin-left: 35px;
        top: 6px;
        position: relative;
        font-family: 'Poppins';
        font-size: 13px;
        text-transform: uppercase;
        opacity: .6;
    }

    .btn-circle {
        height: 44px;
        width: 44px;
        padding: 0;
        font-size: 22px;
        border-radius: 22px;
        background-color: #FFFFFF;
        border: solid #262626 2px;
        font-weight: 600;
    }
    .btn-circle:hover {
        background-color: #f0f2f2;
    }

    .btn-select {
        border-radius: 1.4rem;
        background-color: #FFFFFF;
        border: solid #262626 2px;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
        font-weight: 600;
    }
    .btn-select:hover {
        background-color: #f0f2f2;
    }
    
    .district-hover {
        background-color: #EBEBEB;
    }

    .popover {
        border: solid 2px var(--border-color);
        max-width: 314px !important;
        width: 314px !important;
    }
    
    .popover .popover-header {
        border-bottom: 2px solid var(--border-color);
        background-color: #f0f0f2;
        font-family: 'Poppins';
    }
    .popover .popover-body {
        background-color: #f9f9f9;
        font-family: 'Poppins';
    }
    
    .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before, .bs-popover-top>.popover-arrow::before {
        bottom: 1px;
        border-width: .4rem .4rem 0;
        border-top-color: var(--border-color);
    }
    .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after, .bs-popover-top>.popover-arrow::after {
        border-width: .4rem .4rem 0;
        border-top-color: var(--border-color);
    }
    .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before, .bs-popover-end>.popover-arrow::before {
        left: 1px;
        border-width: .4rem .4rem .4rem 0;
        border-right-color: var(--border-color);
    }
    .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after, .bs-popover-end>.popover-arrow::after {
        border-width: .4rem .4rem .4rem 0;
        border-right-color: var(--border-color);
    }


    .popover .popover-header .position {
        font-size: 18px;
        font-weight: 700;
    }
    .popover .popover-header .description {
        font-weight: 500;
        margin-left: 4px;
    }


    .popover .popover-body .title {
        color: #212529;
        font-size: 14px;
        font-weight: 400;
    }
    .popover .popover-body .value {
        color: #246ab4;
        font-size: 16px;
        font-weight: 600;
    }
    .popover .popover-body .unit {
        color: #7a7e83;
        font-size: 13px;
        font-weight: 500;
        margin-left: 2px;
    }

    .theme-img {
        height: 50px;
    }

    button {
        font-variant-ligatures: none;
    }

    .accordion-themes .accordion-header {

    }
    .accordion.accordion-themes .accordion-item {
        border-bottom: 2px solid var(--border-color);;
        
    }

    .accordion.accordion-themes .accordion-item .accordion-header .accordion-button {
        background-color: #f7f7f7;
    }
    
    .accordion.accordion-themes .accordion-item .accordion-header .accordion-button:not(.collapsed) {
        background-color: #ffffff;
        box-shadow: none;
        color: inherit;
    }
    .accordion.accordion-themes .accordion-item .accordion-header .accordion-button:hover {
        background-color: #dddcdc;
    }
    .accordion.accordion-themes .accordion-item .accordion-header .accordion-button:focus {
        border: 0;
        box-shadow: none;
    }

    .accordion.accordion-themes .accordion-item .accordion-body {
        min-height: 360px;
    }
    .accordion-collapse.collapse {
        /* border-top: 0;
        border-bottom: 2px solid var(--border-color); */
    }
    .accordion-collapse.collapse.show {

    }
    .accordion-themes button:focus:not(:focus-visible) {

    }

    .accordion.accordion-themes .accordion-item .accordion-header .accordion-button

    .accordion.accordion-themes .accordion-item .accordion-header .accordion-button {
        background-color: #f7f7f7;


    }

    .themes-collapsed {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .themes-collapsed .district-btn-title {
        font-size: 24px;
        text-transform: uppercase;
        margin-left: 16px;
        font-weight: 700;
    }

    .district-chart {
        height: 360px;
    } 

    .fortaleza-info-section {
        width: 100%;
    }

    .fortaleza-section-heading {
        align-items: center;
        display: flex;
        gap: 16px;
        margin-bottom: 1rem;
        padding-bottom: 0.85rem;
    }

    .fortaleza-section-heading h2 {
        font-size: 1.5rem;
        font-weight: 800;
        margin: 0;
        text-transform: uppercase;
    }

    .fortaleza-indicator {
        background: #f7f7f7;
        height: 100%;
        min-height: 150px;
        outline: 2px solid var(--border-color);
        padding: 1.25rem 1.25rem 1.1rem;
        position: relative;
    }

    .fortaleza-indicator::before {
        bottom: 0;
        content: "";
        left: 0;
        position: absolute;
        top: 0;
        width: 8px;
    }

    .fortaleza-indicator.theme-border-1::before  { background-color: var(--theme1-color);  }
    .fortaleza-indicator.theme-border-2::before  { background-color: var(--theme2-color);  }
    .fortaleza-indicator.theme-border-3::before  { background-color: var(--theme3-color);  }
    .fortaleza-indicator.theme-border-4::before  { background-color: var(--theme4-color);  }
    .fortaleza-indicator.theme-border-5::before  { background-color: var(--theme5-color);  }
    .fortaleza-indicator.theme-border-6::before  { background-color: var(--theme6-color);  }
    .fortaleza-indicator.theme-border-7::before  { background-color: var(--theme7-color);  }
    .fortaleza-indicator.theme-border-8::before  { background-color: var(--theme8-color);  }
    .fortaleza-indicator.theme-border-9::before  { background-color: var(--theme9-color);  }
    .fortaleza-indicator.theme-border-10::before { background-color: var(--theme10-color); }

    .fortaleza-indicator .indicator-label {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .fortaleza-indicator .indicator-value {
        color: #0D0D0C;
        font-size: 2rem;
        line-height: 1.1;
        margin-top: 0.55rem;
        word-break: break-word;
    }

    .fortaleza-indicator .indicator-unit {
        display: block;
        font-size: 0.85rem;
        line-height: 1.25;
        margin-top: 0.35rem;
    }

    .fortaleza-history-text {
        background: #f7f7f7;
        border: 2px solid var(--border-color);
        font-size: 1.1rem;
        line-height: 1.65;
        padding: 1.5rem;
    }
 
    /*#search_input {
        color: #737373;
        font-weight: 600;
        background-color: #ffffff;
        border: solid #737373 2px;
    } */

    .apexcharts-canvas {
        background-color: #ffffff;
    }
    
    /* Customizando a cor da linha do gráfico */
    .apexcharts-line {
        stroke: #FF5733; /* Cor laranja */
    }
    
    /* Customizando os pontos do gráfico */
    .apexcharts-marker {
        fill: #FF5733; /* Cor laranja */
    }
    
    /* Customizando as labels do eixo X */
    .apexcharts-xaxis text {
        fill: #333333;
        font-size: 12px;
        font-weight: bold;
    }
    
    /* Customizando as labels do eixo Y */
    .apexcharts-yaxis text {
        fill: #333333;
        font-size: 12px;
        font-weight: bold;
    }
    
    /* Customizando a tooltip */
    .apexcharts-tooltip {
        background: #333333;
        color: #FFFFFF;
        font-size: 14px;
    }
        
    .apexcharts-yaxis-texts-g {
        
    }
   	
    .apexcharts-legend {	
        display: flex;	
        overflow: auto;	
        padding: 0 10px;	
      }	
      .apexcharts-legend.apx-legend-position-bottom, .apexcharts-legend.apx-legend-position-top {	
        flex-wrap: wrap	
      }	
      .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left {	
        flex-direction: column;	
        bottom: 0;	
      }	
      .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-left, .apexcharts-legend.apx-legend-position-top.apexcharts-align-left, .apexcharts-legend.apx-legend-position-right, .apexcharts-legend.apx-legend-position-left {	
        justify-content: flex-start;	
      }	
      .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center, .apexcharts-legend.apx-legend-position-top.apexcharts-align-center {	
        justify-content: center;  	
      }	
      .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-right, .apexcharts-legend.apx-legend-position-top.apexcharts-align-right {	
        justify-content: flex-end;	
      }	
      .apexcharts-legend-series {	
        cursor: pointer;	
        line-height: normal;	
      }	
      .apexcharts-legend.apx-legend-position-bottom .apexcharts-legend-series, .apexcharts-legend.apx-legend-position-top .apexcharts-legend-series{	
        display: flex;	
        align-items: center;	
      }	
      .apexcharts-legend-text {	
        position: relative;	
        font-size: 14px;	
      }	
      .apexcharts-legend-text *, .apexcharts-legend-marker * {	
        pointer-events: none;	
      }	
      .apexcharts-legend-marker {	
        position: relative;	
        display: inline-block;	
        cursor: pointer;	
        margin-right: 3px;	
        border-style: solid;
      }	
      	
      .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series, .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series{	
        display: inline-block;	
      }	
      .apexcharts-legend-series.apexcharts-no-click {	
        cursor: auto;	
      }	
      .apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series {	
        display: none !important;	
      }	
      .apexcharts-inactive-legend {	
        opacity: 0.45;	
      }

    .scroll-right {
        direction: rtl;
    }

    .grid-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Duas colunas de tamanhos iguais */
        gap: 0;
    }
    .transparent-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .quiz-letter {
        padding-right: 8px;
        font-weight: 800;
    }

    .quiz-img-container {
        position: relative;
    }
    /* Estilizando a imagem */
    .quiz-img-container .img-quiz {
        outline: 2px solid var(--border-color);
        display: block;
    }
    .quiz-img-container .text-overlay {
        position: absolute;
        top: 0px;
        left: 0px;
        color: #ffffff;
        font-size: 1rem;
        background-color: var(--border-color);
        padding: 2px 12px 4px;
        text-align: center;
        z-index: 10;
    }

    .feedback-quiz-title {
        font-size: 38px;
        text-align: center;
        margin-bottom: 0;
    }
    .feedback-quiz-title.right-answer {
        color: #00794a;
    }
    .feedback-quiz-title.wrong-answer {
        color: #B94B49;
    }
    .answer-key-group {
        text-align: center;
    }
    .answer-key-group .answer-key {
        font-weight: 500;
        color: #888c8d;
    }
    .answer-key-group .key {
        font-weight: 700;
        color: #000;
    }
    .answer-key-group .know-more a{
        margin-left: 12px;
        font-size: 13px;
    }

    .auto-lightbox img:hover{ cursor:pointer; filter: saturate(150%) brightness(1.3) }

    .image-bg-win {
        background-color: hsla(123, 100%, 20%, 0.4);
        animation: borderFadeWin 0.3s 5 ease-in-out alternate forwards; /* Animação de fade in e fade out */
    }
    .image-bg-loss {
        background-color: hsla(0, 100%, 32%, 0.0);
        animation: borderFadeLoss 0.6s 1 ease-in-out forwards; /* Animação de fade in e fade out */
    }
    .image-bg-neutral {
        background-color: hsla(0, 0%, 0%, 0);
        animation: borderFadeNeutral 0.6s 1 ease-in-out forwards; /* Animação de fade in e fade out */
    }
    
    @keyframes borderFadeWin {
        from { background-color: hsla(123, 100%, 20%, 0.4); }
        to { background-color: hsla(123, 100%, 15%, 0.8); }
    }

    @keyframes borderFadeLoss {
        from { background-color: hsla(0, 100%, 32%, 0.0); }
        to { background-color: hsla(0, 100%, 32%, 0.7); }
    }

    @keyframes borderFadeNeutral {
        from { background-color: hsla(0, 0%, 0%, 0); }
        to { background-color: hsla(0, 0%, 0%, 0.7); }
    }
      
    .image_mapa_quiz {
        max-width: 100%;
        max-height: 100%;
        transition: transform 0.1s ease-out; /* Suaviza transformações */
        touch-action: none; /* Impede comportamento padrão de gestos */
    }
      
    .image_territory {
        max-height: 180px;
        width: auto;
        height: auto;
    }

    .map-icon,
    .info-icon {
    --size: 30px;
    --bg: #ffffff;
    --bg-hover: #dfe1e4;   /* cinza claro no hover */
    --border: #323333;

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

    width: var(--size);
    height: var(--size);

    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 50%;

    padding: 4px; /* respiro */
    box-sizing: border-box;

    text-decoration: none;
    cursor: pointer;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background-color 0.15s ease,
        border-color 0.15s ease;
}
.info-icon {
    width: 24px;
    height: 24px;
}

.map-icon img,
.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none; /* evita interferência no clique */
}

/* Hover */
.map-icon:hover,
.info-icon:hover {
    background: var(--bg-hover);
    border-color: #333;
}

/* Active (clique) */
.info-tooltip:active {

}

/* Foco acessível */
.info-tooltip:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.info-tooltip::after {
    content: attr(data-tooltip);

    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);

    background: #333;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: none;

    white-space: nowrap;
    opacity: 0;
    pointer-events: none;

    transition: opacity 0.15s ease, transform 0.15s ease;
}
.map-icon,
.info-icon {
    position: relative;
}

.btn-circle.info-tooltip::before,
.btn-circle.info-tooltip::after {
    bottom: calc(100% + 8px);
    left: calc(100% - 20px);
}



/* seta */
.info-tooltip::before {
    content: "";

    position: absolute;
    bottom: calc(100%);
    left: 50%;
    transform: translateX(-50%) translateY(4px);

    border-width: 4px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.15s ease, transform 0.15s ease;
}

/* exibir tooltip */
.info-tooltip:hover::after,
.info-tooltip:hover::before,
.info-tooltip:focus-visible::after,
.info-tooltip:focus-visible::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tip-title{
    display:none;
    color: #212529;
    position: absolute;
    left: 50%;
    top: 150px;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 500;
}

.ranking-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

.modal-body {
  overflow-wrap: break-word;
  word-wrap: break-word; /* fallback antigo */
}
.modal-body a {
  word-break: break-all;
}

#home300 {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 100px;
    padding-bottom: 3rem;
}

#home300 .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

#home300 .footer-custom {
    position: relative;
}

.home300-hero {
    background: linear-gradient(135deg, #f4f7f8 0%, #ffffff 45%, #f6f8fa 100%);
    border-bottom: 2px solid var(--border-color);
    padding: 100px 0px;
}

.home300-kicker {
    display: inline-block;
    font-family: 'Poppins';
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0A484F;
    letter-spacing: 0.04em;
}

.home300-title {
    max-width: 16ch;
    font-size: 3rem;
    line-height: 1.05;
    margin: 0;
}

.home300-description {
    max-width: 56ch;
    font-family: 'Poppins';
    font-size: 1.1rem;
    color: #525252;
}

.home300-logo {
    width: min(100%, 430px);
    height: auto;
}

.home300-cta {
    min-width: 230px;
}

.home300-contact {
    background-color: #f7f7f7;
}

.home300-section-title h2 {
    margin-bottom: 0.3rem;
    font-size: 2.2rem;
}

.home300-section-title p {
    font-family: 'Poppins';
    color: #525252;
}

.home300-contact-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    padding: 1.5rem;
}


/* .scroll-target {
  scrollbar-width: auto;
  scrollbar-color: #888888 #e2e2e2;
  scrollbar-gutter: stable;
} */

/* .scroll-target::-webkit-scrollbar-track {
  background: #e2e2e2;
  border-radius: 4px;
  box-shadow: none;
} */
/* .scroll-target::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 7px;
  border: 2px solid transparent;
  background-clip: padding-box;
} */
.scroll-target::-webkit-scrollbar-thumb:hover {
  background: #555555;
  background-clip: padding-box;
}

.scroll-target::-webkit-scrollbar {
    width: 8px;
    background: #00000000;
}
.scroll-target::-webkit-scrollbar-thumb, .drag-drop-body::-webkit-scrollbar-thumb {
    border-radius: 25px;
    background: #72727240 ;
    right: -4px ;
}
.scroll-target::-webkit-scrollbar-track-piece {
    background-color: #2b2b2b00 ;
}

p.firstText::first-letter {
  font-size: 3.0rem;      /* aumenta o tamanho */
  float: left;         /* faz a letra “cair” ao lado do texto */
  line-height: 0.9;
  margin-right: 8px;   /* espaçamento do resto do texto */
  font-weight: 600;
}
p.firstText {
    white-space: pre-line;
}

.card-gestores {
  width: 100%; /* Example dimensions */
  height: 300px;
  overflow: hidden; /* Ensures any overflow is hidden */
  margin-bottom: 8px;
  margin-top: 4px;
}

.card-gestores img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintains aspect ratio while filling */
  object-position: center; /* Centers the image content */
}

.card-outside .card-outside-title {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    display: block;
}
.card-outside .card-outside-detail {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
}
.card-outside .card-outside-detail-value {
    display: inline-block;
    font-size: 24px;
    text-align: center;
    width: 100%;
    font-weight: 700;
    margin-top: 45px;
}
.card-outside .card-outside-info {
    margin-top: 4px;
    margin-right: 16px;
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
}
.card-outside .card-outside-info .info-symbol {
    display: inline-block;
    font-size: 20px;
    margin-right: 3px;
}

.standard-content {
    height: calc(100dvh - 193px);
    margin-top: 93px;
}

.standard-content-2 {
    height: calc(100dvh - 160px);
    margin-top: 60px;
}

.full-border-outline {
    outline: 2px solid var(--border-color);
}
