/* ================================================
   FOOTER.CSS — Pie de página · Mobile First
   ================================================ */

footer {
  background: #070707;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 3rem var(--px) 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── LOGO / MARCA ── */
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  opacity: 0.9;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--oro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-claim {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--texto-fino);
  margin-top: 0.3rem;
}

/* ── LINKS ── */
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texto-suave);
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

/* ── CONTACTO ── */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  font-size: 0.82rem;
  color: var(--texto-suave);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--oro);
}

/* ── REDES SOCIALES ── */
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--texto-suave);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--oro);
  color: var(--oro);
}

/* ── DIVIDER ── */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,0.08);
}

/* ── COPY ── */
.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--texto-fino);
  text-align: center;
  line-height: 1.8;
}

/* ── TABLET ── */
@media (min-width: 600px) {
  .footer-inner {
    gap: 2.5rem;
  }
}

/* ── DESKTOP ── */
@media (min-width: 960px) {
  footer {
    padding: 3rem var(--px) 2rem;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    gap: 3rem;
  }

  .footer-logo-wrap {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-links a {
    min-height: auto;
  }

  .footer-contact {
    align-items: flex-end;
  }

  .footer-social {
    justify-content: flex-end;
  }

  .footer-copy {
    text-align: center;
  }
}
