/* ========================================= */
/* RESET */
/* ========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#050816;
  color:#ffffff;
  overflow-x:hidden;
}

/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero{
  position:relative;
  width:100%;
  height:100vh;
  background-image:url('../assets/imagens/hero-ativacao-territorial.png');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to bottom,
    rgba(5, 8, 22, 0.30),
    rgba(5, 8, 22, 0.82)
  );
  z-index:1;
}

.hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:60px 60px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
  z-index:2;
}

.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:0.45;
  z-index:2;
  animation:pulseGlow 8s ease-in-out infinite;
}

.hero-glow-1{
  width:350px;
  height:350px;
  background:#ffb347;
  top:-100px;
  left:-80px;
}

.hero-glow-2{
  width:280px;
  height:280px;
  background:#6d5dfc;
  bottom:-100px;
  right:-80px;
  animation-delay:2s;
}

.hero-content{
  position:relative;
  z-index:5;
  width:100%;
  max-width:1100px;
  padding:40px 20px;
  text-align:center;
}

.hero-tag{
  display:inline-block;
  margin-bottom:25px;
  padding:10px 18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;
  font-size:0.85rem;
  letter-spacing:1px;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
  color:#e5e5e5;
}

.hero-content h1{
  font-size:clamp(3rem, 8vw, 7rem);
  line-height:0.95;
  margin-bottom:28px;
  font-weight:800;
  text-shadow:0 0 30px rgba(0,0,0,0.35);
}

.hero-content p{
  width:100%;
  max-width:780px;
  margin:0 auto;
  font-size:clamp(1rem, 2vw, 1.35rem);
  line-height:1.7;
  color:#d7d7d7;
  text-shadow:0 0 20px rgba(0,0,0,0.35);
}

/* ========================================= */
/* BLOCO 02 — PROBLEMA ATUAL */
/* ========================================= */

.problem-section{
  position:relative;
  padding:110px 20px;
  background:
    radial-gradient(circle at top left, rgba(255,179,71,0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(109,93,252,0.16), transparent 38%),
    #050816;
  overflow:hidden;
}

.problem-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.section-tag{
  display:inline-block;
  margin-bottom:20px;
  padding:9px 15px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  color:#ffcf8a;
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:1.4px;
}

.problem-text h2{
  margin-bottom:28px;
  font-size:clamp(2.2rem, 5vw, 4.5rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.problem-text p{
  margin-bottom:18px;
  max-width:600px;
  color:#cfd3df;
  font-size:1.05rem;
  line-height:1.8;
}

.problem-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.problem-card{
  min-height:230px;
  padding:26px;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:24px;
  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.035)
  );
  backdrop-filter:blur(14px);
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  transition:transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.problem-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,179,71,0.45);
  background:linear-gradient(
    145deg,
    rgba(255,179,71,0.14),
    rgba(255,255,255,0.045)
  );
}

.problem-card span{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  border-radius:50%;
  background:rgba(255,179,71,0.14);
  color:#ffcf8a;
  font-size:0.8rem;
  font-weight:700;
}

.problem-card h3{
  margin-bottom:12px;
  font-size:1.18rem;
}

.problem-card p{
  color:#c4c8d4;
  font-size:0.95rem;
  line-height:1.7;
}

/* ========================================= */
/* ANIMATIONS */
/* ========================================= */

@keyframes pulseGlow{
  0%{
    transform:scale(1);
    opacity:0.35;
  }

  50%{
    transform:scale(1.1);
    opacity:0.55;
  }

  100%{
    transform:scale(1);
    opacity:0.35;
  }
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:900px){

  .problem-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .problem-text{
    text-align:left;
  }

}

@media(max-width:768px){

  .hero{
    height:100svh;
  }

  .hero-content{
    padding:30px 20px;
  }

  .hero-content h1{
    line-height:1;
  }

  .hero-content p{
    font-size:1rem;
  }

  .problem-section{
    padding:80px 20px;
  }

  .problem-cards{
    grid-template-columns:1fr;
  }

  .problem-card{
    min-height:auto;
  }

}

/* ========================================= */
/* BLOCO 03 — TERRITÓRIO EM MOVIMENTO */
/* ========================================= */

.territory-section{
  position:relative;

  padding:120px 20px;

  background:
  linear-gradient(
    to bottom,
    #050816,
    #09111f
  );

  overflow:hidden;
}

.territory-container{
  width:100%;
  max-width:1200px;

  margin:0 auto;
}

.territory-header{
  max-width:900px;

  margin:0 auto 70px auto;

  text-align:center;
}

.territory-header h2{
  margin-bottom:28px;

  font-size:clamp(2.3rem, 5vw, 4.8rem);

  line-height:1.05;

  letter-spacing:-1.5px;
}

.territory-header p{
  max-width:760px;

  margin:0 auto;

  color:#cdd3df;

  font-size:1.08rem;

  line-height:1.9;
}

.territory-grid{
  display:grid;

  grid-template-columns:repeat(2, 1fr);

  gap:22px;
}

.territory-card{
  position:relative;

  padding:34px;

  border-radius:28px;

  border:1px solid rgba(255,255,255,0.08);

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );

  backdrop-filter:blur(14px);

  overflow:hidden;

  transition:
  transform 0.3s ease,
  border-color 0.3s ease;
}

.territory-card:hover{
  transform:translateY(-8px);

  border-color:rgba(255,179,71,0.35);
}

.territory-card::before{
  content:"";

  position:absolute;

  top:-60px;
  right:-60px;

  width:180px;
  height:180px;

  background:rgba(255,179,71,0.08);

  border-radius:50%;

  filter:blur(60px);
}

.territory-card h3{
  position:relative;

  margin-bottom:18px;

  font-size:1.35rem;
}

.territory-card p{
  position:relative;

  color:#c8cfda;

  font-size:1rem;

  line-height:1.8;
}

@media(max-width:768px){

  .territory-section{
    padding:90px 20px;
  }

  .territory-grid{
    grid-template-columns:1fr;
  }

}


/* ========================================= */
/* BLOCO 04 — PLATAFORMA */
/* ========================================= */

.platform-section{
  position:relative;

  padding:120px 20px;

  background:
  radial-gradient(
    circle at top right,
    rgba(255,179,71,0.08),
    transparent 30%
  ),
  radial-gradient(
    circle at bottom left,
    rgba(109,93,252,0.10),
    transparent 35%
  ),
  #09111f;

  overflow:hidden;
}

.platform-container{
  width:100%;
  max-width:1200px;

  margin:0 auto;
}

.platform-header{
  max-width:900px;

  margin:0 auto 80px auto;

  text-align:center;
}

.platform-header h2{
  margin-bottom:28px;

  font-size:clamp(2.4rem, 5vw, 5rem);

  line-height:1.05;

  letter-spacing:-1.5px;
}

.platform-header p{
  max-width:760px;

  margin:0 auto;

  color:#cbd2dd;

  font-size:1.08rem;

  line-height:1.9;
}

.platform-grid{
  display:grid;

  grid-template-columns:repeat(2, 1fr);

  gap:24px;
}

.platform-card{
  position:relative;

  padding:38px;

  border-radius:30px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);

  overflow:hidden;

  transition:
  transform 0.3s ease,
  border-color 0.3s ease,
  background 0.3s ease;
}

.platform-card:hover{
  transform:translateY(-10px);

  border-color:rgba(255,179,71,0.35);

  background:
  linear-gradient(
    145deg,
    rgba(255,179,71,0.12),
    rgba(255,255,255,0.04)
  );
}

.platform-card::before{
  content:"";

  position:absolute;

  top:-80px;
  right:-80px;

  width:220px;
  height:220px;

  background:rgba(255,179,71,0.06);

  border-radius:50%;

  filter:blur(70px);
}

.platform-icon{
  position:relative;

  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:28px;

  border-radius:22px;

  background:
  linear-gradient(
    145deg,
    rgba(255,179,71,0.20),
    rgba(255,255,255,0.04)
  );

  border:1px solid rgba(255,255,255,0.10);

  font-size:2rem;

  backdrop-filter:blur(10px);
}

.platform-card h3{
  position:relative;

  margin-bottom:18px;

  font-size:1.45rem;
}

.platform-card p{
  position:relative;

  color:#c8cfda;

  line-height:1.9;

  font-size:1rem;
}

@media(max-width:768px){

  .platform-section{
    padding:90px 20px;
  }

  .platform-grid{
    grid-template-columns:1fr;
  }

}

/* ========================================= */
/* BLOCO 05 — MÓDULOS JÁ EXISTENTES */
/* ========================================= */

.modules-section{
  position:relative;
  padding:120px 20px;
  background:
    radial-gradient(circle at top left, rgba(255,179,71,0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(109,93,252,0.12), transparent 36%),
    #050816;
  overflow:hidden;
}

.modules-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.modules-header{
  max-width:900px;
  margin:0 auto 80px auto;
  text-align:center;
}

.modules-header h2{
  margin-bottom:28px;
  font-size:clamp(2.4rem, 5vw, 5rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.modules-header p{
  max-width:780px;
  margin:0 auto;
  color:#cbd2dd;
  font-size:1.08rem;
  line-height:1.9;
}

.modules-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
}

.module-card{
  position:relative;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:28px;
  align-items:center;
  min-height:430px;
  padding:30px;
  border-radius:34px;
  border:1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.085),
      rgba(255,255,255,0.032)
    );
  box-shadow:0 28px 80px rgba(0,0,0,0.28);
  backdrop-filter:blur(14px);
  overflow:hidden;
}

.module-card::before{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  top:-100px;
  left:-80px;
  border-radius:50%;
  background:rgba(255,179,71,0.09);
  filter:blur(70px);
}

.module-image-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:360px;
  z-index:2;
}

.module-image-wrap::before{
  content:"";
  position:absolute;
  width:190px;
  height:260px;
  border-radius:50%;
  background:rgba(255,179,71,0.16);
  filter:blur(55px);
  z-index:-1;
}

.module-image-wrap img{
  width:min(190px, 90%);
  max-height:360px;
  object-fit:contain;
  border-radius:26px;
  filter:drop-shadow(0 28px 35px rgba(0,0,0,0.45));
  animation:moduleFloat 6s ease-in-out infinite;
}

.module-image-stack img:first-child{
  transform:translateX(20px) rotate(-3deg);
}

.module-image-stack img:last-child{
  margin-left:-75px;
  transform:translateX(-10px) rotate(4deg);
  animation-delay:1.2s;
}

.module-content{
  position:relative;
  z-index:2;
}

.module-content span{
  display:inline-block;
  margin-bottom:14px;
  color:#ffcf8a;
  font-size:0.78rem;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

.module-content h3{
  margin-bottom:18px;
  font-size:clamp(1.55rem, 3vw, 2.25rem);
  line-height:1.05;
}

.module-content p{
  color:#c8cfda;
  font-size:1rem;
  line-height:1.85;
}

@keyframes moduleFloat{
  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0);
  }
}

@media(max-width:1050px){

  .modules-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .modules-section{
    padding:90px 20px;
  }

  .module-card{
    grid-template-columns:1fr;
    min-height:auto;
    gap:18px;
  }

  .module-image-wrap{
    min-height:320px;
  }

  .module-image-wrap img{
    width:min(180px, 82%);
  }

}

/* ========================================= */
/* BLOCO 06 — COMO FUNCIONA NA PRÁTICA */
/* ========================================= */

.flow-section{
  position:relative;
  padding:120px 20px;
  background:
    linear-gradient(to bottom, #050816, #09111f);
  overflow:hidden;
}

.flow-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.flow-header{
  max-width:900px;
  margin:0 auto 85px auto;
  text-align:center;
}

.flow-header h2{
  margin-bottom:28px;
  font-size:clamp(2.4rem, 5vw, 5rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.flow-header p{
  max-width:760px;
  margin:0 auto;
  color:#cbd2dd;
  font-size:1.08rem;
  line-height:1.9;
}

.flow-steps{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
}

.flow-line{
  position:absolute;
  top:42px;
  left:7%;
  right:7%;
  height:2px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,179,71,0.75),
    rgba(109,93,252,0.75),
    transparent
  );
  box-shadow:0 0 22px rgba(255,179,71,0.35);
  z-index:1;
}

.flow-step{
  position:relative;
  z-index:2;
  min-height:250px;
  padding:28px 22px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );
  backdrop-filter:blur(14px);
  box-shadow:0 24px 70px rgba(0,0,0,0.25);
  transition:transform 0.3s ease, border-color 0.3s ease;
}

.flow-step:hover{
  transform:translateY(-8px);
  border-color:rgba(255,179,71,0.40);
}

.flow-number{
  width:58px;
  height:58px;
  margin-bottom:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:
    radial-gradient(circle, rgba(255,179,71,0.35), rgba(255,179,71,0.08));
  border:1px solid rgba(255,255,255,0.14);
  color:#ffcf8a;
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:1px;
  box-shadow:0 0 28px rgba(255,179,71,0.22);
}

.flow-step h3{
  margin-bottom:14px;
  font-size:1.28rem;
}

.flow-step p{
  color:#c8cfda;
  font-size:0.94rem;
  line-height:1.75;
}

@media(max-width:1050px){

  .flow-steps{
    grid-template-columns:1fr;
    gap:20px;
  }

  .flow-line{
    top:0;
    bottom:0;
    left:29px;
    right:auto;
    width:2px;
    height:auto;
    background:linear-gradient(
      to bottom,
      transparent,
      rgba(255,179,71,0.75),
      rgba(109,93,252,0.75),
      transparent
    );
  }

  .flow-step{
    min-height:auto;
    padding-left:82px;
  }

  .flow-number{
    position:absolute;
    top:26px;
    left:22px;
    width:48px;
    height:48px;
    margin-bottom:0;
  }

}

@media(max-width:768px){

  .flow-section{
    padding:90px 20px;
  }

  .flow-header{
    margin-bottom:60px;
  }

  .flow-step{
    padding:26px 22px 26px 82px;
  }

}

/* ========================================= */
/* BLOCO 07 — PARTICIPAÇÃO TERRITORIAL */
/* ========================================= */

.participation-section{
  position:relative;

  padding:120px 20px;

  background:
  radial-gradient(
    circle at top right,
    rgba(255,179,71,0.10),
    transparent 32%
  ),
  radial-gradient(
    circle at bottom left,
    rgba(109,93,252,0.12),
    transparent 36%
  ),
  #09111f;

  overflow:hidden;
}

.participation-container{
  width:100%;
  max-width:1200px;

  margin:0 auto;

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:70px;
  align-items:center;
}

.participation-content h2{
  margin-bottom:28px;

  font-size:clamp(2.3rem, 5vw, 5rem);

  line-height:1.05;

  letter-spacing:-1.5px;
}

.participation-content p{
  margin-bottom:22px;

  color:#c9cfda;

  font-size:1.05rem;

  line-height:1.9;
}

/* ========================================= */
/* QR BOX */
/* ========================================= */

.qr-box{
  display:flex;
  align-items:center;
  gap:24px;

  margin-top:45px;
  padding:24px;

  border-radius:28px;

  border:1px solid rgba(255,255,255,0.08);

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );

  backdrop-filter:blur(14px);
}

.qr-box img{
  width:120px;
  min-width:120px;

  border-radius:16px;

  background:#fff;

  padding:10px;
}

.qr-text h3{
  margin-bottom:10px;

  font-size:1.25rem;
}

.qr-text p{
  margin-bottom:0;

  font-size:0.95rem;

  line-height:1.7;
}

/* ========================================= */
/* MOCKUP */
/* ========================================= */

.participation-visual{
  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;

  min-height:650px;
}

.participation-glow{
  position:absolute;

  width:320px;
  height:320px;

  border-radius:50%;

  background:rgba(255,179,71,0.18);

  filter:blur(90px);

  animation:participationGlow 7s ease-in-out infinite;
}

.participation-visual img{
  position:relative;

  width:min(340px, 90%);

  z-index:2;

  filter:
  drop-shadow(0 40px 50px rgba(0,0,0,0.45));

  animation:participationFloat 6s ease-in-out infinite;
}

/* ========================================= */
/* ANIMAÇÕES */
/* ========================================= */

@keyframes participationFloat{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-14px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes participationGlow{

  0%{
    transform:scale(1);
    opacity:0.35;
  }

  50%{
    transform:scale(1.08);
    opacity:0.55;
  }

  100%{
    transform:scale(1);
    opacity:0.35;
  }

}

/* ========================================= */
/* RESPONSIVO */
/* ========================================= */

@media(max-width:980px){

  .participation-container{
    grid-template-columns:1fr;
  }

  .participation-visual{
    min-height:auto;
  }

}

@media(max-width:768px){

  .participation-section{
    padding:90px 20px;
  }

  .qr-box{
    flex-direction:column;
    align-items:flex-start;
  }

}

/* ========================================= */
/* BLOCO 08 — INTELIGÊNCIA TERRITORIAL */
/* ========================================= */

.intelligence-section{
  position:relative;
  padding:120px 20px;
  background:
    radial-gradient(circle at top left, rgba(109,93,252,0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,179,71,0.10), transparent 35%),
    #050816;
  overflow:hidden;
}

.intelligence-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.intelligence-header{
  max-width:900px;
  margin:0 auto 80px auto;
  text-align:center;
}

.intelligence-header h2{
  margin-bottom:28px;
  font-size:clamp(2.4rem, 5vw, 5rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.intelligence-header p{
  max-width:780px;
  margin:0 auto;
  color:#cbd2dd;
  font-size:1.08rem;
  line-height:1.9;
}

.intelligence-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.intelligence-card{
  position:relative;
  min-height:300px;
  padding:30px 24px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );
  backdrop-filter:blur(14px);
  box-shadow:0 24px 70px rgba(0,0,0,0.24);
  overflow:hidden;
  transition:transform 0.3s ease, border-color 0.3s ease;
}

.intelligence-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,179,71,0.40);
}

.intelligence-card::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:200px;
  height:200px;
  border-radius:50%;
  background:rgba(109,93,252,0.11);
  filter:blur(60px);
}

.intelligence-card span{
  position:relative;
  display:inline-flex;
  width:46px;
  height:46px;
  align-items:center;
  justify-content:center;
  margin-bottom:26px;
  border-radius:50%;
  background:rgba(109,93,252,0.18);
  color:#d9d5ff;
  font-size:0.82rem;
  font-weight:800;
}

.intelligence-card h3{
  position:relative;
  margin-bottom:16px;
  font-size:1.25rem;
  line-height:1.2;
}

.intelligence-card p{
  position:relative;
  color:#c8cfda;
  font-size:0.95rem;
  line-height:1.75;
}

@media(max-width:1050px){

  .intelligence-grid{
    grid-template-columns:repeat(2, 1fr);
  }

}

@media(max-width:768px){

  .intelligence-section{
    padding:90px 20px;
  }

  .intelligence-grid{
    grid-template-columns:1fr;
  }

  .intelligence-card{
    min-height:auto;
  }

}


/* ========================================= */
/* BLOCO 09 — COMO A ESTRUTURA FUNCIONA */
/* ========================================= */

.roles-section{
  position:relative;

  padding:120px 20px;

  background:
  linear-gradient(
    to bottom,
    #050816,
    #09111f
  );

  overflow:hidden;
}

.roles-container{
  width:100%;
  max-width:1200px;

  margin:0 auto;
}

.roles-header{
  max-width:900px;

  margin:0 auto 80px auto;

  text-align:center;
}

.roles-header h2{
  margin-bottom:28px;

  font-size:clamp(2.4rem, 5vw, 5rem);

  line-height:1.05;

  letter-spacing:-1.5px;
}

.roles-header p{
  max-width:800px;

  margin:0 auto;

  color:#cbd2dd;

  font-size:1.08rem;

  line-height:1.9;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.roles-grid{
  display:grid;

  grid-template-columns:repeat(3, 1fr);

  gap:24px;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.role-card{
  position:relative;

  padding:38px 32px;

  border-radius:32px;

  border:1px solid rgba(255,255,255,0.09);

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.075),
    rgba(255,255,255,0.03)
  );

  backdrop-filter:blur(14px);

  box-shadow:0 24px 70px rgba(0,0,0,0.24);

  overflow:hidden;

  transition:
  transform 0.3s ease,
  border-color 0.3s ease,
  background 0.3s ease;
}

.role-card:hover{
  transform:translateY(-8px);

  border-color:rgba(255,179,71,0.35);
}

/* ========================================= */
/* CARD CENTRAL */
/* ========================================= */

.role-card-featured{
  border-color:rgba(255,179,71,0.35);

  background:
  linear-gradient(
    145deg,
    rgba(255,179,71,0.13),
    rgba(255,255,255,0.035)
  );
}

/* ========================================= */
/* GLOW */
/* ========================================= */

.role-card::before{
  content:"";

  position:absolute;

  top:-90px;
  right:-90px;

  width:230px;
  height:230px;

  border-radius:50%;

  background:rgba(255,179,71,0.08);

  filter:blur(70px);
}

/* ========================================= */
/* TITLES */
/* ========================================= */

.role-card h3{
  position:relative;

  margin-bottom:28px;

  font-size:1.45rem;

  line-height:1.2;
}

/* ========================================= */
/* LIST */
/* ========================================= */

.role-card ul{
  position:relative;

  list-style:none;
}

.role-card li{
  position:relative;

  margin-bottom:18px;

  padding-left:28px;

  color:#c8cfda;

  font-size:0.98rem;

  line-height:1.75;
}

/* ========================================= */
/* BULLETS */
/* ========================================= */

.role-card li::before{
  content:"";

  position:absolute;

  left:0;
  top:10px;

  width:8px;
  height:8px;

  border-radius:50%;

  background:#ffb347;

  box-shadow:0 0 14px rgba(255,179,71,0.45);
}

/* ========================================= */
/* RESPONSIVO */
/* ========================================= */

@media(max-width:1050px){

  .roles-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .roles-section{
    padding:90px 20px;
  }

}


/* ========================================= */
/* BLOCO 10 — VISÃO FUTURA */
/* ========================================= */

.future-section{
  position:relative;
  padding:140px 20px;
  background:
    radial-gradient(circle at top center, rgba(255,179,71,0.10), transparent 30%),
    linear-gradient(to bottom, #09111f, #050816);
  overflow:hidden;
}

.future-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.future-header{
  max-width:950px;
  margin:0 auto 90px auto;
  text-align:center;
}

.future-header h2{
  margin-bottom:32px;
  font-size:clamp(2.5rem, 5vw, 5.4rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.future-header p{
  max-width:800px;
  margin:0 auto;
  color:#c8cfda;
  font-size:1.08rem;
  line-height:1.95;
}

.future-pillars{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}

.future-pillar{
  position:relative;
  padding:34px 28px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.07),
      rgba(255,255,255,0.03)
    );
  backdrop-filter:blur(14px);
  overflow:hidden;
  transition:transform 0.3s ease, border-color 0.3s ease;
}

.future-pillar:hover{
  transform:translateY(-8px);
  border-color:rgba(255,179,71,0.35);
}

.future-pillar::before{
  content:"";
  position:absolute;
  top:-70px;
  right:-70px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,179,71,0.08);
  filter:blur(60px);
}

.future-pillar h3{
  position:relative;
  margin-bottom:18px;
  font-size:1.35rem;
  line-height:1.2;
}

.future-pillar p{
  position:relative;
  color:#c9cfda;
  font-size:0.98rem;
  line-height:1.8;
}

@media(max-width:1050px){

  .future-pillars{
    grid-template-columns:repeat(2, 1fr);
  }

}

@media(max-width:768px){

  .future-section{
    padding:100px 20px;
  }

  .future-pillars{
    grid-template-columns:1fr;
  }

}

/* ========================================= */
/* BLOCO 11 — ENCERRAMENTO */
/* ========================================= */

.closing-section{
  position:relative;

  padding:180px 20px;

  background:
  radial-gradient(
    circle at top center,
    rgba(255,179,71,0.12),
    transparent 28%
  ),
  linear-gradient(
    to bottom,
    #050816,
    #03050f
  );

  overflow:hidden;
}

/* ========================================= */
/* OVERLAY */
/* ========================================= */

.closing-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(5,8,22,0.20),
    rgba(5,8,22,0.70)
  );

  z-index:1;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.closing-grid{
  position:absolute;
  inset:0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size:60px 60px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      transparent
    );

  z-index:2;
}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.closing-container{
  position:relative;

  z-index:5;

  width:100%;
  max-width:1000px;

  margin:0 auto;

  text-align:center;
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.closing-container h2{
  margin:28px 0 34px 0;

  font-size:clamp(2.8rem, 6vw, 6rem);

  line-height:1.02;

  letter-spacing:-2px;
}

/* ========================================= */
/* TEXT */
/* ========================================= */

.closing-container p{
  max-width:760px;

  margin:0 auto;

  color:#c9cfda;

  font-size:1.12rem;

  line-height:2;
}

/* ========================================= */
/* LINE */
/* ========================================= */

.closing-line{
  width:180px;
  height:2px;

  margin:60px auto;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,179,71,0.9),
    transparent
  );

  box-shadow:
    0 0 20px rgba(255,179,71,0.35);
}

/* ========================================= */
/* SIGNATURE */
/* ========================================= */

.closing-signature{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.closing-signature strong{
  font-size:1.05rem;

  letter-spacing:1px;

  text-transform:uppercase;
}

.closing-signature span{
  color:#9fa7b6;

  font-size:0.95rem;

  line-height:1.7;
}

/* ========================================= */
/* RESPONSIVO */
/* ========================================= */

@media(max-width:768px){

  .closing-section{
    padding:120px 20px;
  }

  .closing-container p{
    font-size:1rem;
  }

}

/* ========================================= */
/* RESET */
/* ========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#050816;
  color:#ffffff;
  overflow-x:hidden;
}

/* ========================================= */
/* HERO SECTION */
/* ========================================= */

.hero{
  position:relative;
  width:100%;
  height:100vh;
  background-image:url('../assets/imagens/hero-ativacao-territorial.png');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to bottom,
    rgba(5, 8, 22, 0.30),
    rgba(5, 8, 22, 0.82)
  );
  z-index:1;
}

.hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:60px 60px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
  z-index:2;
}

.hero-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:0.45;
  z-index:2;
  animation:pulseGlow 8s ease-in-out infinite;
}

.hero-glow-1{
  width:350px;
  height:350px;
  background:#ffb347;
  top:-100px;
  left:-80px;
}

.hero-glow-2{
  width:280px;
  height:280px;
  background:#6d5dfc;
  bottom:-100px;
  right:-80px;
  animation-delay:2s;
}

.hero-content{
  position:relative;
  z-index:5;
  width:100%;
  max-width:1100px;
  padding:40px 20px;
  text-align:center;
}

.hero-tag{
  display:inline-block;
  margin-bottom:25px;
  padding:10px 18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;
  font-size:0.85rem;
  letter-spacing:1px;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
  color:#e5e5e5;
}

.hero-content h1{
  font-size:clamp(3rem, 8vw, 7rem);
  line-height:0.95;
  margin-bottom:28px;
  font-weight:800;
  text-shadow:0 0 30px rgba(0,0,0,0.35);
}

.hero-content p{
  width:100%;
  max-width:780px;
  margin:0 auto;
  font-size:clamp(1rem, 2vw, 1.35rem);
  line-height:1.7;
  color:#d7d7d7;
  text-shadow:0 0 20px rgba(0,0,0,0.35);
}

/* ========================================= */
/* BLOCO 02 — PROBLEMA ATUAL */
/* ========================================= */

.problem-section{
  position:relative;
  padding:110px 20px;
  background:
    radial-gradient(circle at top left, rgba(255,179,71,0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(109,93,252,0.16), transparent 38%),
    #050816;
  overflow:hidden;
}

.problem-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.section-tag{
  display:inline-block;
  margin-bottom:20px;
  padding:9px 15px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  color:#ffcf8a;
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:1.4px;
}

.problem-text h2{
  margin-bottom:28px;
  font-size:clamp(2.2rem, 5vw, 4.5rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.problem-text p{
  margin-bottom:18px;
  max-width:600px;
  color:#cfd3df;
  font-size:1.05rem;
  line-height:1.8;
}

.problem-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.problem-card{
  min-height:230px;
  padding:26px;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:24px;
  background:linear-gradient(
    145deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.035)
  );
  backdrop-filter:blur(14px);
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  transition:transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.problem-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,179,71,0.45);
  background:linear-gradient(
    145deg,
    rgba(255,179,71,0.14),
    rgba(255,255,255,0.045)
  );
}

.problem-card span{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  border-radius:50%;
  background:rgba(255,179,71,0.14);
  color:#ffcf8a;
  font-size:0.8rem;
  font-weight:700;
}

.problem-card h3{
  margin-bottom:12px;
  font-size:1.18rem;
}

.problem-card p{
  color:#c4c8d4;
  font-size:0.95rem;
  line-height:1.7;
}

/* ========================================= */
/* ANIMATIONS */
/* ========================================= */

@keyframes pulseGlow{
  0%{
    transform:scale(1);
    opacity:0.35;
  }

  50%{
    transform:scale(1.1);
    opacity:0.55;
  }

  100%{
    transform:scale(1);
    opacity:0.35;
  }
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:900px){

  .problem-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .problem-text{
    text-align:left;
  }

}

@media(max-width:768px){

  .hero{
    height:100svh;
  }

  .hero-content{
    padding:30px 20px;
  }

  .hero-content h1{
    line-height:1;
  }

  .hero-content p{
    font-size:1rem;
  }

  .problem-section{
    padding:80px 20px;
  }

  .problem-cards{
    grid-template-columns:1fr;
  }

  .problem-card{
    min-height:auto;
  }

}

/* ========================================= */
/* BLOCO 03 — TERRITÓRIO EM MOVIMENTO */
/* ========================================= */

.territory-section{
  position:relative;

  padding:120px 20px;

  background:
  linear-gradient(
    to bottom,
    #050816,
    #09111f
  );

  overflow:hidden;
}

.territory-container{
  width:100%;
  max-width:1200px;

  margin:0 auto;
}

.territory-header{
  max-width:900px;

  margin:0 auto 70px auto;

  text-align:center;
}

.territory-header h2{
  margin-bottom:28px;

  font-size:clamp(2.3rem, 5vw, 4.8rem);

  line-height:1.05;

  letter-spacing:-1.5px;
}

.territory-header p{
  max-width:760px;

  margin:0 auto;

  color:#cdd3df;

  font-size:1.08rem;

  line-height:1.9;
}

.territory-grid{
  display:grid;

  grid-template-columns:repeat(2, 1fr);

  gap:22px;
}

.territory-card{
  position:relative;

  padding:34px;

  border-radius:28px;

  border:1px solid rgba(255,255,255,0.08);

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );

  backdrop-filter:blur(14px);

  overflow:hidden;

  transition:
  transform 0.3s ease,
  border-color 0.3s ease;
}

.territory-card:hover{
  transform:translateY(-8px);

  border-color:rgba(255,179,71,0.35);
}

.territory-card::before{
  content:"";

  position:absolute;

  top:-60px;
  right:-60px;

  width:180px;
  height:180px;

  background:rgba(255,179,71,0.08);

  border-radius:50%;

  filter:blur(60px);
}

.territory-card h3{
  position:relative;

  margin-bottom:18px;

  font-size:1.35rem;
}

.territory-card p{
  position:relative;

  color:#c8cfda;

  font-size:1rem;

  line-height:1.8;
}

@media(max-width:768px){

  .territory-section{
    padding:90px 20px;
  }

  .territory-grid{
    grid-template-columns:1fr;
  }

}


/* ========================================= */
/* BLOCO 04 — PLATAFORMA */
/* ========================================= */

.platform-section{
  position:relative;

  padding:120px 20px;

  background:
  radial-gradient(
    circle at top right,
    rgba(255,179,71,0.08),
    transparent 30%
  ),
  radial-gradient(
    circle at bottom left,
    rgba(109,93,252,0.10),
    transparent 35%
  ),
  #09111f;

  overflow:hidden;
}

.platform-container{
  width:100%;
  max-width:1200px;

  margin:0 auto;
}

.platform-header{
  max-width:900px;

  margin:0 auto 80px auto;

  text-align:center;
}

.platform-header h2{
  margin-bottom:28px;

  font-size:clamp(2.4rem, 5vw, 5rem);

  line-height:1.05;

  letter-spacing:-1.5px;
}

.platform-header p{
  max-width:760px;

  margin:0 auto;

  color:#cbd2dd;

  font-size:1.08rem;

  line-height:1.9;
}

.platform-grid{
  display:grid;

  grid-template-columns:repeat(2, 1fr);

  gap:24px;
}

.platform-card{
  position:relative;

  padding:38px;

  border-radius:30px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);

  overflow:hidden;

  transition:
  transform 0.3s ease,
  border-color 0.3s ease,
  background 0.3s ease;
}

.platform-card:hover{
  transform:translateY(-10px);

  border-color:rgba(255,179,71,0.35);

  background:
  linear-gradient(
    145deg,
    rgba(255,179,71,0.12),
    rgba(255,255,255,0.04)
  );
}

.platform-card::before{
  content:"";

  position:absolute;

  top:-80px;
  right:-80px;

  width:220px;
  height:220px;

  background:rgba(255,179,71,0.06);

  border-radius:50%;

  filter:blur(70px);
}

.platform-icon{
  position:relative;

  width:72px;
  height:72px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:28px;

  border-radius:22px;

  background:
  linear-gradient(
    145deg,
    rgba(255,179,71,0.20),
    rgba(255,255,255,0.04)
  );

  border:1px solid rgba(255,255,255,0.10);

  font-size:2rem;

  backdrop-filter:blur(10px);
}

.platform-card h3{
  position:relative;

  margin-bottom:18px;

  font-size:1.45rem;
}

.platform-card p{
  position:relative;

  color:#c8cfda;

  line-height:1.9;

  font-size:1rem;
}

@media(max-width:768px){

  .platform-section{
    padding:90px 20px;
  }

  .platform-grid{
    grid-template-columns:1fr;
  }

}

/* ========================================= */
/* BLOCO 05 — MÓDULOS JÁ EXISTENTES */
/* ========================================= */

.modules-section{
  position:relative;
  padding:120px 20px;
  background:
    radial-gradient(circle at top left, rgba(255,179,71,0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(109,93,252,0.12), transparent 36%),
    #050816;
  overflow:hidden;
}

.modules-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.modules-header{
  max-width:900px;
  margin:0 auto 80px auto;
  text-align:center;
}

.modules-header h2{
  margin-bottom:28px;
  font-size:clamp(2.4rem, 5vw, 5rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.modules-header p{
  max-width:780px;
  margin:0 auto;
  color:#cbd2dd;
  font-size:1.08rem;
  line-height:1.9;
}

.modules-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
}

.module-card{
  position:relative;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:28px;
  align-items:center;
  min-height:430px;
  padding:30px;
  border-radius:34px;
  border:1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.085),
      rgba(255,255,255,0.032)
    );
  box-shadow:0 28px 80px rgba(0,0,0,0.28);
  backdrop-filter:blur(14px);
  overflow:hidden;
}

.module-card::before{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  top:-100px;
  left:-80px;
  border-radius:50%;
  background:rgba(255,179,71,0.09);
  filter:blur(70px);
}

.module-image-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:360px;
  z-index:2;
}

.module-image-wrap::before{
  content:"";
  position:absolute;
  width:190px;
  height:260px;
  border-radius:50%;
  background:rgba(255,179,71,0.16);
  filter:blur(55px);
  z-index:-1;
}

.module-image-wrap img{
  width:min(190px, 90%);
  max-height:360px;
  object-fit:contain;
  border-radius:26px;
  filter:drop-shadow(0 28px 35px rgba(0,0,0,0.45));
  animation:moduleFloat 6s ease-in-out infinite;
}

.module-image-stack img:first-child{
  transform:translateX(20px) rotate(-3deg);
}

.module-image-stack img:last-child{
  margin-left:-75px;
  transform:translateX(-10px) rotate(4deg);
  animation-delay:1.2s;
}

.module-content{
  position:relative;
  z-index:2;
}

.module-content span{
  display:inline-block;
  margin-bottom:14px;
  color:#ffcf8a;
  font-size:0.78rem;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

.module-content h3{
  margin-bottom:18px;
  font-size:clamp(1.55rem, 3vw, 2.25rem);
  line-height:1.05;
}

.module-content p{
  color:#c8cfda;
  font-size:1rem;
  line-height:1.85;
}

@keyframes moduleFloat{
  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0);
  }
}

@media(max-width:1050px){

  .modules-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .modules-section{
    padding:90px 20px;
  }

  .module-card{
    grid-template-columns:1fr;
    min-height:auto;
    gap:18px;
  }

  .module-image-wrap{
    min-height:320px;
  }

  .module-image-wrap img{
    width:min(180px, 82%);
  }

}

/* ========================================= */
/* BLOCO 06 — COMO FUNCIONA NA PRÁTICA */
/* ========================================= */

.flow-section{
  position:relative;
  padding:120px 20px;
  background:
    linear-gradient(to bottom, #050816, #09111f);
  overflow:hidden;
}

.flow-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.flow-header{
  max-width:900px;
  margin:0 auto 85px auto;
  text-align:center;
}

.flow-header h2{
  margin-bottom:28px;
  font-size:clamp(2.4rem, 5vw, 5rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.flow-header p{
  max-width:760px;
  margin:0 auto;
  color:#cbd2dd;
  font-size:1.08rem;
  line-height:1.9;
}

.flow-steps{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
}

.flow-line{
  position:absolute;
  top:42px;
  left:7%;
  right:7%;
  height:2px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,179,71,0.75),
    rgba(109,93,252,0.75),
    transparent
  );
  box-shadow:0 0 22px rgba(255,179,71,0.35);
  z-index:1;
}

.flow-step{
  position:relative;
  z-index:2;
  min-height:250px;
  padding:28px 22px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );
  backdrop-filter:blur(14px);
  box-shadow:0 24px 70px rgba(0,0,0,0.25);
  transition:transform 0.3s ease, border-color 0.3s ease;
}

.flow-step:hover{
  transform:translateY(-8px);
  border-color:rgba(255,179,71,0.40);
}

.flow-number{
  width:58px;
  height:58px;
  margin-bottom:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:
    radial-gradient(circle, rgba(255,179,71,0.35), rgba(255,179,71,0.08));
  border:1px solid rgba(255,255,255,0.14);
  color:#ffcf8a;
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:1px;
  box-shadow:0 0 28px rgba(255,179,71,0.22);
}

.flow-step h3{
  margin-bottom:14px;
  font-size:1.28rem;
}

.flow-step p{
  color:#c8cfda;
  font-size:0.94rem;
  line-height:1.75;
}

@media(max-width:1050px){

  .flow-steps{
    grid-template-columns:1fr;
    gap:20px;
  }

  .flow-line{
    top:0;
    bottom:0;
    left:29px;
    right:auto;
    width:2px;
    height:auto;
    background:linear-gradient(
      to bottom,
      transparent,
      rgba(255,179,71,0.75),
      rgba(109,93,252,0.75),
      transparent
    );
  }

  .flow-step{
    min-height:auto;
    padding-left:82px;
  }

  .flow-number{
    position:absolute;
    top:26px;
    left:22px;
    width:48px;
    height:48px;
    margin-bottom:0;
  }

}

@media(max-width:768px){

  .flow-section{
    padding:90px 20px;
  }

  .flow-header{
    margin-bottom:60px;
  }

  .flow-step{
    padding:26px 22px 26px 82px;
  }

}

/* ========================================= */
/* BLOCO 07 — PARTICIPAÇÃO TERRITORIAL */
/* ========================================= */

.participation-section{
  position:relative;

  padding:120px 20px;

  background:
  radial-gradient(
    circle at top right,
    rgba(255,179,71,0.10),
    transparent 32%
  ),
  radial-gradient(
    circle at bottom left,
    rgba(109,93,252,0.12),
    transparent 36%
  ),
  #09111f;

  overflow:hidden;
}

.participation-container{
  width:100%;
  max-width:1200px;

  margin:0 auto;

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:70px;
  align-items:center;
}

.participation-content h2{
  margin-bottom:28px;

  font-size:clamp(2.3rem, 5vw, 5rem);

  line-height:1.05;

  letter-spacing:-1.5px;
}

.participation-content p{
  margin-bottom:22px;

  color:#c9cfda;

  font-size:1.05rem;

  line-height:1.9;
}

/* ========================================= */
/* QR BOX */
/* ========================================= */

.qr-box{
  display:flex;
  align-items:center;
  gap:24px;

  margin-top:45px;
  padding:24px;

  border-radius:28px;

  border:1px solid rgba(255,255,255,0.08);

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );

  backdrop-filter:blur(14px);
}

.qr-box img{
  width:120px;
  min-width:120px;

  border-radius:16px;

  background:#fff;

  padding:10px;
}

.qr-text h3{
  margin-bottom:10px;

  font-size:1.25rem;
}

.qr-text p{
  margin-bottom:0;

  font-size:0.95rem;

  line-height:1.7;
}

/* ========================================= */
/* MOCKUP */
/* ========================================= */

.participation-visual{
  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;

  min-height:650px;
}

.participation-glow{
  position:absolute;

  width:320px;
  height:320px;

  border-radius:50%;

  background:rgba(255,179,71,0.18);

  filter:blur(90px);

  animation:participationGlow 7s ease-in-out infinite;
}

.participation-visual img{
  position:relative;

  width:min(340px, 90%);

  z-index:2;

  filter:
  drop-shadow(0 40px 50px rgba(0,0,0,0.45));

  animation:participationFloat 6s ease-in-out infinite;
}

/* ========================================= */
/* ANIMAÇÕES */
/* ========================================= */

@keyframes participationFloat{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-14px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes participationGlow{

  0%{
    transform:scale(1);
    opacity:0.35;
  }

  50%{
    transform:scale(1.08);
    opacity:0.55;
  }

  100%{
    transform:scale(1);
    opacity:0.35;
  }

}

/* ========================================= */
/* RESPONSIVO */
/* ========================================= */

@media(max-width:980px){

  .participation-container{
    grid-template-columns:1fr;
  }

  .participation-visual{
    min-height:auto;
  }

}

@media(max-width:768px){

  .participation-section{
    padding:90px 20px;
  }

  .qr-box{
    flex-direction:column;
    align-items:flex-start;
  }

}

/* ========================================= */
/* BLOCO 08 — INTELIGÊNCIA TERRITORIAL */
/* ========================================= */

.intelligence-section{
  position:relative;
  padding:120px 20px;
  background:
    radial-gradient(circle at top left, rgba(109,93,252,0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,179,71,0.10), transparent 35%),
    #050816;
  overflow:hidden;
}

.intelligence-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.intelligence-header{
  max-width:900px;
  margin:0 auto 80px auto;
  text-align:center;
}

.intelligence-header h2{
  margin-bottom:28px;
  font-size:clamp(2.4rem, 5vw, 5rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.intelligence-header p{
  max-width:780px;
  margin:0 auto;
  color:#cbd2dd;
  font-size:1.08rem;
  line-height:1.9;
}

.intelligence-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.intelligence-card{
  position:relative;
  min-height:300px;
  padding:30px 24px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );
  backdrop-filter:blur(14px);
  box-shadow:0 24px 70px rgba(0,0,0,0.24);
  overflow:hidden;
  transition:transform 0.3s ease, border-color 0.3s ease;
}

.intelligence-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,179,71,0.40);
}

.intelligence-card::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:200px;
  height:200px;
  border-radius:50%;
  background:rgba(109,93,252,0.11);
  filter:blur(60px);
}

.intelligence-card span{
  position:relative;
  display:inline-flex;
  width:46px;
  height:46px;
  align-items:center;
  justify-content:center;
  margin-bottom:26px;
  border-radius:50%;
  background:rgba(109,93,252,0.18);
  color:#d9d5ff;
  font-size:0.82rem;
  font-weight:800;
}

.intelligence-card h3{
  position:relative;
  margin-bottom:16px;
  font-size:1.25rem;
  line-height:1.2;
}

.intelligence-card p{
  position:relative;
  color:#c8cfda;
  font-size:0.95rem;
  line-height:1.75;
}

@media(max-width:1050px){

  .intelligence-grid{
    grid-template-columns:repeat(2, 1fr);
  }

}

@media(max-width:768px){

  .intelligence-section{
    padding:90px 20px;
  }

  .intelligence-grid{
    grid-template-columns:1fr;
  }

  .intelligence-card{
    min-height:auto;
  }

}


/* ========================================= */
/* BLOCO 09 — COMO A ESTRUTURA FUNCIONA */
/* ========================================= */

.roles-section{
  position:relative;

  padding:120px 20px;

  background:
  linear-gradient(
    to bottom,
    #050816,
    #09111f
  );

  overflow:hidden;
}

.roles-container{
  width:100%;
  max-width:1200px;

  margin:0 auto;
}

.roles-header{
  max-width:900px;

  margin:0 auto 80px auto;

  text-align:center;
}

.roles-header h2{
  margin-bottom:28px;

  font-size:clamp(2.4rem, 5vw, 5rem);

  line-height:1.05;

  letter-spacing:-1.5px;
}

.roles-header p{
  max-width:800px;

  margin:0 auto;

  color:#cbd2dd;

  font-size:1.08rem;

  line-height:1.9;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.roles-grid{
  display:grid;

  grid-template-columns:repeat(3, 1fr);

  gap:24px;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.role-card{
  position:relative;

  padding:38px 32px;

  border-radius:32px;

  border:1px solid rgba(255,255,255,0.09);

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.075),
    rgba(255,255,255,0.03)
  );

  backdrop-filter:blur(14px);

  box-shadow:0 24px 70px rgba(0,0,0,0.24);

  overflow:hidden;

  transition:
  transform 0.3s ease,
  border-color 0.3s ease,
  background 0.3s ease;
}

.role-card:hover{
  transform:translateY(-8px);

  border-color:rgba(255,179,71,0.35);
}

/* ========================================= */
/* CARD CENTRAL */
/* ========================================= */

.role-card-featured{
  border-color:rgba(255,179,71,0.35);

  background:
  linear-gradient(
    145deg,
    rgba(255,179,71,0.13),
    rgba(255,255,255,0.035)
  );
}

/* ========================================= */
/* GLOW */
/* ========================================= */

.role-card::before{
  content:"";

  position:absolute;

  top:-90px;
  right:-90px;

  width:230px;
  height:230px;

  border-radius:50%;

  background:rgba(255,179,71,0.08);

  filter:blur(70px);
}

/* ========================================= */
/* TITLES */
/* ========================================= */

.role-card h3{
  position:relative;

  margin-bottom:28px;

  font-size:1.45rem;

  line-height:1.2;
}

/* ========================================= */
/* LIST */
/* ========================================= */

.role-card ul{
  position:relative;

  list-style:none;
}

.role-card li{
  position:relative;

  margin-bottom:18px;

  padding-left:28px;

  color:#c8cfda;

  font-size:0.98rem;

  line-height:1.75;
}

/* ========================================= */
/* BULLETS */
/* ========================================= */

.role-card li::before{
  content:"";

  position:absolute;

  left:0;
  top:10px;

  width:8px;
  height:8px;

  border-radius:50%;

  background:#ffb347;

  box-shadow:0 0 14px rgba(255,179,71,0.45);
}

/* ========================================= */
/* RESPONSIVO */
/* ========================================= */

@media(max-width:1050px){

  .roles-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .roles-section{
    padding:90px 20px;
  }

}


/* ========================================= */
/* BLOCO 10 — VISÃO FUTURA */
/* ========================================= */

.future-section{
  position:relative;
  padding:140px 20px;
  background:
    radial-gradient(circle at top center, rgba(255,179,71,0.10), transparent 30%),
    linear-gradient(to bottom, #09111f, #050816);
  overflow:hidden;
}

.future-container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.future-header{
  max-width:950px;
  margin:0 auto 90px auto;
  text-align:center;
}

.future-header h2{
  margin-bottom:32px;
  font-size:clamp(2.5rem, 5vw, 5.4rem);
  line-height:1.05;
  letter-spacing:-1.5px;
}

.future-header p{
  max-width:800px;
  margin:0 auto;
  color:#c8cfda;
  font-size:1.08rem;
  line-height:1.95;
}

.future-pillars{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
}

.future-pillar{
  position:relative;
  padding:34px 28px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.07),
      rgba(255,255,255,0.03)
    );
  backdrop-filter:blur(14px);
  overflow:hidden;
  transition:transform 0.3s ease, border-color 0.3s ease;
}

.future-pillar:hover{
  transform:translateY(-8px);
  border-color:rgba(255,179,71,0.35);
}

.future-pillar::before{
  content:"";
  position:absolute;
  top:-70px;
  right:-70px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,179,71,0.08);
  filter:blur(60px);
}

.future-pillar h3{
  position:relative;
  margin-bottom:18px;
  font-size:1.35rem;
  line-height:1.2;
}

.future-pillar p{
  position:relative;
  color:#c9cfda;
  font-size:0.98rem;
  line-height:1.8;
}

@media(max-width:1050px){

  .future-pillars{
    grid-template-columns:repeat(2, 1fr);
  }

}

@media(max-width:768px){

  .future-section{
    padding:100px 20px;
  }

  .future-pillars{
    grid-template-columns:1fr;
  }

}

/* ========================================= */
/* BLOCO 11 — ENCERRAMENTO */
/* ========================================= */

.closing-section{
  position:relative;

  padding:180px 20px;

  background:
  radial-gradient(
    circle at top center,
    rgba(255,179,71,0.12),
    transparent 28%
  ),
  linear-gradient(
    to bottom,
    #050816,
    #03050f
  );

  overflow:hidden;
}

/* ========================================= */
/* OVERLAY */
/* ========================================= */

.closing-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(5,8,22,0.20),
    rgba(5,8,22,0.70)
  );

  z-index:1;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.closing-grid{
  position:absolute;
  inset:0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size:60px 60px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      transparent
    );

  z-index:2;
}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.closing-container{
  position:relative;

  z-index:5;

  width:100%;
  max-width:1000px;

  margin:0 auto;

  text-align:center;
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.closing-container h2{
  margin:28px 0 34px 0;

  font-size:clamp(2.8rem, 6vw, 6rem);

  line-height:1.02;

  letter-spacing:-2px;
}

/* ========================================= */
/* TEXT */
/* ========================================= */

.closing-container p{
  max-width:760px;

  margin:0 auto;

  color:#c9cfda;

  font-size:1.12rem;

  line-height:2;
}

/* ========================================= */
/* LINE */
/* ========================================= */

.closing-line{
  width:180px;
  height:2px;

  margin:60px auto;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(255,179,71,0.9),
    transparent
  );

  box-shadow:
    0 0 20px rgba(255,179,71,0.35);
}

/* ========================================= */
/* SIGNATURE */
/* ========================================= */

.closing-signature{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.closing-signature strong{
  font-size:1.05rem;

  letter-spacing:1px;

  text-transform:uppercase;
}

.closing-signature span{
  color:#9fa7b6;

  font-size:0.95rem;

  line-height:1.7;
}

/* ========================================= */
/* RESPONSIVO */
/* ========================================= */

@media(max-width:768px){

  .closing-section{
    padding:120px 20px;
  }

  .closing-container p{
    font-size:1rem;
  }

}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer{
  position:relative;

  padding:50px 20px;

  background:#02040c;

  border-top:1px solid rgba(255,255,255,0.06);
}

.footer-container{
  width:100%;
  max-width:1200px;

  margin:0 auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:40px;
}

.footer-brand h3{
  margin-bottom:12px;

  font-size:1.1rem;
}

.footer-brand p{
  max-width:520px;

  color:#97a0b1;

  line-height:1.7;

  font-size:0.95rem;
}

.footer-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:12px 18px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.08);

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );

  color:#ffffff;

  text-decoration:none;

  font-size:0.92rem;

  transition:
  transform 0.3s ease,
  border-color 0.3s ease,
  background 0.3s ease;
}

.footer-links a:hover{
  transform:translateY(-4px);

  border-color:rgba(255,179,71,0.35);

  background:
  linear-gradient(
    145deg,
    rgba(255,179,71,0.10),
    rgba(255,255,255,0.04)
  );
}

@media(max-width:900px){

  .footer-container{
    flex-direction:column;
    align-items:flex-start;
  }

}

/* ========================================= */
/* REVEAL ON SCROLL */
/* ========================================= */

.reveal{
  opacity:0;

  transform:translateY(40px);

  transition:
  opacity 1s ease,
  transform 1s ease;
}

.reveal.active{
  opacity:1;

  transform:translateY(0);
}