/* 
  iBahia • 2023 - MUNDIWARE
*/
.ib-footer{
  display: flex;
  flex-direction: column;
  background-color: #F7F7F7;
}
.ib-footer > .wrapper{
  max-width: 1200px;
  position: relative;
  margin: auto;
  width: 100%;
  gap: 20px;
  display: flex;
  justify-content: space-between;;
  padding: 30px 0px 33px 0px;

}
.ib-footer > .wrapper > a{
  width: 40px;
  height: 30px;
}
.ib-footer > .wrapper > a > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ib-footer > .wrapper > div{
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.ib-footer > .wrapper > div > a > img{
  width: 100%;
  max-width: 184px;
  height: 98px;
}
.ib-footer > .wrapper > div > div{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ib-footer > .wrapper > div > div > h3{
  font-size: 18px;
  line-height: 22px;
  color: #181818;
  font-weight:600;
}
.ib-footer > .wrapper > div > div > .social{
  display: flex;
  align-items: center;
  gap: 10px;
}
.ib-footer > .wrapper > div > div > .social > a{
  width: 39px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--vermelhoPadrao);
  border: 1px solid var(--vermelhoPadrao);
}
.ib-footer > .wrapper > ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ib-footer > .wrapper > ul li:first-of-type{
  margin-bottom:5px;
  font-weight: 700;
  text-transform: uppercase;
  position: initial;
}
.ib-footer > .wrapper > ul li{
  font-size: 16px;
  line-height: 20px;
  color: #181818;
  position: relative;
  width: fit-content;
  cursor: pointer;
  text-transform: lowercase;
}
.ib-footer > .wrapper > ul li > a{
  color: #181818;
  text-transform: capitalize;
}
.ib-footer > .wrapper > ul li:after{
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.ib-footer > .wrapper > ul li:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.ib-footer > .footer-bottom {
  display:flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  position: relative;
  margin: auto;
  width: 100%;
}

.ib-footer > .footer-bottom > h3{
  font-size: 14px;
  line-height:16px;
  color:#181818;
  text-transform: lowercase;
  text-align: center;
  padding: 13px 20px;
}

.footer-bottom-developed {
  display:flex;
  align-items: center;
  gap:18px;
}
.footer-bottom-developed img:first-of-type {
  width: 133px;
  height: 23px;
  object-fit: contain;
}
.footer-bottom-developed img:last-of-type {
  width: 135px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 630px){
  .ib-footer > .wrapper{
    padding: 30px 20px 40px;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start!important;
    max-width: 100%;
    padding: 0px 20px;
    gap:30px;
  }

  .ib-footer>.footer-bottom>h3 {
    font-size: 14px;
    background-color: unset;
    line-height: 18px;
    letter-spacing: 0.14px;
    color: #181818;
    text-transform: lowercase;
    text-align: left;
    padding: 0px;
    max-width: 63%;
  }

  .ib-footer {
    padding-bottom: 30px;
  }

  .ib-footer > .wrapper > div > a {
    display:none;
  }
}