.carrusel-container {
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.carrusel-marcas-wrapper {
    width: calc(100% - 100px);
    overflow: hidden;
}

.carrusel-marcas {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrusel-item {
    min-width: 11.11%; /* 100 / 8 = 11.11 */
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    position: relative; /* Add relative position */
}



.logo-content {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
}

.logo-content img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.marca-nombre {
    margin-top: 5px;
    font-weight: bold;
    font-size: 12px;
}

.carrusel-prev, .carrusel-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: black;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for card effect */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
}

.carrusel-prev {
    left: 10px;
}

.carrusel-next {
    right: 10px;
}

/* Estilo para quitar el subrayado solo del enlace */
.carrusel-item a {
    text-decoration: none;
}
@media (max-width: 914px) {
    .carrusel-item {
        min-width: 33%;
    }
    .logo-content {
        width: 80px;
        height: 80px;
    }
}