/* Reset geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: white;
}

/* Cada seção ocupa a tela toda ou se adapta */
.section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.section * {
  position: relative;
  z-index: 2;
}

/* Imagens de fundo */
.img1, .img2, .img3, .img4, .img5, .img6, .img7, .img8, .img10 {
  background-image: url(fundo2.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
}

/* Logo */
.nav-logo {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2;
}

.nav-logo h3 {
  font-size: 24px;
}

.white { color: white; }
.purple { color: #c93be0; }

/* Conteúdo centralizado (esquerda ou centro) */
.content, .contente {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
  z-index: 2;
}

.content h1 {
  font-size: 45px;
  line-height: 1.2;
}

.content p {
  margin: 20px 0;
  font-size: 20px;
  color: #f0f0f0;
}

.contente h1 {
  font-size: 29px;
  line-height: 1.2;
}

.contente p {
  margin: 20px 0;
  font-size: 17px;
  color: #f0f0f0;
}

/* Botão */
.btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  background: linear-gradient(to right, #56CCF2, #a855f7);
  color: white;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  opacity: 0.8;
}

/* Imagem decorativa à direita */
.decor-image {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 40%;
  max-width: 500px;
  z-index: 1;
}

/* Hexagon/Circle */
.hexagon {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(201, 59, 224, 0.3);
  z-index: 2;
}

.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Seção com box-info */
.box-info {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: white;
  z-index: 2;
}

.text-left h2 {
  font-size: 29px;
  color: white;
  font-weight: bold;
  margin-bottom: 30px;
}

.text-left ul {
  list-style: none;
}

.text-left li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.square {
  width: 15px;
  height: 15px;
  background-color: rgb(144, 88, 199);
  margin-top: 6px;
}

.text-left h4 {
  color: #c93be0;
  font-size: 14px;
  margin: 0 0 5px;
}

.text-left p {
  font-size: 11px;
  color: #f0f0f0;
  max-width: 400px;
}

.circle-image {
  width: 500px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #c93be0;
  box-shadow: 0 0 30px rgba(201, 59, 224, 0.3);
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Seção de serviços */
.container-box {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
}

.main-title {
  font-size: 27px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.service-boxes {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px rgba(201, 59, 224, 0.3);
}

.icon-square {
  width: 16px;
  height: 16px;
  background-color: #c93be0;
  margin: 0 auto 15px;
}

.service-card h4 {
  color: #c93be0;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 12px;
  color: #f0f0f0;
}

/* Seção cyber-awareness */
.cyber-awareness {
  padding: 100px 50px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
}

.circle-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.circle {
  border-radius: 50%;
  border: 5px solid white;
  overflow: hidden;
  box-shadow: 0 0 20px #fff;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large { width: 220px; height: 220px; }
.medium { width: 180px; height: 180px; }
.small { width: 160px; height: 160px; }

.text-section {
  max-width: 600px;
}

.text-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.text-section p {
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

/* Seção projetos */
.projetos {
  text-align: center;
  color: white;
  padding: 80px 20px;
}

.projetos h2 {
  font-size: 30px;
  margin-bottom: 60px;
  font-weight: bold;
}

.projetos .roxo {
  color: #a933e0;
}

.circulos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.circulo {
  width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.circulo .icone {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 15px #a933e088;
  margin-bottom: 20px;
  display: block;
}

.circulo h3 {
  color: #a933e0;
  margin: 10px 0 5px;
}

.circulo p {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

/* Seção circulo-destaque */
.circulo-destaque {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 20px;
  color: white;
}

.circulos-esquerda {
  position: relative;
  width: 600px;
  height: 440px;
}

.circulo-img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px #a933e077;
  border: 3px solid #fff;
}

.circulo-img.maior {
  width: 340px;
  height: 340px;
  top: 5%;
  left: 28%;
}

.circulo-img.menor {
  width: 300px;
  height: 300px;
  bottom: 0;
  left: 0.20%;
}

.texto-direita {
  max-width: 500px;
}

.texto-direita h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.texto-direita .roxo {
  color: #a933e0;
}

.texto-direita p {
  font-size: 16px;
  line-height: 1.6;
}

/* Seção final */
.final-section {
  padding: 60px 40px;
  color: white;
  font-family: Arial, sans-serif;
}

.final-header {
  text-align: center;
  margin-bottom: 40px;
}

.final-header h2 {
  font-size: 36px;
  color: #c84bff;
  margin-bottom: 10px;
}

.final-header p {
  font-size: 18px;
  line-height: 1.6;
}

.integrantes-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 50px;
}

.membro {
  text-align: center;
  width: 120px;
}

.membro img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c84bff;
  transition: transform 0.3s;
}

.membro img:hover {
  transform: scale(1.05);
}

.membro p {
  margin-top: 10px;
  font-size: 14px;
}

.final-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 30px;
}

.fontes {
  flex: 1;
}

.fontes ul {
  list-style: none;
  padding-left: 0;
  font-size: 12px;
}

.fontes li {
  margin-bottom: 6px;
}

.fontes a {
  color: #ccccff;
  text-decoration: none;
}

.fontes a:hover {
  text-decoration: underline;
}

.botao-quiz {
  text-align: right;
}

.frase-botao {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 10px;
  text-align: right;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
  .section {
    height: auto;
    min-height: 100vh;
  }
  .content, .contente, .box-info {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 90%;
    margin: 30px auto;
    text-align: center;
  }
  .decor-image, .hexagon, .circle-image {
    position: relative;
    width: 80%;
    max-width: 300px;
    margin: 20px auto;
    right: auto;
    left: auto;
  }
  .service-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }
  .service-boxes {
    flex-direction: column;
    align-items: center;
  }
  .circulo {
    width: 100%;
    max-width: 300px;
  }
  .circulo-destaque {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .circulos-esquerda {
    width: 100%;
    height: auto;
  }
  .circulo-img.maior, .circulo-img.menor {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 20px auto;
    top: auto;
    left: auto;
  }
  .texto-direita {
    max-width: 100%;
    text-align: center;
  }
  .integrantes-grid {
    gap: 15px;
  }
  .membro {
    width: 90px;
  }
  .membro img {
    width: 80px;
    height: 80px;
  }
  .final-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .botao-quiz {
    margin-top: 20px;
    text-align: center;
  }
  .frase-botao {
    text-align: center;
  }
  .container {
    flex-direction: column;
    gap: 30px;
  }
  .circle-layout {
    flex-direction: column;
    gap: 30px;
  }
  .large, .medium, .small {
    width: 180px;
    height: 180px;
  }
  .text-section {
    max-width: 90%;
    text-align: center;
  }
  .text-section h2 {
    font-size: 28px;
  }
  .text-section p {
    font-size: 14px;
  }
}
