@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

/* html,
body {
    background: transparent !important;
} */

body {
    margin: 0;
    padding: 0;
    /* height: 100vh; */
    font-family: "Lato", "Roboto", sans-serif;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: #F2F2F2; */
}

/* section {
    width: 580px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
} */


section {
    width: 580px;
    margin-top: 6px;
    padding: 30px 70px;
    display: flex;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    background-color: #F2F2F2;
}


section .grafico {
    width: 100%;
    margin: 30px 0;
}

.semiChart-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 220px;
    margin: 0 auto;
}


section .politicos,
section .tecnicos {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
}

h1 {
    margin-top: 5px;
    text-align: center;
    color: #4d4d4d;
    font-size: 25px;
    /* opacity: 0.8; */
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
}

p.titulo-bloco {
    text-align: left;
    margin-left: 10px;
    letter-spacing: 0px;
    font-family: "Lato", "Roboto", sans-serif;
    font-weight: 600;

    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 12px;
}

section .politicos p.titulo-bloco {
    color: #666a5c;
}

section .tecnicos p.titulo-bloco {
    color: #666a5c;
}

.container {
    /* background-color: #87AE1C; */
    border-radius: 8px;
    /* width: 540px; */
    /* height: 50px; */
    /* padding: 20px; */
    margin-bottom: 12px;
    /* gap: 30px; */
    color: #ffffff;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.container.categoria-diversos {
    order: 1;
}

.container.aberto .material-symbols-outlined {
    transform: rotate(180deg);
    margin-top: 0px;
}

.container.aberto .btn-ver-mais {
    background-color: rgba(255, 255, 255, 0.9);
}

.informacoes {

    border-radius: 8px;
    width: 512px;
    min-height: 50px;
    padding: 30px;
    /* margin-bottom: 8px; */
    gap: 30px;
    color: #ffffff;

    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

section .politicos .container .informacoes {
    background-color: #007467;
}

section .tecnicos .container .informacoes {
    background-color: #007467;
}


.container .infos {
    width: 57%;
}



.container .bloco-infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.detalhes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;

}

.barra-progresso {
    margin-top: 7px;
    height: 7px;
    width: 100%;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.3);
    display: none;
}

.barra-progresso .progresso {
    height: 100%;
    border-radius: 7px;
    background-color: #FFFFFF;
}



.total-registros {
    margin-top: 2px;
    opacity: 0.7;
    font-size: 14.5px;
}




.semi-progress {
    --progress: 72;
    /* valor de 0 a 100 */
    --size: 240px;
    --thickness: 24px;
    --track: #e5e7eb;
    --fill: #22c55e;
    --bg: #fff;

    width: var(--size);
    aspect-ratio: 2 / 1;
    position: relative;
    overflow: hidden;
}

.semi-progress::before {
    content: "";
    position: absolute;
    inset: 0;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background:
        conic-gradient(from 180deg,
            var(--fill) calc((var(--progress) / 100) * 180deg),
            var(--track) 0);
    -webkit-mask: radial-gradient(farthest-side,
            transparent calc(100% - var(--thickness)),
            #000 calc(100% - var(--thickness) + 1px));
    mask: radial-gradient(farthest-side,
            transparent calc(100% - var(--thickness)),
            #000 calc(100% - var(--thickness) + 1px));
}

.semi-progress__inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #222;
}

.btn-ver-mais {
    background-color: rgba(255, 255, 255, 0.65);
    padding: 10px;
    border-radius: 40px;
    height: 43px;
    width: 43px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s ease;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-ver-mais:hover {
    background-color: rgba(255, 255, 255, 0.9);
}


.material-symbols-outlined {
    font-size: 44px !important;
    margin-top: 3px;
}


section .politicos .container .icon-down {
    color: #007467;
}

section .tecnicos .container .icon-down {
    color: #007467;
}

.detalhamento {
    background-color: rgb(255, 255, 255);
    /* height: 200px !important; */
    width: 392px;
    color: #585858;
    border-radius: 0 0 8px 8px;
    box-shadow: 0px 3px 12px #00000010;
    padding: 12px 32px 8px 32px;
    margin-bottom: 10px;
}

.detalhamento .gasto {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 0 17px 0;
    align-items: center;
    /* gap: 10px; */
    /* border-bottom: 1px dashed #bcbbbb; */
}

.detalhamento .gasto:not(:last-child) {
    border-bottom: 1px dashed #bcbbbb;
}


.detalhamento .gasto a {
    text-decoration: none;
    background-color: #D3E3FA;
    padding: 4px 11px;
    border-radius: 20px;
    height: 20px;
    font-size: 13px;
    color: #2575E8;
    font-weight: 600;
    white-space: nowrap;

}

.detalhamento .gasto a:hover {
    background-color: #c8daf4;
    color: #2575E8;
}


.item,
.valor,
.gasto a {
    flex-shrink: 0;
}

p.categoria {
    font-size: 16.5px;
    font-weight: 600;
    text-transform: uppercase;
}

p.categoria span {
    font-weight: 500;
    opacity: 0.7;
    font-style: italic;
    font-size: 14px;
}

.item {
    flex: 1;
    min-width: 170px;
    font-size: 14.5px;
}

.detalhes .valor {
    flex: 0 0 140px;
    text-align: right;
    font-size: 16px;
}


.detalhamento .valor {
    flex: 0 0 220px;
    text-align: right;
    margin-right: 12px;
    font-size: 13px;
}


.gasto a {
    flex: 0 0 43px;
}

p.percentual {
    position: relative;
    text-align: right;
    bottom: 26px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.movimentacao {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    /* border: 1px solid; */
    margin: 30px 0;
    padding-bottom: 30px;

    gap: 25px;
    text-transform: uppercase;
}

.movimentacao>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2px 0;
    gap: 5px;
}

.movimentacao .titulo-m {
    font-size: 14px;
    color: rgba(56, 56, 56, 0.6);
}

.movimentacao .valor-m {
    font-size: 17px;
    font-weight: 600;
    color: rgba(56, 56, 56, 0.8);
}

.movimentacao .separador {
    width: 2px;
    height: 60px;
    background-color: #c7c7c7;
}

.icone {
    width: 32px;
    height: 32px;
}


.imagem-profissional img {
    width: 50px;
}




.registros {
    width: 100%;
}

.grupo-categoria {
    width: 100%;
    margin-bottom: 34px;
    display: flex;
    flex-direction: column;
}

.grupo-categoria:last-child {
    margin-bottom: 0;
}

.lista-personagens {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* p.titulo-bloco {
    color: #666a5c;
    margin-left: 10px;
    margin-bottom: 8px;
} */

.container-personagem {
    width: 100%;
    margin-bottom: 12px;
    color: #ffffff;
}

.container-personagem .informacoes {
    background-color: #007467;
    width: 512px;
    min-height: 62px;
    padding: 16px 30px;
    gap: 18px;
    align-items: center;
}

/* categoria 1 */
.grupo-categoria-1 .informacoes {
    background-color: #1E0927;
}

.grupo-categoria-1 .icon-down,
.grupo-categoria-1 .titulo-bloco {
    color: #1E0927;
}

/* categoria 2 */
.grupo-categoria-2 .informacoes {
    background-color: #361F3E;
}

.grupo-categoria-2 .icon-down,
.grupo-categoria-2 .titulo-bloco {
    color: #361F3E;
}

/* categoria 3 */
.grupo-categoria-3 .informacoes {
    background-color: #503658;
}

.grupo-categoria-3 .icon-down,
.grupo-categoria-3 .titulo-bloco {
    color: #503658;
}

/* categoria 4 */
.grupo-categoria-4 .informacoes {
    background-color: #6B5272;
}

.grupo-categoria-4 .icon-down,
.grupo-categoria-4 .titulo-bloco {
    color: #6B5272;
}

/* categoria 5 */
.grupo-categoria-5 .informacoes {
    background-color: #886E8F;
}

.grupo-categoria-5 .icon-down,
.grupo-categoria-5 .titulo-bloco {
    color: #886E8F;
}

/* categoria 6 */
.grupo-categoria-6 .informacoes {
    background-color: #A68BAC;
}

.grupo-categoria-6 .icon-down,
.grupo-categoria-6 .titulo-bloco {
    color: #A68BAC;
}

/* categoria 7 */
.grupo-categoria-7 .informacoes {
    background-color: #C5AAC9;
}

.grupo-categoria-7 .icon-down,
.grupo-categoria-7 .titulo-bloco {
    color: #C5AAC9;
}




.imagem-pessoa,
.imagem-profissional {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.imagem-pessoa img,
.imagem-profissional img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.container-personagem .bloco-infos {
    flex: 1;
    min-width: 0;
}

.detalhes-personagem {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.infos-personagem {
    flex: 1;
    min-width: 0;
    width: auto !important;
}

.nome-profissional,
p.categoria.nome-profissional {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.18;
    color: #ffffff;
    text-transform: none;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.cargo-profissional,
.total-registros.cargo-profissional {
    margin-top: 5px;
    opacity: 0.6;
    color: #ffffff;
    font-size: 12.5px;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: left;
}

.valor-resumo-pessoa,
.detalhes .valor.valor-resumo-pessoa {
    flex: 0 0 120px;
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    text-transform: uppercase;
    padding-bottom: 0;
}

button.btn-ver-mais,
.btn-ver-mais {
    border: 0;
    flex: 0 0 43px;
    background-color: rgba(255, 255, 255, 0.65);
}

.btn-ver-mais:hover,
.container.aberto .btn-ver-mais {
    background-color: rgba(255, 255, 255, 0.9);
}

.icon-down {
    color: #007467;
    font-size: 35px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    margin-top: 3px !important;
    transition: transform 0.15s ease;
}

.container.aberto .icon-down,
.container.aberto .material-symbols-outlined {
    transform: rotate(180deg);
    margin-top: 0 !important;
}

.detalhamento[hidden] {
    display: none;
}

.detalhamento-personagem,
.detalhamento {
    width: 445px;
    background-color: #ffffff;
    color: #585858;
    border-radius: 0 0 8px 8px;
    box-shadow: 0px 3px 12px #00000010;
    padding: 18px 32px 20px 32px;
    margin-bottom: 10px;
}

.descricao-pessoa {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #666666;
    margin-bottom: 11px;
}

.valor-pessoa {
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.35;
    color: #4f4f4f;
    text-align: left !important;
    font-weight: 400;
}

.valor-pessoa strong {
    font-weight: 800;
}

.btn-leia-mais,
.detalhamento-personagem a.btn-leia-mais {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    text-decoration: none;
    background-color: #D3E3FA;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #2575E8;
    font-weight: 700;
    white-space: nowrap;
}

.btn-leia-mais:hover,
.detalhamento-personagem a.btn-leia-mais:hover {
    background-color: #c8daf4;
    color: #2575E8;
}

.mensagem-carregando,
.mensagem-erro {
    width: 100%;
    text-align: center;
    color: #666666;
    font-size: 14px;
    padding: 25px 0;
}


@media (max-width: 610px) {


    section {
        width: 100%;
        padding: 5px 0px;
    }

    button.btn-ver-mais,
    .btn-ver-mais {
        border: 0;
        flex: 0 0 37px;
        background-color: rgba(255, 255, 255, 0.65);
    }



    h1 {
        font-size: 20px;
        margin-bottom: 25px;
        margin-top: 25px
    }

    .informacoes {
        width: 90%;
        gap: 12px;
        padding: 15px;
    }

    .registros {
        width: 90%;
    }

    .detalhamento {
        /* width: 90%; */
        max-width: 70%;
        width: auto;
    }

    .detalhes .valor {
        flex: 0 0 100px;
        font-size: 14.5px;
    }

    .icone {
        width: 27px;
        height: 27px;
    }

    p.categoria {
        font-size: 14.5px;
    }

    .total-registros {

        font-size: 13px;
    }

    p.percentual {

        font-size: 12px;

    }

    .detalhamento .gasto {
        display: grid;
        grid-template-areas:
            "item valor"
            "item link";
        grid-template-columns: auto 100px;
        column-gap: 18px;
        row-gap: 5px;

    }


    .detalhamento .item {
        flex: 1;
        min-width: 80px;
        font-size: 13.5px;
        grid-area: item;
    }

    .detalhamento .valor {
        flex: 0 0 160px;
        text-align: right;
        margin-right: 12px;
        font-size: 13.5px;
        grid-area: valor;
    }

    .detalhamento a {
        grid-area: link;
        width: 43px;
    }

    .movimentacao {
        width: 100%;
        /* padding: 0 15px; */
    }

    .btn-ver-mais {
        /* padding: 8px; */
        height: 30px;
        width: 30px;
    }

    .material-symbols-outlined {
        font-size: 40px !important;

    }

}

@media (max-width: 500px) {

    .registros {
        width: 100%;
    }

    .detalhamento {
        /* width: 90%; */
        max-width: 70%;
        width: auto;
    }

    .status-cargo {
        font-size: 11.5px !important;

    }

    p.titulo-bloco {

        font-size: 15px;

    }

    .nome-profissional {
        font-size: 14px;
    }

    .imagem-profissional img {
        width: 38px;
    }

    .semiChart-wrap {
        max-width: 320px;
        height: 170px;
    }

    .movimentacao .valor-m {
        font-size: 15.5px;
    }


}

@media (max-width: 380px) {

    .total-registros {
        font-size: 12px;
        line-height: 9px;
    }

    p.categoria {
        font-size: 13px;
        padding-bottom: 3px;
    }

    p.categoria span {
        font-weight: 500;
        opacity: 0.7;
        font-style: italic;
        font-size: 12px;
    }


    .detalhes .valor {
        font-size: 14px;
        padding-bottom: 16px;
    }

    .informacoes {

        padding: 15px 15px;
    }

}


@media (max-width: 610px) {
    .grupo-categoria {
        margin-bottom: 28px;
    }

    .container-personagem .informacoes {
        width: 90%;
        gap: 10px;
        padding: 15px;
    }

    .imagem-pessoa,
    .imagem-profissional {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .detalhes-personagem {
        gap: 8px;
    }

    .valor-resumo-pessoa,
    .detalhes .valor.valor-resumo-pessoa {
        flex: 0 0 82px;
        font-size: 12.5px;
    }

    .nome-profissional,
    p.categoria.nome-profissional {
        font-size: 14.5px;
    }

    .cargo-profissional,
    .total-registros.cargo-profissional {
        font-size: 12.5px;
    }

    .btn-ver-mais {
        height: 37px;
        width: 37px;
        flex-basis: 30px;
        padding: 6px;
    }

    .icon-down {
        font-size: 27px !important;
    }

    .detalhamento-personagem,
    .detalhamento {
        width: auto;
        max-width: 80%;
        padding: 15px;
    }

    .descricao-pessoa,
    .descricao-vaga,
    .valor-pessoa {
        font-size: 14.5px;
    }
}

@media (max-width: 500px) {
    .container-personagem .informacoes {
        width: 90%;
        padding: 14px;
    }

    .imagem-pessoa,
    .imagem-profissional {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .valor-resumo-pessoa,
    .detalhes .valor.valor-resumo-pessoa {
        flex: 0 0 72px;
        font-size: 12.8px;
    }

    .nome-profissional,
    p.categoria.nome-profissional {
        font-size: 12px;
    }

    .cargo-profissional,
    .total-registros.cargo-profissional {
        margin-top: 1px;
    }

    p.titulo-bloco {
        font-size: 15px;
    }
}

@media (max-width: 380px) {
    .container-personagem .informacoes {
        gap: 8px;
        padding: 13px;
    }

    .imagem-pessoa,
    .imagem-profissional {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .valor-resumo-pessoa,
    .detalhes .valor.valor-resumo-pessoa {
        flex: 0 0 76px;
        font-size: 11px;
    }

    .cargo-profissional,
    .total-registros.cargo-profissional {
        font-size: 11.0px;
        line-height: 1.2;
    }
}

.filtro-partido-wrap {
    width: 100%;
    margin: -6px 0 28px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.filtro-partido-wrap label {
    margin-bottom: 7px;
    font-family: "Lato", "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.select-partido {
    position: relative;
    width: 205px;
    height: 45px;
}

.select-partido::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
}

.select-partido select {
    width: 100%;
    height: 100%;
    padding: 0 44px 0 25px;
    border: 0;
    border-radius: 999px;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #6D6D73;
    color: #ffffff;
    font-family: "Lato", "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none;
}

/* .select-partido select:focus {
    box-shadow: 0 0 0 3px rgba(10, 50, 230, 0.18);
} */

.select-partido select option {
    color: #333333;
    background-color: #ffffff;
    text-transform: none;
}


.box-info {
    width: 530px;
    height: 50px;
    background-color: #fefefe;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px dashed #9a9a9a;
    justify-content: center;
    display: none;
    align-items: center;
}

.box-info p {
    text-align: center;
    text-transform: uppercase;
}

.categoria-titulo {
    display: flex;
    justify-content: space-between;


}

.total-registros-categoria {
    text-align: right;
    margin-left: 10px;
    letter-spacing: 0px;
    font-family: "Lato", "Roboto", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14.5px;
    margin-bottom: 12px;
    padding-right: 12px;
}

.valor-e-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


p.valor.valor-pessoa strong {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    color: #7d7d7d;
    font-size: 13.5px;
    font-weight: 500;
}

p.valor.valor-pessoa {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    color: #1E0A27;
    font-weight: 700;
    font-size: 15.5px;
}

@media (max-width: 610px) {
    .filtro-partido-wrap {
        margin: -4px 0 24px 0;
    }

    .select-partido {
        width: 198px;
        height: 45px;
    }

    .select-partido select {
        font-size: 13px;
    }

    .box-info {
        width: 82%;
        height: auto;
    }

    .box-info p {
        font-size: 13px;
    }

    .imagem-pessoa,
    .imagem-profissional {
        border: 1px solid #ffffff;
    }

    .total-registros-categoria {
            font-size: 12.5px;
    }

}