        .box-mapa,
        .box-mapa * {
            font-family: "Montserrat", sans-serif;
        }


        .mapa-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: flex-start;
            flex-direction: row;
            justify-content: center;
        }

        /* MAPA */
        .box-mapa {
            position: relative;
            z-index: 1;
            padding: 20px 15px;
            flex: 1 1 35%;
            min-width: 250px;
            order: 1;
        }

        #map {
            display: block !important;
            margin: 0;
            max-width: 100%;
            height: auto;
            transform: scale(0.9);
            transform-origin: top center;
        }

        #map .state {
            cursor: pointer;
        }

        #map .state .shape {
            cursor: pointer;
            -width: 0;
        }

        #map .state .label_icon_state {
            fill: #FFF;
            font-family: Montserrat;
            font-size: 11px;
            line-height: 12px;
            font-weight: normal;
        }

        #map .state .label_state {
            display: none;
            font-family: Montserrat;
            font-size: 14px;
            line-height: 16px;
            font-weight: bold;
        }

        #map .model-davi .state:hover .label_state {
            display: block;
            fill: #FFF !important;
        }

        #map .model-davi .state .shape {
            fill: #ddd;
        }

        #map .model-davi .state.has-filial .shape {
            fill: #004287;
        }

        #map .model-davi .state.no-filial .shape {
            fill: #ccc;
            cursor: not-allowed !important;
        }

        #map .model-davi .state.no-filial {
            pointer-events: none;
        }

        #map .model-davi .state:hover .shape {
            fill: #004287 !important;
        }

        #map .model-davi .state.no-filial:hover .shape {
            fill: #ccc !important;
        }

        #map .model-davi .state .icon_state {
            fill: #ccc;
        }

        #map .model-davi .state:hover .icon_state {
            fill: #bbb;
        }

        #map .model-davi .state .icon_state+.label_icon_state {
            fill: #FFF;
        }

        #map .model-davi .state .label_icon_state {
            fill: #FFF;
        }

        #map .model-davi .state:hover .label_icon_state {
            fill: #FFF;
        }

        #map .model-davi .state .label_state {
            fill: #666;
            display: none;
        }

        #map .model-davi .state .shape {
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
        }

        #map .model-davi .state:hover .shape {
            fill: #003875;
        }


        .parca {
            position: sticky;
            top: 20px;
            flex: 1 1 30%;
            min-width: 280px;
            max-width: 400px;
            padding: 15px;
            align-self: flex-start;
            order: 3;
            margin-top: 80px;
        }

        .bandeira-italia {
            position: sticky;
            top: 20px;
            flex: 0 0 auto;
            width: 130px;
            padding: 10px;
            align-self: flex-start;
            order: 2;
            margin-top: 80px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            border-radius: 5px;
        }

        .bandeira-italia:hover {
            opacity: 0.8;
        }

        .bandeira-italia.active {
            border-color: #fd7132;
            background-color: rgba(253, 113, 50, 0.1);
        }

        .bandeira-italia img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }

        .bandeira-italia img:hover {
            transform: scale(1.05);
        }

        .bandeira-italia p {
            margin-top: 10px;
            font-size: 11px;
            color: #111;
            font-weight: bold;
        }

        .parca select {
            display: none;
            margin: 0 auto;
            width: 230px;
            border: 1px solid #999;
            height: 40px;
            padding: 9px;
            border-radius: 0;
        }

        .parca .estado {
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
            border: 1px solid #DDD;
            opacity: 0;
            visibility: hidden;
            border-radius: 5px;
            padding: 15px;
            min-width: 230px;
            box-shadow: 0 1px 80px 0 rgba(0, 0, 0, .3);
            background: #fff;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            max-height: 350px;
            overflow-y: auto;
        }

        .parca .estado.active {
            opacity: 1;
            visibility: visible;
            position: relative;
        }

        .parca .estado h3 {
            margin-top: 0;
            display: block;
            background-color: #004287;
            padding: 8px;
            text-transform: uppercase;
            color: #FFF;
            margin-bottom: 15px;
            font-size: 12px;
        }

        .parca .estado ul {
            padding-left: 0px;
            margin: 0;
        }

        .parca .estado ul li {
            line-height: 20px;
            font-size: 11px;
            margin-bottom: 5px;
        }

        /* Estrutura expansível */
        .empresa-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 8px 10px;
            background-color: #faf8f4;
            border-radius: 4px;
            margin-bottom: 8px;
            transition: background-color 0.3s ease;
            border: 1px solid rgba(0, 66, 135, 0.2);
        }

        .empresa-header:hover {
            background-color: #f5eedf;
        }

        .empresa-header strong {
            flex: 1;
            color: #1a1a2e;
        }

        .empresa-toggle {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #004287;
            color: white;
            border-radius: 50%;
            font-size: 16px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .empresa-header.active .empresa-toggle {
            transform: rotate(45deg);
        }

        .empresa-detalhes {
            display: none;
            padding-left: 15px;
            margin-bottom: 10px;
        }

        .empresa-detalhes.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .empresa-detalhes ul {
            list-style: none;
            padding-left: 0;
        }

        .empresa-detalhes ul li {
            padding: 3px 0;
            font-size: 11px;
            color: #555;
        }



        @media(max-width: 1199px) {
            #map {
                transform: scale(1);
            }
        }

        @media(max-width: 991px) {
            .parceiros .two .parca .estado {
                display: block;
                margin: 45px auto;
                float: none;
                position: absolute;
                left: 0;
                right: 0;
                min-width: 160px;
                max-width: 306px;
            }

            .box-mapa {
                position: relative;
                top: 0;
                left: initial;
                display: table;
                margin: 0 auto;
            }
        }

        @media(max-width: 500px) {
            #map {
                transform: scale(0.8);
                transform-origin: top center;
            }

            .parca select {
                display: block;
            }
        }