/*  Header */

h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: var(--electric); /* #1EA7FF */
}

/* TEXT  */

p {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto;
  text-align: justify;
}

/* Modules*/

.module {
  text-align: center;
}

/* Lists*/

.list {
  list-style: none;
  display: grid;
  gap: 14px;
  padding-left: 0;
  max-width: 820px;
  margin: 0 auto;
  justify-content: start;
}

.list li {
  position: relative;
  padding-left: 18px;
  text-align: left;
  color: var(--text-muted);
  line-height: 1.6;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--electric);
  font-size: 18px;
  line-height: 1;
}

/* Contact*/

.contact {
  margin-top: 12px;
}

.contact strong {
  font-weight: 500;
  color: var(--text-main);
}

.contact span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 14px;
}

/* Links */

a {
  color: var(--electric);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Centred */

.contact {
  text-align: center;
}

.contact p {
  text-align: center;
}

.contact-email {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.email-icon {
  width: 18px;
  height: 18px;
  /*flex-shrink: 0;*/
  filter: invert(1);

}

/* Logos Entorno */

.logos-entorno h2 {
  margin-bottom: 12px;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 36px;
}

.logos-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.25s ease, filter 0.25s ease;
  filter: grayscale(100%) brightness(1.4);
}

.logos-grid a:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  text-decoration: none;
}

.logos-grid img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
