
body{
  /* background-image: url('../img/background.png'); */
  background-color: white;

}

#comparat{
  width: 100%;
  /* height: 50px; */
  border: solid;
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* inicio codigo do header */

.header {
  background: linear-gradient(90deg, #192844 67.81%, #472774 100%);
    box-shadow: 2px 2px 5px #000000a6;
    width: 100%;
    border-radius: 0 0 35px 35px;
    display: grid;
    /* grid-template-columns: auto auto auto; */
    transition: margin-left 0.5s, width 0.5s, border-radius 0.5s;
    align-items: center;
    /* justify-content: space-between; */
    padding: 8px 0px;
    /* justify-content: space-around; */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

}

.iHeader-reduced {
  width: calc(100% - 195px);
  margin-left: 190px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.container-legendasHeader {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
}

.legend-sedeeics {
  color: rgb(255, 255, 255);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 27px;
}

.legend-secretaria {
  color: rgb(255, 255, 255);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 15px;
}

.logoGov {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#logoRj {
  height: 56px;
  width: 180px;
}

.logoProderj {
  display: flex;
  margin: 0 auto;
  width: 100%;
  justify-content: center;

}

#logoMProderj {
  height: 48px;
  width: 127px;
}



@media (max-width: 800px) {
  header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  #logoRj {
    width: 121px;
    height: 44px;
  }

  .logoGov {
    width: 121px;
    height: 44px;
  }

  #logoMProderj {
    width: 121px;
    height: 44px;
  }

  .legend-sedeeics {
    width: 121px;
  }

  .container-legendasHeader {
    order: 3;
    grid-column: 1 / span 2;
    gap: 7px;
  }


 
}


