.tok-animated-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* Cada frase */
.tok-animated-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
    white-space: nowrap;
}

/* Frase ativa */
.tok-animated-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* Texto principal */
.tok-animated-headline {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;

    position: relative;
    display: inline-block;
    z-index: 1;
    animation: slideDown 0.6s ease forwards;
}

/* Underline animado */
.tok-animated-headline::after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: 7px;
    width: 100%;
    height: 15px;
    /* background: #F68B28; */
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 0.8s ease forwards 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-15px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}