.flex-container {
	display: flex;
	flex-wrap: wrap;
	margin: 0 45px 45px 0;
}

.qvplaceholder, .qvobject {
	flex: 1 1 auto;
	height: 300px;
	min-width: 400px;
	margin: 45px 0 0 45px;
}

* {
   
    box-sizing: border-box;
    
}

body {

  margin: 0;
  background: linear-gradient(to right, #192844 0%, #192844 65%, #472774 100%);
  width: 95vw;
  height: 88vh;
  box-sizing: border-box; /* Inclui bordas dentro do tamanho total do elemento */


}

.objetivo-porcentagem {
    display: inline-block;
    background-color: rgba(29, 221, 199, 0.15);
    color: #1dddc7;
    padding: 6px 9px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(29, 221, 199, 0.3);
	position:absolute;
	top:11vh;
	left: 2vw;
}

.qvplaceholder, .qvobject {
	flex: 1 1 auto;
	height: 300px;
	min-width: 400px;
	margin: 45px 0 0 45px;
}


h1, h3{
position:absolute;
left:2vw;
color:#ccc;
}

h3{
top:5vh;
}
.flex-container-horizontal {
    display: flex;
    flex-direction: row;
    margin: 10%;
}

.progress-circle-container {
    position: relative;
    width: 60px;
    height: 60px;
	margin: 20px auto;
	padding-bottom:20px;
}

.container-dashboard {
  
font-family: 'Poppins', sans-serif;
color: #fff;
background-color: #190028;
padding: 2%;
border-radius: 3%;
margin: 3% auto; /* PENSAR NUMA SOLUÇÃO MELHOR */
height: 450px;
width: 250px;
text-align: center;

}

.tabela_projetos{
width: 60%;
margin: 6.5% auto;
height: 80%;

}


.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
	margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#0D9EF1 75%, transparent 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ccc; 
}


.progress-circle:before {
    content: '';
    position: absolute;
    background-color: #190028; /* Cor do meio vazado */
    width: 80%; /* Tamanho do círculo interno */
    height: 80%; /* Tamanho do círculo interno */
    border-radius: 50%;
    top: 10%; /* Ajuste de posição do círculo interno */
    left: 10%; /* Ajuste de posição do círculo interno */
}

.progress-circle span {
    position: relative;
    z-index: 1;
    font-size: 20px;
    color: white; /* Cor do texto */
}

.progress_bar_evolucao {
  background-color: #ccc;
  border-radius: calc(0.1vw + 0.1vh);
  overflow: hidden;
  margin-top: 10px;
  height:calc(0.4vw + 0.4vh);
}

.progress {
  height: calc(0.4vw + 0.4vh);
  background-color: #0D9EF1;
  
}

h4 {
width: 50%;
font-size: calc(0.4vw + 0.4vh);

}

.title_objetivo_estrategico{
 margin: 0;
 color:white;
 font-size: calc(0.4vw + 0.4vh);
 letter-spacing: 1px;

}

.title_objetivos{
 margin: 0;
 color:#00FFFF;
 font-size: 7.5px;
 margin-top: 10px;
 
 background-color:transparent;
 border:none;
 letter-spacing: 1px;
 transition: all 0.5s;
 transition-duration: 0.4s;
 
 
}

.title_ano{
 margin: 0;
 color:#FFFFFF;
 font-size:calc(0.35vw + 0.35vh);
 letter-spacing: 2px;

}

.title_evolucao{
 padding-top: 10px;
 color:#FFFFFF;
 font-size:calc(0.45vw + 0.45vh);
 letter-spacing: 1px;
 margin: 0 auto;


}



#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 50px;
  
  z-index: 2;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: white;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #00FFFF;
  
}


#menuToggle input
{
  display: block;
  width: 55px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -11px; 

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 10;/* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: white;
  border-radius: 3px;
  
  z-index: 3;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 20%;
  height: 83vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
   font-family: 'Poppins', sans-serif;
  
  background: #062650;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
 
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  
  opacity: 0.95;
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}



/* Quando expandable tem a classe expanded */
.expandable.expanded > a:after {
  content: '▲';
  color: #00FFFF;
  
}


.expandable a {
  
  display: block;
  cursor:pointer;
 
}

.submenu {
  display: none;
  list-style: none; /* Remove a bolinha */
  padding-left: 0; /* Remove o padding padrão */
}

.submenu li {
  padding-left: 10px; /* Adicione padding se necessário */
}



/* Estilização do ícone de busca */

img{
width: 20px;
height: 20px;
margin-right: 15px;

}

.text-painel{
color: white;
font-size: 25px;
font-family: 'Poppins', sans-serif;
top: 43px;
left: 95px;
position: absolute;
z-index: 999;
}


#colunaProjetos{
    width: 300px; /* Largura para as duas primeiras colunas */
    flex: none; /* Isso impede que estas colunas cresçam com o flex */
}

#colunaDescricao {
    width: 680px; /* Largura para as duas primeiras colunas */
    flex: none; /* Isso impede que estas colunas cresçam com o flex */
}


.texto-destacado {
    color: #00FFFF; 
}



.text_total_projetos{
 font-family: 'Poppins', sans-serif;
position: fixed;
font-size: 20px;
color: white;
top: 11.5%;
right: 9%;


}


.circle {
    width: 120px;
    height: 120px;
    /* Espessura e cor da borda do círculo */
    border-radius: 50%;
    background-color: transparent; /* Fundo transparente */

    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}



.circle_concluido{


 border: 15px double #0D9EF1;
}

.circle_noPrazo{
 border: 15px double #6949F4;

}

.circle_atrasado{
 border: 15px double #190028;

}

.kpi_circle_projetos h2 {


    font-size: 30px;
    margin-bottom:10px;
	color: white;

}

.kpi_circle_projetos {
position: fixed;
right: 5%;


}

.kpi_concluido{
top: 23%;

}
.kpi_noPrazo{
top: 43%;
}
.kpi_atrasado{
top: 63%;
}



#noPrazo_projetos, #atrasado_projetos{
height: 70px;
position: fixed;

clip-path: polygon(40% 8%, 60% 8%, 60% 92%, 40% 92%);
}

#concluido_projetos{
height: 70px;
position: fixed;
 top: 25.4vh;
 right: -1.6vw;
clip-path: polygon(40% 8%, 60% 8%, 60% 92%, 40% 92%);
}

 #total_projetos{
 height:90px;
 position:fixed;
 top: 5.5%;
 right: -4%;
 }
 

 
  #noPrazo_projetos{
 top: 45.5vh;
  right: -2%;
 }
 
  #atrasado_projetos{
 top: 65.3vh;
  right: -1.9%;
 }




#botao_limpar_filtro {

 position: absolute;
	top: 90px;
	left: 110px;
 width: 40px;
 height: 40px;
  cursor: pointer;
}





 #containerFiltro {
    position: absolute;
	top: 90px;
	left: 50px;
	
	
}
 #containerFiltro img{
 width: 40px;
 height: 40px;
 cursor: pointer;
 }

.filtro {
    display: none;
    position: absolute;
    background-color: transparent;
    box-shadow: transparent;
    padding: 0px;
    z-index: 1;
    flex-direction: column;
}

.opcaoFiltro {
    display: block;
    margin-bottom: 5px;
	cursor: default;
	color: white;
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
}

.detalhesFiltro {
    display: none;
    position: absolute;
    left: 100%; /* Ajuste para alinhar à direita do botão */
    top: -5%;
    background-color: transparent;
    box-shadow: transparent;
    padding: 10px;
    z-index: 2;
	cursor: pointer;
	font-size: 16.5px;
	color: white;
	width: 120px;
	
}



.opcaoFiltro:hover + .detalhesFiltro {
    display: block;
	
}

.opcaoFiltro:hover {
color: #00FFFF;

}

.detalhesFiltro div {
    display: block;
    margin-top: 5px; /* Espaçamento entre os botões de detalhes */
}

.detalhesFiltro div:hover {
    color: #00FFFF;
	 text-decoration: underline;
}


.iframe-container {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 60%; /* Proporção 16:9 */
      overflow: hidden;
      
    }
    /* Estilos para o iframe para que ele ocupe todo o container */
    .iframe-container iframe {
      position: absolute;
      top: -50px;
	  
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; /* Remove a borda padrão do iframe */
    }



/* PARTE DOS OBJETIVOS E INDICADORES DA EEGD*/



.container-pai{

 padding: 5px;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
	z-index:20;
}


.container {

 max-width: 1100px;
    width: 100%;
    margin: 10px auto;
	
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    align-items: center;
    padding: 20px;
	 box-sizing: border-box;
    font-family: Arial, sans-serif;
	 min-height: 80vh;
    }



.container > * {
    transition: all 0.4s ease;
	
}

.container.layout-refresh {
    display: flex;
}

.indicador-wrapper {
    position: relative;
    margin-bottom: 5px;
    width: calc(25% - 15px);
    min-width: 250px;
    transition: all 0.5s ease-in-out, margin-bottom 0.3s ease;
    flex-grow: 0;
    flex-shrink: 0;
	
}

.acesso-dados-wrapper {
    position: relative;
    margin-bottom: 5px;
    width: calc(25% - 15px);
    min-width: 250px;
    transition: all 0.3s ease;
    flex-grow: 0;
    flex-shrink: 0;
    display: none;
    align-items: center;
    height: 180px;
}

.indicador {
    background-color: #190028;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 25px 25px 25px;
    margin-bottom: 0;
	
    position: relative;
    width: 100%;
    height: 190px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
	
}

.acesso-dados {
    background-color: rgba(30, 12, 48, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    height: 100px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: visible;
    border: 1px solid rgba(29, 221, 199, 0.15);
}

.acesso-dados:hover {
    background-color: rgba(38, 17, 56, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(29, 221, 199, 0.3);
}

.acesso-dados-texto {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3;
    width: 100%;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.acesso-dados-seta {
    color: #1dddc7;
    font-size: 20px;
    margin-top: 2px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.acesso-dados:hover .acesso-dados-seta {
    transform: translateX(8px);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.titulo {
    flex: 1;
    font-size: 15.5px;
    color: #ccc;
    margin-right: 15px;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.titulo:hover {
    color: #1dddc7;
}

.titulo-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
    width: 280px;
    z-index: 10;
    text-align: left;
    line-height: 1.4;
}

.titulo-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;

}

.titulo:hover .titulo-tooltip {
    display: block;

}

.contador {
    flex-shrink: 0;
    margin-left: 10px;
    position: relative;
}

.circulo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: help;
}

.porcentagem {
    color: #ccc;
    font-weight: bold;
    font-size: 15px;
}

/* Tooltip */
.tooltip {
    visibility: hidden;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
    width: 280px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: left;
    line-height: 1.4;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
}

.contador:hover .tooltip {
    visibility: visible;
    opacity: 1;

}

.tooltip-header {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 8px;
    color: #1dddc7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
	
}

.tooltip-list {
    list-style-position: inside;
    padding-left: 0;
	
}

.tooltip-list li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 5px;
	
}

.tooltip-list li:last-child {
    margin-bottom: 0;
}

.imagem {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: relative;
    margin-top: -10px;
}

.imagem svg {
    width: 80px;
    height: 80px;
    position: absolute;
    filter: drop-shadow(0 0 8px rgba(29, 221, 199, 0.2));
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.imagem svg:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 0 12px rgba(29, 221, 199, 0.4));
}

.imagem svg path,
.imagem svg line,
.imagem svg rect,
.imagem svg circle,
.imagem svg polyline {
    transition: all 0.3s ease;
}

.imagem svg:hover path,
.imagem svg:hover line,
.imagem svg:hover rect,
.imagem svg:hover circle,
.imagem svg:hover polyline {
    stroke: #1dddc7;
    stroke-width: 1.5;
}

.expandir {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.botao-expandir {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-size: 18px;
    padding: 1px;
    transition: all 0.3s ease;
    
}

.botao-expandir:hover {
    color: #ccc;
}

.seta {
    display: inline-block;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.botao-expandir.ativo .seta {
    transform: rotate(0deg);
}

.complemento {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: rgba(30, 12, 48, 0.85);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    z-index: 5;
    margin-top: -5px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: none;
}

.complemento.ativo {
    max-height: 250px;
    width: 100%;
    padding: 25px;
    opacity: 1;
    margin-bottom: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(29, 221, 199, 0.2) rgba(30, 12, 48, 0.1);
}

.complemento.ativo::-webkit-scrollbar {
    width: 4px;
}

.complemento.ativo::-webkit-scrollbar-track {
    background: rgba(30, 12, 48, 0.1);
    border-radius: 2px;
}

.complemento.ativo::-webkit-scrollbar-thumb {
    background: rgba(29, 221, 199, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.complemento.ativo::-webkit-scrollbar-thumb:hover {
    background: rgba(29, 221, 199, 0.3);
}

.complemento h3 {
    margin-bottom: 18px;
    color: #1dddc7;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    position: relative;
    display: inline-block;
}

.complemento h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1dddc7, rgba(150, 120, 180, 0.3));
    border-radius: 1px;
}

.complemento p {
    margin-bottom: 18px;
    flex: 1;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.btn-info-completas {
    background: linear-gradient(135deg, #1dddc7 0%, #12a595 100%);
    border: none;
    color: #190028;
    padding: 6px 9px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin-top: 12px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(29, 221, 199, 0.15);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-info-completas::after {
    content: '→';
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-info-completas:hover {
    background: linear-gradient(135deg, #1dddc7 0%, #0f8c7e 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(29, 221, 199, 0.2);
}

.btn-info-completas:hover::after {
    transform: translateX(3px);
}

.indicador.expandido {
    margin-right: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.indicador-wrapper.expandido {
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    .indicador-wrapper {
        width: calc(33.33% - 14px);
    }
    
    .acesso-dados-wrapper {
        width: calc(33.33% - 14px);
    }
}

@media (max-width: 900px) {
    .indicador-wrapper {
        width: calc(50% - 10px);
    }
    
    .acesso-dados-wrapper {
        width: calc(50% - 10px);
    }
    
    .indicador-wrapper.expandido {
        margin-bottom: 200px;
    }
    
    .indicador.expandido {
        margin-right: 0;
    }
    
    .complemento.ativo {
        max-height: 230px;
    }
    
    .titulo-tooltip {
        width: 220px;
        left: 0;
        right: auto;
    }
}

@media (max-width: 600px) {
    .indicador-wrapper, .acesso-dados-wrapper {
        width: 100%;
    }
    
    .indicador-wrapper.expandido {
        margin-bottom: 180px;
    }
    
    .complemento.ativo {
        max-height: 210px;
    }
}

@media (max-width: 768px) {
    .indicador {
        width: 100%;
        height: auto;
        min-height: 200px;
        margin-right: 0 !important;
    }
    
    .indicador.expandido {
        margin-right: 0;
    }
    
    .header {
        flex-direction: column;
    }
    
    .contador {
        margin-top: 15px;
        align-self: flex-end;
    }
    
    .tooltip {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .tooltip::before {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .titulo-tooltip {
        width: 100%;
        left: 0;
        right: 0;
        top: calc(100% + 5px);
    }
    
    .titulo-tooltip::before {
        left: 15px;
    }
    
    .indicador-wrapper.expandido {
        margin-bottom: 280px;
    }
}

/* Garantir que tenhamos quebras de linha adequadas */
.container::after {
    content: "";
    flex: auto;
    width: 0;
    height: 0;
    min-width: calc(25% - 15px);
    visibility: hidden;
}

.indicadores-lista {
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow-y: visible;
    max-height: none;
}

.indicadores-lista li {
    margin-bottom: 12px;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
    position: relative;
    padding-left: 16px;
}

.indicadores-lista li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: rgba(29, 221, 199, 0.7);
    border-radius: 50%;
}

.indicadores-lista li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.titulo-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.85) transparent;
	
}

.espaco-vazio {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    pointer-events: none;
    width: calc(25% - 15px) !important;
    min-width: 250px !important;
    visibility: hidden !important;
}

/* Estilos para as metas e barras de progresso */
.metas-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.meta-item {
    width: 100%;
}

.meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.meta-titulo {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.meta-valor {
    color: #1dddc7;
    font-size: 14px;
    font-weight: 500;
}

.meta-barra-container {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.meta-barra {
    height: 100%;
    background-color: #1dddc7;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    animation: meta-animacao 2s linear infinite;
    min-width: 0.5%;
}

.meta-barra[style="width: 0%"] {
    opacity: 0.3;
    min-width: 0.5%;
}

@keyframes meta-animacao {
    from { background-position: 0 0; }
    to { background-position: 1rem 0; }
}

/* Tag do ano */
.tag-ano {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: rgba(29, 221, 199, 0.12);
    color: rgba(29, 221, 199, 0.9);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    opacity: 0.8;
    z-index: 2;
    letter-spacing: 0.5px;
    border: 1px solid rgba(29, 221, 199, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
} 

#logo_setd {
    position: fixed;
    bottom:30px;
    left: 42vw;
    height: 50px;
    width: 220px;
	z-index:1;
	
	
}

.indicador-inferior{
position:absolute;
top:50vh;
margin: 0px 10px;

}