.tabs {
    color: var(--primaryColorMain);
    font-weight: $fontWeightSemiBold;
    font-size: $fontSize14;
    line-height: $lineHeight22;
    width: 100%;
    position: relative;
}

.tab-content-title .underline{
    position: absolute;
    left: 0;
    bottom: 0;
    top: 26px;
    width: 0px;
    height: 2px;
    background-color: var(--primaryColorMain);
    border-radius: 2px;
    transition: width 0.3s ease, right 0.3s ease;
}

.tab-content-title.active .underline {
    width: 100%; /* A largura se expandirá para 100% quando a classe .active estiver presente */
    right: 0; /* A origem da animação começa da direita */
  }
  
.tab-content-title {
    position: relative;
    margin: 0px;
    margin-right: $spacing24;
}

div[ds-content] {
    position: absolute; 
    left: 0px; 
    top: 40px;
    color: var(--bodyColor);
  }
  
  

