/* ============================================
   TeleAdoración – Footer
   ============================================ */

.ta-footer {
  background: var(--ta-blue-dark);
  padding: 50px 0 0;
  color: rgba(255,255,255,0.7);
}

.ta-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.ta-footer__logo img {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
}

.ta-footer__address {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 400px;
}

.ta-footer__address a {
  color: var(--ta-gold);
}

.ta-footer__address a:hover {
  text-decoration: underline;
}

.ta-footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.ta-footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ta-white);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.ta-footer__social-link:hover {
  background: var(--ta-gold);
  color: var(--ta-blue-dark);
  transform: translateY(-3px);
}

.ta-footer__bottom {
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.ta-footer__bottom a {
  color: var(--ta-gold);
}

@media (max-width: 768px) {
  .ta-footer {
    padding: 40px 0 0;
  }
}
