
.main-footer { position: relative; width: 100%; background: var(--global-bg-dark); }
.footer-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.footer-wrapper .container-footer {
  position: relative;
  width: 92%;
  margin: 0 auto;
  padding: 40px 0;
  border: 0;
  overflow: hidden;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #9b9b9bd6;
  position: relative;
}

.footer-col { /*flex: 1 1 22%;*/ min-width: 20%; text-align: left; }
.footer-col .column { position: relative; width: 75%; margin: 0; text-align: left; }
.footer-col p { display: block; font-size: 15px; color: #f2f2f2; }

.footer-title {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  color: var(--white);
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #aaa;
  margin-top: 6px;
}

/* LISTS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Tratamente – 2 coloane */
.footer-col.treatments ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.footer-col ul li {
  margin: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 4px;
  color: #f2f2f2;
  font-size: 13px;
}

.footer-col a {
  color: #a9bbe6;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
  font-weight: 400;
  line-height: 33px;
}

.footer-col .footer-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
}

.footer-col .footer-title a:hover {
  color: var(--white);
}

/* SOCIAL ICONS */
.social-icons { display: flex; align-items: center; justify-content: flex-start; gap: 5px; padding: 0; margin: 19px 0; }

.social-icons a { display: flex; align-items: center; justify-content: center; margin-right: 5px; transition: color 0.3s; width: 38px; height: 38px; line-height: normal; background-color: #304377; border-radius: 7px; }
.social-icons a:last-child { margin-right: 0px; }
.social-icons a:hover { background-color: var(--footer-icon-hover); }

i.facebook, i.instagram, i.twitter, i.linkedin { display: flex; align-items: center; justify-content: center; padding: 0; margin: 0; width: 18px; height: 18px; }
i.facebook::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(../images/facebook.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(90%) sepia(20%);
  margin: 0;
}
i.instagram::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(../images/instagram.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(90%) sepia(20%);
  margin: 0;
}
i.twitter:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(../images/twitter.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(90%) sepia(20%);
  margin: 0;
}
i.linkedin:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../images/linkedin.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(90%) sepia(20%);
  margin: 0;
}

/* BOTTOM FOOTER */
.footer-bottom {
  display: flex; 
  width: 100%;
  font-size: 13px;
  color: #e1e1e1;
  padding: 17px 0;
  text-align: left;
}
.footer-bottom div {
  font-size: 14px; color: #e1e1e1; margin: 6px 0; padding-right: 15px; 
}
.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 auto;
}
.footer-bottom ul li {
  display: inline-block;
  margin: 6px 0;
  padding: 0 0 9px 0;
  color: #f2f2f2;
}
.footer-bottom ul li::after {
    content: " | ";
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0 9px;
    color: #f7f7f7;
}
.footer-bottom ul li:last-child:after {
    content: "";
    padding: 0;
}
.footer-bottom a {
    color: #3bd7ff;
    text-decoration: none;
    transition: color 0.3s;
    text-decoration: none;
    line-height: 28px;
}
.footer-bottom p span {
  float: right; 
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (min-width: 761px) and (max-width: 1280px) {

  .footer-col { flex: 1 1 50%; min-width: 50%; }
  .slogan { flex: 1 1 100%; min-width: 100%; }
  .treatments { flex: 1 1 100%; min-width: 100%; margin: 0; }
}

@media screen and (max-width: 760px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 20px;
    position: relative;
  }
  .footer-logo { position: static; }

  .footer-col { flex: 1 1 100%; min-width: 100%; }
  .footer-col .column { width: 100%; }
  .footer-bottom ul { margin: 0; }
}