body {
  overflow: hidden;
}
.wrapper {
  width: 100%; 
  height: 100vh;
  display: flex; /* Usamos flex para centrar el carrusel verticalmente */
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
}
.image-carousel-section {
  width: 100%;
  /* Ya no necesita altura 100vh porque el wrapper se encarga */
}
.carousel-container { 
  width: 100%; 
  overflow: hidden; 
}
.carousel-track { 
  display: flex; 
  gap: 20px; 
  padding: 0 40px; 
}
.carousel-item {
  width: 40.1875rem;
  height: 25rem;
  flex-shrink: 0;
  overflow: hidden;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sticky-header {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  z-index: 10;
}

@media (max-width: 640px) {
  .carousel-item{
    width: 21.6875rem;
    height: 14.125rem;
  }
}