.footer {
  padding: 120px 0 0;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .footer {
    padding: 64px 0 0;
    background-size: auto 200px;
  }
}
.footer.bg {
  background-image: url("/assets/images/footer-bg.jpg");
}
.footer .logo {
  width: 192px;
  height: 90px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 991px) {
  .footer .logo {
    width: 170px;
    height: 80px;
  }
}
.footer .logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
}
@media (max-width: 991px) {
  .footer .nav {
    flex-direction: column;
    margin: 32px 0;
  }
}
.footer .nav a {
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin: 0 21px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .footer .nav a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 991px) {
  .footer .nav a {
    margin: 0;
    font-size: 14px;
  }
  .footer .nav a + a {
    margin-top: 16px;
  }
}
.footer .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .footer .buttons {
    flex-direction: column;
  }
}
.footer .buttons .button,
.footer .buttons .button-white {
  width: 240px;
  display: flex;
  margin: 0 12px;
}
@media (max-width: 991px) {
  .footer .buttons .button,
  .footer .buttons .button-white {
    margin: 12px 0;
  }
}
.footer-copy {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 64px 0 0;
}
@media (max-width: 991px) {
  .footer-copy {
    flex-direction: column;
    justify-content: center;
    margin: 32px 0 0;
  }
}
.footer-copy .content {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .footer-copy .content {
    flex-direction: column;
    justify-content: center;
  }
}
.footer-copy .logo-bndes {
  width: 107px;
  height: 22px;
  margin: 0 24px 0 0;
  display: block;
}
@media (max-width: 991px) {
  .footer-copy .logo-bndes {
    width: 98px;
    height: 20px;
  }
}
.footer-copy .logo-bndes svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer-copy .copy {
  color: var(--color-grey-3);
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  display: block;
}
@media (max-width: 991px) {
  .footer-copy .copy {
    font-size: 12px;
    margin-top: 16px;
    text-align: center;
  }
}
.footer-copy .nav-privacy {
  color: var(--color-blue);
  text-decoration-line: underline;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 991px) {
  .footer-copy .nav-privacy {
    font-size: 12px;
    margin-top: 16px;
  }
}

.acordion {
  border-radius: 8px;
  border: 2px solid var(--color-grey-1);
  padding: 32px 40px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
@media (max-width: 991px) {
  .acordion {
    padding: 22px;
  }
}
.acordion + .acordion {
  margin-top: 12px;
}
@media (max-width: 991px) {
  .acordion + .acordion {
    margin-top: 8px;
  }
}
.acordion-title {
  color: var(--color-grey-2);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 144%;
  padding: 0 32px 0 0;
}
@media (max-width: 991px) {
  .acordion-title {
    font-size: 16px;
  }
}
.acordion-description {
  color: var(--color-grey-2);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  transition: all 0.3s 0 ease;
}
@media (max-width: 991px) {
  .acordion-description {
    font-size: 14px;
  }
}
.acordion-description p + p,
.acordion-description p + ul {
  margin-top: 12px;
}
.acordion-description ul {
  padding: 0 0 0 30px;
}
.acordion-description ul + p {
  margin-top: 12px;
}
.acordion-description a {
  color: var(--color-blue);
}
.acordion .acordion-arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-bottom: 2px solid var(--color-grey-2);
  border-right: 2px solid var(--color-grey-2);
  position: absolute;
  top: 38px;
  right: 44px;
  transform: rotate(45deg);
}
@media (max-width: 991px) {
  .acordion .acordion-arrow {
    top: 28px;
    right: 28px;
  }
}
.acordion.active {
  cursor: default;
  border: 2px solid var(--color-green);
}
.acordion.active .acordion-title {
  color: var(--color-blue);
}
.acordion.active .acordion-description {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: all 0.3s 0.1s ease;
  padding: 20px 0 0;
}
.acordion.active .acordion-arrow {
  border-bottom: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  transform: rotate(-135deg);
  top: 42px;
}
@media (max-width: 991px) {
  .acordion.active .acordion-arrow {
    top: 32px;
  }
}

.solutions {
  margin: 32px 0;
}
@media (max-width: 991px) {
  .solutions {
    margin: 16px 0 0;
  }
}
.solutions .content {
  padding: 48px 0 72px;
  background: var(--color-white);
  border-radius: 24px 24px 0 0;
}
@media (max-width: 767px) {
  .solutions .content {
    padding: 24px 0 32px;
    border-radius: 12px 12px 0 0;
  }
}
@media (max-width: 767px) {
  .solutions .content .title-h4 {
    margin: 0 auto;
    width: 290px;
  }
}
.solutions .filters .filters-title {
  display: block;
  color: var(--color-grey-3);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .solutions .filters .filters-title {
    margin: 0 0 12px;
    font-size: 14px;
  }
}
.solutions .filters .filter-level1-mob {
  height: 48px;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 2px solid var(--color-white);
  position: relative;
}
.solutions .filters .filter-level1-mob:after {
  content: "";
  border-top: 8px solid var(--color-blue);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: 19px;
  right: 12px;
}
.solutions .filters .filter-level1-mob.active {
  height: auto;
  border: 2px solid var(--color-green);
}
.solutions .filters .filter-level1-mob.active .label {
  background: var(--color-grey-4);
}
.solutions .filters .filter-level1-mob.active:after {
  transform: rotate(180deg);
}
.solutions .filters .filter-level1-mob .label {
  height: 46px;
  color: var(--color-blue);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  padding: 0 44px 0 16px;
}
.solutions .filters .filter-level1-mob .option {
  height: 58px;
  padding: 0 16px 0 48px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  position: relative;
}
.solutions .filters .filter-level1-mob .option + .option {
  border-top: 1px solid var(--color-grey-1);
}
.solutions .filters .filter-level1-mob .option:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  position: absolute;
  left: 16px;
  top: 50%;
  margin-top: -10px;
  border: 1px solid #D3DAEB;
  background: var(--color-grey-4);
}
.solutions .filters .filter-level1-mob .option:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  position: absolute;
  left: 21px;
  top: 50%;
  margin-top: -5px;
  background: var(--color-blue);
  opacity: 0;
}
.solutions .filters .filter-level1-mob .option.active:before {
  border: 1px solid var(--color-blue);
}
.solutions .filters .filter-level1-mob .option.active:after {
  opacity: 1;
}
.solutions .filters .filter-level1-mob .label,
.solutions .filters .filter-level1-mob .option {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solutions .filters .filter-level1-mob .label .icon,
.solutions .filters .filter-level1-mob .option .icon {
  width: 72px;
  height: 24px;
  display: block;
}
.solutions .filters .filter-level1,
.solutions .filters .filter-level2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.solutions .filters .filter-level1 .button-filter {
  padding: 0 24px;
}
.solutions .filters .filter-level1 .button-filter .icon {
  width: 72px;
  height: 24px;
}
.solutions .filters .filter-level2 .button-filter {
  padding: 0 24px 0 12px;
}
@media (max-width: 767px) {
  .solutions .filters .filter-level2 .button-filter {
    padding: 0 24px 0 6px;
    width: 100%;
    justify-content: flex-start;
  }
}
.solutions .filters .filter-level2 .button-filter .icon {
  width: 36px;
  height: 36px;
}
@media (max-width: 767px) {
  .solutions .filters .filter-level2 .button-filter .icon {
    width: 32px;
    height: 32px;
  }
}
.solutions .filters .button-filter {
  height: 60px;
  border-radius: 30px;
  background: var(--color-white);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--color-grey-2);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin: 8px 6px;
  border: 0;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
}
@media (max-width: 1199px) {
  .solutions .filters .button-filter {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .solutions .filters .button-filter {
    height: 44px;
    margin: 3px 0;
  }
}
.solutions .filters .button-filter .icon {
  display: block;
  flex-shrink: 0;
  margin: 0 16px 0 0;
}
@media (max-width: 767px) {
  .solutions .filters .button-filter .icon {
    margin: 0 12px 0 0;
  }
}
@media (min-width: 992px) {
  .solutions .filters .button-filter {
    transition: all 0.3s ease;
  }
  .solutions .filters .button-filter:hover {
    background: rgba(18, 72, 198, 0.16);
  }
}
.solutions .filters .button-filter.active {
  background: rgba(115, 251, 68, 0.16);
  border: 2px solid var(--color-green-1);
}
.solutions .filters .filter-level2-box {
  display: none;
}
.solutions .filters .filter-level2-box.active {
  margin-top: 48px;
  display: block;
}
@media (max-width: 767px) {
  .solutions .filters .filter-level2-box.active {
    margin-top: 24px;
  }
}
.solutions .content-list {
  border-radius: 24px;
  background: var(--color-grey-4);
  margin: -24px 0 0;
  padding: 64px 100px 40px 100px;
}
@media (max-width: 991px) {
  .solutions .content-list {
    padding: 64px;
  }
}
@media (max-width: 767px) {
  .solutions .content-list {
    padding: 32px 24px;
    margin: -12px 0 0;
    border-radius: 12px;
  }
}
@media (max-width: 575px) {
  .solutions .content-list {
    padding: 32px 12px;
  }
}
.solutions .solutions-count {
  color: var(--color-grey-3);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  display: block;
  text-align: center;
  margin: 64px 0 0;
}
@media (max-width: 767px) {
  .solutions .solutions-count {
    margin-top: 24px;
  }
}
.solutions .solution {
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 2px 2px 12px 0px rgba(8, 28, 73, 0.08);
  display: flex;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .solutions .solution {
    margin-top: 12px;
  }
}
.solutions .solution.hidden, .solutions .solution.hiddenpage {
  display: none;
}
.solutions .solution .image {
  width: 280px;
  height: auto;
  border-radius: 16px;
  background-color: var(--color-grey);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .solutions .solution .image {
    width: 240px;
  }
}
@media (max-width: 991px) {
  .solutions .solution .image {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .solutions .solution .image {
    width: 86px;
  }
}
.solutions .solution .text {
  padding: 40px 60px 40px 40px;
  width: 100%;
  position: relative;
}
@media (max-width: 1399px) {
  .solutions .solution .text {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .solutions .solution .text {
    padding: 20px;
  }
}
.solutions .solution .text .icon-category {
  display: block;
  height: 56px;
  width: 56px;
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
}
@media (max-width: 767px) {
  .solutions .solution .text .icon-category {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
    border: 1px solid var(--color-white);
  }
}
.solutions .solution .text .icon-category + .icon-category {
  right: 72px;
}
@media (max-width: 767px) {
  .solutions .solution .text .icon-category + .icon-category {
    right: 35px;
  }
}
.solutions .solution .text .icon-category + .icon-category + .icon-category {
  right: 120px;
}
@media (max-width: 767px) {
  .solutions .solution .text .icon-category + .icon-category + .icon-category {
    right: 62px;
  }
}
.solutions .solution .text .category {
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  margin: 0 140px 20px 0;
  display: block;
}
@media (max-width: 991px) {
  .solutions .solution .text .category {
    margin: 0 0 12px;
  }
}
@media (max-width: 767px) {
  .solutions .solution .text .category {
    font-size: 10px;
    margin-right: 60px;
  }
}
.solutions .solution .text .category span {
  color: var(--color-grey);
  font-weight: 700;
}
.solutions .solution .text .title {
  color: var(--color-grey-2);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0 120px 20px 0;
}
@media (max-width: 767px) {
  .solutions .solution .text .title {
    font-size: 16px;
    margin: 0 0 12px;
  }
}
.solutions .solution .text p {
  color: var(--color-grey-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
@media (max-width: 1199px) {
  .solutions .solution .text p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .solutions .solution .text p {
    font-size: 12px;
  }
  .solutions .solution .text p.desc {
    overflow: hidden;
    height: 40px;
    position: relative;
  }
  .solutions .solution .text p.desc:after {
    content: "+ Ler mais";
    height: 20px;
    width: 100px;
    bottom: 0;
    right: 0;
    display: block;
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 46%, rgb(255, 255, 255) 100%);
    color: var(--color-blue);
    font-size: 11px;
    font-weight: 500;
    line-height: 20px;
    text-align: right;
  }
  .solutions .solution .text p.more {
    height: auto;
  }
  .solutions .solution .text p.more:after {
    display: none;
  }
}
.solutions .solution .text p + p {
  margin-top: 12px;
}
.solutions .solution .text .button-white {
  margin-top: 32px;
}
@media (max-width: 1399px) {
  .solutions .solution .text .button-white {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .solutions .solution .text .button-white {
    margin-top: 6px;
  }
}
@media (min-width: 992px) {
  .solutions .solution .text .button-white:hover {
    border: 2px solid var(--color-white) !important;
  }
}
.solutions .pagination {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.solutions .pagination .page-button {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
  margin: 0 5px;
  flex-shrink: 0;
  color: var(--color-blue);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 144%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.solutions .pagination .page-button.active {
  border: 2px solid var(--color-green);
  background: rgba(115, 251, 68, 0.16);
}
@media (min-width: 992px) {
  .solutions .pagination .page-button:hover:not(.prev):not(.next):not(.active) {
    background: rgba(18, 72, 198, 0.16);
  }
}
.solutions .pagination .page-button:disabled {
  opacity: 0.4;
  cursor: default;
}
.solutions .pagination .page-button.prev, .solutions .pagination .page-button.next {
  box-shadow: none;
  background: transparent;
  font-size: 0;
  color: transparent;
  position: relative;
}
.solutions .pagination .page-button.prev:before, .solutions .pagination .page-button.next:before {
  content: "";
  height: 10px;
  width: 10px;
  display: block;
  position: absolute;
}
.solutions .pagination .page-button.prev:before {
  border-bottom: 2px solid var(--color-blue);
  border-left: 2px solid var(--color-blue);
  transform: rotate(45deg);
  top: 14px;
  left: 16px;
}
.solutions .pagination .page-button.next:before {
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  transform: rotate(45deg);
  top: 14px;
  left: 13px;
}

.faq {
  margin: 32px 0 0;
}
@media (max-width: 991px) {
  .faq {
    margin: 16px 0 0;
  }
}
.faq .content {
  background: var(--color-white);
  padding: 64px 100px;
  border-radius: 24px;
}
@media (max-width: 991px) {
  .faq .content {
    border-radius: 12px;
    padding: 32px 16px;
  }
}
.faq .title-h4 {
  margin: 0 0 48px;
}
@media (max-width: 991px) {
  .faq .title-h4 {
    margin: 0 0 24px;
  }
}
.faq .button {
  margin: 46px auto 0;
  width: 260px;
  display: flex;
}
@media (max-width: 991px) {
  .faq .button {
    margin: 24px auto 0;
  }
}

.solutions,
.faq,
.footer {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=style-home.css.map */
