html{
  overflow: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
  margin: 0;
  padding: 20px;
  height: 20vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  max-height: 600px;
  background: white;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0c223c;
}

form.filtros {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  align-items: center;
}

form.filtros label {
  font-weight: bold;
}

form.filtros select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form.filtros button {
  padding: 6px 14px;
  background-color: #0c223c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

form.filtros button:hover {
  background-color: #194169;
}

.mapa-wrapper iframe {
  width: 100% !important;
  height: 500px !important; /* ajuste aqui para diminuir */
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.aviso {
  background-color: #fff3cd;
  padding: 15px;
  border-left: 5px solid #ffc107;
  border-radius: 5px;
  margin-top: 20px;
}
.painel-lateral {
  width: 10px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.logo-amorzito{
    width: 20%;
    min-width: 80px;
    height: auto;
    margin-right: 15px;
    z-index: 1000;
}
.logo-idn {
  width: 150px !important;
  height: auto;
  margin-bottom: 50px;
}
.container-principal {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  padding: 5px;
}
.botao-download {
  display: inline-block;
  background-color: #dfdfdf;
  color: rgb(0, 0, 0);
  padding: 2px 5px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 5px;
}
.botao-download:hover {
  background-color: #b2b2b2;
}

.conteudo-e-info {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.painel-informacoes {
  flex: 1;
  background-color: #f3f3f3;
  padding: 10px;
  border-left: 2px solid #ccc;
  /*height: 100%;*/
  box-shadow: inset 0 0 10px #ddd;
}
.painel-informacoes h3 {
  margin-top: 5px;
}

.painel-informacoes p {
  margin: 8px 0;
  font-size: 14px;
}

.painel-informacoes ul {
  font-size: 14px;
  text-justify: left;
}
/* Wrapper do painel com largura fixa (ajuste aqui se quiser maior) */
.painel-informacoes-wrapper {
  width: 280px;        /* aumente para 420/460 se quiser mais largo */
  justify-self: end;   /* encosta à direita da coluna do painel */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: sticky;
  top: 10px;           /* fica “grudadinho” no topo ao rolar */
}

/* Painel em si, com scroll interno se ultrapassar a altura */
.painel-informacoes {
  width: 100%;
  background-color: #f9f9f9;
  padding: 14px;
  border-left: 2px solid #ccc;
  box-shadow: inset 0 0 10px #ddd;
  max-height: 600px;
  overflow: auto;
}