/************************ FOOTER *****************************************/
footer {
  grid-area: footer;
  border-top: 0.15em solid #2b2b2b;
  background-color: rgba(243, 221, 199, 0.518);
  box-shadow: 0 -0.35em 0.9em rgba(0, 0, 0, 0.25);
  padding: clamp(1em, 2vw, 2.2em) 0 0;
}

.footer-contenedor {
  width: min(92%, 70em);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(0.8em, 1.5vw, 1.4em);
  padding-bottom: clamp(0.8em, 1.6vw, 1.4em);
}

.footer-bloque {
  border: 0.08em solid rgba(0, 0, 0, 0.35);
  background-color: rgba(216, 171, 80, 0.18);
  border-radius: 0.8em;
  padding: clamp(0.8em, 1.6vw, 1.2em);
  box-shadow: 0.15em 0.15em 0.45em rgba(0, 0, 0, 0.2);
}

footer{
  font-family: "EB Garamond", serif;
}

.footer-titulo {
  margin: 0 0 0.8em 0;
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: clamp(1em, 1.1vw + 0.6em, 1.25em);
  color: #4a0000;
}

.footer-logo img {
  height: 7rem;
  width: auto;
  display: block;
}

.footer-texto {
  font-size: 1rem;
  font-weight: bold;
}

.footer-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-lista li {
  margin: 0.45em 0;
}

.footer-enlace {
  text-decoration: none;
  font-family: "Cinzel", serif;
  color: black;
  font-size: 1rem;
  font-weight: bold;
}

.footer-enlace:hover {
  text-decoration: underline;
}

.footer-enlace--destacado {
  display: inline-block;
  margin-top: 0.5em;
  padding: 0.45em 0.75em;
  border: 0.12em solid #3b2518;
  border-radius: 0.7em;
  background-color: rgba(74, 168, 197, 0.35);
  box-shadow: 0.15em 0.15em 0.45em rgba(0, 0, 0, 0.25);
}

.footer-redes {
  display: flex;
  gap: clamp(0.6em, 1vw, 1em);
  margin-top: 0.9em;
  font-size: clamp(0.95em, 0.6vw + 0.5em, 1.15em);
}

.footer-icono {
  color: black;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  transition: transform 0.12s ease;
}

.footer-icono:hover {
  transform: translateY(-0.08em);
}

.footer-barra {
  border-top: 0.08em solid rgba(0, 0, 0, 0.35);
  padding: 0.9em 0;
  width: min(92%, 70em);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: clamp(0.9em, 0.5vw + 0.6em, 1.05em);
}

.footer-copyright {
  margin: 0;
}

.legal {
  font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 62em) {
  .footer-contenedor {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 35em) {
  .footer-contenedor {
    grid-template-columns: 1fr;
  }
  .footer-barra {
    flex-direction: column;
    align-items: flex-start;
  }
}
