/* Ajustes de tamaño individuales para los logos */
.carousel-item img[alt="Logo 1"] {
    width: 130px;
    height: 130px;
}

.carousel-item img[alt="Logo 2"] {
    width: 130px;
    height: 130px;
}
.carousel-item img[alt="Logo 4"] {
    width: 130px;
    height: 130px;
}
.carousel-item img[alt="Logo 5"] {
    width: 130px;
    height: 130px;
}

/* Reglas generales */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border: none;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 20%; /* Muestra 5 logos visibles a la vez */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}