@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.12.1/font/bootstrap-icons.min.css");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("footer.css");

:root {
  --font-principal: "Montserrat", sans-serif;
  --font-secundaria: "Roboto", sans-serif;
  --cor-fundo: #ff5c00;
  --cor-fundo-claro: #f5f5f5;
  --cor-texto-claro: #ffff;
  --cor-texto-escuro: #100f0f;
  --cor-menu: #006633;
  --cor-menu-2: #ff5c00;
  --cor-btn-tema-pdf: #ff5c00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--cor-fundo-claro);
  font-family: var(--font-principal);
  color: var(--cor-texto-escuro);
}

main {
  flex: 1;
}

.nav-link.dropdown-toggle.show {
  color: white;
}

.dropdown-menu-end {
  background-color: #ff5c00;
  border-radius: 30px;
  color: white;
  width: 250px;
  height: 120px;
}

.dropdown-item {
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  background-color: #ff5c00;
  color: white;
  width: 200px;
  height: 30px;
  margin-top: 13px;
  margin-bottom: 2px;
  padding: 8px 15px;
}

.dropdown-item:hover {
  background-color: #ff701d;
  color: white;
}

.topo-pesquisa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pesquisa-area {
  max-width: 300px;
  width: 95%;
  height: auto;
  margin: 50px auto;
  position: relative;
  flex: 1;
}

#campoPesquisa {
  width: 500px;
  height: 45px;
  padding: 0 15px;
  border-radius: 25px;
  border: 1px solid #ffffff;
  background-color: #ff5c00;
  color: white;
  font-size: 16px;
}

#campoPesquisa:focus:not(:placeholder-shown) {
  border-radius: 25px 25px 0px 0px;
}
#campoPesquisa::placeholder {
  color: white;
  opacity: 1;
}

.resultado-pesquisa {
  width: 500px;
  position: absolute;
  left: 0;
  background: #ff5c00;
  top: 42px;
  border-radius: 0 0 25px 25px;
  border: 2px solid #000000;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 999;
}

.resultado-pesquisa div {
  padding: 12px;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.resultado-pesquisa div:hover {
  background: #ff7a2f;
}

.selecao-area {
  width: 100%;
  height: auto;
  margin: 20px auto;
  position: relative;
  flex: 1;
}
.campo-selecao {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border-radius: 25px;
  border: 1px solid #ffffff;
  background-color: #ff5c00;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.campo-selecao::placeholder {
  color: white;
  opacity: 1;
}

.campo-selecao:focus {
  outline: none;
}

.campo-selecao.aberto {
  border-radius: 25px 25px 0 0;
  border: 2px solid #000000;
}

.resultado-selecao {
  width: 100%;
  position: absolute;
  left: 0;
  background: #ff5c00;
  top: 42px;
  border-radius: 0 0 25px 25px;
  border: 2px solid #000000;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 999;
}

.resultado-selecao div {
  padding: 12px;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.resultado-selecao div:hover {
  background: #ff7a2f;
}

.navbar-nav {
  background-color: #006633;
}
.lenguaDecolonialofcimg {
  text-align: center;
  border-radius: 25px;
  width: 1000px;
  height: auto;
}

.logodecolonial {
  border: 1px solid black;
  border-radius: 100%;
  box-sizing: border-box;
  width: 90px;
  height: 90px;
}

.sticky-top1 {
  background-color: #006633;
  height: 100px;
}

.sair-menu {
  min-width: auto;
  padding: 5px 0;
  
}
.sair-menu2 {
  min-width: auto;
  padding: 5px 0;
  height: 150px;
}

.sair-item:hover {
  background-color: #ff701d;
  color: white;
}

@media screen and (max-width: 1600px) {
  .lenguaDecolonialofcimg {
    width: 800px;
  }
  .nav-link {
    font-size: 20px;
  }
  .dropdown-menu {
    width: 250px;
  }
  .dropdown-item {
    width: 200px;
  }
}

@media screen and (max-width: 1400px) {
  .nav-link {
    font-size: 15px;
  }

  .dropdown-menu {
    width: 220px;
  }
  .dropdown-item {
    width: 180px;
  }
}

@media screen and (max-width: 1250px) {
  .lenguaDecolonialofcimg {
    width: 600px;
  }

  .logodecolonial {
    width: 80px;
    height: 80px;
  }

  .sticky-top1 {
    height: 100px;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media screen and (max-width: 1150px) {
  .lenguaDecolonialofcimg {
    width: 500px;
  }
}

@media screen and (max-width: 991px) {
  .lenguaDecolonialofcimg {
    width: 400px;
  }

  .item {
    min-width: 200px;
  }

  .logodecolonial {
    width: 60px;
    height: 60px;
  }

  .sticky-top1 {
    height: 80px;
  }

  .navbar-nav {
    background-color: #006633;
    border-radius: 0 0 30px 30px;
    margin-top: 10px;
    border-bottom: 10px solid #005028;
    border-right: 10px solid #005028;
    border-left: 10px solid #005028;
  }
}

@media screen and (max-width: 600px) {
  .lenguaDecolonialofcimg {
    width: 300px;
  }

  .pesquisa {
    max-width: 400px;
    font-size: 9px;
  }

  .acessoRestrito {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 12px;
  }

  .logodecolonial {
    width: 50px;
    height: 50px;
  }

  .sticky-top1 {
    height: 70px;
  }
  
}

@media screen and (max-width: 500px) {
  .lenguaDecolonialofcimg {
    width: 250px;
  }

  .pesquisa {
    max-width: 350px;
    font-size: 8px;
  }

  .acessoRestrito {
    font-size: 7px;
  }

  .logodecolonial {
    width: 40px;
    height: 40px;
  }

  .sticky-top1 {
    height: 60px;
  }
}

@media screen and (max-width: 400px) {
  #campoPesquisa,
  .resultado-pesquisa {
    width: 240px;
  }
}
