    
     .spacer {
        height: 500px; /* Espaciador para ver el efecto */
    }
    
    
    
    .muestra{
        position: absolute;
        font-size: 32px;
        color: white;
        background: black;
        top: 62%;
        text-align: center;
        font-family: 'Gotham', sans-serif;
        box-shadow: 0px 0px 20px 3px rgb(255 0 177);
        border-radius: 12px;
        border: 5px solid #ff00a8;
    }
   
   .container4 img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    
    }

    .container4 {
    display: flex;
    justify-content: center;
    align-items: center;

    }

    .container4-carrousel {
    --widthItem: 150px;
    --heightItem: 500px;
    width: var(--widthItem);
    height: var(--heightItem);
    perspective: 500px;
    
    }

    .carrousel {
    --rotatey: 0;
    font-size: 4rem;
    position: relative;
    transform: rotatey(var(--rotatey));
    transform-style: preserve-3d;
    user-select: none;
    cursor: grab;
   

    }

    .carrousel-item {
    opacity: 1;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;       
    }
   

    .carrousel,
    .carrousel-item {
    width: 100%;
    height: 100%;
   
    }

    .carrousel-item:nth-child(n) {
    --rotatey: 0;
    transform: rotatey(var(--rotatey)) translatez(var(--tz));
    }

  

    .titulo{
        width: 100%;        
        overflow-x: clip;       
       position: relative;
       margin-bottom: 35vh;
       display: flex;
        justify-content: center;
        z-index: 10;
    }

    .titulo h1 {
        text-align: center;
        font-family: 'Gotham', sans-serif;     
    }

    .titulo h3 {
        text-align: center;
        font-family: 'Arthury', sans-serif;
        max-width: 40%;
        margin: auto;
        font-weight: lighter;
        font-size: 1.4em;
        margin-bottom: -20%;
    }

    .titulo img{
        width: 150%; 
        position: absolute;
        top: -60px;
        z-index: 4;
        pointer-events: none;
    }
    

    
   


    @media screen and (min-width: 576px) {
        .container4-carrousel {
        --widthItem: 250px;
        --heightItem: 200px;
        }
       
    }