body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background: linear-gradient(#87CEFA, #bde0fe);
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.logo {
  width: 280px;
  z-index: 2;
}

/* NUBES HERO */
.hero-clouds {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hcloud {
  position: absolute;
  opacity: 0.8;
}

.c1 { top: 50px; left: 10%; width: 300px; }
.c2 { top: 150px; right: 10%; width: 250px; }
.c3 { top: 300px; left: 20%; width: 350px; }
.c4 { top: 400px; right: 25%; width: 300px; }

/* TV */
.tv-frame {
  width: 320px;
  height: 240px;
  background: #ffd6e0;
  border: 10px solid #ffafcc;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.tv-frame video {
  width: 90%;
  height: 85%;
  object-fit: cover;
  border-radius: 10px;
  pointer-events: none; /* 🔥 SOLUCION CLICK */
}

/* BOTÓN */
.btn {
  background: #ffb3c6;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  position: relative;
  z-index: 999; /* 🔥 SIEMPRE ENCIMA */
  cursor: pointer;
}

/* INFO */
.info {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.info-box {
  max-width: 600px;
  background: #ffe5ec;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 3px solid #ffafcc;
}

.info-details {
  margin-top: 15px;
  background: #fff0f6;
  padding: 15px;
  border-radius: 15px;
}

/* PARALLAX */
.parallax {
  position: relative;
  height: 160vh;
}

.layer {
  position: absolute;
  pointer-events: none;
}

.cloud1 { width: 450px; top: 50px; left: 5%; }
.cloud2 { width: 400px; top: 150px; right: 10%; }
.cloud3 { width: 500px; top: 300px; left: 20%; }
.cloud4 { width: 350px; top: 500px; right: 25%; }
.cloud5 { width: 420px; top: 750px; left: 40%; }

/* PANDA */
.panda-box {
  position: absolute;
  bottom: 50px;
  right: 20%;
  text-align: center;
}

.panda {
  width: 300px;
}

/* BURBUJA */
.speech {
  margin-top: 10px;
  background: white;
  padding: 12px 18px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  max-width: 220px;
}

/* ✅ WHITELIST FINAL PERFECTA */
.whitelist-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #a2d2ff, #ffc8dd);
}

.wl-box {
  background: #ffe5ec;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 3px solid #ffafcc;
  max-width: 400px;
  width: 90%;
}

/* FORM */
.step {
  margin-top: 20px;
  font-weight: bold;
  color: #444;
}

.repost-btn {
  display: inline-block;
  margin-top: 10px;
  background: #1DA1F2;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.submit-btn {
  margin-top: 20px;
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  background: #ffb3c6;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.wl-box input {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}