.page {
  font-family: 'Roboto', sans-serif;
}

.page .uk-heading-medium {
  font-size: 1.5rem !important;
  font-weight: 500 !important;
  color: #111111 !important;

  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin: 0 0 2rem 0 !important;
}

.page .uk-heading-medium span:nth-child(2) {
  font-size: 1.1rem !important;
  color: #0b83c7 !important;
  text-align: right !important;
}

.page .uk-dotnav>.uk-active>* {
  background-color: #0b83c7;
  border: 1px solid #0b83c7;
}

.page .uk-dotnav>*>* {
  background-color: #d6d6d6;
  border: 1px solid #d6d6d6;
}

.page .animation {
  margin-top: -2rem;
}

.page .lines {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e6e6e6;
}

.page .lines .content {
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.page .lines .content .uk-flex {
  gap: 1rem;
}

.page .lines .content .uk-slider {
  display: none !important;
}

.page .lines .content .item {
  display: flex;
  justify-content: center;

  border-right: 1px solid #e6e6e6;
}

.page .lines .content .item:last-child {
  border: none;
}

.page .lines .content .item-base {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.page .lines .content .item-base h2 {
  font-size: 1.1rem;
  line-height: 1.4rem;
  font-weight: 300;
  color: #3d405b;

  margin: 0;
}

.page .list-product {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.page .list-product .content {
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;

  display: flex;
  flex-direction: column;
}

.page .list-product .content .uk-heading-medium {
  font-size: 2.5rem !important;
  text-align: center !important;
  font-weight: 300 !important;
  color: #3D405B !important;
  justify-content: center !important;
}

.page .list-product .content .category {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 0.8rem;
  padding: 0;
  margin-bottom: 3rem;
}

.page .list-product .content .category li {
  list-style: none;
}

.page .list-product .content .category li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3D405B;

  padding: 1rem 0.6rem;

  text-transform: uppercase;
}

.page .list-product .content .category li a.active {
  border: 2px solid #F16B30;
  border-radius: 6px;
}

.page .list-product .content .category-mobile {
  display: none;
}

.page .consulting {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.page .consulting .content {
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.page .consulting .content .banner {
  background-image: url(../imagens/index/bg-consultoria.png);

  background-repeat: no-repeat;
  background-size: 100%;

  height: 100vh;
  max-height: 364px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 4rem;
}

.page .consulting .content .banner .title-consulting {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 400;
  color: #ffffff;

  margin: 0;
  margin-bottom: 3rem;
}

.page .consulting .content .banner .title-consulting strong {
  font-weight: 700;
}

.page .consulting .content .banner .btn-consulting {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 400;
  color: #ffffff;

  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #ffffff;
  border-radius: 8px;

  max-width: 255px;
}

.page .consulting .content .banner .btn-consulting:hover {
  background-color: #F16F36;
  border: 1px solid #F16F36;
}


@media screen and (max-width: 960px) {
  .page .uk-heading-medium {
    flex-direction: column !important;
    align-items: normal !important;
    gap: 0.5rem !important;
  }

  .page .uk-heading-medium span:nth-child(2) {
    text-align: left !important;
  }

  .page .lines {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .page .lines .content {
    display: flex;
    justify-content: center;
  }

  .page .lines .content .uk-flex {
    display: none;
  }

  .page .lines .content .uk-slider {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
  }

  .page .list-product .content .uk-heading-medium {
    font-size: 2rem !important;
  }

  .page .list-product .content .category {
    display: none;
  }

  .page .list-product .content .category-mobile {
    display: flex;

    margin-bottom: 1rem;
  }

  .page .consulting .content .banner {
    background: url('../imagens/index/bg-consultoria-mobile.png') bottom right no-repeat, linear-gradient(to right, #254065, #192C45);
    max-height: 482px;

    padding: 3.5rem 1.5rem 2rem 1.5rem;
    justify-content: start;

    border-radius: 8px;
  }

  .page .consulting .content .banner .title-consulting {
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-align: center;

    margin: 0;
    margin-bottom: 3rem;
  }

  .page .consulting .content .banner .btn-consulting {
    border: 2px solid #ffffff;
    max-width: 100%;
  }
}