/* ============================================================
 * SynckPro · Footer (réplica WebPros)
 * Siempre cargado vía index.php (frontend).
 * ============================================================ */

.synck-footer {
  position: relative;
  background: var(--synck-gray-950);
  color: #fff;
  overflow: hidden;
}

/* Decoración de pixeles superior derecha */
.synck-footer__pixels {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 56px);
  grid-auto-rows: 56px;
  pointer-events: none;
}
.synck-footer__pixels i { display: block; }
.synck-footer__pixels i.on { background: var(--synck-core); }

.synck-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 64px;
}

.synck-footer__brand {
  display: grid;
  gap: 20px;
  align-content: start;
}

.synck-footer__logo img { height: 34px; width: auto; }

.synck-footer__address {
  margin: 0;
  color: var(--synck-gray-500);
  font-size: 15px;
  line-height: 1.65;
}

.synck-footer__social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 14px;
}
.synck-footer__social a {
  color: #9da4ae;
  display: inline-flex;
  transition: color .2s ease;
}
.synck-footer__social a:hover { color: #fff; }

.synck-footer__cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--synck-core);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color .2s ease;
}
.synck-footer__cta:hover { background: var(--synck-core-700); }

.synck-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.synck-footer__heading {
  margin: 0 0 20px;
  font-family: var(--synck-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--synck-core-400);
}

.synck-footer__col a {
  color: #c9cdd4;
  font-size: 15.5px;
  text-decoration: none;
  transition: color .15s ease;
}
.synck-footer__col a:hover { color: #fff; }

.synck-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
}
.synck-footer__bottom p {
  margin: 0;
  text-align: center;
  color: var(--synck-gray-500);
  font-size: 14px;
  padding: 22px 16px;
}

@media (max-width: 1023px) {
  .synck-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .synck-footer__grid {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .synck-footer__pixels {
    grid-template-columns: repeat(3, 36px);
    grid-auto-rows: 36px;
  }
}
