header .logo-desktop,
header .logo-mobile-menu {
  width: 130px;
  margin: 0
}

header {

  background: rgba(14, 37, 51, 0.90);
  padding: 12px 0;
}

@media screen and (min-width: 992px) {
  .nav-link {
    color: #FAFAFA;
    text-align: center;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    padding: 9px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: transparent;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: #1AFAFA;
    background: rgba(176, 190, 205, 0.20);
  }

  header .btn {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: #FAFAFA;
    color: #1A1A1A;
    text-align: center;
    font-family: Inter;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
  }
}

@media screen and (min-width: 1440px) {

  header .logo-desktop,
  header .logo-mobile-menu {
    width: 160px;
    margin: 0
  }

  .nav-link {

    font-size: 16px;
    font-weight: 500;
    padding: 12px;
    border-radius: 16px;
  }

  header .btn {

    padding: 12px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
  }
}

/* FOOTER */
footer {
  background: #0E2533;
  margin-top: 3rem;
}

footer .logo-desktop {
  max-width: 200px;
}

footer h3 {
  margin: 0 0 32px 0;
  color: #BACBD6;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: 25.2px;
  position: relative;
}

footer h3::before {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 1px;
  background: #99B2C2;
}

footer .footer__nav li a:not(.btn) {
  color: #C3C3C3;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 350;
  line-height: 24px;
  transition: .3s
}

footer .footer__nav li a i {
  font-size: .625rem
}

footer .footer__nav li a:hover {
  color: var(--primary-color-light)
}

footer .address :is(span, a):not(.btn) {
  color: #C3C3C3;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 350;
  line-height: 24px;
  transition: .3s
}

footer .address a:not(.btn):hover {
  color: var(--primary-color-light)
}

.copyright-footer .btn.selos {
  min-height: unset;
  color: #C3C3C3;
}

.copyright-footer p {
  color: #C3C3C3;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  margin: 0;
}

@media screen and (max-width: 992.05px) {
  footer .social {
    justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  footer h3::before {
    content: '';
    position: absolute;
    bottom: -16px;
    transform: translateX(0);
    left: 0;
    width: 16px;
    height: 1px;
    background: #99B2C2;
  }

}

@media screen and (min-width: 1440px) {
  footer h3 {
    margin: 0 0 32px 0;
    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
  }

  footer .footer__nav li a:not(.btn) {

    font-size: 16px;
    font-weight: 350;
    line-height: 24px;
  }

  footer .address :is(span, a):not(.btn) {

    font-size: 16px;
    font-weight: 350;
    line-height: 24px;
  }

  .copyright-footer p {

    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
  }

}

.card.card--23 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: column nowrap;
  gap: 1rem;
  background-color: var(--dark);
  background-image: linear-gradient(-45deg, var(--dark), var(--grey)), var(--card-background);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply, normal;
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  height: 100%
}

.card.card--23:focus-within,
.card.card--23:hover {
  box-shadow: 0 0 0 2px var(--secondary-color)
}

.card.card--23 .card__title {
  color: #fff;
  font-size: 1.25rem;
  text-shadow: 0 0 .25rem var(--dark);
  margin: 0;
  min-height: calc(1.25rem * 2 * 1.3)
}

.card.card--23 .card__link {
  z-index: 1;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  padding: .5rem .75rem;
  font-size: .875rem;
  text-transform: uppercase;
  transition: var(--transition);
  color: var(--light);
  font-weight: 600;
  border: 2px solid currentColor;
  border-radius: 99px
}

.card.card--23 .card__link>span {
  width: 0;
  max-width: fit-content;
  opacity: 0;
  transition: var(--transition)
}

.card.card--23 .card__link:focus>span,
.card.card--23 .card__link:hover>span {
  width: 100px;
  opacity: 1;
  margin-right: .5rem
}

.card.card--23 .card__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  backface-visibility: visible
}

.card.card--23 .card__link:focus,
.card.card--23 .card__link:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color)
}

.shadow-19 {
  box-shadow: rgba(50, 50, 93, .25) 0 2px 5px -1px, rgba(0, 0, 0, .3) 0 1px 3px -1px
}

.title-subtitle {
  margin-bottom: 0
}

.title-subtitle span {
  display: block;
  font-size: .9rem;
  color: #000;
  line-height: 1rem;
  letter-spacing: .25rem;
  text-transform: uppercase
}

/* ================= CLIENTES ================= */
.clientes .clientes__item {
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  overflow: hidden
}

.clientes .clientes__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin: 0 auto;
  opacity: .75;
  border-radius: var(--bs-border-radius-sm);
  transition: opacity var(--transition)
}

.clientes .clientes__item:hover img {
  opacity: 1
}

/* ==================== CUSTUM ==================== */

.custom-btn {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #22587A;
  color: #FAFAFA;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

@media screen and (min-width: 1440px) {
  .custom-btn {

    padding: 16px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 500;
  }
}

/* ================== FIM CUSTUM ================== */

/* ==================== BANNER ==================== */

.banner-sig::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}


.banner-sig .content {
  position: relative;
  z-index: 3;
}

.banner-sig h2 {
  color: #FAFAFA;
  font-family: Rubik;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
}

.banner-sig h2 span {
  color: #BACBD6;
}

.banner-sig p {
  color: #FAFAFA;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  margin: 14px 0 24px 0;
}

.banner-sig a:nth-child(2) {
  background-color: transparent;
}

@media screen and (min-width: 1440px) {
  .banner-sig h2 {

    font-size: 48px;
    font-weight: 600;
    line-height: 67.2px;
  }

  .banner-sig p {

    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
    margin: 24px 0 48px 0;
  }

}

/* ================== FIM BANNER ================== */

/* ==================== WHO-WE-ARE-CONTAINER ==================== */

.who-we-are-container .subtitle {
  color: #6C6C6C;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21.6px;
  display: block;
  padding-left: 46px;
  position: relative;
}

.who-we-are-container .subtitle::before {
  content: '';
  width: 32px;
  height: 1px;
  background: #22587A;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.who-we-are-container .title {
  color: #22587A;
  font-family: Rubik;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  margin: 12px 0 0 0;
}

.who-we-are-container .title span {
  display: block;
  font-size: 18px;
  margin-bottom: 12px;
  color: #6C6C6C;
}

.who-we-are-container p {
  color: #6C6C6C;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
}

.who-we-are-container a {
  border-color: #22587A;
  color: #22587A;
  background-color: transparent;
  margin-top: 40px;
}

.who-we-are-container img {
  border-radius: 1.5rem;
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.who-we-are-container__card img {
  width: 54px;
  height: 54px;
}


.who-we-are-container__card h3 {
  color: #4A4848;
  text-align: center;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  margin: 12px 0 0 0;
}

@media screen and (min-width: 992px) {
  .who-we-are-container .content {
    padding-left: 40px;
  }
}

@media screen and (min-width: 1440px) {
  .who-we-are-container .subtitle {
    color: #6C6C6C;
    font-family: Rubik;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 21.6px;
    display: block;
    padding-left: 46px;
    position: relative;
  }

  .who-we-are-container .subtitle::before {
    content: '';
    width: 32px;
    height: 2px;

  }

  .who-we-are-container .title {

    font-size: 48px;
    font-weight: 600;
    margin: 24px 0 0 0;
  }

  .who-we-are-container .title span {

    font-size: 18px;
    margin-bottom: 24px;
  }

  .who-we-are-container p {

    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
  }

  .who-we-are-container a {

    margin-top: 40px;
  }


  .who-we-are-container__card img {
    width: 64px;
    height: 64px;
  }


  .who-we-are-container__card h3 {

    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    margin: 24px 0 0 0;
  }
}

/* ================== FIM WHO-WE-ARE-CONTAINER ================== */

/* ==================== NUMBER-CONTAINER ==================== */




.number-container span {
  color: #22587A;
  text-align: center;
  font-family: Rubik;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}

.number-container h2 {
  color: #6C6C6C;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  margin: 0;
}

.number-container__card {
  width: 100%;
  max-width: 16.6875rem;
  display: flex;
  gap: 16px;
  justify-content: start;
  align-items: center;
}


@media screen and (min-width: 1440px) {
  .number-container span {

    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
  }

  .number-container h2 {

    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
  }


}


/* ================== FIM NUMBER-CONTAINER ================== */

/* ==================== SERVICES-CONTAINER ==================== */

.services-container .subtitle {
  color: #6C6C6C;
  text-align: center;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 21.6px;
  display: block;
  position: relative;
  width: fit-content;
}

.services-container .subtitle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -44px;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background: #22587A;
}

.services-container .title {
  color: #22587A;
  text-align: center;
  font-family: Rubik;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 38.4px;
  margin: 12px 0 40px 0;
}

.services-container__card {
  border-radius: 16px;
  padding: 16px;
  min-height: 434px;
  display: flex;
  align-items: end;
  overflow: hidden;
  position: relative;
}

.services-container__card img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1);
  transition: .3s ease;
}

.services-container__card:hover img {
  transform: scale(1.1);
}


.services-container__card .content {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: rgba(246, 246, 246, 0.85);
  backdrop-filter: blur(4px);
  width: 100%;
  justify-content: space-between;
}

.services-container__card h3 {
  color: #6C6C6C;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21.6px;
}

.services-container__card span {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #c8cccf;
  transition: .3s ease;
}

.services-container__card:hover span {
  background: #1F506F;
}

@media screen and (min-width: 1440px) {
  .services-container__card h3 {

    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
  }

  .services-container__card span {

    padding: 12px;
    border-radius: 16px;
  }

  .services-container__card .content {

    padding: 8px 16px;
    gap: 16px;
    border-radius: 12px;
  }
}

/* ================== FIM SERVICES-CONTAINER ================== */

/* ==================== CTA-DEFAULT ==================== */

.cta-default {
  border-radius: 1.5rem;
  padding: 34px;


}

.cta-default h2 {
  color: #FAFAFA;
  font-family: Rubik;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}

.cta-default p {
  color: #FAFAFA;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  margin: 12px 0 18px 0;
}

.cta-default a {
  background: #fafafa;
  color: #1A1A1A;
}

.cta-default img {
  border-radius: 1.5rem;
}

@media screen and (min-width: 992px) {
  .cta-default {

    padding: 96px;


  }
}

@media screen and (min-width: 1440px) {


  .cta-default h2 {

    font-size: 48px;
    font-weight: 600;
    line-height: 57.6px;
  }

  .cta-default p {

    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
    margin: 24px 0 32px 0;
  }

}

/* ================== FIM CTA-DEFAULT ================== */

/* ==================== MPI-CONTAINER ==================== */

.mpi-container .title {
  color: #242424;
  text-align: center;
  font-family: Rubik;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 38.4px;
  margin: 0 0 24px 0;
}

@media screen and (min-width: 1440px) {
  .mpi-container .title {

    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
    margin: 0 0 32px 0;
  }
}

/* ================== FIM MPI-CONTAINER ================== */

/* ==================== WORK-WITH-US ==================== */

.work-with-us .left {
  border-radius: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%), rgba(2, 47, 66, 0.95);

  display: flex;
  padding: 64px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.work-with-us .left h2 {
  color: #FAFAFA;
  font-family: Rubik;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  margin: 0;
}

.work-with-us .left p {
  color: #C3C3C3;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  margin: 8px 0 20px 0;
}

.work-with-us .left img {
  width: 100%;
  object-fit: cover;
  height: 17.75rem;
  border-radius: 1rem;
}

.work-with-us .right {
  background: #F6F6F6;
  display: flex;
  padding: 56px 32px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 40px;
  border-radius: 1.5rem;
}

.work-with-us .right .form-label {
  color: #4A4848;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}

.work-with-us .right .form-control,
.work-with-us .right .form-select {
  display: flex;
  padding: 13px;
  border-radius: 16px;
  border: 1px solid #E9E9E9;
  background: #FAFAFA;
}

.work-with-us .right .form-control::placeholder,
.work-with-us .right .form-select {
  color: #C3C3C3;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
}

.work-with-us .right .btn {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #22587A;
  color: #FAFAFA;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .work-with-us .left h2 {

    font-size: 32px;
    font-weight: 600;
    line-height: 38.4px;
  }

  .work-with-us .left p {

    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
    margin: 16px 0 40px 0;
  }
}

/* ================== FIM WORK-WITH-US ================== */

/* ==================== SERVICE-INC__CARD ==================== */

.service-inc__card h3 {
  color: #242424;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin: 0 0 24px 0;
}

.service-inc__card p {
  color: #6C6C6C;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  margin: 0;
}

.service-inc__card img {
  border-radius: 1.5rem;
  width: 100%;
  height: 482px;
  object-fit: cover;
}

.service-inc__card .accordion h2 {
  margin: 0;
}

.service-inc__card .accordion .accordion-body {}

@media screen and (min-width: 1440px) {
  .service-inc__card h3 {

    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    margin: 0 0 24px 0;
  }

  .service-inc__card p {

    font-size: 18px;
    font-weight: 350;
    line-height: 25.2px;
  }

}

/* ================== FIM SERVICE-INC__CARD ================== */