.imovel-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: .5rem;
  }


  
  .image-container {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 1000%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    background-position: center;


  }


  
  .image-container img {
    width: 10%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .prev-button,
  .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #c8c3b5;
    border: none;
    font-size: 20px;
    color: white;
  }
  
  .prev-button {
    display: inline-block !important;
    z-index: 10;
    left: 10px;
  }
  
  .next-button {
    right: 10px;
  }


  .prev-button2,
  .next-button2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #3670c0;
    border: none;
    font-size: 20px;
    color: white;
  }
  


  .imovel-carousel-2 {
    position: relative;
    width: 60%;
    height: 500px;
    overflow: hidden;
    border-radius: 1.5rem;
    margin: 0 auto;
  }


  
  .image-container-2 {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 1000%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    background-position: center;


  }


  
  .image-container-2 img {
    width: 10%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  
  .prev-button-2,
  .next-button-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #3670c0;
    border: none;
    font-size: 20px;
    color: white;
  }
  
  .prev-button-2 {
    display: inline-block !important;
    z-index: 10;
  }
  
  .next-button-2 {
    right: 0;
  }

