@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

h2 {
  font-size: 46px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 32px;
    text-align: center;
    width: 100%;
  }
}

.pContainer {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .pContainer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-brand img {
  max-width: 50dvw;
}

.navbar-dark {
  background: #153131 !important;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .navbar-dark {
    height: auto;
  }
}

.navbar-expand-md .navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 700;
  padding: 10px 30px;
  color: #fff;
}
.navbar-expand-md .navbar-nav .nav-link:hover {
  color: #c4e5e5;
}

.navbar-nav .dropdown-menu {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}
.navbar-nav .dropdown-menu .dropdown-item {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .navbar-nav .dropdown-menu .dropdown-item:focus {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .navbar-nav .dropdown-menu {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
  }
  .navbar-nav .dropdown-menu .dropdown-item {
    background: transparent !important;
    color: #fff;
  }
  .navbar-nav .dropdown-menu .dropdown-item:focus {
    background: transparent !important;
  }
}

/* Estilo para abrir o dropdown no hover */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* Remove o deslocamento padrão */
}

/* Ajuste para garantir que o dropdown feche corretamente */
.navbar-nav .dropdown-menu {
  display: none; /* Garante que o dropdown esteja fechado por padrão */
}

.primary-color {
  color: #153131;
}

.navbar-expand-md .navbar-nav .active {
  color: #c4e5e5;
}

#rodape {
  background: #153131;
  color: #fff;
  position: relative;
}
#rodape .overlay {
  background: url("../img/rodape.png") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
  mix-blend-mode: multiply;
}
#rodape .row {
  position: relative;
  z-index: 10;
}
#rodape .linha1 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
#rodape .linha1 .menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#rodape .linha1 .menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.5s ease-in-out;
}
#rodape .linha1 .menu a:hover {
  text-decoration: underline;
}
#rodape .linha1 .redesSociais p {
  font-size: 18px;
  font-weight: 700;
}
#rodape .linha1 .redesSociais img {
  max-width: 40px;
}
#rodape .linha1 .contato {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#rodape .linha1 .contato p {
  margin: 0;
}
#rodape .linha1 .contato a {
  color: #c4e5e5;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.5s ease-in-out;
}
#rodape .linha1 .contato a:hover {
  text-decoration: underline;
}
#rodape .linha1 .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
#rodape .linha1 .grid img {
  max-width: 120px;
}
@media screen and (max-width: 768px) {
  #rodape .linha1 {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  #rodape .linha1 .menu {
    flex-direction: row;
    gap: 15px;
  }
  #rodape .linha1 .redesSociais .links {
    text-align: center;
  }
  #rodape .linha1 .contato {
    text-align: center;
  }
}
#rodape .linha2 {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #rodape .linha2 {
    text-align: center;
  }
}

.hero {
  background: #153131;
}
.hero .container {
  max-width: 1320px;
  width: 100%;
  padding: 0;
}
.hero .container img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .hero .container {
    padding: 0;
  }
  .hero .container img {
    height: 250px;
  }
}

#home #sobre p {
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #home #sobre p {
    text-align: left;
  }
}
#home #sobre a {
  font-size: 18px;
  background: #153131;
  color: #fff;
  padding: 10px 50px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.5s ease-in-out;
}
#home #sobre a:hover {
  background: black;
}
@media screen and (max-width: 768px) {
  #home #sobre a {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 30px;
  }
}
#home #metodologia {
  background: #153131;
  color: #fff;
}
#home #metodologia .itens h3 {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}
#home #metodologia .itens img {
  height: 70px;
  width: auto;
}
#home #metodologia .itens p {
  font-size: 14px;
}
#home #internacionais h3 {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #home #internacionais h3 {
    font-size: 28px;
    text-align: center;
  }
}
#home #internacionais .locais {
  column-count: 2; /* Divide a lista em duas colunas */
  column-gap: 50px; /* Espaçamento entre as colunas */
  list-style-position: inside; /* Garante que os números fiquem dentro das colunas */
  margin: 0;
  padding-left: 5px;
}
#home #internacionais .locais li {
  font-size: 12px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #home #internacionais .locais {
    column-count: 1;
  }
  #home #internacionais .locais li {
    font-size: 14px;
  }
}
#home #nacionais {
  background: #153131;
  color: #fff;
}
#home #nacionais h3 {
  font-size: 36px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #home #nacionais h3 {
    font-size: 28px;
    text-align: center;
  }
}
#home #nacionais h4 {
  font-size: 16px;
  font-weight: 700;
}
#home #nacionais .locais {
  list-style-position: inside; /* Garante que os números fiquem dentro das colunas */
  margin: 0;
  padding-left: 5px;
}
#home #nacionais .locais li {
  font-size: 12px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #home #nacionais .locais {
    column-count: 1;
  }
  #home #nacionais .locais li {
    font-size: 14px;
  }
}

#laccops #sobre {
  background: #153131;
  color: #fff;
}
#laccops #historia p {
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #laccops #historia p {
    text-align: left;
  }
}
#laccops #metodologia {
  background: #153131;
  color: #fff;
}
#laccops #missao .itens {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#laccops #missao .itens .item {
  background: #153131;
  color: #fff;
  padding: 20px 30px;
  border-radius: 20px;
}
#laccops #missao .itens .item h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 5px;
  color: #c4e5e5;
}
#laccops #missao .itens .item p {
  font-size: 15px;
  margin: 0;
}
#laccops #organograma {
  padding-bottom: 60px;
}

#equipe {
  position: relative;
}
#equipe .texto {
  column-count: 2;
  column-gap: 50px;
}
@media screen and (max-width: 768px) {
  #equipe .texto {
    column-count: 1;
  }
}
#equipe #docentes {
  background: #153131;
  color: #fff;
  position: relative;
}
#equipe #docentes .overlay {
  background: url("../img/rodape.png") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
#equipe #docentes h2 {
  position: relative;
  z-index: 1;
}
#equipe #docentes .docentes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #equipe #docentes .docentes {
    grid-template-columns: 1fr;
  }
}
#equipe #docentes .docente {
  display: flex;
  align-items: center;
  gap: 20px;
}
#equipe #docentes .docente .foto {
  max-height: 150px;
  width: auto;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #equipe #docentes .docente .foto {
    max-height: 80px;
  }
}
#equipe #docentes .docente .descricao {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #equipe #docentes .docente .descricao {
    gap: 3px;
  }
}
#equipe #docentes .docente .descricao h5 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #equipe #docentes .docente .descricao h5 {
    font-size: 20px;
  }
}
#equipe #docentes .docente .descricao p {
  font-size: 16px;
  font-style: italic;
  margin: 0;
}
#equipe #video {
  margin-bottom: 60px;
}
#equipe #video .youtube {
  background: #d9d9d9;
  border-radius: 40px;
  height: 460px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#equipe #video .youtube img {
  max-width: 50%;
}
#equipe #links {
  padding-bottom: 60px;
}
#equipe #links h4 {
  color: #153131;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #equipe #links h4 {
    font-size: 26px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #equipe #links:last-child h4 {
    margin-top: 30px;
  }
}
#equipe #links a {
  font-size: 26px;
  font-weight: 700;
  background: #153131;
  color: #fff;
  padding: 10px 50px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.5s ease-in-out;
}
#equipe #links a:hover {
  background: black;
}
#equipe #links a.disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
}

#parceiros #movimentos .itens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #parceiros #movimentos .itens {
    grid-template-columns: 1fr;
  }
}
#parceiros #movimentos .itens .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#parceiros #movimentos .itens .item img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
#parceiros #movimentos .itens .item p {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
#parceiros #parceirosSection {
  padding-bottom: 60px;
}
#parceiros #parceirosSection .itens {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #parceiros #parceirosSection .itens {
    grid-template-columns: 1fr;
  }
}
#parceiros #parceirosSection .itens .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#parceiros #parceirosSection .itens .item .imagem {
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #153131;
  border-radius: 20px;
}
#parceiros #parceirosSection .itens .item .imagem img {
  max-height: 100%;
  max-height: 100%;
  object-fit: cover;
}
#parceiros #parceirosSection .itens .item p {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
#parceiros #links {
  padding-bottom: 60px;
}
#parceiros #links h4 {
  color: #153131;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #parceiros #links h4 {
    font-size: 26px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #parceiros #links:last-child h4 {
    margin-top: 30px;
  }
}
#parceiros #links a {
  font-size: 26px;
  font-weight: 700;
  background: #153131;
  color: #fff;
  padding: 10px 50px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.5s ease-in-out;
}
#parceiros #links a:hover {
  background: black;
}
#parceiros #links a.disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
}

/*# sourceMappingURL=style.css.map */
