    .carruMaxContainer{
      display:flex;
      justify-content:center;
      width:100%;
      overflow-x: hidden ;
    }
    
    .carru-carrusel {
      display: flex;
      align-items: center;
      position:relative;
      justify-content:center;
      min-width: calc(100% + 30px);
    }

    .carru-arrow {
      background: #000;
      position:absolute;
      color: #fff;
      border: none;
      width: 36px;
      height: 36px;
      font-size: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      flex-shrink: 0;
      top:50%;
      transform:translateY(-50%);
    }
    
    .carru-arrow.left{
      z-index:3;
      left:25px;
    }
    
    .carru-arrow.right{
      z-index:3;
      right:25px;
    }

    .carru-wrapper {
      overflow: hidden;
      flex: 1;
    }

    .carru-track {
      display: flex;
    }

    .carru-card {
      flex: 0 0 calc((100% / 3));
      height: 313px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      border-radius: 8px;
    }
    
    .carruInside{
      display:flex;
      width:100%;
      height:100%;
      padding:0 8px;
    }
    
    .carruFoto{
      display:flex;
      width:100%;
      height:100%;
      background-color:grey;
    }
    
    .carruFoto img{
      width:100%;
      object-position:center;
      object-fit:cover;
    }

    @media (max-width: 700px) {
      .carru-card {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 700px) {
  .carru-card {
    flex: 0 0 100%;
  }
}