/* ── Parte 1: Contacto ─────────────────────────────────── */
.lc-footer__top {
  background: linear-gradient(to bottom, #E7EDF1, #ffffff);
  padding: 84px 0;
}

.lc-footer__top-inner {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lc-footer__contact-col {
  flex: 0 0 376px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 29px;
}

.lc-footer__contact-icon {
  flex-shrink: 0;
  height: 42px;
  width: auto;
}

.lc-footer__contact-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lc-footer__contact-title {
  font-family: var(--lc-font-heading);
  font-size: var(--lc-size-h5);
  font-weight: 500;
  line-height: var(--lc-lh-h5);
  letter-spacing: -0.24px;
  color: var(--lc-text-primary);
  margin: 0;
}

.lc-footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--lc-font-body);
  font-size: var(--lc-size-body);
  font-weight: 400;
  line-height: var(--lc-lh-body);
  letter-spacing: 0.27px;
  color: var(--lc-text-secondary);
}

.lc-footer__contact-items p {
  margin: 0;
}

.lc-footer__contact-items strong {
  font-weight: 700;
  letter-spacing: -0.36px;
  color: var(--lc-text-secondary);
}

.lc-footer__contact-link {
  color: var(--lc-text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lc-footer__contact-link:hover {
  color: var(--lc-brand-primary);
}

/* ── Parte 2: Nav links (azul) ─────────────────────────── */
.lc-footer__dark {
  background: var(--lc-brand-primary);
  padding: 54px 0;
}

.lc-footer__dark-inner {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lc-footer__nav-col {
  flex: 0 0 273px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.lc-footer__nav-heading {
  font-family: var(--lc-font-heading);
  font-size: var(--lc-size-eyebrow);
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 3.64px;
  text-transform: uppercase;
  color: #AACCFF;
  margin: 0;
}

.lc-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lc-footer__nav-list a {
  font-family: var(--lc-font-body);
  font-size: var(--lc-size-body-sm);
  font-weight: 400;
  line-height: var(--lc-lh-body-sm);
  letter-spacing: 0.21px;
  color: var(--lc-text-on-brand);
  text-decoration: none;
}

.lc-footer__nav-list a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Col Síguenos */
.lc-footer__social-col {
  flex: 0 0 273px;
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.lc-footer__social-col > div {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.lc-footer__social-icons {
  display: flex;
  gap: 23px;
  align-items: center;
}

.lc-footer__social-link {
  display: block;
  width: 36px;
  height: 36px;
  transition: opacity 0.15s;
}

.lc-footer__social-link:hover {
  opacity: 0.75;
}

.lc-footer__social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lc-footer__vigilado {
  width: 234px;
  height: 46px;
  object-fit: contain;
  object-position: left;
}

/* ── Parte 3: Copyright ────────────────────────────────── */
.lc-footer__copyright {
  background: #C9C9C9;
  padding: 24px 10px 44px;
  text-align: center;
}

.lc-footer__copyright p {
  font-family: var(--lc-font-body);
  font-size: var(--lc-size-caption);
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.06px;
  color: var(--lc-text-primary);
  margin: 0;
}

@media (max-width: 1199.98px) {
.lc-footer__contact-col {
    flex: 1;
  }

.lc-footer__nav-col,
  .lc-footer__social-col {
    flex: 1;
  }
}

@media (max-width: 767.98px) {
.lc-footer__top {
    padding: 42px 0;
  }

.lc-footer__top-inner {
    flex-direction: column;
    gap: 42px;
  }

.lc-footer__contact-col {
    flex: none;
    width: 100%;
  }

/* En mobile el texto del contacto baja a body-sm */
.lc-footer__contact-items {
    font-size: var(--lc-size-body-sm);
    line-height: var(--lc-lh-body-sm);
    gap: 14px;
  }

.lc-footer__dark-inner {
    flex-direction: column;
    gap: 36px;
  }

.lc-footer__nav-col,
  .lc-footer__social-col {
    flex: none;
    width: 100%;
  }

.lc-footer__social-col {
    gap: 36px;
  }
}
