/* ======================================================
   FOOTER – EDITORIAL SINTEGRAD
   Estructura: 4 columnas simétricas
   ====================================================== */

/* ---------- CONTENEDOR GENERAL ---------- */
.footer-editorial {
  background: #080808;
  padding: clamp(4rem, 6vw, 6rem) 1.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- GRID PRINCIPAL ---------- */
.footer-editorial__container {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-editorial__container {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem 3rem;
  }
}

@media (min-width: 1100px) {
  .footer-editorial__container {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.5rem !important;
    align-items: start;
  }
}

/* ---------- COLUMNA GENÉRICA ---------- */
.footer-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-col__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  margin: 0 0 1rem 0;
}

/* ---------- COL 1 — IDENTIDAD ---------- */
.footer-brand__link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand__logo {
  width: 150px;
  max-width: 100%;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.footer-brand__logo:hover {
  opacity: 1;
}

.footer-brand__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0 0 0.6rem 0;
}

.footer-location {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- COL 2 — REDES SOCIALES ---------- */
.footer-social {
  margin-left: 0 !important;
  margin-bottom: 2rem !important;
}

/* Íconos como img (Threads y TikTok) */
.footer-social__img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.footer-social__img-link:hover {
  opacity: 1;
}

.footer-social__img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}

/* ---------- CONTACTO ---------- */
.footer-contact__label {
  margin-top: 0 !important;
}

.footer-contact__phone {
  margin: 0 0 0.3rem 0;
}

.footer-contact__phone a {
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
}

.footer-contact__phone a:hover {
  opacity: 0.8;
}

.footer-contact__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ---------- COL 3 — SERVICIOS ---------- */
/* ---------- COL 4 — EMPRESA ---------- */
.footer-col--nav nav,
.footer-col--empresa nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col--nav nav a,
.footer-col--empresa nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.75rem;
}

.footer-col--nav nav a:last-child,
.footer-col--empresa nav a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-col--nav nav a:hover,
.footer-col--empresa nav a:hover {
  color: rgba(255,255,255,1);
  border-bottom-color: rgba(255,255,255,0.2);
}

/* ---------- CTA EN COL 4 ---------- */
.footer-cta {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-cta__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}

.footer-cta__button {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s ease;
}

.footer-cta__button:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
}

/* ---------- LEGAL ---------- */
.footer-editorial__legal {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.footer-legal__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-legal__links a {
  color: inherit;
  text-decoration: none;
}

.footer-legal__links a:hover {
  text-decoration: underline;
  color: rgba(255,255,255,0.6);
}