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

.headerFixed {
  background-color: #cfcfcf;
}


@media screen and (min-width: 992px) {
  header .nav-link {
    color: #3D3D3D;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    padding: 10px !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: transparent;
  }

  header .navbar-nav--int .nav-link {
    color: #fafafa;
  }

  header .nav-link:hover,
  header .nav-link.active {
    background-color: var(--primary-color) !important;
    color: #fafafa !important;
  }
}

@media screen and (min-width: 1400px) {
  header .nav-link {
    font-size: 18px;
  }
}

/* FOOTER */
footer {
  background-color: #212121;
}

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

footer h3 {
  margin: 0 0 18px 0;
  color: #fafafa;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

footer p {
  color: #fafafa;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}

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

  padding: 5px 0;
  transition: .3s;
  color: #FAFAFA;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
}

footer .footer__nav li a i {
  font-size: 10px
}

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

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

  transition: .3s;
  color: #FAFAFA;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  word-break: break-all;
}

footer i {
  display: flex !important;
  padding: 12px;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 80px;
  background: var(--primary-color);
  color: #FAFAFA;
  height: 44px;
  width: 44px;
  flex-shrink: 0;
}

footer iframe {
  border-radius: 1rem;
  width: 100%;
  height: 140px;
}

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

.copyright-footer {
  background-color: #212121;
}

.copyright-footer .btn.selos {
  min-height: unset;
  font-size: 12px;
}

.copyright-footer p {
  color: #FAFAFA;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
}

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


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

  footer h3 {
    font-size: 18px;
  }


  footer .footer__nav li a:not(.btn),
  footer .address :is(span, a):not(.btn) {
    font-size: 14px;
  }


}

@media screen and (min-width: 1400px) {
  footer h3 {
    font-size: 20px;
  }

  footer .footer__nav li a:not(.btn),
  footer .address :is(span, a):not(.btn) {
    font-size: 16px;
  }

  footer p {
    font-size: 16px;
  }

  .copyright-footer p {
    font-size: 16px;
  }
}

.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
}

/* ==================== CUSTOM ==================== */

.custom-subtitle {
  color: #222424;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  display: block;
}

.custom-title {
  color: var(--primary-color);
  text-align: center;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  margin: 4px 0 80px 0;
}

/* ================== FIM CUSTOM ================== */

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

.splide-banner h2 {
  color: #000;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.splide-banner h2>strong {
  color: #365388;
  font-weight: 900;
}


.splide-banner p {
  color: #000;
  font-family: Montserrat;
  font-size: 20px;
  line-height: 23px;
  font-style: normal;
  font-weight: 400;
  margin: 20px 0 26px 0;
}

.splide-banner a {
  display: flex;
  padding: 10px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: var(--primary-color);
  color: #FAFAFA;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

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

@media screen and (min-width: 1400px) {
  .splide-banner h2 {
    font-size: 42px;
    line-height: 47.88px;
  }

  .splide-banner p {
    font-size: 28px;
    line-height: 31.92px;
  }

  .splide-banner a {
    font-size: 18px;
    padding: 16px 24px;
  }
}

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


/* ==================== STANDUP-CONTAINER ==================== */

.standup-container__card {

  /* width: 415px; */
  height: 212px;
  border-radius: 0 35px 35px 35px;
  background: linear-gradient(104deg, #688ACB 4.3%, #30456D 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.standup-container__card::before {
  content: '';
  position: absolute;
  left: -55px;
  top: -67px;
  background: url('../imagens/standup-cover.webp') no-repeat;
  background-size: auto;
  background-size: contain;
  width: 237.454px;
  height: 238.819px;
  transform: rotate(-11.331deg);
  z-index: 3;
}

.standup-container__card .cover {
  overflow: hidden;
}

.standup-container__card img {
  width: 216.454px;
  height: 219.819px;
  transform: rotate(-13.331deg);
}

.standup-container__card h2 {
  color: #FFF;
  font-family: Poppins;
  /* font-size: 32px; */
  font-style: normal;
  font-weight: 600;
  margin: 0;
}

@media screen and (min-width: 992px) {
  .standup-container__card h2 {
    font-size: 22px;
  }
}

@media screen and (min-width: 1400px) {
  .standup-container__card h2 {
    font-size: 32px;
  }
}

/* ================== FIM STANDUP-CONTAINER ================== */

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

.who-we-are-container .title {
  color: var(--primary-color);
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 24px 0;
}

.who-we-are-container p {
  color: #393C3C;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.who-we-are-container a {
  display: flex;
  padding: 11px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: var(--primary-color);
  color: #FAFAFA;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: 24px;
}

@media screen and (min-width: 992px) {
  .who-we-are-container .title {
    font-size: 32px;
  }

  .who-we-are-container p {
    font-size: 16px;
    line-height: 24.8px;
  }

  .who-we-are-container a {
    font-size: 14px;
  }
}

@media screen and (min-width: 1400px) {
  .who-we-are-container .title {
    font-size: 50px;
    line-height: 60px;
    margin: 0 0 32px 0;
  }

  .who-we-are-container p {
    font-size: 20px;
    line-height: 26.8px;
  }

  .who-we-are-container a {
    font-size: 18px;
    margin-top: 32px;
  }
}

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

/* ==================== PRODUCTS-CONTAINER ==================== */


.products-container .custom-title {
  margin-bottom: 20px;
}

/* CARD */
.card__prod .card__prod-gradient {

  border-radius: 20px;
  background: linear-gradient(180deg, #213062 0%, #355186 100%);
  height: 340px;
}

.card__prod .card__title svg {
  position: absolute;
  right: -4px;
  z-index: 0;
}

.card__prod .card__title span {
  font-size: 22px;
  padding-top: 1rem;
}

.card__prod .card__cover {
  transform: translate(-20px, 8px);
  background: #E5EBFF;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.card__prod .card__cover .btn {
  position: absolute;
  left: 40%;
  transform: translateX(-40%);
  width: 75%;
  bottom: -50%;
  transition: .3s;
}

.card__prod .card__cover:hover .btn {
  bottom: 0%;
}

@media screen and (max-width: 768px) {

  .card__prod .card__cover .btn,
  .card__prod .card__cover:hover .btn {
    bottom: 0%;
    transition: .3s;
  }
}

.card__prod .card__cover img {
  width: 100%;
  height: 350px;
  padding: 28px 60px;
  object-fit: contain;
}

.card__prod .card__title::before {
  content: '';
}

/* ================== FIM PRODUCTS-CONTAINER ================== */



/* ==================== CUSTOM-CTA ==================== */

.custom-cta {

  background: #202F60;
}

.custom-cta h2 {
  color: #FAFAFA;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  margin: 0;
}

.custom-cta h2>span {
  font-size: 50px;
  font-family: Montserrat;
  font-weight: 900;
  line-height: 49.5px;
  display: block;
  margin: 14px 0;
}

.custom-cta p {
  color: #FAFAFA;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

.custom-cta .btn {
  display: flex;
  padding: 16px 72px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: #FAFAFA;
  color: #222424;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
}

@media screen and (min-width: 992px) {
  .custom-cta {
    border-radius: 1rem;
  }
}

/* ================== FIM CUSTOM-CTA ================== */


/* ==================== contact-container ==================== */

.contact-container {
  background: url('../imagens/contact/contact.webp') no-repeat;
  background-size: cover;
}

.contact-container .label {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid rgba(235, 236, 236, 0.35);
  background: rgba(236, 237, 236, 0.05);
  color: #EBECEC;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-container h2 {
  color: #EBECEC;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  margin: 10px 0 8px 0;
}

.contact-container h2>strong {
  font-weight: 700;
  color: var(--primary-color);
}

.contact-container p {
  color: #EBECEC;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.4px;
  margin: 0 0 40px 0;
}

.contact-container .form {
  padding: 40px;
}

.more-inf-container {
  padding: 32px;
}

.more-inf-container,
.contact-container .form {
  border-radius: 8px;
  border: 2px solid rgba(235, 236, 236, 0.08);
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(9px);
  max-width: 952px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container .form .form-label {
  color: #FAFAFA;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.2px;
  text-align: start;
}

.contact-container .form .form-control,
.contact-container .form .form-select {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  color: #FAFAFA;
}

.contact-container .form .form-control::placeholder,
.contact-container .form .form-select {
  color: #9c9c9c;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.contact-container .form .btn {
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--primary-color);
  color: #FAFAFA;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  width: 100%;
}

.more-inf-container__card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.more-inf-container__card h3 {
  color: #EBECEC;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.more-inf-container__card span,
.more-inf-container__card a {
  color: #FAFAFA;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-align: start;
  word-break: break-all;
}

.more-inf-container__card i {
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary-color);
  color: #EBECEC;
  font-size: 18px;
}

@media screen and (max-width: 992px) {
  .contact-container {
    background: url('../imagens/contact/mobile.webp') no-repeat;
    background-size: cover;
  }

}

@media screen and (min-width: 992px) {
  .more-inf-container__card h3 {
    font-size: 16px;
  }

  .more-inf-container__card span {
    font-size: 12px;
  }

  header .nav-item:last-of-type .nav-link {
    background-color: #202F60 !important;
    color: var(--light);
  }

  header .nav-item:last-of-type .nav-link:hover {
    opacity: .8;
  }
}

@media (min-width: 1300px) {
  .container {
    max-width: 1240px;
  }
}
@media (min-width: 1500px){
    .container{
      max-width: 1440px;
    }
}

@media screen and (min-width: 1400px) {
  .more-inf-container__card h3 {
    font-size: 20px;
  }

  .more-inf-container__card span {
    font-size: 16px;
  }
}

/* ================== FIM contact-container ================== */