.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-34f26d6:#FFFF8888;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;gap:21px;}.site-footer .footer-inner{width:100%;max-width:100%;}.site-footer .site-branding .site-logo img{width:33%;max-width:33%;}.site-footer .site-description{color:#DB0E0E;}footer .footer-inner .site-navigation a{color:#3EC225;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.grade-tamanhos {
  display: flex;
  justify-content: space-between;
  border: 2px solid #ff7ac8;
  border-radius: 16px;
  padding: 14px 16px;
  max-width: 320px;
  margin: 16px 0;
}

.coluna {
  flex: 1;
  text-align: center;
  position: relative;
}

.coluna:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ffb3dd;
}

.titulo {
  font-weight: 600;
  margin-bottom: 8px;
}

.bolinhas {
  display: grid;
  grid-template-columns: repeat(2, 14px);
  gap: 6px;
  justify-content: center;
}

.bolinha {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
<script>
document.addEventListener("DOMContentLoaded", function () {
  document.querySelectorAll(".bolinhas").forEach(function (container) {
    const cores = container.dataset.cores;
    if (!cores) return;

    cores.split(",").forEach(function (cor) {
      const span = document.createElement("span");
      span.classList.add("bolinha");
      span.style.backgroundColor = cor.trim();
      container.appendChild(span);
    });
  });
});
</script>/* End custom CSS */