/**{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --bg-azul-escuro: #053d8e;
    --azul-mais-escuro:#053c8c;
    --bg-azul-claro: #154Dc9;
    --bg-cinza:#f1f1f1;
    --bg-branco:#ffffff;
    --bg-amarelo:#f8d616;
    --bg-verde:#54af32;
    --bg-vermelho:#db0622;
    --bg-paginas:#fcfcff;
    --cor-cinza:#727272;
    --text-azul-escuro:#053d8e;
    --text-azul-claro: #154Dc9;
    --text-branco:#ffffff;
    --text-amarelo:#f8d616;
    --text-preto:#000000;
    --text-verde:#54af32;
    --text-vermelho:#db0622;
}
/*
html {
    box-sizing: border-box;
}*/
*, 
*:before, 
*:after {
    box-sizing: inherit;
}
html, body{
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;  
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 30px;
    background-color: var(--bg-paginas);
    color: var(--cor-cinza);

}
h1{
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-preto);
    font-family: math;
}
h2{
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-preto);
    font-family: math;
}
h3{
    font-size: 1.2rem;
    font-weight: 500;
    color:var(--text-preto)
}
ul li{
    list-style-type: none;
}
a{
    text-decoration: none;
}
.transparencia{
    width: 80%;
    height: 420px;
    margin-top: 30px;
}
.opcao_transparencia{
    display: flex;
    flex-direction: row;
    justify-items: center;
    justify-content: center;
    gap: 60px;
}
.titulo{
    text-align: center;
    margin:50px 0 30px 0;
}
.opcao{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 2px solid #006988; 
    padding: 10px;            
    border-radius: 20px;        
    width: 200px;
    transition: all 0.3s ease; /* suaviza a animação */      
}
.opcao:hover {
  border-color: #D1D9E2;     /* muda a cor da borda */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* adiciona sombra */
  transform: scale(1.03);    /* dá uma leve aumentada */
}
.opcao p{
    font-size: 1em;
    color: #000000;
    text-align: center;
}
.opcao img{
    width: 50px;
}
.dashboard iframe{
    display: flex;
    align-items: center;
    width: 1200px;
    height: 800px;
}
@media (max-width:480px){
    .transparencia{
        display: flex;
        flex-direction: column;
        align-items: center;
         width: 100%;
    }
    .opcao_transparencia{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
        gap: 30px;
    }
    .opcao{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 200px;
        cursor: pointer;
        transition: all 0.3s ease; /* suaviza a animação */  
    }
    .opcao:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* adiciona sombra */
        transform: scale(1.03);    /* dá uma leve aumentada */
    }
    .dashboardMaior{
       display: none;
    }
   .dashboardMenor{
        width:800px;
        height:804px;
    }
}
@media (min-width: 481px) and (max-width: 550px){ 
    .transparencia{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    .dashboardMaior{
       display: none;
    }
   .dashboardMenor{
        width:800px;
        height:804px;
    }
}
@media (min-width: 551px) and (max-width: 768px){ 
    .transparencia{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        width: 95%;
    }
     .dashboardMaior{
       display: none;
    }
   .dashboardMenor{
        width:800px;
        height:804px;
    }
}