/* ==========================================================================
   Componente: Footer
   Responsabilidad: layout y estilos del cierre del sitio.
   La animación de entrada la maneja la utilidad compartida .reveal
   (ver css/utilities/reveal.css) — este archivo no la redefine.
   ========================================================================== */

.footer {
  background-color: var(--ink, #0b0908);
  padding: 4rem 5rem 2rem;
  border-top: 1px solid rgba(239, 231, 219, 0.08);
}

.footer__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__logo {
  font-family: var(--font-display, 'Fraunces', serif);
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
  color:var(--bone, #efe7db);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.footer__contact-item {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.9rem;
  color: var(--bone, #efe7db);
  opacity: 0.6;
  text-decoration: none;
  line-height: 1.5;
}

.footer__contact-item--link:hover {
  opacity: 1;
}

.footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.footer__cta {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bone, #efe7db);
  background-color: transparent;
  border: 1px solid rgba(239, 231, 219, 0.3);
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.footer__cta:hover,
.footer__cta:focus-visible {
  border-color: var(--bone, #efe7db);
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social-link {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bone, #efe7db);
  opacity: 0.78;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer__social-link:hover {
  opacity: 1;
}

.footer__legal {
  width: 100%;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(239, 231, 219, 0.06);
  text-align: center;
}

.footer__legal p {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.78rem;
  color: var(--bone, #efe7db);
  opacity: 0.45;
}

/* Mobile */
@media (max-width: 760px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;  /* Centra horizontalmente */
    gap: 2rem;
  }

  .footer__brand {
    align-items: center;  /* Centra el logo y la dirección */
    text-align: center;   /* Centra el texto */
  }

  .footer__brand-mark {
    justify-content: center;  /* Centra el logo con el texto */
  }

  .footer__actions {
    align-items: center;  /* Centra el CTA y redes */
  }

  .footer__social {
    justify-content: center;  /* Centra los enlaces de redes */
  }

  .footer__legal {
    text-align: center;  /* Asegura que el crédito quede centrado */
  }
}

/* ============================================
   LOGO SVG - URBANO SELLO (VERSIÓN REAL)
   ============================================ */
.footer__brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__sello {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  color: var(--bone, #efe7db);
  transition: color 0.3s ease;
  transform: translateY(-7px);
}

.footer__sello path {
  fill: #e2a24a;  /* Blanco puro para la "U" */
}

.footer__credit-link {
  color: var(--bone, #efe7db);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer__credit-link:hover {
  opacity: 1;
}

