/* =============================================
   SECTION - O QUE ESTÁ EM JOGO
   ============================================= */

.em-jogo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0;
  background: var(--surface-light-hover);
}

.em-jogo__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  max-width: 1320px;
  width: 100%;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.em-jogo__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.em-jogo__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ---------- Cards ---------- */
.em-jogo__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.em-jogo__row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}

.em-jogo__card {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 64px;
  background: var(--base-white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
}

.em-jogo__card--full {
  flex-basis: 100%;
}

/* Card label (icon + text) */
.em-jogo__card-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.em-jogo__card-label i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 18px;
  color: var(--surface-darker);
}

.em-jogo__card-label span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  color: var(--surface-darker);
}

.em-jogo__card-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  color: var(--secondary-dark);
}

.em-jogo__card-body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  color: var(--primary-darker);
}

.em-jogo__summary {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 44.8px;
  letter-spacing: 1.6px;
  color: var(--surface-darker);
  text-align: center;
}

/* ---------- Conta do Milhão ---------- */

/* ---------- CTA ---------- */
.em-jogo__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.em-jogo__helper {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.21em;
  color: var(--surface-dark);
  text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .em-jogo__container {
    max-width: 1140px;
  }
}

@media (max-width: 834px) {
  .em-jogo__container {
    max-width: 720px;
  }

  .em-jogo__title {
    font-size: 36px;
  }

  .em-jogo__row {
    flex-direction: column;
  }

  .em-jogo__card {
    padding: 32px;
  }

  .em-jogo__card-title {
    font-size: 24px;
  }

  .em-jogo__summary {
    font-size: 24px;
  }

}

@media (max-width: 576px) {
  .em-jogo__container {
    max-width: 350px;
  }

  .em-jogo__title {
    font-size: 28px;
  }

  .em-jogo__card {
    padding: 24px;
    border-radius: 20px;
  }

  .em-jogo__card-title {
    font-size: 20px;
  }

  .em-jogo__card-body {
    font-size: 18px;
  }

  .em-jogo__summary {
    font-size: 20px;
  }

}
