.barprog-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Dos columnas iguales */
  gap: 20px;
  max-width: 800px; /* Aumentamos ancho para que entren bien */
  width: 100%;
  background: #282828;
  margin: 0 auto;
  padding: 20px 30px;
  border-radius: 7px;
}

.barprog-container .barprog-skill-box {
  width: 100%;
  margin: 25px 0;
}

.barprog-skill-box .barprog-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(226, 226, 226);
}

.barprog-skill-box .barprog-skill-bar {
  height: 8px;
  width: 100%;
  border-radius: 6px;
  margin-top: 6px;
  background: rgba(236, 236, 236, 0.1);
}

.barprog-skill-bar .barprog-skill-per {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 6px;
  background: rgb(226, 226, 226);
  animation: barprog-progress 0.4s ease-in-out forwards;
  opacity: 0;
}

.barprog-skill-per.barprog-html {
width: 100%;
  animation-delay: 0.2s;
}

.barprog-skill-per.barprog-JavaScript {
  width: 86%;
  animation-delay: 0.1s;
}

.barprog-skill-per.barprog-PHP {
  width: 93%;
  animation-delay: 0.2s;
}
.barprog-skill-per.barprog-MySQL {
  width: 96%;
  animation-delay: 0.2s;
}
.barprog-skill-per.barprog-CSS {
  width: 96%;
  animation-delay: 0.2s;
}
.barprog-skill-per.barprog-C {
  width: 98%;
  animation-delay: 0.2s;
}
.barprog-skill-per.barprog-Java {
  width: 96%;
  animation-delay: 0.2s;
}
.barprog-skill-per.barprog-Python {
  width: 88%;
  animation-delay: 0.2s;
}
.barprog-skill-per.barprog-Arduino {
  width: 90%;
  animation-delay: 0.2s;
}
.barprog-skill-per.barprog-Microsoft_Office {
  width: 100%;
  animation-delay: 0.2s;
}
.barprog-skill-per.barprog-Canva {
  width: 80%;
  animation-delay: 0.2s;
}
.barprog-skill-per.barprog-Soporte_ténico {
  width: 90%;
  animation-delay: 0.2s;
}


@keyframes barprog-progress {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.barprog-skill-per .barprog-tooltip {
  position: absolute;
  right: -14px;
  top: -28px;
  font-size: 9px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  padding: 2px 6px;
  border-radius: 3px;
  background: rgb(226, 226, 226);
  z-index: 1;
}

.barprog-tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 10px;
  width: 10px;
  z-index: -1;
  background-color: rgb(226, 226, 226);
  transform: translateX(-50%) rotate(45deg);
}
