.latest-attributes {
    display: flex;
    overflow: hidden;
    cursor: pointer;
    align-items: center;
}

/* Contenedor que se mueve horizontalmente */
.infinite-marquee {
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
    will-change: transform;
    transition: transform 0.3s linear;
}

/* Cada elemento del carrusel */
.latest-attributes li {
    display: inline-block;
    padding: 6px 16px;
    margin: 0 8px;
    background-color: #f5f5f5;
    border-radius: 50px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 0.3s, transform 0.3s;
}

/* Efecto visual en hover */
.latest-attributes li:hover {
    background-color: #eaeaea;
    transform: scale(1.05);
}

/* Enlaces dentro del li */
.latest-attributes a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

/* Si usas el h3 en algún lugar */
.latest-attributes h3 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}