:root {
  --gray: #494949;
  --botones: #0A939E;
  --naranja: #FF7C43;
  --titulos: #0A6E9F;
  --sm: 14px;
  --md: 16px;
  --lg: 28px;
}

.pagina2 {
  padding: 40px 5%;
  box-sizing: border-box;
  background: #fff;
}

.contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.lado-izquierdo {
  flex: 1 1 350px;
  text-align: center;
}

.dibujo {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.lado-derecho {
  flex: 2 1 500px;
}

.titulo2 {
  font-size: 38px;
  font-family: PT Sans;
  font-weight: bold;
  color: var(--titulos);
  margin-bottom: 30px;
}

.retos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
}

.reto {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reto img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.reto p {
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  color: var(--gray);
  margin: 0;
  line-height: 1.4;
}

.reto p strong {
  font-weight: bold;
}

/* Responsive */

@media (max-width: 768px) {
  .retos-grid {
    grid-template-columns: 1fr;
  }

  .titulo2 {
    font-size: 28px;
    text-align: center;
  }

  .lado-derecho {
    text-align: center;
  }

  .reto {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dibujo {
    max-width: 280px;
  }

  .reto img {
    width: 30px;
    height: 30px;
  }

  .reto p {
    font-size: 14px;
  }
}


