/* Carrusel */
.carousel1 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* Suaviza el desplazamiento en móviles */
    max-width: 100%;
    margin: 0 auto;
}

.carousel1-items {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    justify-content: center;
}

.carousel1-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 200px;
    height: 100px;
    scroll-snap-align: start;
}

.carousel1-item img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .carousel1-item {
        max-width: 150px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .carousel1-item {
        max-width: 120px;
        height: 60px;
    }
}

