/*  v10 */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b1420;
  color: #fff;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* HEADER */
header {
  background: #0f1b2b;
  padding: 16px 24px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.header-inner img {
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  height: 50px;
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(8,15,25,0.75), rgba(8,15,25,0.75)),
    url("../assets/bg-classroom.png") center/cover no-repeat;
  text-align: center;
  padding: 140px 24px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  opacity: 0.85;
  margin-bottom: 30px;
}

.hero-badges {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.75;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.hero-benefits li {
  margin-bottom: 8px;
  font-size: 16px;
}

.hero ul {
  margin-bottom: 22px; /* antes estava grande */
}
.hero .bullets {
  margin-bottom: 20px;
}

.highlight {
  color: #ffd54f;
  font-weight: 700;
}

/* BOTÕES */
.cta-primary {
  display: inline-block;
  background: #69c16f;
  color: #000;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.cta-secondary {
  display: block;
  margin-top: 18px;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}


.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 18px 28px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
}

.btn-text {
  white-space: nowrap;
}

.arrow {
  font-size: 18px;
  line-height: 1;
}

.cta-pre-text {
  font-size: 18px;
  margin-bottom: 14px;
  color: #ffffff;
  opacity: 0.9;
}

/* SEÇÕES */
.section-dark {
  background: #0b1420;
}

.section-darker {
  background: #0e1a28;
}

.section-highlight {
  margin-top: 40px;
  font-weight: 600;
}

.section-subtext {
  margin-top: 20px;
  opacity: 0.85;
}

.section-text {
  margin-top: 20px;
  opacity: 0.85;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: #152233;
  padding: 24px;
  border-radius: 14px;
}

/* HIGHLIGHT */
.highlight-box {
  background: #1c2a3c;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin-top: 40px;
  font-size: 22px;
}

/* LISTA CURSO */
.course-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-list-item {
  background: #152233;
  padding: 22px;
  border-radius: 12px;
}

/* PROFESSOR */
.professor-section {
  display: flex;
  align-items: center;
  gap: 60px;
}

.professor-image img {
  max-width: 380px;
}

/* INVESTIMENTO */
.investment {
  text-align: center;
}

.investment-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CTA FINAL */
.cta-final {
  text-align: center;
}

.cta-note {
  margin-top: 20px;
  opacity: 0.7;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 60px 24px;
  font-size: 14px;
  opacity: 0.7;
  background: #0a121d;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 30px;
  }

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

  .professor-section {
    flex-direction: column;
    text-align: center;
  }

  .professor-image img {
    max-width: 280px;
  }

  .cta-pre-text {
    font-size: 16px;
    margin-bottom: 12px;
  }

}
