 .container {
            text-align: center;
        }
        .intro {
            display: inline-block;
        }
        .marlon-gonzalez-motta-titulo-estilo {
            color: rgb(255, 255, 255);
            font-size: 24px;
            overflow: hidden;
            white-space: nowrap;
            margin: 0 auto;
            border-right: 7px solid rgb(255, 255, 255);
        }

        @keyframes typing {
            0% {
                width: 0;
            }
            100% {
                width: 100%;
            }
        }

        @keyframes blink-caret {
            from,
            to {
                border-color: transparent;
            }
            50% {
                border-color: rgb(255, 255, 255);
            }
        }
        .tag-list {
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
        }

        .loop-slider {
            display: flex;
            animation: moveLeftRight 2s linear infinite; 
        }

        .inner {
            display: flex;
            padding: 1rem; 
        }

        .tag {
            display: flex;
            align-items: center;
            gap: 0 0.2rem;
            color: #e2e8f0;
            font-size: 0.9rem;
            background-color: #831c6d;
            border-radius: 0.4rem;
            padding: 0.5rem 1rem; 
            margin-right: 1rem;
            box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2), 0 0.1rem 0.5rem rgba(0, 0, 0, 0.3), 0 0.2rem 1.5rem rgba(0, 0, 0, 0.4);
        }

        .tag span {
            font-size: 1.2rem;
            color: #64748b;
        }

        @keyframes moveLeftRight {
            0%, 100% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-20px); 
            }
            50% {
                transform: translateX(20px); 
            }
            75% {
                transform: translateX(-20px); 
            }
        }