@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
}
.container {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Frase */
.fondo-con-frase {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: black;
  visibility: hidden;
}

.frase {
  height: 100%;
  width: 100%;
  padding: 4rem;
  text-align: center;
  font-size: 1.rem;
  color: #ff6243;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.about-btn {
  position: absolute;
  bottom: 210px;
  right: 50%;
  transform: translateX(50%);
  padding: 0.6rem 1.2rem;
  text-decoration: underline;
  font-size: 1.1rem;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  z-index: 2;
  display: none;           /* shown by JS during quote */
}

.icono {
  position: absolute;
  width: 60px;
  opacity: 0.8;
  filter: brightness(1.2) drop-shadow(0 0 5px #ff6243);
  pointer-events: none;
  z-index: 0;
}


.arriba-izq {
  top: 10%;
  left: 10%;
  transform: translateX(-50%) scale(2);
}
.arriba-centro {
  top: 10%;
  left: 50%;
  transform: translateX(-50%) scale(2);
}
.arriba-der {
  top: 14%;
  right: 10%;
  transform: translateX(-50%) scale(3);
}




/* Linterna */
.reveal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: black;
  pointer-events: none;
  display: none;
  mask-image: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(0, 0, 0, 0) 120px,
    rgba(0, 0, 0, 1) 200px
  );
  -webkit-mask-image: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(0, 0, 0, 0) 120px,
    rgba(0, 0, 0, 1) 200px
  );
}

/* Video */
video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pantalla inicio */
.start-screen {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.foto-ini {
  width: 200px;
  height: auto;
}
.start-screen button {
  font-size: 2rem;
  padding: 1rem 2rem;
  color: white;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: underline;
}

/* Botón skip */
#skipBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1rem;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
  display: none;
}
