#footer-placeholder {
  background-color: #fdfdf4;
  color: #393937;
  padding: 3rem 1rem 2rem;
  font-family: var(--fuente-principal);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Contenedor general */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

/* Cada columna */
.footer-col {
  flex: 1 1 240px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: #344e41;
}

/* Identidad */
.footer-identidad {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-identidad img {
  width: 90px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.footer-lema {
  font-style: italic;
  font-size: 1rem;
  color: #5f5f5f;
  line-height: 1.5;
}

/* Enlaces */
.footer-enlaces ul {
  list-style: none;
  padding: 0;
}

.footer-enlaces li {
  margin-bottom: 0.4rem;
}

.footer-enlaces a {
  text-decoration: none;
  color: #393937;
  font-size: 1rem;
}

.footer-enlaces a:hover {
  text-decoration: underline;
}

/* Contacto */
.footer-contacto p,
.footer-contacto a {
  font-size: 1rem;
  margin: 0.2rem 0;
  color: #393937;
  text-decoration: none;
}

.footer-contacto a:hover {
  text-decoration: underline;
}

/* Redes */
.footer-redes .social-icons {
  display: grid;
  place-items: center;
  gap: 1rem;
}



.social-icons strong {
  font-size: 1rem;
  gap: 3rem;
  color: #393937;
  transition: color 0.3s ease;
}

.footer-redes a {
  font-size: 1.4rem;
  text-decoration: none;
  color: #393937;
}

.footer-redes a:hover {
  color: #6c757d;
}

.social-icons a {
  width: 20%;
  display: flex;
  gap: 0.5rem;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  font-size: 0.95rem;
  color: #6c757d;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
}

.span-centro {
  font-weight: 600;
  color: #2f3e34;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.5vw, 1.8rem);
  position: relative;
  display: inline-block;
  background-clip: text;
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    text-align: center;
    margin-bottom: -6rem;
  }

  .footer-identidad img {
    width: 80px;
  }

  .social-icons {
    width: 55%;
    display: flex;
    justify-content: center;
  }

}