/* =================================================
   FOOTER (corporativo limpio – FIX MOBILE)
   ================================================= */

.footer {

  /* fondo gris oscuro industrial */
  background: linear-gradient(180deg, #1c1c1c, #111);

  padding: 28px 8%;

  border-top: 1px solid rgba(255,255,255,0.05);

  text-align: center;
}


/* =========================
   CONTENEDOR
   ========================= */

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}


/* líneas laterales */
.footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  max-width: 260px;
}


/* =========================
   TEXTO
   ========================= */

.footer p {
  color: rgba(255,255,255,0.75);
  font-family: "questrial";
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin: 0;

  /* 🔥 IMPORTANTE */
  white-space: normal;     /* permite saltos */
  line-height: 1.5;
  max-width: 95%;
  word-break: break-word;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {

  .footer {
    padding: 22px 6%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }

  .footer-line {
    display: none;
  }

  .footer p {
    font-size: 0.85rem;
  }

}
