/* ============================= */
/* FOOTER                        */
/* ============================= */

.footer {
  background: #07152f;
  color: white;
  padding: 64px 5% 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Columna brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  font-size: 22px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
}

/* PRINT igual al hero pero más pequeño */
.footer-print {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1em;
  color: rgb(242, 240, 247);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0.03em 0.03em 0 rgba(0,0,0,0.3);
  transform: skewX(-8deg);
  display: inline-block;
  margin-left: 1.33em; /* igual que hero */
}

/* contenedor Creativos! igual que hero */
.footer-creativos {
  display: block;
  line-height: 1;
  margin-top: -1.08em;   /* igual que hero */
  margin-left: -0.20em;  /* igual que hero */
  position: relative;
  z-index: 2;
}

.footer-creativos-img {
  display: block;
  width: auto;
  height: 1.85em; /* igual que hero */
  object-fit: contain;
  object-position: left center;
  transform: scaleX(0.85);
  transform-origin: left center;
  filter: brightness(0) invert(1);
}


.footer-brand > p {
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.6;
  max-width: 260px;
}

.footer-redes {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-redes a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.footer-redes a i {
  font-size: 18px;
  color: white;
}

.footer-redes a:hover {
  background: var(--celeste-acento);
  transform: translateY(-2px);
}

/* Columnas links */
.footer-links h4,
.footer-contacto h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: var(--celeste-acento);
}

/* Columna contacto */
.footer-contacto {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contacto p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.footer-contacto p svg {
  width: 14px;
  height: 14px;
  stroke: var(--celeste-acento);
  flex-shrink: 0;
}

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom > p {
  font-size: 12px;
  opacity: 0.45;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}

/* ============================= */
/* RESPONSIVE FOOTER             */
/* ============================= */

@media (max-width: 1000px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 48px 5% 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand > p {
    max-width: 100%;
  }
  .footer-logo {
  font-size: 20px;
}
}
