<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">footer {
  width: 100%;
  margin: 0px 0 0;
  /* margin: 50px 0 0; VALOR ORIGINAL */
  padding: 40px 0 40px;
  height: auto;
  background: var(--navy-blue);
}

.flexFooter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: center;
}

.flexFooter svg {
  max-width: 168px;
  height: auto;
}

.oportunidades {
  min-width: 168px;
  width: 25%;
  height: auto;
}

.oportunidades img {
  max-width: 168px;
  height: auto;
}

.social {
  margin: 6px 0 0 0;
}

.social .icons a {
  display: inline-block;
  margin: 0 5px;
  border-radius: 20px;
  background: var(--sky-blue);
  width: 24px;
  height: 24px;
  text-align: center;
}

.social .icons a:hover {
  background: var(--black-00);
}

.social .icons svg {
  width: 14px;
  height: 12px;
  fill: var(--navy-blue);
  margin: 5px auto;
}

.footerNav {
  width: 100%;
  margin-top: 45px;
}

.footerNav ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.footerNav ul li {
  font-size: 15px;
  font-family: 'BentonSansBBVA-Medium';
  font-weight: 200;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}

footer ul li:nth-child(2){
  margin-left: 30px;
}

footer ul li:last-child {
  margin-left: 30px;
}

footer ul li a {
  text-decoration: none;
  color: var(--sky-blue);
}

footer ul li a:hover {
  text-decoration: none;
  color: var(--black-00);
}

.location {
  font-family: 'BentonSansBBVA-Book';
  width: 70%;
  color: var(--black-400);
  font-weight: 100;
  margin: 70px 0 0 0;
}

.location p {
  font-size: 12px;
  line-height: 1.5em;
  margin-bottom: 0;
  max-width: 630px;
}

.slogan {
  width: 30%;
  margin: 80px 0 0 0;
  text-align: right;
}

.slogan p {
  font-family: 'BentonSansBBVA-Medium';
  font-size: 16px;
  color: var(--aqua);
}

@media screen and (max-width: 1024px) {
  .oportunidades {
    width: 100%;
    text-align: center;
    order: 1;
  }

  .social {
    width: 100%;
    margin: 36px auto 0;
    justify-content: center;
    order: 3;
    display: flex;
  }

  .social .icons a {
    width: 34px;
    height: 34px;
  }

  .footerNav {
    margin-top: 40px;
    text-align: center;
    order: 2;
  }

  .footerNav ul {
    flex-direction: row;
    width: 435px;
    margin: 0px auto;
  }

  .footerNav ul li:last-child {
    margin-top: 0px;
    margin-left: 20px;
  }

  .location {
    order: 4;
    width: 100%;
    text-align: center;
    margin: 40px 0 0 0;
  }

  .location p {
    max-width: 600px;
    margin: 0px auto;
  }

  .slogan {
    margin: 40px 0 0 0;
    order: 5;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  .footerNav ul {
    flex-direction: column;
    width: 100%;
    margin: 0px auto;
  }
  .footerNav ul li:nth-child(2) {
    margin-top: 32px;
    margin-left: 0px;
  }
  .footerNav ul li:last-child {
    margin-top: 32px;
    margin-left: 0px;
  }
}

.rrss {
  vertical-align: top !important;
}</pre></body></html>