.fln-footer {
  background-color: var(--red);
}
.fln-footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.footer-first-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer-sociais {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: fit-content;
}
.footer-sociais a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow);
  border-radius: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.footer-links {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 170px;
}
.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-links-content {
  max-width: 130px;
  display: flex;
  flex-direction: column;
}
.footer-links-content h3 {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--yellow);
}
.footer-links-content span {
  font-family: "Poppins-Light", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--white);
  white-space: nowrap;
}

.fln-footer-copy {
  font-family: "Poppins-Light", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--white);
}
.fln-footer-wrapper-mob {
  display: none;
}
.text-logo-wrapper{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.text-logo-wrapper span {
  font-family: "Poppins-Light", sans-serif;
  font-size: 12px;
  line-height: 24px;
  color: var(--white);
}
@media (max-width: 768px) {
  .fln-footer-copy {
    font-size: 12px;
    line-height: 18px;
  }
  .fln-footer-wrapper-mob {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    padding: 35px 0 50px;
  }
  .fln-footer-wrapper-mob-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }
  .fln-footer-wrapper {
    display: none;
    padding: 30px 20px 20px 20px;
  }
  .footer-first-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-first-content > img {
    max-width: 239px;
    width: 100%;
    height: 35px;
  }
  .footer-links {
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-links-content h3 {
    white-space: nowrap;
  }
  .footer-sociais {
    width: 100%;
  }
}