.subcategorias-scroll-container {
    width: 100%;
    position: relative;
    padding: 7px 20px;
}

.subcategorias-scroll-container h2 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #000;
}

.subcategorias-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
}

.subcategorias-scroll::-webkit-scrollbar {
    display: none;
}

.categoria-item {
    width: 25%;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.categoria-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.categoria-item img {
    width: 83px;
    height: 83px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #90d9b08c;
    padding: 4px;
    transition: transform .3s ease;
}

.categoria-item:hover img {
    transform: scale(1.05);
}

.categoria-item p {
    margin-top: 5px;
    font-size: 14px;
    line-height: 14px;
    color: #000;
    width: 80%;
}

.navigation-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.navigation-dots span {
    width: 5px;
    height: 5px;
    margin: 0 5px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color .3s;
}

.navigation-dots span.active {
    background: #333;
}

@media (max-width: 768px) {

    .categoria-item {
        width: 33.33%;
    }

}