html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: "Poppins", sans-serif;
  color: #fff;
}

/* VÍDEO DE FUNDO */
.video_fundo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.video_fundo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TOPO */
.topo {
  width: 12%;
  min-width: 180px;
  position: fixed;
  top: 45px;
  left: 60px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 18px;
  background: rgba(5, 20, 60, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  z-index: 1000;
}

.logo img {
  height: 36px;
  padding-right: 10px;
  border-right: 2px solid #ffffff96;
}

/* BOTÃO HAMBURGER */
.btn_menu {
  width: 36px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.btn_menu span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

/* ÍCONE X (quando ativo) */
.btn_menu.ativo span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.btn_menu.ativo span:nth-child(2) {
  opacity: 0;
}

.btn_menu.ativo span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.5s ease;
  z-index: 900;
}

.overlay.ativo {
  opacity: 1;
  pointer-events: all;
}


/* MENU LATERAL */
.menu_lateral {
  position: fixed;
  top: 0;
  left: -370px;
  width: 370px;
  height: 100vh;
  background: #0d2a63;
  color: #fff;
  padding: none;
  transition: 0.35s ease;
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 15px 15px 0;
}

.menu_lateral.ativo {
  left: 0;
}

.menu_links a {
  font-weight: 200;
  display: block;
  font-size: 28pt;
  color: #fff;
  padding: 3px 0 3px 35px;
  text-decoration: none;
  margin-bottom: 25px;
  margin-bottom: 3px solid #fff;
}

.menu_links a:nth-child(2) {
  font-size: 28pt;
}

.menu_links .ativo {
  background: #071629;
}

.menu_links a:hover {
  margin: none;
  width: 100%;
  background: #071629;
  color: #fff;
  opacity: 0.8;
}

.menu_footer a {
  font-weight: 200;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin-left: 35px;
  margin-bottom: 50px;
  display: inline-block;
}

/* SESSÕES POR CIMA DO VÍDEO */
.sessao1,
.sessao2,
.sessao3,
.sessao4,
.sessao5,
.sessao6 {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* Exemplo de efeito visual */
.sessao1 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* container do carrossel */
.sessao1 .carrossel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* imagens do carrossel */
.sessao1 .carrossel img {
  position: absolute; /* ← ESSENCIAL para animação */
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  left: 20%;
  transition: left 1.2s ease, opacity 1.2s ease;
}

/* primeira imagem visível */
.sessao1 .carrossel img:first-child {
  opacity: 1;
  left: 0;
}

/* overlay que já tinhas */
.sessao1::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(10, 25, 80, 0.23) 20%,
    rgba(10, 25, 80, 0.61) 60%,
    rgba(25, 39, 93, 0.88) 100%
  );

  z-index: 1;
}

/* conteúdo acima de tudo */
.sessao1 .conteudo {
  position: relative;
  z-index: 2;
}

.sessao1 .conteudo {
  position: absolute;
  inset: 0; /* ocupa a área toda */
  z-index: 10;
  display: flex;
  flex-direction: column; /* um abaixo do outro */
  gap: 18px; 
  justify-content: center;
  align-items: left;
}

.sessao1 .conteudo .titulo {
  font-weight: 400;
  margin-top: 12%;
  font-size: 4.2rem;
  line-height: 1;
  margin-left: 10%;
}

.sessao1 .conteudo span {
  font-weight: 400;
  font-size: 3.2rem;
}

.sessao1 .conteudo p {
  width: 47%;
  font-weight: 250;
  display: block;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.5;
  margin-left: 10%;
}

.sessao1 .conteudo .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-left: 0;
  align-items: center;
  margin: 0 auto; /* centraliza horizontalmente */
}

.sessao1 .conteudo .btn a {
  font-size: 25pt;
  display: block;
  width: 550px;
  color: #fff;
  padding: 15px;
  margin-top: 5%;
  text-align: center;
  align-items: center;
  border-radius: 55px;
  text-decoration: none;
  background: #142b6c;
  border: 3px solid #fff;
  transition: padding-bottom 0.3s ease, transform 0.3s ease;
}

.sessao1 .conteudo .btn a:hover {
   
  transform: scale(1.05);
  transform: 2s;
}

/* SEGUNDA SESSAO COM A DASHBOARD */

.sessao2 {
  padding-top: 140px;
  background: rgba(10, 30, 80, 0.7);
}

.sessao2 img {
  display: block; /* essencial */
  margin: 0 auto; /* centraliza horizontalmente */

  position: relative;
  z-index: 1;
  width: 88%;
  height: auto;
  object-fit: cover;
}

/* TERCEIRA SESSAO COM O FORMULÁRIO */

.sessao3 {
  width: 100%;
  padding: 100px 8%;
  color: #fff;
  background: rgba(10, 30, 80, 0.7);
}

.sessao3-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* -------- LADO ESQUERDO -------- */

.sessao3-info h2 {
  font-size: 3rem;
  font-weight: 600;
}

.sessao3-info .linha {
  display: block;
  width: 80px;
  height: 2px;
  background: #ffffff70;
  margin: 15px 0 25px;
}

.sessao3-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e6e9ff;
  max-width: 520px;
}

/* -------- LADO DIREITO (FORM) -------- */

.sessao3-form {
  background: linear-gradient(160deg, #132c6f, #0a1b47);
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.sessao3-form h3 {
  text-align: center;
  margin-bottom: 35px;
  font-weight: 500;
}

/* inputs em linha */
.linha-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.sessao3-form input,
.sessao3-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff70;
  padding: 10px 5px;
  color: white;
  font-size: 1rem;
  outline: none;
}

.sessao3-form textarea {
  resize: none;
  height: 90px;
  margin-bottom: 25px;
}

.sessao3-form input::placeholder,
.sessao3-form textarea::placeholder {
  color: #ffffffb0;
}

/* texto pequeno */
.termos {
  font-size: 0.85rem;
  text-align: center;
  color: #d5dbff;
  margin-bottom: 25px;
}

/* botão */
.sessao3-form button {
  display: block;
  margin: auto;
  padding: 14px 36px;
  border-radius: 30px;
  border: none;
  background: #1b3fa6;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.sessao3-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* -------- RESPONSIVO -------- */

@media (max-width: 900px) {
  .sessao3-container {
    grid-template-columns: 1fr;
  }

  .linha-inputs {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FAQ PRO
========================= */

.sessao4 {
  font-family: "Poppins", sans-serif;
  position: relative;
  width: 100%;
  min-height: 120vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 0;
  overflow: hidden;
}

.sessao4 .bg-faq {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  z-index: -1;
}

/* Container geral */
.faq-container {
  width: 85%;
  max-width: 1300px;
  text-align: center;
  color: #fff;
}

.faq-container h1 {
  font-size: 5.4rem;
  padding: 0;
  margin-top: -4%;
  margin-bottom: 40px;
}

/* Card principal */
.faq-card {
  background: #f3f6fb;
  border-radius: 20px;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* Menu lateral */
.faq-menu {
  text-align: left;
  font-size: 1.4rem;
  color: #0b1b2b;
}

.faq-menu span {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  width: 25px;
  height: 26px;
  margin-right: 4px;
  padding: 0 3px;
  border-radius: 50%;
  border: 2px solid #071629;
}

.faq-menu a {
  display: flex;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  opacity: 0.7;
  cursor: pointer;
  color: #000;
   transition:
    color 0.3s ease,
    transform 0.3s ease,
    margin-left 0.3s ease;
}

/* efeito ao passar o mouse */
.faq-menu a:hover {
 color: #133c8e;
  transform: translateY(2px);
  margin-left: 15px;
}
 

.faq-menu a:hover::after {
  width: 75%;
}
.faq-menu .active {
  opacity: 1;
}

/* Conteúdo */
.faq-conteudo {
  text-align: left;
}

.faq-conteudo h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  margin-bottom: 30px;
  color: #0b1b2b;
}

/* Caixa branca */
.faq-caixa {
  font-family: "Poppins", sans-serif;
  background: #fff;
  border-radius: 18px;
  padding: 20px 30px;
}

/* Item FAQ */
.faq-item {
  border-bottom: 1px solid #e2e6ed;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-pergunta {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: #0b1b2b;
}

.faq-pergunta span {
  font-family: "Poppins", sans-serif;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 2px solid #2b2a2a;
  border-radius: 50%;
  font-size: 1.8rem;
  transition: 0.3s;
}

/* Resposta */
.faq-resposta {
  font-family: "Poppins", sans-serif;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  padding-right: 10px;
}

/* Ativo */
.faq-item.active .faq-resposta {
  max-height: 300px;
  margin-bottom: 15px;
}

.faq-item.active .faq-pergunta span {
  transform: rotate(180deg);
}

/* Responsivo */
@media (max-width: 900px) {
  .faq-card {
    grid-template-columns: 1fr;
  }

  .faq-menu {
    display: flex;
    gap: 20px;
  }
}

/* =========================
   SESSAO 5 - ÚLTIMAS NOTÍCIAS
========================= */

.sessao5 {
  width: 100%;
  padding: 120px 6%;
  background: #ffffff;
}

.titulo-noticias {
  font-size: 4.5rem;
  font-weight: 160;
  color: #0b1b2b;
  margin-bottom: 80px;
}

/* Grade */
.grade-noticias {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* Card */
.card-noticia {
  background: #f3f3f3;
  padding: 30px 25px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.card-noticia:hover {
  transform: translateY(-6px);
}

/* Título */
.card-noticia h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0b1b2b;
  margin-bottom: 15px;
}

/* Linha */
.linha-noticia {
  width: 60%;
  height: 1px;
  background: #cfd6df;
  margin: 0 auto 18px;
}

/* Imagem */
.imagem-noticia {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

.imagem-noticia img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* Texto */
.card-noticia p {
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Data */
.card-noticia span {
  font-size: 0.8rem;
  color: #b0b8c4;
}

/* Responsivo */
@media (max-width: 1200px) {
  .grade-noticias {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grade-noticias {
    grid-template-columns: 1fr;
  }

  .titulo-noticias {
    font-size: 3rem;
  }
}

/* FORMULÁRIO DE INSCREIÇÃO */
.sessao5 .inscrever {
  display: flex;
  flex-direction: row; /* garante lado a lado */
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  background: #efeff0;
  margin: 3.5% auto 0 auto;
  border-radius: 50px;
  gap: 20px;
}

.sessao5 .inscrever h1 {
  color: #142b6c;
  margin-bottom: 3%;
}
.sessao5 .inscrever h1 span {
  color: #000;
}

/* CONTEÚDO → ESQUERDA */
.sessao5 .inscrever .conteudo {
  flex: 1; /* ocupa mais espaço */
  width: 40%;
  padding: 10px;
}

.sessao5 .inscrever .conteudo p {
  color: #000;
  font-size: 12pt;
  font-weight: normal;
}

/* FORMULÁRIO → DIREITA */
.sessao5 .inscrever .formulario {
  display: flex;
  gap: 10px;
  width: 55%; /* tamanho fixo */
  padding: 20px;
  border-radius: 12px;
}

.sessao5 .inscrever .formulario input {
  width: 80%;
  height: auto;
  max-height: 42px;
  padding: 13px;
  padding-left: 4%;
  font-size: 15pt;
  margin-bottom: 4%;
  border: 1px solid #4a5568;
  border-radius: 30px;
}

.sessao5 .inscrever .formulario input::placeholder {
  color: #142b6c;
  font-size: 10pt;
}

.sessao5 .inscrever .formulario button {
  width: 25%;
  height: 40px;
  padding: none;
  font-size: 8pt;
  cursor: pointer;
  border-radius: 30px;
  margin-bottom: 0;
  color: #ffffff;
  background: #142b6c;
  border: none;
  text-transform: uppercase;
}

.sessao5 .inscrever .formulario button:hover {
  background: #0a1b47;
}

@media (max-width: 768px) {
  .sessao5 .inscrever {
    flex-direction: column; /* empilha os dois */
  }

  .sessao5 .inscrever .conteudo,
  .sessao5 .inscrever .formulario {
    width: 100% !important;
  }
}

.sessao6 {
  position: relative;
  width: 100%;
  height: 100vh;

  background: #162e6d; /* azul escuro */

  color: #ffffff;
  padding: 60px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;
}

/* Texto superior esquerdo */
.sessao6-topo p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 20px;
  font-size: 22pt;
  line-height: 1.4;
  max-width: 520px;
}

/* Título central */
.sessao6-centro {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sessao6-centro h1 {
  font-size: clamp(60px, 10vw, 140px);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 2px;
}

/* Navegação inferior direita */
.sessao6-nav {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  margin-bottom: -40px;
}

.sessao6-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.sessao6-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.rodape {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
  text-align: center;
  padding: 15px;
  border-top: 1px solid #ffffff5d;
  background: #142b6c;
}
