
.footer {
  background-color: var(--color-footer-100);
  padding: 2.5rem;
  padding-bottom: 0;
}

.footer__container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer__info-container {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.footer__info-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__info-title{
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-footer-500);
}

.footer__info-links-container{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer__info-link{
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-footer-500);
  transition: opacity 0.1s ease-in-out;
}
.footer__info-link:hover{
  opacity: 85%;
}

.footer__info-whatsapp-container{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-block: 1.5rem;
}

.footer__info-whatsapp-icon {
  width: 2rem;
}

.footer__info-whatsapp-title{
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-footer-500);
}

.footer__legal-container{
  margin-top: 2rem;
  padding-block: 0.15rem;
  border-top: 0.1rem solid var(--color-footer-500);
}
.footer__legal-text{
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  color: var(--color-footer-500);
}

.footer__info-app-logo{
  width: 10rem;
}

.footer__contact-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  gap: 6rem;
}

.icon--logo-footer {
  width: 15rem;
  height: 5rem;
  background-color: var(--color-footer-500);
}

.footer__contact-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__contact-socials-title{
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-footer-500);
  display: inline-block;
  margin-bottom: 0.25rem;
}

.footer__contact-socials-container{
  display: flex;
  align-items: center;
  gap: 1rem;
}


.footer__contact-social > .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-footer-500);
}

@media screen and (max-width: 1200px) {
  .footer__info-container{
    width: 100%;
    gap:6rem;
    /* justify-content: space-around; */
  }

  .footer__contact-container{
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .footer__info-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 500px) {
  .footer__info-container{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .footer__contact-container{
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer__contact-socials{
    align-items: flex-start;
  }  
}