:root {
  --sapphire: #3257a5;
  --vistaBlue: #7391d4;
  --delftBlue: #1d315e;
  --white: #fff;
  --platinum: #eaeaea;
  --silver: #b2b2b2;
  --battleship: #898989;
  --eerie: #222222;
  --jonquil: #f3cc1d;
  --goldenRoad: #ae9009;
  --flax: #f9e58b;
  --vermilion: #e74c3c;
  --amber: #fbbe28;
  --emerald: #00cc77;
  --sm10: 0.625rem;
  --sm12: 0.75rem;
  --sub24: 1.5rem;
  --sub32: 2rem;
  --sub40: 2.5rem;
  --sub48: 3rem;
  --sub56: 3.5rem;
  --caption16: 1rem;
  --caption18: 1.125rem;
  --body16: 1rem;
  --body18: 1.125rem;
  --button18: 1.125rem;
  --button16: 1rem;
  --head24: 1.5rem;
  --head32: 2rem;
  --head40: 2.5rem;
  --head48: 3rem;
  --head56: 3.5rem;
}

.call__button a {
  gap: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--emerald);
  padding: 10px 16px;
  border-radius: 4px;
}
.call__button a > span {
  color: var(--white);
  font-weight: 600;
}

.separator__section > img {
  position: absolute;
  top: -6px;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sticky {
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  .sticky {
    background-color: rgba(18, 18, 18, 0.85);
    transition: 0.2s linear;
    backdrop-filter: blur(12px);
  }
}

.fix__button {
  z-index: 300;
  position: fixed;
  bottom: 32px;
  right: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-family: "Sora", sans-serif;
}

.container {
  max-width: 1216px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1240px) {
  .container {
    padding: 0 20px;
  }
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
  transition: 1s ease-in-out;
}

.header__container {
  max-width: 1216px;
  margin: 0 auto;
}
.header__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 768px) {
  .header__content {
    flex-direction: row;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 500;
  padding: 24px 0;
  transition: 0.2s linear;
}
@media (max-width: 1240px) {
  .header__logo {
    padding: 24px 20px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    background-color: var(--eerie);
  }
}
@media (min-width: 640px) {
  .header__logo {
    width: auto;
  }
}
@media (max-width: 768px) {
  .header .active {
    margin-top: 64px;
  }
}
.header__navigation {
  display: flex;
  align-items: center;
  gap: 32px;
  transition: 0.5s ease-in-out;
}
@media (min-width: 768px) {
  .header__navigation {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .header__navigation {
    background-color: var(--eerie);
    flex-direction: column;
    width: 100%;
    margin-top: -100%;
    left: 0;
    right: 0;
    padding: 32px 20px;
    position: absolute;
    z-index: 499;
  }
}
.header__options {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .header__options {
    flex-direction: row;
  }
}
.header__options__option {
  position: relative;
}
.header__options__option > a {
  color: var(--white);
  color: #fff;
  font-size: var(--button16);
  font-weight: 600;
}
@media (max-width: 768px) {
  .header__options__option + li {
    margin-top: 32px;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .header__options__option + li {
    margin-left: 32px;
  }
}
.header .sandwich {
  background-color: transparent;
  border-style: none;
}
@media (min-width: 768px) {
  .header .sandwich {
    display: none;
  }
}

.dropdown > p {
  color: var(--white);
  color: #fff;
  font-size: var(--button16);
  font-weight: 600;
}
.dropdown > .servicosDropdown {
  visibility: hidden;
  opacity: 0;
  z-index: 500;
  position: absolute;
  top: 32px;
  left: -65px;
  right: 0;
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  width: 200px;
  gap: 16px;
  transition: 0.2s all ease-in-out;
}
.dropdown > .servicosDropdown > a {
  color: var(--delftBlue);
  font-size: var(--button16);
  font-weight: 600;
}
.dropdown:hover > .servicosDropdown {
  visibility: visible;
  opacity: 1;
}

.main {
  background-color: #000;
  background-image: url("./../assets/background-first-section.webp");
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 760px;
}
@media (max-width: 768px) {
  .main {
    background-image: url("./../assets/background-first-section-opacity.webp");
    background-position-x: -680px;
  }
}

.firstSection {
  padding: 108px 0 184px 0;
}
@media (min-width: 640px) {
  .firstSection__content > .buttonWrapper {
    max-width: 228px;
  }
}
.firstSection__content > p {
  margin-top: 16px;
  margin-bottom: 36px;
  color: var(--white);
  font-size: var(--body16);
  font-weight: 400;
}
.firstSection__subtitle {
  display: flex;
  align-items: center;
  gap: 14px;
}
.firstSection__subtitle > p {
  color: var(--jonquil);
  font-size: var(--caption16);
}
.firstSection__title {
  margin-top: 24px;
  max-width: 100%;
  color: var(--white);
  font-size: var(--head40);
  font-weight: 400;
}
.firstSection__title > b {
  font-weight: 600;
}
@media (min-width: 640px) {
  .firstSection__title {
    max-width: 488px;
    font-size: var(--head56);
  }
}

.secondSection {
  padding: 126px 0;
  background-color: var(--sapphire);
  width: 100%;
  position: relative;
}
.secondSection__title {
  color: var(--white);
  font-size: var(--sub32);
  font-weight: 400;
  text-align: center;
}
.secondSection__title > b {
  font-weight: 600;
}
@media (min-width: 640px) {
  .secondSection__title {
    font-size: var(--sub40);
  }
}
.secondSection__cards {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 58px;
  width: 100%;
}
@media (min-width: 640px) {
  .secondSection__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .secondSection__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .secondSection__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.secondSection__card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  transition: 0.4s ease-in-out;
}
.secondSection__card:hover {
  transform: translateY(-8px);
}
.secondSection__card > .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--sapphire);
}
.secondSection__card > h4 {
  font-size: 18px;
  color: var(--delftBlue);
  margin-top: 14px;
  font-weight: 600;
  line-height: 24px;
}
.secondSection__card > p {
  font-size: var(--body16);
  color: var(--battleship);
  margin-top: 10px;
  font-weight: 300;
  line-height: 24px;
}

.thirdSection {
  padding: 124px 0;
  position: relative;
}
.thirdSection__separator {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
}
.thirdSection__content {
  width: 100%;
}
.thirdSection__content__title {
  color: var(--eerie);
  font-size: var(--sub32);
  font-weight: 400;
  text-align: center;
}
.thirdSection__content__title > b {
  font-weight: 600;
}
@media (min-width: 640px) {
  .thirdSection__content__title {
    text-align: start;
    font-size: var(--sub40);
  }
}
.thirdSection__content__subtitle {
  color: var(--jonquil);
  font-size: var(--caption16);
  font-weight: 600;
  text-align: center;
}
@media (min-width: 640px) {
  .thirdSection__content__subtitle {
    text-align: start;
  }
}
.thirdSection__cards__card {
  min-height: 296px;
  padding: 32px;
  border: 1px solid #d6d7d8;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.thirdSection__cards__card > p {
  font-size: var(--body16);
  color: #000;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 24px;
  flex: 1;
}
.thirdSection__cards__card .info {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.thirdSection__cards__card .info__data {
  display: flex;
  align-items: center;
  gap: 16px;
}
.thirdSection__cards__card .info__data__circle {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #d9d9d9;
}
.thirdSection__cards__card .info__data__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.thirdSection__cards__card .info__data__text > strong {
  font-size: var(--button18);
  font-weight: 600;
}
.thirdSection__cards__card .info__data__text > img {
  width: 80px;
}

.fourthSection {
  width: 100%;
  background-color: var(--sapphire);
}
.fourthSection .fourthSection__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .fourthSection .fourthSection__content {
    flex-direction: row;
  }
}
.fourthSection .fourthSection__left {
  order: 1;
  max-width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .fourthSection .fourthSection__left {
    height: 628px;
    width: 592px;
    padding: 0 104px;
    order: 0;
    max-width: unset;
  }
}
.fourthSection .fourthSection__left .guy__image {
  max-width: 100%;
  margin-bottom: -5px;
}
@media (min-width: 1024px) {
  .fourthSection .fourthSection__left .guy__image {
    height: 688px;
    margin-top: -60px;
    margin-bottom: unset;
    max-width: unset;
  }
}
.fourthSection .fourthSection__left .circle__in {
  position: absolute;
  top: 110px;
  left: 25px;
}
@media (min-width: 1024px) {
  .fourthSection .fourthSection__left .circle__in {
    top: 110px;
    left: 85px;
  }
}
.fourthSection .fourthSection__left .circle__out {
  position: absolute;
  top: 90px;
  left: 5px;
  animation: rotate 12s infinite linear;
}
@media (min-width: 1024px) {
  .fourthSection .fourthSection__left .circle__out {
    top: 90px;
    left: 65px;
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0);
  }
}
.fourthSection .fourthSection__right {
  display: flex;
  flex-direction: column;
  padding: 86px 0;
}
.fourthSection .fourthSection__right__subtitle {
  color: var(--jonquil);
  font-size: var(--caption16);
  font-weight: 600;
  text-align: center;
}
@media (min-width: 640px) {
  .fourthSection .fourthSection__right__subtitle {
    text-align: start;
  }
}
.fourthSection .fourthSection__right__title {
  color: var(--white);
  font-size: var(--sub40);
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 20px;
  text-align: center;
}
.fourthSection .fourthSection__right__title > b {
  font-weight: 600;
}
@media (min-width: 640px) {
  .fourthSection .fourthSection__right__title {
    text-align: start;
    font-size: var(--sub56);
  }
}
.fourthSection .fourthSection__right__texts {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  gap: 16px;
  text-align: center;
}
.fourthSection .fourthSection__right__texts > p {
  font-size: var(--body16);
  color: var(--white);
  line-height: 24px;
  font-weight: 300;
}
@media (min-width: 640px) {
  .fourthSection .fourthSection__right__texts {
    text-align: start;
  }
}
@media (min-width: 640px) {
  .fourthSection .fourthSection__right .buttonWrapper {
    max-width: 228px;
  }
}
@media (min-width: 1024px) {
  .fourthSection .fourthSection__right {
    padding: 86px;
    max-width: 37rem;
  }
}

.fifthSection {
  width: 100%;
  background-color: var(--delftBlue);
  padding: 32px 0;
}
.fifthSection__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 32px;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .fifthSection__content {
    flex-direction: row;
  }
}
.fifthSection__card {
  display: flex;
  align-items: center;
  gap: 30px;
}
.fifthSection__card > div {
  color: var(--white);
}
.fifthSection__card > div strong {
  font-size: var(--button18);
  font-weight: 600;
}
.fifthSection__card > div p {
  font-size: var(--body16);
  font-weight: 360;
}

.sixthSection {
  width: 100%;
  background-color: #121212;
  padding-top: 112px;
  padding-bottom: 96px;
}
.sixthSection__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 640px) {
  .sixthSection__content {
    flex-direction: row;
  }
}
.sixthSection__left__subtitle {
  color: var(--jonquil);
  font-size: var(--caption16);
  font-weight: 600;
  text-align: center;
}
@media (min-width: 640px) {
  .sixthSection__left__subtitle {
    text-align: start;
  }
}
.sixthSection__left__title {
  max-width: 408px;
  color: var(--white);
  font-size: var(--sub32);
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 640px) {
  .sixthSection__left__title {
    text-align: start;
    font-size: var(--sub40);
  }
}
.sixthSection__left__title > b {
  font-weight: 600;
}
.sixthSection__left__text {
  font-size: var(--body16);
  color: var(--white);
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 640px) {
  .sixthSection__left__text {
    text-align: start;
    max-width: 290px;
  }
}
.sixthSection__left__links .subtitle {
  color: var(--white);
  font-size: var(--caption16);
  font-weight: 600;
  margin-bottom: 24px;
}
.sixthSection__left__links .link {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  color: var(--white);
}
.sixthSection__left__links .link img {
  fill: var(--jonquil);
}
.sixthSection__left__links .link + a {
  border-top: 0.2px solid rgba(255, 255, 255, 0.3764705882);
}
@media (min-width: 640px) {
  .sixthSection__left__links .link {
    max-width: 280px;
  }
}
.sixthSection__right > img {
  max-width: 100%;
  margin-top: 60px;
}
@media (min-width: 640px) {
  .sixthSection__right > img {
    margin-top: 0;
  }
}

.seventhSection {
  padding: 56px 0;
}
.seventhSection__content__head {
  display: flex;
  justify-content: space-between;
}
.seventhSection__content__buttons {
  display: flex;
  gap: 8px;
}
.seventhSection__content__buttons button {
  background-color: transparent;
  border-style: none;
}

.eighthSection {
  padding: 104px 0;
  background-color: rgba(234, 234, 234, 0.1882352941);
}
.eighthSection__content {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media (min-width: 640px) {
  .eighthSection__content {
    flex-direction: row;
  }
}
.eighthSection__content__left {
  max-width: 415px;
  margin-bottom: 32px;
}
.eighthSection__content__left__subtitle {
  color: var(--jonquil);
  font-size: var(--caption16);
  font-weight: 600;
  text-align: center;
}
@media (min-width: 640px) {
  .eighthSection__content__left__subtitle {
    text-align: start;
  }
}
.eighthSection__content__left__title {
  max-width: 344px;
  color: var(--eerie);
  font-size: var(--sub32);
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .eighthSection__content__left__title {
    text-align: start;
    font-size: var(--sub40);
  }
}
.eighthSection__content__left__title > b {
  font-weight: 600;
}
.eighthSection__content__left__text {
  max-width: 383px;
  font-size: var(--body16);
  color: var(--eerie);
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .eighthSection__content__left__text {
    text-align: start;
  }
}
@media (min-width: 640px) {
  .eighthSection__content__left .buttonWrapper {
    max-width: 180px;
  }
}
.eighthSection__content__left .buttonWrapper > div {
  border-radius: 8px;
}
@media (min-width: 640px) {
  .eighthSection__content__left {
    margin-bottom: 0;
  }
}
.eighthSection__content__right {
  flex: 1;
}

.swiperDep {
  margin-top: 32px;
  max-width: 100%;
  overflow-x: hidden;
}
.main-fgts {
  background-image: url("./../assets/background-first-section-fgts.webp");
  background-color: var(--sapphire);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  width: 100%;
  height: 760px;
}
@media (max-width: 768px) {
  .main-fgts {
    background-image: url("./../assets/background-first-section-fgts-opacity.webp");
    background-position-x: -640px;
  }
}

.buttonWrapper-fgts {
  max-width: 175px;
  margin: 0 auto;
  margin-top: 64px;
}

.comoObterSection {
  padding-top: 40px;
}
.comoObterSection__content {
  display: flex;
  gap: 64px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .comoObterSection__content {
    flex-direction: row;
  }
}
.comoObterSection__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 592px;
}
.comoObterSection__left {
  margin-bottom: -5px;
}
.comoObterSection__left > img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .comoObterSection__left {
    order: 2;
  }
}
.comoObterSection__title {
  color: var(--eerie);
  font-size: var(--sub32);
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
  padding-top: 64px;
}
.comoObterSection__title > b {
  font-weight: 600;
}
@media (min-width: 640px) {
  .comoObterSection__title {
    font-size: var(--sub40);
  }
}
.comoObterSection__subtitle {
  color: var(--eerie);
  font-size: var(--sub32);
  font-weight: 400;
  text-align: center;
  margin-top: 44px;
  margin-top: 40px;
}
.comoObterSection__subtitle > b {
  font-weight: 600;
}
@media (min-width: 640px) {
  .comoObterSection__subtitle {
    font-size: var(--sub40);
  }
}
.comoObterSection__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 480px) {
  .comoObterSection__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .comoObterSection__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.comoObterSection__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid var(--platinum);
  gap: 16px;
  border-radius: 8px;
}
.comoObterSection__card > h2 {
  font-size: var(--head32);
  color: var(--jonquil);
  font-weight: 600;
}
.comoObterSection__card > strong {
  width: 100%;
  text-align: center;
  font-size: var(--button16);
  color: var(--eerie);
}
.comoObterSection__button {
  max-width: 175px;
  margin: 40px auto;
}

.simuladorSection {
  width: 100%;
  background-color: #1d315e;
  padding: 44px 0;
}
.simuladorSection__container {
  padding: 0 20px;
  max-width: 960px;
  margin: 0 auto;
}
.simuladorSection__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 640px) {
  .simuladorSection__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 64px;
  }
}
.simuladorSection__left > h2 {
  max-width: 352px;
  text-align: center;
  color: var(--white);
  font-size: var(--head24);
  font-weight: 400;
  text-align: center;
  font-weight: 600;
}
.simuladorSection__right {
  flex: 1;
  max-width: 544px;
  background-color: #fff;
  border-radius: 48px;
}

.box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding-right: 16px;
  padding-left: 40px;
  gap: 16px;
}
.box > p {
  color: #fcb813;
  font-size: var(--button18);
  font-weight: 600;
}
.box > input {
  border-style: none;
  width: 100%;
  font-size: var(--body18);
  color: var(--delftBlue);
  outline: none;
  height: 64px;
}
.box > input::placeholder {
  font-size: var(--body18);
  color: var(--delftBlue);
}
.box > a {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border-style: none;
}
.box > a > span {
  color: #fcb813;
  font-size: var(--button18);
  font-weight: 600;
  margin-right: 16px;
}

.main-consignado {
  background-color: var(--sapphire);
  background-image: url("./../assets/background-first-section-consignado.webp");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  width: 100%;
  max-height: 760px;
}
@media (max-width: 768px) {
  .main-consignado {
    background-position: center;
  }
}

.calltext {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 96px 0;
}
.calltext__title {
  max-width: 583px;
  text-align: center;
  color: var(--white);
  font-size: var(--sub40);
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 300;
}
.calltext__title > b {
  font-weight: 600;
}
@media (min-width: 640px) {
  .calltext__title {
    font-size: var(--head56);
  }
}
.calltext > p {
  font-size: var(--body16);
  text-align: center;
  color: var(--white);
  max-width: 432px;
}
.calltext__button {
  margin-top: 32px;
  width: 100%;
}
@media (min-width: 640px) {
  .calltext__button {
    width: unset;
  }
}

.footer {
  padding: 96px 0;
}
.footer__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 116px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__head {
    flex-direction: row;
  }
}
.footer__left {
  margin-bottom: 64px;
}
.footer__left__text {
  margin-top: 46px;
  font-size: var(--body16);
  color: var(--silver);
  font-weight: 300;
  max-width: 328px;
  margin-top: 46px;
}
@media (min-width: 640px) {
  .footer__left {
    margin-bottom: 0;
    margin-bottom: 32px;
    margin-top: 32px;
  }
}
.footer__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 80px;
}
@media (min-width: 640px) {
  .footer__right {
    flex-direction: row;
  }
}
.footer__right .block {
  display: flex;
  flex-direction: column;
}
.footer__right .block__title {
  font-size: var(--button16);
  font-weight: 600;
  color: var(--eerie);
  margin-bottom: 24px;
}
.footer__right .block__options {
  display: flex;
  flex-direction: column;
}
.footer__right .block__options .buttonWrapper {
  margin-top: 32px;
}
@media (min-width: 640px) {
  .footer__right .block__options .buttonWrapper {
    max-width: 201px;
  }
}
.footer__right .block__option {
  display: flex;
  gap: 16px;
  font-size: var(--button16);
  font-weight: 300;
  color: var(--silver);
}
.footer__right .block__option + a {
  margin-top: 16px;
}
.footer__info {
  border-top: 1px solid var(--platinum);
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  width: 100%;
  flex-direction: column;
}
@media (min-width: 640px) {
  .footer__info {
    flex-direction: row;
  }
}
.footer__info > p {
  font-size: var(--small14);
  color: var(--silver);
  font-weight: 300;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .footer__info > p {
    margin-bottom: 0px;
  }
}
.footer__info__social {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .footer__info__social {
    justify-content: baseline;
  }
}
.footer__info__social > strong {
  font-size: var(--button16);
  color: var(--eerie);
  font-weight: 600;
}
.footer__info__social > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__copy {
  text-align: justify;
  font-size: var(--small12);
  color: var(--silver);
  font-weight: 300;
}
.footer__separator {
  position: absolute;
  top: -128px;
  left: 10px;
}
.footer .by {
  margin-top: 32px;
  display: flex;
  width: 100%;
  justify-content: end;
  font-size: var(--small14);
  color: #b2b2b2;
}
.footer .by > span {
  margin-right: 8px;
  font-family: "Montserrat", sans-serif;
  color: #b2b2b2;
  font-size: 10px;
}
.footer .by > img {
  width: 42.7px;
}

.swiper {
  margin-top: 56px;
  width: 100%;
  height: 51px;
  position: relative;
}

.swiper-slide {
  width: 120px;
  display: flex;
  align-items: center;
  position: relative;
}
.swiper-slide > img {
  position: absolute;
  right: 50%;
  left: 50%;
  top: 30px;
  transform: translate(-50%, -50%);
}

.itau {
  width: 40px !important;
}

/* .cetelem {
  width: 85px !important;
} */
/* .itau {
  width: 40px !important;
} */
/* .c6 {
  width: 100px !important;
} */
.pan {
  width: 74px !important;
}

.ole {
  width: 63px !important;
}

/* .bradesco {
  width: 99px !important;
} */
/* .banrisul {
  width: 136px !important;
} */
/* .caixa {
  width: 107px !important;
} */
/* .bmg {
  width: 76px !important;
} */
.fade__left {
  z-index: 100;
  height: 88px;
  width: 120px;
  position: absolute;
  left: 0;
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
@media (min-width: 640px) {
  .fade__left {
    width: 232px;
  }
}

.fade__right {
  z-index: 100;
  height: 88px;
  width: 120px;
  position: absolute;
  right: 0;
  background-image: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}
@media (min-width: 640px) {
  .fade__right {
    width: 232px;
  }
}

.accordion-container {
  width: 100%;
}

.ac {
  border-style: none !important;
  width: 100%;
  background: transparent !important;
}
.ac-header {
  border-bottom: 1px solid var(--platinum);
}
.ac-header button {
  padding: 0 !important;
}
.ac-header button::after {
  display: none;
}

.ac-trigger {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.ac-trigger > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ac-trigger > div .number {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--button16);
  color: var(--sapphire);
}
.ac-trigger > div .title {
  font-size: var(--body16);
  color: var(--eerie);
  font-weight: 300;
  flex: 1;
}

.ac-text {
  font-family: "Sora", sans-serif !important;
  font-size: var(--body16) !important;
  line-height: 24px !important;
  color: var(--eerie) !important;
  font-weight: 300 !important;
}

.openedAndClosed {
  display: flex;
  flex-shrink: 0;
  position: relative;
  height: 40px;
  width: 40px;
  border: 1px solid var(--platinum);
  border-radius: 50%;
}
.openedAndClosed::before {
  top: 4px;
  bottom: 0;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  width: 16px;
  height: 2px;
  background-color: var(--jonquil);
  transition: 0.15s ease-in-out;
}
.openedAndClosed::after {
  top: 4px;
  bottom: 0;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  width: 2px;
  height: 16px;
  background-color: var(--jonquil);
  transition: 0.15s ease-in-out;
}

.is-active::after {
  opacity: 0;
}

/*# sourceMappingURL=styles.css.map */
