/* css styles */

/* Mostrar los enlaces de logos en línea */
.about-links {
  display: flex;
  gap: 24px; /* espacio entre logos */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* por si se ven en móvil */
}

/* FACULTAT D’ECONOMIA */
.about-links .bi-globe {
  background-image: url("images/uv.jpeg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 160px;
  height: 80px;
  display: inline-block;
  color: transparent !important;
  border: none;
  box-shadow: none;
}

/* GENERALITAT VALENCIANA */
.about-links .bi-building {
  background-image: url("images/gva.jpeg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 160px;
  height: 80px;
  display: inline-block;
  color: transparent !important;
  border: none;
  box-shadow: none;
}

#hero-heading {
  text-align: justify;
}

/* styles.css */
p {
  text-align: justify;       /* alineación completa */
  text-justify: inter-word;  /* distribución homogénea de espacios */
}