/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--white);
  color: var(--black);
  padding: clamp(80px, 8vw, 130px) var(--page-padding) clamp(42px, 5vw, 70px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* =========================
   LOGO FOOTER
   Mismo logo que el navbar pero el doble de grande
========================= */

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;            /* doble del gap del nav (10px) */

  margin-bottom: 42px;
  text-decoration: none;
  color: var(--black);

  font-family: var(--font-heading);
  font-size: 46px;      /* doble del nav (23px) */
  font-weight: 800;
  letter-spacing: -0.04em;

  transition: opacity 0.25s ease;
}

.footer-logo:hover {
  opacity: 0.75;
}

/* Marca geométrica — doble del tamaño del nav (20px → 40px) */
.footer-logo-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;

  background:
    linear-gradient(45deg,  currentColor 0 45%, transparent 45%),
    linear-gradient(-45deg, var(--accent) 0 45%, transparent 45%);
}

.footer-logo-text {
  line-height: 1;
}

/* =========================
   REDES SOCIALES
========================= */

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 36px;
}

.footer-social a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  opacity: 0.65;
}

.footer-social img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* =========================
   LINKS LEGALES
========================= */

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--black);
}

.footer-copy {
  color: rgba(0, 0, 0, 0.38);
  font-size: 12px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 760px) {
  .footer-logo {
    font-size: 34px;
    gap: 14px;
    margin-bottom: 36px;
  }

  .footer-logo-mark {
    width: 30px;
    height: 30px;
  }

  .footer-social {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* SVG inline en redes del footer */
.footer-social a svg {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--black);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover svg {
  opacity: 0.6;
  transform: translateY(-3px);
}
