.footer {
  width: 100%;
  min-height: 3rem;
  background: var(--primary-color);
  color: var(--tx-color);
}

.footer__container {
  max-width: 1200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 3rem 0 0;
  border: none;

}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__box {
  flex: 31.3%;
  padding: 1rem;
}



.footer__copy {
  width: 100%;
  text-align: center;
  padding: 1rem;
}

.footer__title {
  margin-bottom: 20px;
  text-align: center;
}

.footer__box li {
  margin-bottom: 10px;
}

.footer__box:nth-last-child(1) {
  text-align: center;
}

a {
  color: currentColor;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--em-color);
}


.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem;
}

.social-icons li {
  border: 1px solid transparent;
  width: 40px;
  height: 40px;

}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  transform: scale(1);
}

.social-icons a:hover {
  transform: scale(1.1);
  color: var(--em-color);
}

/* botão do whatapp  */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  animation: zoom 2s 10s ease-in-out infinite;
}

.whatsapp-float:hover {
  background-color: #3e965ef6;
  color: #fff;
  text-decoration: none;
}

.my-float {
  margin-top: 16px;
}


/* animação footer  */

.shapedividers {
  overflow: hidden;
  position: relative;

}

.shapedividers::before {
  content: '';
  font-family: 'shape divider from ShapeDividers.com';
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 186% 90px;
  background-position: 50% 100%;
  transform: rotateY(180deg);
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%232f3c4f"/></svg>');

}

@media (min-width:768px) {
  .shapedividers::before {
    background-size: 186% 90px;
    background-position: 50% 100%;
    transform: rotateY(180deg);
  }

}

@media (min-width:1025px) {
  .shapedividers::before {
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 186% 90px;
    background-position: 50% 100%;
    transform: rotateY(180deg);
  }
}

@media (min-width:2100px) {
  .shapedividers::before {
    background-size: 186% calc(2vw + 90px);
  }
}

@media (max-width: 700px) {
  .whatsapp-float {
    width: 30px;
    height: 30px;
    bottom: 50px;
    right: 30px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float i {
    margin: 0;
  }
}

@keyframes zoom {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(1)
  }
}