.navbar {
 z-index: 4;
 display: flex;
 align-items: center;
 padding: 9px 10px;
 background-image: url(/work/models/memorica/recursos/exposiciones/lucesCamaraAccion/img/s2/heroHomeB2.jpg);
 background-position: center top;
 background-size: 100%;
}

.container-title{
    bottom: 5%;
}

.cinema-effect::after {
  opacity:0;
  animation: none;
}
.scanlines {
  
  opacity: 0.6;
  animation: scanMove 0.25s linear infinite;
}

.container-title img {
  animation: breathe-analog 7s ease-in-out infinite;
  transform-origin: center;
}

@keyframes breathe-analog {
  0% {
    transform: scale(1);
    opacity: 0.90;
  }
  50% {
    transform: scale(1.021);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.90;
  }
}

.carousel {
  width: 100%;
}

.carousel-inner {
  width: 80%;
  margin: 0 auto; /* centra horizontal */
}

/* NO tocar display del item */
.carousel-item {
  width: 100%;
  padding: 2rem;
  min-height: 25rem; /* altura igual para todas */

}

/* Contenedor interno */
.carousel-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: end;     
  text-align: center;
  padding: 2rem;
   min-height: 100%;
}

/* Texto principal */
.carousel-item p {
 
  font-family: "Aleo-Regular";
  font-size: 2rem;
  line-height: 2.5rem;
}

/* Autor */
.carousel-item .author {
  margin-top: 1.5rem;
}

/* Flechas */
.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.carousel-control-prev-icon {
  background-image: url("/work/models/memorica/recursos/exposiciones/lucesCamaraAccion/img/btnL.svg");
  width: 2rem;
  height: 2rem;
  opacity: 1;
}

.carousel-control-next-icon {
  background-image: url("/work/models/memorica/recursos/exposiciones/lucesCamaraAccion/img/btnR.svg");
  width: 2rem;
  height: 2rem;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .carousel-item{
    min-height: 300px;
  }
  .carousel-inner{
    width: 90%;
  }
  .carousel-content{
    padding: 1rem;
  }
  .navbar {
     background-image: url(/work/models/memorica/recursos/exposiciones/lucesCamaraAccion/img/s2/heroS2MobileB.jpg);
  }
}

