.timeline-point-button {  
    height: 25px;
    width: 25px;
    margin: 0;
    padding: 0;
    line-height: 23px;
    font-size: 25px !important;
    font-weight: var(--global_font_weight_4);
    text-align: center;
    position: absolute !important;
    z-index: 2;
    background: #000000;
    border-radius: 100%;
    bottom: 35px !important;
    left: -7px !important;
    transform: inherit;
    box-shadow: inherit;
    border: inherit;
    white-space: inherit;
    
    /* Define um atraso único para cada botão */
    --delay: calc(1s * var(--random-delay));
}

.timeline-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.timeline-pulse::before,
.timeline-pulse::after,
.timeline-pulse {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: inherit;
    animation: timeline-pulse 5s linear infinite;
}

/* Pulso com atraso único por botão */
.timeline-pulse,
.timeline-pulse::before,
.timeline-pulse::after {
    animation-delay: var(--delay);
}

@keyframes timeline-pulse {
    0% {
        width: 50px;
        height: 50px;
        opacity: 1;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

.timeline-point-button a {  
    color: #fff !important;
}

.timeline-button-link {
    position: relative;
    z-index: 2;
}

.timeline-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.plus_icon{
color: #fff;
  font-size: 23px;
  float: left;
  width: 25px;
  height: 25px;
  line-height: 18px;
position: absolute;
left: 0;
}
.timeline-tooltip .timeline-tooltip-text {
    visibility: hidden;
    width: 150px;
    background-color: var(--global_cor_background_4);
    color: var(--global_cor_1);
    text-align: center;
    padding: 5px 5px 5px 5px;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    line-height: 14px;
}

.timeline-tooltip .timeline-tooltip-text span.timeline-tooltip-title {
    font-weight: var(--global_font_weight_8);
    float: left;
    width: 100%;
    text-align: center;
    height: auto;
}

.timeline-tooltip:hover .timeline-tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Adicionando o "+" sem background */
.plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
    z-index: 3;
}
