html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  font-family: sans-serif;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('media/STAGE.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  /* Empieza cubriendo toda la pantalla */
  overflow: hidden;
  z-index: 1;
  transition: width 0.1s linear;
}

.foreground {
  width: 100vw;
  height: 100vh;
  background-image: url('media/PLATO.png');
  background-size: cover;
  background-position: center;
}

.scroll-fake {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-y: scroll;
  z-index: 10;
}

.scroll-fake-content {
  height: 10000px;
}


.scroll-fake-content {
  width: 1px;
  height: 300vh;
}


#sideImage {
  position: fixed;
  top: 70%;
  left: calc(20% + 17vw);
  transform: translateY(-50%);
  max-width: 20vw;
  max-height: 40vh;
  z-index: 20;
  pointer-events: none;
}

#movingImage {
  position: fixed;
  bottom: 20px;
  right: -25.6201vw;
  max-width: 25vw;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  transition: right 0.2s ease-out, opacity 0.3s ease-out;
}

#permanentText {
  position: fixed;
  top: 60%;
  left: 62%;
  width: 30vw;
  color: white;
  width: 25%;
  font-weight: bold;
  z-index: 15;
  transition: transform 0.1s ease-out;
  pointer-events: none;
}

#scrollingText {
  position: fixed;
  top: 30%;
  left: 10%;
  width: 30vw;
  color: white;
  width: 25%;
  font-weight: bold;
  z-index: 15;
  transition: transform 0.1s ease-out;
  pointer-events: none;
}

.encabezado {
  text-align: center;
}

#scrollingText h1 {
  font-size: 2.5vw;

}

#scrollingText p {
  font-size: 1vw;
}

#scrollingText button {
  font-size: 1.5vw;
  width: 22vw;
  height: 7.5vh;
  border-radius: 50px;
  font-weight: bold;
  padding: 2% 2% 2% 2%;
  border:none;
}

.imgText {
  display: flex;
  align-items: center;
}

.imgText img {
  height: 5vh;
  width: 3vw;
}
.subtitulo{
  font-weight: lighter;
}
#imageCarousel {
  width: 100%;
  height: 20vh;
  overflow: hidden;
  position: relative;
  border: 5px solid white;
}

.carouselImage {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

#scrollingText p,
ul li {
  font-size: 1.5vw;
  font-weight: lighter;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 50px;
}

ul li {
  margin-top: 3vh;
}

.cuerpo p {
  margin-top: 80px;
  margin-bottom: 80px;
}

.cuerpo {
  margin-top: 200px;
}

.final {
  margin-top: 40px;
}


.divTitulo p {
  margin: 0;

}

.calle {
  font-weight: lighter;
}

.whatsapp {
  font-weight: bold;
}

.transpa {
  border-radius: 50px;
  width: 13.5vw;
  height: 5vh;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  font-weight: bold;
  margin-left: 2.8vw;
}

#footer {
  position: fixed;
  bottom: -30vh;
  /* Inicialmente oculto debajo de la pantalla */
  left: 0;
  width: 100%;
  height: 30vh;
  background-color: #111;
  color: white;
  text-align: center;
  padding: 3vh 2vw;
  box-sizing: border-box;
  z-index: 30;
  transition: bottom 0.5s ease-out;
}

.footer-content p {
  margin: 1vh 0;
  font-size: 1.2vw;
}