:root {
  --brand: #02558b;
  --accent: #27c1e6;
  --text: #6c757d;
  /* #6c757d #212529 */
  --success: #28a745;
  --font: "Archivo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ink-muted: #6c757d;
  --ink: #6c757d;
  --brand-700: #014974;
  --brand-50: rgba(2, 85, 139, .06);
}


body {
  font-family: 'Archivo', Arial, sans-serif;
  color: var(--text);
  text-align: justify;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.2;
}

p {
  font-family: "Archivo", Arial, sans-serif;
  color: var(--text);
  text-align: justify;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  font-family: "Archivo", Arial, sans-serif;
  color: var(--accent);
  font-weight: 300;
}


h2 {
  font-family: "Archivo", Arial, sans-serif;
  color: var(--brand);
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.8rem;
  margin-bottom: .3rem;
}

h4 {
  font-family: "Archivo", Arial, sans-serif;
  /*font-style: italic;*/
  color: var(--accent);
  font-weight: 600;
  line-height: 1.2;
  font-size: 1.3rem;
  margin-bottom: .3rem;
}


@media (max-width: 576px) {
  .container {
    --bs-gutter-x: 4rem;
    /* 32px */
  }
}

.section-separator {
  width: 80%;
  /* ocupa el 80% del ancho de la pantalla */
  height: 2px;
  /* grosor de la línea */
  margin: 1rem auto;
  /* centrada con espacio arriba y abajo */
  margin-top: 0;
  background-color: rgba(2, 85, 139, 0.2);
  /* color base */
  box-shadow: 0 2px 5px rgba(2, 85, 139, 0.5);
  /* sombra con el azul del brand */
  border-radius: 2px;
  /* bordes suaves */
}

.section-separator-inside-no-border {
  width: 80%;
  /* ocupa el 80% del ancho de la pantalla */
  height: 2px;
  /* grosor de la línea */
  margin: 10px auto;
  margin-bottom: 25px;
  /* centrada con espacio arriba y abajo */
  background-color: rgba(2, 85, 139, 0.2);
  /* sombra con el azul del brand */
  border-radius: 2px;
  /* bordes suaves */
}



li {
  font-family: "Archivo", Arial, sans-serif;
  color: var(--text);
  text-align: justify;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

li b {
  font-weight: 300;
}

p b {
  font-weight: 600 !important;
}


.cursor-pointer {
  cursor: pointer !important;
}