/* ═══════════════════════════════════════════════
   footer.css — Estilos del Footer
═══════════════════════════════════════════════ */

footer {
  background: var(--navy-dk);
  color: #fff;
}

/* ─── SECCIÓN REDES SOCIALES ─────────────────── */
.footer-social { position: relative; overflow: hidden; }

.footer-social-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,150,105,.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer-social-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  text-align: center;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(5,150,105,.15);
  border: 1px solid rgba(5,150,105,.3);
  color: var(--green-lt);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

.social-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.social-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  max-width: 360px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.social-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  transition: all .3s;
  text-decoration: none;
  min-width: 130px;
}
.social-card:hover {
  transform: translateY(-4px) scale(1.03);
}

.social-card-icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.social-card:hover .social-card-icon { background: rgba(255,255,255,.2); }
.social-card-icon i { font-size: 1.5rem; color: #fff; }

.social-card-name   { font-weight: 600; font-size: .875rem; color: #fff; }
.social-card-handle {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  transition: color .3s;
}
.social-card:hover .social-card-handle { color: rgba(255,255,255,.8); }

.footer-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(5,150,105,.4), transparent);
}

/* ─── INFO DEL COLEGIO ───────────────────────── */
.footer-info { padding: 3rem 0; }

.footer-info-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-info-inner {
    flex-direction: row;
    align-items: flex-start;
  }
}

.footer-logo img {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.footer-about {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-item i {
  color: var(--green-lt);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── BARRA INFERIOR ─────────────────────────── */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }

.footer-bottom-inner {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

.footer-legal { display: flex; gap: 1rem; }
.footer-legal a {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  transition: color .3s;
  text-decoration: none;
}
.footer-legal a:hover { color: var(--green-lt); }
