/* ════════════════════════════════════════════
   MueblesDaj — Footer
════════════════════════════════════════════ */

.daj-footer {
  background: #1c1917;
  color: #a8a29e;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════
   CUERPO PRINCIPAL
════════════════════════════ */
.daj-footer__body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px 56px;
}

/* ════════════════════════════
   COLUMNA MARCA
════════════════════════════ */
.daj-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.daj-footer__logo {
  display: inline-flex;
  text-decoration: none;
  line-height: 0;
}
.daj-footer__logo img,
.daj-footer__logo figure img {
  height: 40px !important;
  max-height: 40px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1);  /* logo blanco */
  margin: 0 !important;
}
.daj-footer__logo figure { margin: 0; }

.daj-footer__logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
}
.daj-footer__logo-text span { color: #b45309; }

.daj-footer__desc {
  font-size: .875rem;
  line-height: 1.7;
  color: #78716c;
  max-width: 280px;
}

/* Redes sociales */
.daj-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.daj-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #292524;
  color: #a8a29e;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
  flex-shrink: 0;
}
.daj-footer__social a:hover {
  background: #b45309;
  color: #fff;
}

/* ════════════════════════════
   COLUMNAS DE LINKS
════════════════════════════ */
.daj-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.daj-footer__col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e7e5e4;
  margin-bottom: 4px;
}

.daj-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.daj-footer__col ul li a {
  font-size: .875rem;
  color: #78716c;
  text-decoration: none;
  transition: color 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.daj-footer__col ul li a:hover {
  color: #e7e5e4;
}
.daj-footer__col ul li a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b45309;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: opacity 200ms ease, transform 200ms ease;
}
.daj-footer__col ul li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Contacto */
.daj-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: #78716c;
}
.daj-footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #b45309;
}
.daj-footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}
.daj-footer__contact-item a:hover { color: #e7e5e4; }

/* ════════════════════════════
   SEPARADOR
════════════════════════════ */
.daj-footer__sep {
  border: none;
  border-top: 1px solid #292524;
  margin: 0;
}

/* ════════════════════════════
   BARRA INFERIOR
════════════════════════════ */
.daj-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.daj-footer__copy {
  font-size: .8rem;
  color: #57534e;
}
.daj-footer__copy a {
  color: #78716c;
  text-decoration: none;
  transition: color 200ms ease;
}
.daj-footer__copy a:hover { color: #e7e5e4; }

.daj-footer__legal {
  display: flex;
  gap: 20px;
}
.daj-footer__legal a {
  font-size: .8rem;
  color: #57534e;
  text-decoration: none;
  transition: color 200ms ease;
}
.daj-footer__legal a:hover { color: #e7e5e4; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 768px) {
  .daj-footer__body {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding: 48px 20px 36px;
  }
  .daj-footer__brand {
    grid-column: 1 / -1;
  }
  .daj-footer__bottom {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .daj-footer__body { grid-template-columns: 1fr; }
}
