.carrusel-container { position: relative; width: 80%; margin: 0 auto; overflow: hidden; } .carrusel { display: flex; transition: transform 0.5s ease; } .grupo { display: flex; gap: 25px; margin-right: 100px; /* Espaciado entre grupos */ } .imagen { width: 200px; opacity: 0; transition: opacity 0.5s ease; } .grupo:nth-child(1) .imagen:nth-child(2), .grupo:nth-child(2) .imagen:nth-child(2), .grupo:nth-child(3) .imagen:nth-child(2), .grupo:nth-child(4) .imagen:nth-child(2), .grupo:nth-child(5) .imagen:nth-child(2) { opacity: 100; } .boton { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; cursor: pointer; } #boton-izquierdo { left: 0; } #boton-derecho { right: 0; } #boton-izquierdo img, #boton-derecho img { width: 70px; }