/* ============================================
   TOP 10 - TruScale Conheça TruScale
   Seção: TOP 10
   ============================================ */

#truscale-lp #section-top10 {
  padding: 80px 0;
  background: linear-gradient(
    165.66deg,
    rgba(184, 37, 46, 1) 25.67%,
    rgba(77, 20, 74, 1) 72.22%,
    rgba(17, 24, 79, 1) 173.66%
  );
  position: relative;
  text-align: center;
}

#truscale-lp #section-top10 .top10-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

#truscale-lp #section-top10 .top10-icon {
  width: 79px;
  height: 79px;
  flex-shrink: 0;
}

#truscale-lp #section-top10 .top10-number {
  font-family: var(--font-gotham-bold);
  font-size: 80px;
  line-height: 1.1;
  color: var(--color-top10-text);
  margin: 0;
  min-width: 300px;
  text-align: left;
}

#truscale-lp #section-top10 .top10-text {
  font-family: var(--font-gotham-book);
  font-size: 16px;
  line-height: 1.375;
  color: var(--color-white);
  text-align: left;
  max-width: 448px;
}

#truscale-lp #section-top10 .source-note {
  font-family: var(--font-gotham-book);
  font-size: 10px;
  line-height: 1.6;
  color: var(--color-white);
  text-align: right;
  max-width: 336px;
  margin-left: auto;
  margin-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  #truscale-lp #section-top10 {
    padding: 60px 20px;
  }

  #truscale-lp #section-top10 .top10-content {
    flex-direction: column;
    gap: 20px;
  }

  #truscale-lp #section-top10 .top10-number {
    font-size: 60px;
    min-width: auto;
    text-align: center;
  }

  #truscale-lp #section-top10 .top10-text {
    text-align: center;
  }

  #truscale-lp #section-top10 .source-note {
    text-align: left;
    margin-left: 0;
  }
}

