#bloque6{
    background-color: #131313;
    padding: 30px 0px;
}
.tituloBloque6{
    font-family: "Bebas Neue", Sans-serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.1em;
    color: white;

}
.cardBloque6{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}





/* CARRUSEL TESTIMONIOS */



#bloque6{
    background-color: #131313;
    padding: 30px 0px;
}

.tituloBloque6{
    font-family: "Bebas Neue", Sans-serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.1em;
    color: white;
    text-align: center;
}

.cardBloque6{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* NUEVO CARRUSEL DRAG */
.carro-container {
    position: relative;
    overflow: hidden;
    cursor: grab;
    max-width: 100%;
    margin: auto;
}

.carro-track {
    display: flex;
    transition: transform 0.3s ease;
    user-select: none;
}

.carro-item {
    flex: 0 0 33.3333%;
}

.carro-item img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    background-color: white;
    padding: 10px;
     /* Evitar drag nativo del navegador */
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    -user-drag: none;
  
}

@media (max-width: 992px) { .carro-item { flex: 0 0 50%; } }
@media (max-width: 576px) { .carro-item { flex: 0 0 100%; } }

.carro-track.dragging {
    cursor: grabbing;
    transition: none;
}