﻿@keyframes spin {
    0% {
        transform: translateY(0);
    }

    100% {

        transform: translateY(calc(-100% * 3));
    }
}

.text-container {
    position: relative;
    height: 4em; 
    overflow: hidden;
}

.text-animation {
    position: absolute;
    width: 100%;

    animation: spin 18s linear infinite;
}

.img-logo {
    width: 158px;
    height: 51px;
}

.text-bv {
    color: var(--Base-White, #FFF);
    font-family: Inter;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.text-bv-destaque {
    color: var(--Base-White, #FFF);
    font-family: Inter;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pontoFinal{
    display: inline-block;
    width: 8px; /* Ajuste o tamanho conforme necessário */
    height: 8px;
    background-color: white; /* Altere a cor, se necessário */
    border-radius: 50%;
    margin-left: 8px; /* Espaço entre a frase e a bolinha */
    vertical-align: middle;
}




