/* ═══ V2GO — Pie ═══════════════════════════════════════════════ */
.v2-foot {
  background-color: var(--navy);
  color: rgba(255,255,255,0.66);
  font-size: var(--t-base);
  padding-top: clamp(var(--s-12), 6vw, var(--s-20));
  position: relative;
  overflow: hidden;
}
.v2-foot a { transition: color var(--d-fast) var(--ease); }
.v2-foot .v2-rule { height: 1px; background-color: rgba(255,255,255,0.14); border: 0; }

.v2-foot__colophon { padding-bottom: clamp(var(--s-8), 4vw, var(--s-14)); }
.v2-foot__claim {
  font-size: clamp(2rem, 5.6vw, var(--t-4xl));
  font-weight: var(--p-light);
  line-height: 1.08;
  letter-spacing: var(--ls-mega);
  color: #fff;
  margin: 0;
  max-width: 20ch;
}
.v2-foot__claim span {
  display: inline-block;
  background-color: var(--ambar);
  color: var(--navy);
  font-weight: var(--p-bold);
  border-radius: var(--r-pill);
  padding: 0.04em 0.36em 0.1em;
}

.v2-foot__body {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
  padding-block: clamp(var(--s-10), 5vw, var(--s-16));
}
.v2-foot__logo { display: block; margin-bottom: var(--s-6); }
.v2-foot__logo img { width: 172px; height: auto; }
.v2-foot__desc { color: rgba(255,255,255,0.6); font-size: var(--t-base); line-height: var(--lh-normal); max-width: 34ch; margin-bottom: var(--s-7); }
.v2-foot__contact { display: flex; flex-direction: column; gap: var(--s-2); margin-bottom: var(--s-8); }
.v2-foot__contact a { color: #fff; }
.v2-foot__contact a:hover { color: var(--ambar); }
.v2-foot__vigilado img { width: 160px; height: auto; opacity: 0.75; }

.v2-foot__col-title { font-size: var(--t-base); font-weight: var(--p-bold); color: var(--ambar); margin-bottom: var(--s-5); }
.v2-foot__col ul { display: flex; flex-direction: column; gap: var(--s-3); }
.v2-foot__col a { display: flex; gap: var(--s-3); color: rgba(255,255,255,0.74); font-size: var(--t-base); line-height: 1.35; }
.v2-foot__col a span { color: rgba(255,255,255,0.34); flex: none; }
.v2-foot__col a:hover, .v2-foot__col a:hover span { color: var(--ambar); }

.v2-foot__social { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.v2-foot__social a {
  width: 46px; height: 46px; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  background-color: rgba(255,255,255,0.10);
  color: #fff;
  transition: background-color var(--d-fast) var(--ease), color var(--d-fast) var(--ease);
}
.v2-foot__social a:hover { background-color: var(--ambar); color: var(--navy); }

.v2-foot__legal {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); flex-wrap: wrap;
  padding-block: var(--s-7) var(--s-10);
  font-size: var(--t-sm);
}
.v2-foot__legal-nav { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s-3) var(--s-6); }
.v2-foot__legal-title { color: rgba(255,255,255,0.42); }
.v2-foot__legal-nav a { color: rgba(255,255,255,0.66); }
.v2-foot__legal-nav a:hover { color: var(--ambar); }
.v2-foot__copy { color: rgba(255,255,255,0.42); margin: 0; }

@media (max-width: 1000px) {
  .v2-foot__body { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-10) var(--gutter); }
  .v2-foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .v2-foot__body { grid-template-columns: minmax(0, 1fr); }
  .v2-foot__legal { flex-direction: column; align-items: flex-start; }
}
