*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI";
}

html,
body {
  min-height: 100vh;
  background: #0b0b0b url("imagens/fundoescuro.webp") no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background-color: #000000;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0px;
  display: flex;
  align-items: center;
  text-align: center;
  align-content: center;
}

header nav ul li {
  position: relative;
}

header nav ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  padding: 0 15px;
}

.hamburguer-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburguer-menu span {
  height: 4px;
  width: 25px;
  background: #0f0;
  margin: 4px;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  color: #0f0;
  margin-bottom: 20px;
  text-align: center;
  transition: text-shadow 0.2s ease-in-out, filter 0.2s ease-in-out;
}

h2:hover {
  cursor: grab;
  filter: brightness(1.1);
  text-shadow: 0px 0px 2px #0f0, 0px 0px 4px #0f0;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 16px;
}

.main-content {
  flex: 1;
}

.qxback {
  color: #0f0;
}

.banner6 {
  width: 100%;
  padding: 30px;
  margin: 0 auto;
  animation: slideDown 0.5s ease-out;
  background-color: #000000a0;
  color: #fff;
  text-align: center;
  margin-top: 60px;
}

.imagem-central img {
  width: 100%;
  width: 700px;
  border-radius: 15px;
  margin: 10px 0;
}

.banner6 h2 {
  color: #0f0;
  font-size: 26px;
}

.banner6 p {
  font-size: 18px;
  width: 100%;
  width: 700px;
  margin: 0 auto;
}

.banner62 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #000000a0;
  width: 100%;
  margin: 0px auto;
  z-index: 2;
  color: #ffffff;
  animation: slideDown 0.5s ease-out;
}

.banner62 h2 {
  color: #0f0;
}

.banner62 .imagem-direita {
  display: flex;
  justify-content: center;
}

.banner62 .imagem-direita img {
  border-radius: 15px;
  max-width: 100%;
  width: 180px;
  margin: 10px auto;
}

.banner62 .texto {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.banner62 .banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  flex: 1 1 200px;
  max-width: 250px;
  min-height: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.banner-item:hover {
  text-shadow: 0px 0px 10px #0f0;
  transform: translateY(-5px);
}

.banner62 .banner-item img {
  max-width: 250px;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 20px;
}

.banner62 .banner-item img:hover {
  filter: brightness(1.5);
}

.banner62 .banner-item p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner87 {
  padding: 30px;
  width: 100%;
  margin: 0 auto;
  animation: slideDown 0.5s ease-out;
  background-color: #000000a0;
  color: #fff;
  text-align: center;
}

.banner87 p {
  width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.banner87 img {
  width: 200px;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 956px) {
  .navbar ul {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .hamburguer-menu {
    display: flex;
  }

  .navbar.active ul {
    display: block;
    position: absolute;
    background-color: #000;
    width: 180px;
    right: 50px;
    top: 32px;
    text-align: right;
    z-index: 11;
    border-radius: 10px;
    padding: 0px;
    gap: 10px;
  }

  .conteudo {
    width: 100%;
  }

  .navbar ul li {
    padding: 10px 20px;
    margin-bottom: 5px;
    text-align: right;
    font-size: 16px;
    color: #fff;
  }

  .banner6,
  .banner62 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner6 .conteudo,
  .banner62 .conteudo {
    text-align: center;
  }

  .banner62 .texto {
    flex-direction: row;
  }

  .banner62 .banner-item {
    flex: 1;
    max-width: 250px;
  }

  .banner6 p {
    width: 500px;
  }

  .banner87 p {
    width: 500px;
  }
}

@media (max-width: 570px) {
  .banner6 p {
    width: 300px;
    font-size: 14px;
  }

  .banner87 p {
    width: 300px;
    font-size: 14px;
  }
}

@media (max-width: 460px) {
  .navbar ul {
    display: none;
  }

  .hamburguer-menu {
    display: flex;
  }

  .imagem-central img {
    width: 300px;
  }

  .banner6 p {
    width: 220px;
  }

  .banner87 p {
    width: 220px;
  }

  .banner6 h2 {
    font-size: 20px;
  }

  .banner87 h2 {
    font-size: 20px;
  }

  h2 {
    margin: 6px;
    font-size: 20px;
  }
}
