/* =========================================================
   TVE CANAL - FOOTER.CSS
   Estilo base: negro / blanco
   ========================================================= */

.site-footer {
  background: #050505;
  color: #ffffff;
  padding-top: 76px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 44px;
  align-items: start;
}

.footer-logo {
  height: 66px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.site-footer p {
  color: rgba(255,255,255,.66);
  line-height: 1.75;
  max-width: 480px;
  margin: 0;
  font-size: 15px;
}

.site-footer h4 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 900;
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,.68);
  margin-bottom: 11px;
  font-size: 15px;
  transition: .2s ease;
}

.site-footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 58px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 24px 20px;
  text-align: center;
  color: rgba(255,255,255,.50);
  font-size: 14px;
}

/* Variante por si agregas redes sociales como botones */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255,255,255,.04);
}

.footer-socials a:hover {
  background: #ffffff;
  color: #050505;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo {
    height: 58px;
  }

  .footer-bottom {
    margin-top: 42px;
  }
}