*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f7f8fa;
  color:#111827;
}

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* NAVBAR */

.navbar{
  background-color: #02142f;
  width:100%;
  z-index:999;
  padding:25px 0;
}

.nav-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  color:#fff;
  font-size:1.8rem;
  font-weight:800;
}

.logo span{
  color:#7ED957;
}

.logo i{
  margin-right:10px;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:35px;
}

.nav-links a{
  text-decoration:none;
  color:#fff;
  font-weight:500;
  transition:.3s;
}

.nav-links a:hover{
  color:#7ED957;
}

.btn-nav{
  background:#7ED957;
  color:#fff;
  padding:14px 24px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

/* HERO */

.hero{
  position: relative;
  height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
linear-gradient(
  to right,
  rgba(1,17,40,.97) 12%,
  rgba(1,17,40,.94) 30%,
  rgba(1,17,40,.78) 48%,
  rgba(1,17,40,.42) 62%,
  rgba(1,17,40,.08) 78%,
  rgba(1,17,40,0) 100%
),
    url('img/hero-extend\(2\).jpg');

  background-size: cover;
  background-position: 65% center;
  background-repeat: no-repeat;
}

.hero-content{
  position: relative;
  z-index: 2;
}

.hero-text{
  max-width: 620px;
  color: #fff;
}

/* MINI TEXTO */

.hero-mini{
  color: #7ED957;

  font-weight: 700;
  letter-spacing: 3px;

  font-size: .95rem;
}

/* TITULO */

.hero h1{
  font-size: 5.3rem;
  line-height: .95;

  margin: 20px 0 30px;

  font-weight: 800;
}

.hero h1 span{
  color: #7ED957;
}

/* PARÁGRAFO */

.hero p{
  font-size: 1.2rem;
  line-height: 1.8;

  max-width: 540px;

  margin-bottom: 40px;

  color: rgba(255,255,255,.92);
}

/* BOTÃO */

.btn-hero{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: #7ED957;
  color: #fff;

  padding: 18px 32px;

  border-radius: 12px;

  text-decoration: none;
  font-weight: 700;

  transition: .3s;
}

.btn-hero:hover{
  transform: translateY(-3px);
}

/* RESPONSIVO */

@media(max-width: 991px){

  .hero{
    height: auto;

    padding: 140px 0 100px;

    background:
      linear-gradient(
        to bottom,
        rgba(1,17,40,.92),
        rgba(1,17,40,.88)
      ),
      url('img/hero-estudante.png');

    background-size: cover;
    background-position: 72% center;
  }

  .hero-text{
    max-width: 100%;
  }

  .hero h1{
    font-size: 4rem;
  }
}

@media(max-width: 768px){

  .hero{
    text-align: left;

    padding: 120px 0 90px;

    background:
      linear-gradient(
        to bottom,
        rgba(1,17,40,.94),
        rgba(1,17,40,.90)
      ),
      url('img/hero-estudante.png');

    background-size: cover;
    background-position: 68% center;
  }

  .hero h1{
    font-size: 3rem;
    line-height: 1;
  }

  .hero p{
    font-size: 1rem;
    line-height: 1.7;
  }

  .btn-hero{
    width: 100%;
    justify-content: center;
  }
}

/* SECTION */

.section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#69bf43;
  font-weight:700;
  letter-spacing:1px;
}

.section-title h2{
  font-size:3rem;
  margin:15px 0;
}

.section-title p{
  color:#6b7280;
}

/* CURSOS */

.courses-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:30px;
  align-items: stretch;
}

.course-card{
  position:relative;

  background:
  linear-gradient(
    145deg,
    #ffffff,
    #f7f9fc
  );

  border-radius:28px;

  padding:38px;

  overflow:hidden;

  border:1px solid rgba(255,255,255,.5);

  transition:.35s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,.05);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card::before{
  content:"";

  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:6px;

  background:
  linear-gradient(
    90deg,
    #69bf43,
    #3bb2ff
  );
}

.course-card:hover{
  transform:
  translateY(-12px);

  box-shadow:
  0 25px 55px rgba(0,0,0,.12);
}

.card-icon{
  width:90px;
  height:90px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:2.2rem;

  margin-bottom:25px;

  background:
  linear-gradient(
    135deg,
    #071f63,
    #12338a
  );

  color:#fff;

  box-shadow:
  0 15px 30px rgba(18,51,138,.20);
}

.course-card h3{
  font-size:1.9rem;

  margin-bottom:28px;

  color:#071f63;

  font-weight:800;

  line-height:1.2;
}

.course-card ul{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  list-style:none;
  flex-grow: 1;
}

.course-card li{
  display:flex;
  align-items:center;
  list-style: none;
  gap:10px;
  padding: 12px 14px;
  margin-bottom: 0; 
  
  border-radius:14px;
  background:
  linear-gradient(
    145deg,
    rgba(105,191,67,.08),
    rgba(59,178,255,.04)
  );

  line-height:1.4;

  color:#44506a;

  font-weight:600;
  font-size: 0.9rem;
  transition:.3s ease;
}

.course-card li::before{
  content:"✓";

  min-width:28px;
  height:28px;

  border-radius:50%;

  background:
  linear-gradient(
    135deg,
    #69bf43,
    #58b7ff
  );

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:.85rem;
  font-weight:700;

  margin-top:1px;

  box-shadow:
  0 6px 14px rgba(105,191,67,.22);
}

.course-card li:hover{
  transform:translateX(6px);

  background:
  linear-gradient(
    145deg,
    rgba(105,191,67,.14),
    rgba(59,178,255,.08)
  );
}

.course-card ul {
  list-style: none;
  display: grid;
  /* Cria duas colunas iguais */
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px 15px; /* Espaçamento entre (linha, coluna) */
  margin-top: 10px;
}
/* DIFERENCIAIS */

.diferenciais-box{
  background:#fff;
  border-radius:30px;
  padding:60px;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;

  border:1px solid #e5e7eb;
}

.diferenciais-left span{
  color:#69bf43;
  font-weight:700;
}

.diferenciais-left h2{
  font-size:3rem;
  line-height:1.1;
  margin:20px 0;
}

.diferenciais-left p{
  line-height:1.8;
  color:#6b7280;
  margin-bottom:30px;
}

.btn-secondary{
  display:inline-block;
  background:#69bf43;
  color:#fff;
  padding:15px 25px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

.feature{
  display:flex;
  gap:20px;
  margin-bottom:35px;
}

.feature i{
  width:70px;
  height:70px;

  min-width:70px;

  border-radius:50%;
  border:2px solid #69bf43;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#69bf43;
  font-size:1.5rem;
}

.feature h3{
  margin-bottom:10px;
}

.feature p{
  color:#6b7280;
  line-height:1.7;
}

/* CTA */

.cta{
  padding-bottom:100px;
}

.cta-box{
  background:
  linear-gradient(
    90deg,
    #02142f,
    #032b5a
  );

  color:#fff;

  border-radius:30px;
  padding:50px;

  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:40px;
  align-items:center;
}

.cta-left{
  display:flex;
  align-items:center;
  gap:25px;
}

.cta-icon{

  border-radius:20px;
  background:rgba(255,255,255,.08);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:2rem;
}

.cta h2{
  font-size:2.2rem;
}

.cta h2 span{
  color:#7ED957;
}

.btn-cta{
  background:#7ED957;
  color:#fff;
  text-decoration:none;

  padding:18px 28px;
  border-radius:12px;

  font-weight:700;
}

/* FOOTER */

footer{
  background:#02142f;
  color:#fff;
  padding:80px 0 40px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:50px;
}

.footer-logo{
  margin-bottom:20px;
}

footer p{
  line-height:1.7;
  color:#d1d5db;
}

footer h3{
  margin-bottom:20px;
}

footer ul{
  list-style:none;
}

footer li{
  margin-bottom:12px;
}

footer a{
  text-decoration:none;
  color:#d1d5db;
}

/* RESPONSIVO */

@media(max-width:991px){

  .nav-links{
    display:none;
  }

  .hero h1{
    font-size:3.5rem;
  }

  .courses-grid{
    grid-template-columns:1fr 1fr;
  }

  .diferenciais-box{
    grid-template-columns:1fr;
  }

  .cta-box{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .hero{
    height:auto;
    padding:180px 0 120px;
  }

  .hero h1{
    font-size:2.8rem;
  }

  .hero p{
    font-size:1rem;
  }

  .courses-grid{
    display: grid;
    grid-template-columns:1fr;
    gap: 30px  ;
    align-items: stretch;
  }

  .course-card{
    padding:30px;
  }

  .section{
    padding:70px 0;
  }

  .section-title h2{
    font-size:2.2rem;
  }

  .diferenciais-box{
    padding:35px;
  }

  .diferenciais-left h2{
    font-size:2.2rem;
  }

  .feature{
    flex-direction:column;
  }

  .cta-box{
    padding:35px;
  }

  .cta h2{
    font-size:1.8rem;
  }

  .graduacao-banner{
    padding:30px 15px;
  }

  .graduacao-banner img{
    border-radius:18px;
  }

}

.graduacao-banner{
  background:#f5f5f5;
  padding:60px 0;
}

.graduacao-banner .container{
  max-width:1400px;
}

.graduacao-banner img{
  width:100%;
  display:block;

  border-radius:28px;

  box-shadow:
  0 20px 50px rgba(0,0,0,0.10);

  object-fit:cover;
}

/* ========================= */
/* NOVAS SECTIONS */
/* ========================= */

.section-tag{
  display:inline-block;

  color:#69bf43;

  font-weight:700;

  letter-spacing:2px;

  margin-bottom:18px;
}

.section-tag.light{
  color:#7ED957;
}

.section-center{
  text-align:center;
  margin-bottom:70px;
}

/* APROVEITAMENTO */

.aproveitamento{
  background:
  linear-gradient(
    to bottom,
    #f7f9fc,
    #eef3f9
  );
}

.aproveitamento-grid{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:60px;
  align-items:center;
}

.aproveitamento h2{
  font-size:3rem;
  line-height:1.1;
  margin-bottom:25px;
}

.aproveitamento h2 span{
  color:#69bf43;
}

.aproveitamento p{
  font-size:1.1rem;
  line-height:1.8;
  color:#5f6b84;
  margin-bottom:20px;
}

.aproveitamento-box{
  background:#fff;

  padding:40px;

  border-radius:28px;

  box-shadow:
  0 20px 50px rgba(0,0,0,.06);
}

.aproveitamento-box h3{
  margin-bottom:25px;
  color:#071f63;
}

.aproveitamento-box ul{
  list-style:none;
}

.aproveitamento-box li{
  margin-bottom:18px;

  padding:14px 18px;

  border-radius:14px;

  background:#f7f9fc;

  font-weight:600;
}

/* ONLINE */

.estudos-online{
  background:#071f63;
  color:#fff;
}

.online-header{
  text-align:center;
  margin-bottom:70px;
}

.online-header h2{
  font-size:3rem;
}

.online-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.online-card{
  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03)
  );

  padding:40px;

  border-radius:28px;

  backdrop-filter:blur(10px);

  transition:.3s;
}

.online-card:hover{
  transform:translateY(-10px);
}

.online-card i{
  font-size:2.5rem;

  color:#7ED957;

  margin-bottom:25px;
}

.online-card h3{
  margin-bottom:20px;
}

.online-card p{
  line-height:1.7;
  color:#d6dcec;
}

/* PARA QUEM */

.indicacoes-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.indicacao-item{
  background:#fff;

  border-radius:20px;

  padding:25px;

  display:flex;
  align-items:center;
  gap:15px;

  font-weight:600;

  box-shadow:
  0 10px 30px rgba(0,0,0,.05);
}

.indicacao-item i{
  color:#69bf43;
}

/* TIMELINE */

.timeline{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
}

.timeline-item{
  text-align:center;
}

.timeline-item span{
  width:80px;
  height:80px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  margin:auto auto 25px;

  background:
  linear-gradient(
    135deg,
    #071f63,
    #12338a
  );

  color:#fff;

  font-size:1.5rem;
  font-weight:700;
}

.timeline-item h3{
  font-size:1rem;
  line-height:1.5;
}

/* DOCUMENTOS */

.docs-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.doc-card{
  background:#fff;

  padding:30px;

  border-radius:20px;

  text-align:center;

  font-weight:600;

  box-shadow:
  0 10px 25px rgba(0,0,0,.05);
}

/* IMPORTANTE */

.importante{
  padding-top:20px;
}

.important-box{
  background:
  linear-gradient(
    145deg,
    #fff8e7,
    #fff2cc
  );

  border-left:6px solid #ffb800;

  padding:35px;

  border-radius:24px;

  display:flex;
  gap:25px;
  align-items:flex-start;
}

.important-box i{
  font-size:2rem;
  color:#ffb800;
}

.important-box h3{
  margin-bottom:10px;
}

/* RESPONSIVO */

@media(max-width:768px){

  .aproveitamento-grid,
  .online-grid,
  .indicacoes-grid,
  .timeline,
  .docs-grid{
    grid-template-columns:1fr;
  }

  .aproveitamento h2,
  .online-header h2{
    font-size:2.2rem;
  }

  .timeline{
    gap:50px;
  }

}