.cabecalho-guarulhos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-bottom: 10px;
}

.logo-guarulhos img {
  max-height: 70px;
  width: auto;
}

.cabecalho-direita {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Redes sociais + acessibilidade */
.redes-sociais {
  display: flex;
  align-items: center;
  gap: 10px;
}

.redes-sociais a,
.acessibilidade-simples button {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 50% !important;
  background: #137eb8 !important;
  color: #fff !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: .2s !important;
}

.redes-sociais a:hover,
.acessibilidade-simples button:hover {
  background: #0f6797 !important;
}

.acessibilidade-simples {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 4px;
}

.acessibilidade-simples button {
  font-size: 13px !important;
  font-weight: 800 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

/* Busca */
.busca-topo {
  display: flex;
  width: 320px;
}

.busca-topo input {
  flex: 1;
  height: 40px;
  border: 1px solid #d1d5db;
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 0 12px;
}

.busca-topo button {
  width: 50px;
  border: none;
  background: #137eb8;
  color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

/* Alto contraste */
body.modo-contraste {
  background: #000 !important;
  color: #fff !important;
}

body.modo-contraste * {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
}

body.modo-contraste a {
  color: #ffff00 !important;
}

body.modo-contraste img {
  filter: grayscale(1) contrast(1.2);
}

/* Mobile */
@media (max-width: 768px) {
  .cabecalho-guarulhos {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 16px 18px !important;
  }

  .logo-guarulhos {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
  }

  .logo-guarulhos img {
    display: block !important;
    max-width: 300px !important;
    width: 85% !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .cabecalho-direita {
    width: 100% !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .redes-sociais {
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .redes-sociais a,
  .acessibilidade-simples button {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  .busca-topo {
    width: 100% !important;
    max-width: 620px !important;
    display: flex !important;
    margin: 0 auto !important;
  }

  .busca-topo input {
    width: 100% !important;
    height: 52px !important;
    font-size: 16px !important;
    border-radius: 10px 0 0 10px !important;
  }

  .busca-topo button {
    width: 64px !important;
    height: 52px !important;
    border-radius: 0 10px 10px 0 !important;
  }
}