.mw-footer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 60px;
  background-color: #fff;
}

.mw-footer-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  width: 100%;
  height: 100%;
  margin: 0 0 40px 0;
}

.mw-footer-logo a {
  text-decoration: none;
}

.mw-footer-logo a:visited {
  color: inherit;
}

.mw-footer-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 37px;
}

.mw-footer-busca {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 0px 20px 40px #0000000d;
  border-radius: 10px;
}

.mw-footer-logo > img {
  max-width: 250px;
  max-height: 78px;
}

.mw-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mw-footer-nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  color: #1364AE;
  font-size: 14px;
}

.mw-footer-nav ul li span {
  color: #E6E6E6;
  font-size: 14px;
}

.mw-footer .mw-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: min(100% - 15px, 1280px);
  margin: 0 auto;
}

.mw-footer-nav ul li a img {
  width: 145px;
  height: 100%;
}

.mw-footer .mw-footer-content h1 {
  color: #727577;
  font-size: 16px;
  font-family: "NimbusSans-Regular";
  line-height: 19px;
  text-transform: uppercase;
  text-align: start;
}

.mw-footer .mw-footer-content .mw-footer-share {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mw-footer .mw-footer-content .mw-footer-share ul li a img {
  width: 16px;
  height: 16px;
}

.mw-footer .mw-footer-content .mw-footer-share ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.mw-footer .mw-footer-content .mw-footer-share ul li a {
  background-color: var(--color-01);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 158px;
  gap: 10px;
  padding: 14px 36px;
  color: #ffffff;
  border-radius: 10px;
  font-size: 14px;
  font-size: "NimbusSans-Bold", sans-serif;
}

.mw-footer .mw-footer-content .mw-footer-share ul li a:hover {
  background-color: var(--color-03);
  transition: all 0.2s;
  color: var(--color-01);
  animation: footerAnimation 0.6s;
}

.mw-footer .mw-footer-content .mw-footer-share ul li a:hover img {
  filter: brightness(0) saturate(100%) invert(38%) sepia(14%) saturate(5957%)
    hue-rotate(167deg) brightness(91%) contrast(103%);
}

@keyframes footerAnimation {
  0% {
    transform: scale(0.98);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.mw-footer .mw-footer-content .mw-footer-share > ul > a > img {
  width: 16px;
  height: 16px;
}

.mw-footer .mw-footer-copyright {
  color: #fcfcfc;
}

/* .container-footer-nav {
  display: flex;
  flex-direction: row;
  color: #1364ae;
  margin-bottom: 20px;
  justify-content: center;

  & a {
    font-family: "NimbusSans-Regular";
    border-right: 1px solid #e6e6e6;
    max-height: 16px;
    padding: 0 30px;
  }

  & a:last-of-type {
    border-right: unset;
  }
} */
.container-footer-nav {
  display: flex;
  flex-direction: row;
  color: #1364ae;
  margin-bottom: 20px;
  justify-content: center;
}

.container-footer-nav a {
  font-family: "NimbusSans-Regular";
  border-right: 1px solid #e6e6e6;
  max-height: 16px;
  padding: 0 30px;
}

.container-footer-nav a:last-of-type {
  border-right: unset;
}

/* .container-contatos-footer {
  background: transparent
    linear-gradient(90deg, #189cd9 0%, #1f71b8 55%, #29265b 100%) 0% 0%
    no-repeat padding-box;
  box-shadow: 0px 5px 10px #0000000d;

  & .contatos-footer-wrapper {
    color: #fcfcfc;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;

    & .footer-comercial {
      display: flex;
      flex-direction: row;
      gap: 10px;

      & div {
        display: flex;
        flex-direction: column;
        gap: 5px;

        & span:first-child {
          font-family: "Ubuntu-Regular", sans-serif;
          font-size: 10px;
          line-height: 11px;
          letter-spacing: -0.1px;
          text-transform: uppercase;
        }

        & span:nth-child(2) {
          font-family: "Ubuntu-Bold", sans-serif;
          line-height: 18px;
          letter-spacing: -0.18px;
          text-transform: uppercase;
        }
      }
    }

    & .footer-portais {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 5px;
    }
  }
} */
.container-contatos-footer {
  background: transparent
    linear-gradient(90deg, #189cd9 0%, #1f71b8 55%, #29265b 100%) 0% 0%
    no-repeat padding-box;
  box-shadow: 0px 5px 10px #0000000d;
}

.container-contatos-footer .contatos-footer-wrapper {
  color: #fcfcfc;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.container-contatos-footer .contatos-footer-wrapper .footer-comercial {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.container-contatos-footer .contatos-footer-wrapper .footer-comercial div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.container-contatos-footer
  .contatos-footer-wrapper
  .footer-comercial
  div
  span:first-child {
  font-family: "Ubuntu-Regular", sans-serif;
  font-size: 10px;
  line-height: 11px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
}

.container-contatos-footer
  .contatos-footer-wrapper
  .footer-comercial
  div
  span:nth-child(2) {
  font-family: "Ubuntu-Bold", sans-serif;
  line-height: 18px;
  letter-spacing: -0.18px;
  text-transform: uppercase;
}

.container-contatos-footer .contatos-footer-wrapper .footer-portais {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.footer-portais-funcionamento-title {
  font-family: "Ubuntu-Regular", sans-serif;
    font-size: 10px;
    line-height: 11px;
    letter-spacing: -0.1px;
    text-transform: uppercase;
}
.footer-portais-funcionamento {
  font-family: "Ubuntu-Bold", sans-serif;
  line-height: 18px;
  letter-spacing: -0.18px;
  text-transform: uppercase;
  font-size: 16px;
}
.container-contatos-footer .contatos-footer-wrapper .footer-portais p span{
  font-family: "Ubuntu-Bold", sans-serif !important;
  line-height: 18px !important;
  letter-spacing: -0.18px !important;
  text-transform: uppercase !important;
  font-size: 16px !important;
}


/* .mw-footer-copy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: "NimbusSans-Regular", sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #1364ae;
  padding: 25px;

  & .developed-by {
    color: #727273;
    font-family: "Ubuntu-Regular", sans-serif;
    font-size: 12px;
    line-height: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
} */
.mw-footer-copy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: "NimbusSans-Regular", sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #1364ae;
  padding: 25px;
}

.mw-footer-copy .developed-by {
  color: #727273;
  font-family: "Ubuntu-Regular", sans-serif;
  font-size: 12px;
  line-height: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.mw-footer .mw-footer-copyright > .mw-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 40px;
}

.copy {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.mw-footer .mw-footer-copyright > .mw-container p {
  font-size: 12px;
  font-family: "Lato-Regular";
  line-height: 28px;
}

.mw-footer .mw-footer-copyright .mw-container a > img {
  width: 30px;
}

.imoveis.active {
  display: flex;
  animation: showItens 0.6s;
}

.imoveisImg.active {
  filter: brightness(0) saturate(100%) invert(45%) sepia(61%) saturate(2053%)
    hue-rotate(167deg) brightness(94%) contrast(102%);
}

.veiculos.active {
  display: flex;
  animation: showItens 0.6s;
}

.veiculosImg.active {
  filter: brightness(0) saturate(100%) invert(77%) sepia(76%) saturate(3000%)
    hue-rotate(4deg) brightness(105%) contrast(100%);
}

.empregos.active {
  display: flex;
  animation: showItens 0.6s;
}

.empregosImg.active {
  filter: brightness(0) saturate(100%) invert(74%) sepia(76%) saturate(866%)
    hue-rotate(18deg) brightness(94%) contrast(91%);
}

.diversos.active {
  display: flex;
  animation: showItens 0.6s;
}

.diversosImg.active {
  filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7017%)
    hue-rotate(320deg) brightness(90%) contrast(104%);
}

@keyframes showItens {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .copy {
    flex-direction: column;
  }
}

@media (max-width: 1298px) {
  .contatos-footer-wrapper {
    padding: 20px;
  }
}

@media (max-width: 1290px) {
  .mw-footer .mw-footer-content {
    justify-content: center;
    align-items: center;
    gap: 85px;
  }
}

@media (max-width: 960px) {
  .mw-footer .mw-footer-content .mw-footer-share > ul {
    flex-wrap: wrap;
  }

  .copy {
    gap: unset;
  }
}

@media (max-width: 912px) {
  .mw-footer-nav {
    text-align: center;
  }

  /* .mw-footer .mw-footer-content .mw-footer-share {
    text-align: center;
  } */

  .mw-footer .mw-footer-content .mw-footer-share ul {
    flex-direction: column;
  }

  .mw-footer-nav ul {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .mw-footer-logo {
    flex-direction: column;
  }

  .mw-footer-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .mw-footer-list li a {
    text-align: start;
  }

  /* .container-footer-nav {
    flex-direction: row;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
    & a {
      font-size: 14px;
      padding: unset;
      width: calc((100% / 2) - 10px);
      border-right: unset;
    }
  } */

  .container-footer-nav {
    flex-direction: row;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .container-footer-nav a {
    font-size: 14px;
    padding: unset;
    width: calc((100% / 2) - 10px);
    border-right: unset;
  }

  .mw-footer-content {
    flex-direction: column;
  }

  .mw-footer-nav ul li a img {
    width: 120px;
    height: 100%;
  }
  .mw-footer .mw-footer-content {
    padding: 0 20px;
  }
  .mw-footer .mw-footer-content .mw-footer-share ul li a {
    width: 120px;
  }

  .mw-footer .mw-footer-content .mw-footer-share ul {
    flex-direction: row;
    justify-content: space-between;
  }

  .mw-footer-nav ul {
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
  }
  /* .container-contatos-footer {
    background: transparent
      linear-gradient(90deg, #189cd9 0%, #1f71b8 55%, #29265b 100%) 0% 0%
      no-repeat padding-box;
    box-shadow: 0px 5px 10px #0000000d;

    & .contatos-footer-wrapper {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      & .footer-comercial {
        & div {
          & span:nth-child(2) {
            line-height: 16px;
            letter-spacing: -0.16px;
          }
        }
      }
      & .footer-logo {
        display: none;
      }
      & .footer-portais {
        & span {
        }
      }
    }
  } */
  .container-contatos-footer {
    background: transparent
      linear-gradient(90deg, #189cd9 0%, #1f71b8 55%, #29265b 100%) 0% 0%
      no-repeat padding-box;
    box-shadow: 0px 5px 10px #0000000d;
  }

  .container-contatos-footer .contatos-footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 20px;
  }

  .container-contatos-footer
    .contatos-footer-wrapper
    .footer-comercial
    div
    span:nth-child(2) {
    line-height: 16px;
    letter-spacing: -0.16px;
  }

  .container-contatos-footer .contatos-footer-wrapper .footer-logo {
    display: none;
  }

  /* .mw-footer-copy {
    flex-direction: column;
    gap: 20px !important;
    align-items: flex-start !important;
    font-size: 10px !important;
    & span {
      display: flex;
      align-items: center;
    }
    & .developed-by {
      font-size: 10px;
      line-height: 20px;
      color: #727273;
      gap: 12px;
    }
  } */
  .mw-footer-copy {
    flex-direction: column;
    gap: 20px !important;
    align-items: flex-start !important;
    font-size: 10px !important;
  }

  .mw-footer-copy span {
    display: flex;
    align-items: center;
  }

  .mw-footer-copy .developed-by {
    font-size: 10px;
    line-height: 20px;
    color: #727273;
    gap: 12px;
  }
  .mw-footer .mw-footer-content .mw-footer-share ul li a {
    background-color: var(--color-01);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 158px;
    gap: 10px;
    padding: 14px 36px;
    color: #ffffff;
    border-radius: 10px;
    font-size: 14px;
  }
}

@media (max-width: 615px) {
  .mw-footer .mw-footer-logo {
    display: flex;
    justify-content: center;
  }

  .mw-footer .mw-footer-content {
    gap: 70px;
  }

  .mw-footer-logo {
    display: flex;
    justify-content: center;
  }
  .mw-footer-logo > img {
    width: 208px;
    height: 65px;
  }

  .mw-footer-logo {
    justify-content: start;
  }
}

@media (max-width: 480px) {
  .mw-footer .mw-footer-content {
    gap: 30px;
  }
}

@media (max-width: 960px) {
  .mw-footer-logo {
    margin: 40px 0 45px 0;
  }
}
