.number-section {
  margin-top: 100px;
  margin-bottom: 100px;
}
.number-section .counter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color1); /* azul de fondo */
  color: #fff; /* <- currentColor = blanco para el SVG */
}

.icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor; /* usa el color heredado (blanco) */
  fill: none;
  stroke-width: 2;
}
.number-section .counter h3,
.countdown h3 {
  white-space: wrap;
}
@media (max-width: 768px) {
  .number-section.table-grid .counter-horizontal.counter-icon {
    height: auto;
  }
  .number-section td {
    padding: 10px !important;
  }
  .icon-circle {
    width: 70px;
    height: 70px;
  }
  .number-section .counter h3 {
    font-size: 20px;
  }
  .number-section .value {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .number-section .counter {
    flex-direction: column;
  }
  .icon-circle svg {
    width: 35px;
    height: 35px;
  }
}
