/* ===== Variables ===== */
:root {
  --color-bg: #111111;
  --color-bg-dark: #000000;
  --color-surface: #0C0C0C;
  --color-text: #FFFFFF;
  --color-text-muted: #DFDFDF;
  --color-text-subtle: #BEBEBE;
  --color-text-dark: #000000;
  --color-accent: #6E4297;
  --color-accent-green: #61CE70;
  --color-check: #9B9B9B;
  --font-primary: 'Sora', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --container-max: 1140px;
}

/* ===== Base ===== */
body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* ===== Sections (common) ===== */
.section {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.section--border-bottom {
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, transparent, #ffffff, transparent) 1;
}

.section--border-top {
  border-top: 2px solid;
  border-image: linear-gradient(to right, transparent, #ffffff, transparent) 1;
}

/* ===== Section 1: Hero ===== */
.section-hero {
  background-image: url('../assets/img/hero-desktop.webp');
  background-color: var(--color-bg);
  padding: 100px 0;
}

.section-hero .container {
  display: flex;
  flex-direction: column;
}

.hero-logo {
  width: 40%;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 600;
  line-height: 47px;
  color: var(--color-text);
  max-width: 49%;
  margin-top: 20px;
}

.hero-description {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  max-width: 41%;
  margin-top: 20px;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FFFCFC;
  padding: 2px 15px;
  border-radius: 2px;
  margin-top: 20px;
  width: 40%;
  box-sizing: border-box;
}

.hero-date svg {
  width: 22px;
  height: 22px;
  fill: var(--color-text-dark);
  flex-shrink: 0;
}

.hero-date span {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-dark);
}

.hero-cta-text {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text);
  max-width: 41%;
  margin-top: 20px;
}

.hero-content-form {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.hero-left {
  flex: 1;
  max-width: 53%;
}

.hero-right {
  width: 47%;
}

/* ===== Section 2: O que vai aprender ===== */
.section-learn {
  background-image: url('../assets/img/learn-desktop.webp');
  padding: 150px 0 250px;
}

.section-learn .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.learn-title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  max-width: 41%;
  margin-right: 60px;
}

.learn-list {
  max-width: 40%;
  margin-top: 15px;
}

/* ===== Section 3: Para quem é ===== */
.section-audience {
  background-image: url('../assets/img/audience-desktop.webp');
  background-color: var(--color-bg-dark);
  padding: 100px 0 96px;
}

.section-audience .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.audience-title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  color: var(--color-text);
  max-width: 44%;
}

.audience-title strong {
  font-weight: 700;
}

.audience-list {
  max-width: 40%;
  margin-top: 15px;
}

.audience-cta-text {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #FFF6F6;
  max-width: 40%;
  margin-top: 30px;
}

.audience-cta-text span {
  font-weight: 400;
}

/* ===== Section 4: Mentora ===== */
.section-mentor {
  background-image: url('../assets/img/mentor-desktop.webp');
  padding: 120px 0;
}

.section-mentor .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mentor-title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 600;
  line-height: 46px;
  color: var(--color-text);
  max-width: 40%;
  margin-bottom: 20px;
}

.mentor-bio {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  max-width: 40%;
}

.mentor-bio p + p {
  margin-top: 16px;
}

.mentor-bio strong {
  font-weight: 700;
}

.mentor-cta-text {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #FFF6F6;
  max-width: 40%;
  margin-top: 20px;
}

/* ===== Check Lists ===== */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-text-muted);
}

.check-list li svg {
  width: 17px;
  height: 17px;
  fill: var(--color-check);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ===== CTA Buttons ===== */
.btn-cta {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
  padding: 20px 20px;
  border-radius: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.8s;
  background-image: linear-gradient(45deg, #B1B1B1, #FFFFFF, #FFFFFF, #B1B1B1);
  background-size: 400% 200%;
  animation: botaoanimado 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite;
  margin-top: 10px;
}

.btn-cta--large {
  font-size: 17px;
  font-weight: 600;
  padding: 25px 50px;
  margin-top: 10px;
}

/* ===== Responsive: Tablet ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-date {
    width: 50%;
  }

  .hero-cta-text {
    max-width: 50%;
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  /* Hero */
  .section-hero {
    background-image: url('../assets/img/hero-mobile.webp');
    padding: 80px 0;
  }

  .hero-logo {
    width: 100%;
    align-self: center;
    margin-top: 250px;
  }

  .hero-title {
    max-width: 100%;
    font-size: 24px;
    line-height: 1.4em;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
    font-size: 15px;
    text-align: center;
  }

  .hero-date {
    width: 100%;
    margin: 15px auto 0;
    padding: 2px 15px;
    justify-content: center;
  }

  .hero-date span {
    font-size: 17px;
  }

  .hero-cta-text {
    max-width: 100%;
    text-align: center;
    padding: 0 30px;
  }

  .hero-content-form {
    flex-direction: column;
    gap: 20px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
  }

  /* Learn */
  .section-learn {
    background-image: url('../assets/img/learn-mobile.webp');
    background-size: cover;
    padding: 80px 0;
  }

  .learn-title {
    max-width: 100%;
    font-size: 24px;
    text-align: center;
    margin-right: 0;
    margin-top: 300px;
  }

  .learn-list {
    max-width: 100%;
  }

  .section-learn .container {
    align-items: center;
  }

  /* Audience */
  .section-audience {
    background-image: url('../assets/img/audience-mobile.webp');
    background-size: cover;
    padding: 80px 0;
  }

  .audience-title {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.5em;
    text-align: center;
    margin-top: 300px;
  }

  .audience-list {
    max-width: 100%;
  }

  .audience-cta-text {
    max-width: 100%;
    text-align: center;
  }

  .section-audience .container {
    align-items: center;
  }

  .section-audience .btn-cta {
    align-self: center;
  }

  /* Mentor */
  .section-mentor {
    background-image: url('../assets/img/mentor-mobile.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
  }

  .mentor-title {
    max-width: 100%;
    font-size: 24px;
    text-align: center;
    margin-top: 300px;
  }

  .mentor-bio {
    max-width: 100%;
    text-align: center;
  }

  .mentor-cta-text {
    max-width: 100%;
    text-align: center;
  }

  .section-mentor .container {
    align-items: center;
  }

  .section-mentor .btn-cta--large {
    align-self: center;
  }
}
