@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --primary: #7c6cff;
  --secondary: #ff8fb8;
  --accent: #7fd8ff;
  --warm: #fff8ef;
  --text: #2f2a45;
  --white: #ffffff;
  --shadow: 0 15px 35px rgba(124,108,255,0.15);  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background:
    radial-gradient(circle at top left, #fff3fa 0%, transparent 35%),
    radial-gradient(circle at top right, #eef7ff 0%, transparent 35%),
    linear-gradient(180deg, #fcfbff 0%, #f8f6ff 100%);
  color: var(--text);
  text-align: center;
  line-height: 1.7;
}

/* HERO */

.hero {
  padding: 120px 20px;
  background:
    linear-gradient(135deg, #7c6cff 0%, #ff8fb8 55%, #7fd8ff 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "✨ 💜 😊 🌈 💫";
  position: absolute;
  font-size: 3rem;
  opacity: 0.12;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 18px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: auto;
  opacity: 0.95;
}

/* SECTIONS */

section {
  padding: 90px 25px;
  max-width: 1000px;
  margin: auto;
}

section:nth-child(even) {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  border-radius: 35px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

h1, h2 {
  font-weight: 800;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary);
}

p {
  font-size: 1.08rem;
  max-width: 760px;
  margin: auto;
}

/* BUTTONS */

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(124,108,255,0.25);  
  transition: all 0.25s ease;
}

.btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 35px rgba(124,108,255,0.35);  
}

/* LIST */

ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

li {
  margin: 16px 0;
  font-size: 1.08rem;
  background: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* STEPS */

.steps {
  background: white;
  padding: 35px;
  border-radius: 28px;
  margin: 35px auto;
  max-width: 700px;
  box-shadow: var(--shadow);
}

.steps p {
  margin: 14px 0;
  font-weight: 600;
}

/* IMAGES */

.guide-img {
  width: 300px;
  max-width: 95%;
  border-radius: 24px;
  margin: 20px;
  box-shadow: 0 18px 40px rgba(124,108,255,0.18);
  transition: transform 0.25s ease;
}

.guide-img:hover {
  transform: scale(1.03);
}

/* FOOTER */

footer {
  padding: 50px 20px;
  background: #f3efff;
  margin-top: 80px;
}

footer a {
  margin: 0 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

footer a:hover {
  color: var(--secondary);
}

/* MOBILE */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1.05rem;
  }
}

/* FLOATING EMOJIS */

.floating-emojis span {
  position: fixed;
  font-size: 2rem;
  opacity: 0.18;
  animation: floatUp 12s infinite ease-in-out;
  z-index: -1;
}

.floating-emojis span:nth-child(1) { left: 8%; top: 80%; }
.floating-emojis span:nth-child(2) { left: 20%; top: 60%; }
.floating-emojis span:nth-child(3) { left: 75%; top: 75%; }
.floating-emojis span:nth-child(4) { left: 88%; top: 40%; }
.floating-emojis span:nth-child(5) { left: 60%; top: 20%; }
.floating-emojis span:nth-child(6) { left: 35%; top: 35%; }

@keyframes floatUp {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0px); }
}

/* TOP NAV */

.top-nav {
  position: sticky;
  top: 0;
  padding: 18px;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.72);
  z-index: 1000;
}

.top-nav a {
  margin: 0 16px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
}

/* BADGE */

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 25px;
  font-weight: 700;
}

/* COUNTER */

.counter-box {
  margin: 28px auto;
  background: rgba(255,255,255,0.18);
  padding: 18px;
  border-radius: 24px;  
  max-width: 320px;
}

.counter-box span{
  margin: 28px auto;
  padding: 18px;
  border-radius: 24px; 
  font-size: 10; 
  max-width: 320px;
}

.counter-box strong {
  display: block;
  font-size: 1.5rem;
}



/* WAITLIST */

.waitlist-card {
  background: white;  
  padding: 45px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 35px auto;
}

/* LOGO DELUXA MULTICOLOR */

.logo-deluxa {
  font-size: 4.5rem;  
  font-weight: 800;
  margin-bottom: 18px;  
}

.logo-deluxa span:nth-child(1) { color: #FF6B6B; }
.logo-deluxa span:nth-child(2) { color: #FFD93D; }
.logo-deluxa span:nth-child(3) { color: #6BCB77; }
.logo-deluxa span:nth-child(4) { color: #4D96FF; }
.logo-deluxa span:nth-child(5) { color: #B983FF; }
.logo-deluxa span:nth-child(6) { color: #FF8E3C; }

.logo-deluxa span {
  display: inline-block;
  animation: bounceLogo 3s infinite ease-in-out;
}

.logo-deluxa span:nth-child(even) {
  animation-delay: .25s;
}

@keyframes bounceLogo {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* TESTER FORM */

.tester-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}

.tester-form input {
  padding: 18px;
  border: none;
  border-radius: 18px;
  background: #f8f7ff;
  font-size: 1rem;
  box-shadow: inset 0 4px 10px rgba(124,108,255,0.08);
  outline: none;
}

.tester-form input:focus {
  box-shadow: 0 0 0 3px rgba(124,108,255,0.15);
}

.mini-note {
  margin-top: 18px;
  font-size: 0.95rem;
  opacity: 0.7;
}

.counter-box small {
  display: block;
  margin-top: 8px;
  opacity: 0.8;
}

/* FONDO VIVO */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,143,184,.25), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(127,216,255,.25), transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(124,108,255,.18), transparent 40%);
  animation: moodFlow 16s infinite alternate ease-in-out;
  z-index: -2;
}

@keyframes moodFlow {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.15) rotate(6deg); }
}

/* BOTÓN GRANDE */

.big-btn {
  font-size: 1.15rem;
  padding: 20px 42px;
}

/* BOTÓN SECUNDARIO */

.secondary-btn {
  background: linear-gradient(135deg, #7fd8ff, #7c6cff);
}

/* INVITE BOX */

.invite-box {
  margin-top: 30px;
  padding: 25px;
  border-radius: 24px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
}

/* ENTRADA CINEMATOGRÁFICA */

.hero {
  animation: cinematicReveal 1.5s ease;
}

@keyframes cinematicReveal {  
  from {
    opacity: 0;
    transform: translateY(40px) scale(.96);   
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);  
  }  
}

/* CARD PREMIUM */

.waitlist-card {
  transition: all .35s ease;
}

.waitlist-card:hover {
  transform: translateY(-8px);
}

/* SUCCESS FLOW */

.success-flow {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flow-step {
  background: #f8f7ff;
  padding: 22px;
  border-radius: 22px;
  font-size: 1.05rem;
  box-shadow: inset 0 4px 12px rgba(124,108,255,0.08);
}

.success-flow .btn {
  width: 100%;
}

.success-flow h3 {
  color: var(--primary);
  font-size: 1.8rem;
}

/* LEGAL FULL PAGE */

.legal-page {
  max-width: 1000px;
  margin: auto;
  padding: 80px 20px;
  text-align: left;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 2.6rem;  
}

.legal-update {
  text-align: center;
  opacity: .7;  
  margin-bottom: 40px;  
  margin-top: 40px;
}

.NameBox {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  padding: 45px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  line-height: 1.95;
  font-size: 1.05rem;
  color: #2f2a45;
}

.legal-box {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  padding: 45px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  line-height: 1.95;
  font-size: 1.05rem;
  color: #2f2a45;
}

.legal-box h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 1.5rem;
}

.legal-box p {
  margin-bottom: 18px;
  max-width: 100%;
}

.legal-box ul {
  padding-left: 22px;
  margin-bottom: 25px;
}

.legal-box li {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 10px 0;
  list-style: disc;  
}

@media(max-width:768px){  

  .legal-box{
    padding:25px;
    font-size:.98rem;
  }

  .legal-page h1{
    font-size:2rem;
  }

}