.carrusel 
{
    width: 100%;
    display: flex;
    align-items: center;
    /* gap: 10px; */
}

.carrusel-ventana 
{
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.track 
{
    display: flex;
    /* gap: 20px; */
    transform: translate3d(0, 0, 0);
}

.track > a 
{
    flex: 0 0 calc(33%);
    min-width: 0;
}

.carrusel-anterior,
.carrusel-siguiente 
{
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.carrusel-anterior:hover,
.carrusel-siguiente:hover 
{
    background-color: rgba(0, 0, 0, 0.85);
}

.carrusel-anterior:disabled,
.carrusel-siguiente:disabled 
{
    opacity: 0.3;
    cursor: default;
}

@media (max-width: 1000px) 
{
    .track > a 
    {
        flex-basis: 100%;
    }

    .carrusel-anterior,
    .carrusel-siguiente 
    {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}
