.indubras-mapa-wrapper {
    max-width: 1180px;
    margin: 0 auto 180px auto;
    padding: 35px 20px 180px;
    min-height: 720px;
}

.indubras-mapa-layout {
    display: grid;
    grid-template-columns: 46% 54%;
    gap: 70px;
    align-items: flex-start;
}

.indubras-mapa-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
}

.indubras-mapa-svg {
    width: 100%;
    max-width: 390px;
    overflow: visible;
}

.indubras-mapa-svg svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* 🔥 MAPA BRANCO */
.indubras-mapa-svg path[id],
.indubras-mapa-svg [data-uf] {
    fill: #ffffff;
    stroke: #1f5a2a;
    stroke-width: 1.3;
    cursor: pointer;
    transition: fill 0.2s ease;
}

/* hover */
.indubras-mapa-svg path[id]:hover,
.indubras-mapa-svg [data-uf]:hover {
    fill: #d7ead0 !important;
}

/* ativo */
.indubras-mapa-svg path[id].ativo,
.indubras-mapa-svg [data-uf].ativo {
    fill: #7fb069 !important;
}

/* siglas */
.indubras-sigla,
.indubras-mapa-svg text {
    fill: #003f12;
    font-size: 8px;
    font-weight: 700;
    text-anchor: middle;
    pointer-events: none;
    user-select: none;
}

.indubras-painel {
    padding-top: 0;
    position: relative;
    z-index: 2;
}

.indubras-select-estado {
    width: 100%;
    max-width: 620px;
    padding: 12px 14px;
    font-size: 16px;
    margin-bottom: 26px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background: #ffffff;
    color: #222;
}

#indubras-resultado {
    color: #002d0c;
}

.lista-representantes > h3 {
    margin: 0 0 22px;
    color: #7fb069;
    font-size: 25px;
    font-weight: 700;
}

/* 🔥 CARDS */
.card-representante {
    background: #eeeeee;
    padding: 22px 24px;
    border-radius: 6px;
    margin-bottom: 18px;
    max-width: 360px;
}

.card-representante h3 {
    margin: 0 0 18px;
    color: #7fb069;
    font-size: 25px;
    font-weight: 700;
}

.card-representante p {
    margin: 10px 0;
    color: #003f12;
    font-size: 16px;
    line-height: 1.45;
}

.card-representante strong {
    color: #002d0c;
    font-weight: 700;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .indubras-mapa-wrapper {
        padding-bottom: 80px;
    }

    .indubras-mapa-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .indubras-mapa-svg {
        max-width: 500px;
    }

    .card-representante {
        max-width: 100%;
    }
}