body {
    font-family: "Ubuntu", sans-serif;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 50s linear infinite;
}


.infinite-line p {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #1D0E70;
}

.positive {
    color: #16a34a;
    font-style: normal;
}

.negative {
    color: #dc2626;
    font-style: normal;
}

.infinite-line:before,
.infinite-line:after {
    content: "";
    width: 26px;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 8;
}

.infinite-line {
    position: relative;
}

.infinite-line:after {
    right: 0;
    background: linear-gradient(to left, #ffffff, #ffffff, #ffffff, rgb(255 255 255 / 13%));
    filter: blur(3px);
    transform: scale(1.5) translate(5px, 0px);
}

.infinite-line:before {
    left: 0;
    background: linear-gradient(to right, #ffffff, #ffffff, #ffffff, rgb(255 255 255 / 13%));
    filter: blur(3px);
    transform: scale(1.5) translate(-5px, 0px);
}

.iconic {
    display: inline-block;
}

.iconic-linkedin {
    background: #d2d2d2;
    padding: 4px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.iconic:before {
    content: url('assets/svg/icon-pps.svg');
    display: inline-block;
    width: 100%;
}

.iconic-linkedin:before {
    content: url('assets/svg/iconic-linkedin.svg');
    display: inline-block;
    width: 100%;
}

.swiper.swiperSolucao {
    padding-bottom: 50px;
}

.swiper-pagination span {
    width: 15px;
    height: 15px;
    background: white;
}

.node-shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.center-shadow {
    box-shadow: 0 10px 40px rgba(16, 107, 114, 0.4);
}

.animated-node {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.animated-node:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 50;
}

.center-node:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.linha {
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.8s ease;
}

.animated-node {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animated-node.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}