.carrusel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carrusel__imagenes {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrusel__imagen {
    min-width: 100%;
    height: auto;
    object-fit: cover;
}

.flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
}

.flecha.izquierda {
    left: 10px;
}

.flecha.derecha {
    right: 10px;
}
