/* === Estilo general del contenedor === */
    .marcoContenido {
      padding: 20px;
      color: #003B46;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .contenedorGraficaFlex {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      width: 100%;
    }

    .bloqueRadar {
      flex: 1 1 400px;
      max-width: 500px;
      text-align: center;
      padding: 20px; /* Agrega espacio interno */
      overflow: visible;
    }

    .radar-chart {
      width: 100%;
      height: auto;
      max-width: 400px;
      overflow: visible;
    }

    .nivel {
      stroke: #ccc;
      fill: none;
    }

    .label {
      font-size: 18px;
      fill: #003B46;
      transition: font-size 0.3s ease, transform 0.3s ease;
      cursor: default;
    }

    .label:hover {
      font-size: 20px;
      fill: #005f73;
    }

    .valor-punta {
      font-size: 16px;
      fill: #8B0000;
      font-weight: bold;
      transition: font-size 0.3s ease, fill 0.3s ease;
      cursor: pointer;
    }

    .valor-punta:hover {
      font-size: 22px;
      fill: #a40000;
    }

    .areaAptitudes {
      fill: rgba(51, 107, 135, 0.4);
      stroke: #336B87;
      stroke-width: 2;
    }

    .areaActitudes {
      fill: rgba(139, 195, 74, 0.4);
      stroke: #8BC34A;
      stroke-width: 2;
    }

    /* === NUEVA SECCIÓN DE HERRAMIENTAS VISUALES === */
    .bloqueSkills {
      margin-top: 60px;
      width: 100%;
      max-width: 1200px;
    }

    .skill-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      width: 100%;
    }

.skill-category {
  grid-column: 1 / -1;
  font-size: 1.4em;
  font-weight: bold;
  color: #168a7a; /* rojo oscuro */
  margin: 20px 0 10px;
  text-align: center; /* Esto centra el texto */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .skill-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4px 8px;
      background-color: rgba(94, 172, 172, 0.4);
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .skill-name {
      font-weight: bold;
      color: #003B46;
      margin-right: 10px;
      flex: 0 0 100px;
    }

    .puntos {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #90a4ae;
    }

    .dot.filled {
      background-color: #336B87;
    }

    @media screen and (max-width: 768px) {
      .contenedorGraficaFlex {
        flex-direction: column;
        align-items: center;
      }
    }

    