  .custom-carousel {
    position: relative;
    width: 100%;
    max-width: 600px; /* Ajusta el tamaño */
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  }

  .custom-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: opacity 1s ease-in-out;
  }

  .custom-carousel img.active {
    display: block;
    opacity: 1;
  }