/* Footer */
.footer {
  padding-top: 5rem;
  background-color: var(--light);
}

.titulo-footer {
  margin-bottom: .75rem;
  color: var(--secundario);
  font-size: 1.375rem;
}

.link-container-footer {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.link-footer {
  font-size: 1rem;
  color: var(--dark);
  text-decoration: none;
}

/* Datos de Contacto */
.datos-footer {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.datos-footer i {
  color: var(--secundario);
  margin-right: .25rem;
}

/* Redes Sociales */
.rrss-footer-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 10px;
}
.rrss-footer {
  border-radius: 50%;
  color: var(--secundario);
  background-color: var(--white);
}

/* Medios de Pago */
.footer-misc-icon {
  width: 50px;
  padding: 5px;
  height: auto;
  background-color: white;
  border-radius: 2px;
  margin-inline: 5px;
}

/* Certificaciones */
.certificaciones-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-block: 4.5rem;
}

.certificaciones-footer img {
  width: 5.5rem;
  height: 5.5rem;
  filter: grayscale(100%);
  transition: .25s;
}

/* Logo Footer */
.logo-footer {
  display: flex;
  justify-content: center;
  margin-block: 5rem;
}

/* Politicas */
.politicas-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-block: 2rem;
  gap: 2rem;
}

.politicas-footer a {
  color: var(--dark);
  text-decoration: none;
}

/* Copyright */
.copyright {
  padding: 25px 0;
  color: var(--secundario);
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}
.copyright a {
  color: var(--primario);
  transition: .25s;
}
.copyright a:hover {
  color: var(--cuarto);
}

@media (max-width: 768px) {
  .footer-sm-center {
    text-align: center;
  }
  .footer-sm-center a {
    text-align: center;
  }
  .pagos-footer {
    display: flex;
    justify-content: center;
  }
  .politicas-footer a {
    margin-right: 10px;
    margin-bottom: 5px;
  }
}