:root{
  --navy:#071b3a;
  --navy2:#0b2b58;
  --blue:#1479ff;
  --green:#12b76a;
  --cyan:#00b8c8;
  --ink:#0f172a;
  --muted:#64748b;
  --bg:#f7fafc;
  --line:#e2e8f0;
  --shadow:0 16px 44px rgba(15,23,42,.12);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at top left,rgba(20,121,255,.12),transparent 30%),
    radial-gradient(circle at bottom right,rgba(0,184,200,.10),transparent 30%),
    var(--bg);
  color:var(--ink);
}

a{color:inherit}

.page{
  min-height:100vh;
}

/* =========================================================
   CABEÇALHO
   ========================================================= */

.topbar{
  max-width:1480px;
  margin:0 auto;
  padding:4px 24px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand-small{
  line-height:0;
}

.brand-small img{
  height:100px;
  max-width:300px;
  object-fit:contain;
}

.tag{
  color:var(--muted);
  font-weight:650;
  font-size:14px;
}

/* =========================================================
   TELA INICIAL COM VÍDEO
   Texto menor à esquerda e vídeo maior à direita
   ========================================================= */

.hero{
  max-width:1480px;
  margin:0 auto;
  padding:0 24px 14px;
}

.video-stage{
  display:grid;
  grid-template-columns:minmax(260px,.52fr) minmax(680px,1.48fr);
  gap:18px;
  align-items:center;
  min-height:calc(100vh - 105px);
}

.eyebrow{
  color:var(--blue);
  font-size:12px;
  text-transform:uppercase;
  font-weight:850;
  letter-spacing:.12em;
  margin-bottom:10px;
}

.hero-copy{
  max-width:430px;
}

.hero-copy h1{
  margin:0 0 10px;
  font-size:clamp(28px,2.8vw,44px);
  line-height:1.02;
  letter-spacing:-.05em;
}

.hero-copy p{
  margin:0;
  color:#334155;
  font-size:17px;
  line-height:1.4;
  max-width:420px;
}

.signature{
  margin-top:14px;
  display:inline-flex;
  color:var(--navy);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 10px 26px rgba(15,23,42,.08);
  border-radius:999px;
  padding:9px 14px;
  font-size:14px;
  font-weight:850;
}

.video-card{
  width:100%;
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:8px;
}

.video-wrap{
  width:100%;
  aspect-ratio:16/9;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#030712;
  border-radius:18px;
  overflow:hidden;
}

.video-wrap video{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  background:#030712;
}

.video-note{
  text-align:center;
  color:var(--muted);
  font-size:13px;
  margin-top:8px;
  padding-bottom:2px;
}

/* =========================================================
   TELA DE MÓDULOS
   ========================================================= */

.experience{
  display:none;
  min-height:calc(100vh - 120px);
  animation:fadeUp .55s ease both;
  padding:0 24px 18px;
}

.experience-inner{
  max-width:1120px;
  margin:0 auto;
  text-align:center;
}

.experience h1{
  font-size:clamp(27px,3vw,39px);
  letter-spacing:-.055em;
  line-height:1.02;
  margin:0 0 5px;
}

.experience-subtitle{
  color:#334155;
  font-size:clamp(14px,1.35vw,17px);
  line-height:1.32;
  margin:0 auto 10px;
  max-width:760px;
}

.path-note{
  display:inline-flex;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:7px 13px;
  color:var(--muted);
  font-size:12.5px;
  font-weight:750;
  margin-bottom:12px;
  box-shadow:0 10px 26px rgba(15,23,42,.08);
}

/* =========================================================
   GRADE COMPACTA
   ========================================================= */

.module-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  max-width:1080px;
  margin:0 auto;
}

.module-panel{
  position:relative;
  display:grid;
  grid-template-columns:42px 1fr 22px;
  gap:11px;
  align-items:center;
  min-height:88px;
  text-align:left;
  text-decoration:none;
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:16px;
  padding:11px 13px;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(15,23,42,.08);
  transition:.2s;
}

.module-panel:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:5px;
  background:var(--blue);
}

.module-panel:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(15,23,42,.13);
}

.icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:12px;
  background:#eaf3ff;
  font-size:20px;
}

.module-panel h2{
  margin:0 0 2px;
  font-size:16.5px;
  line-height:1.05;
  letter-spacing:-.025em;
}

.module-panel p{
  margin:0;
  color:var(--muted);
  font-size:11.5px;
  line-height:1.2;
}

.arrow{
  color:var(--muted);
  font-size:23px;
}

.redacao:before{
  background:var(--green);
}

.redacao .icon{
  background:#ecfdf3;
}

.fundador:before{
  background:var(--cyan);
}

.fundador .icon{
  background:#e7fbfd;
}

.participar:before{
  background:var(--navy);
}

.participar{
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  border-color:transparent;
}

.participar p,
.participar .arrow{
  color:#dbeafe;
}

.participar .icon{
  background:rgba(255,255,255,.13);
}

.experience-actions{
  margin-top:12px;
  display:flex;
  justify-content:center;
}

.replay{
  display:inline-flex;
  text-decoration:none;
  border:1px solid var(--line);
  color:var(--navy);
  background:#fff;
  border-radius:999px;
  padding:8px 15px;
  font-weight:850;
  font-size:14px;
  box-shadow:0 10px 26px rgba(15,23,42,.08);
}

/* =========================================================
   PÁGINAS INTERNAS
   ========================================================= */

.content{
  max-width:940px;
  margin:0 auto;
  padding:34px 24px 60px;
}

.panel{
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:38px;
}

.kicker{
  color:var(--blue);
  font-weight:900;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.panel h1{
  margin:10px 0 18px;
  font-size:clamp(34px,4.5vw,54px);
  line-height:1;
  letter-spacing:-.06em;
}

.panel p{
  color:#334155;
  font-size:18px;
  line-height:1.55;
}

.actions{
  margin-top:26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.button{
  text-decoration:none;
  display:inline-flex;
  background:var(--navy);
  color:#fff;
  border-radius:999px;
  padding:12px 19px;
  font-weight:850;
}

.button.secondary{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line);
}

.footer{
  display:none;
}

/* =========================================================
   PÁGINAS DE MÓDULOS COM VÍDEO
   Vídeos explicativos um pouco menores, centralizados
   ========================================================= */

.module-page{
  width:100%;
  min-height:100vh;
  background:#000;
}

.module-video-area{
  width:100%;
  min-height:100vh;
  padding:28px 36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#000;
}

.module-video{
  width:min(88vw,1400px);
  height:min(78vh,760px);
  min-height:400px;
  margin:0 auto;
  overflow:hidden;
  border-radius:18px;
  background:#000;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
}

.module-video video{
  width:100%;
  height:100%;
  max-width:none;
  max-height:none;
  display:block;
  object-fit:contain;
  background:#000;
}

/* =========================================================
   ANIMAÇÃO
   ========================================================= */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(14px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media(max-width:1200px){
  .video-stage{
    grid-template-columns:minmax(260px,.62fr) minmax(560px,1.38fr);
  }

  .hero-copy h1{
    font-size:clamp(28px,3.2vw,42px);
  }

  .brand-small img{
    height:92px;
  }
}

@media(max-width:920px){
  .topbar{
    padding:6px 16px 0;
  }

  .brand-small img{
    height:82px;
    max-width:260px;
  }

  .tag{
    display:none;
  }

  .video-stage{
    grid-template-columns:1fr;
    gap:14px;
    min-height:auto;
  }

  .hero-copy{
    max-width:760px;
    margin:0 auto;
    text-align:center;
  }

  .hero-copy p{
    margin:0 auto;
  }

  .signature{
    margin-top:14px;
  }

  .experience{
    padding:0 14px 18px;
  }

  .module-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .module-video-area{
    padding:18px;
  }

  .module-video{
    width:92vw;
    height:min(74vh,680px);
  }
}

@media(max-width:620px){
  .brand-small img{
    height:72px;
    max-width:220px;
  }

  .hero{
    padding:0 12px 14px;
  }

  .hero-copy h1{
    font-size:34px;
  }

  .hero-copy p{
    font-size:16px;
  }

  .module-grid{
    grid-template-columns:1fr;
  }

  .module-panel{
    min-height:76px;
  }

  .module-panel h2{
    font-size:16px;
  }

  .module-panel p{
    font-size:11.5px;
  }

  .panel{
    padding:26px;
  }

  .module-video-area{
    padding:10px;
  }

  .module-video{
    width:96vw;
    height:68vh;
    min-height:260px;
    border-radius:12px;
  }
}
