* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0a0416;
  color: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  padding: 20px 20px 110px;
  background: radial-gradient(circle at top, #3a0b6a, #0a0416 75%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.85));
}

.hero-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* LOGO */
.logo {
  max-width: 340px;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 18px rgba(190,120,255,.45));
}

/* STATUS */
.launch-bar {
  max-width: 720px;
  margin: 0 auto 42px;
  padding: 26px 32px;
  border-radius: 18px;
  background: rgba(80,20,130,.85);
  border: 1px solid rgba(210,160,255,.4);
  text-align: center;
}

.glow-purple {
  animation: glowPurple 4s infinite;
}

@keyframes glowPurple {
  0% { box-shadow: 0 0 12px rgba(200,140,255,.25); }
  50% { box-shadow: 0 0 30px rgba(200,140,255,.55); }
  100% { box-shadow: 0 0 12px rgba(200,140,255,.25); }
}

.launch-label {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #e4c9ff;
}

.launch-date {
  display: block;
  font-size: 30px;
  font-weight: 900;
  margin-top: 6px;
}

/* TITULO */
.title-animated {
  font-size: 50px;
  margin-bottom: 18px;
  text-shadow:
    0 0 14px rgba(200,140,255,.45),
    0 0 30px rgba(150,90,255,.35);
}

/* DESCRIÇÃO */
.hero-desc {
  font-size: 18px;
  color: #e8d9ff;
  margin-bottom: 34px;
}

/* FEATURES */
.hero-features {
  max-width: 960px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 14px;
}

.feature-box {
  background: rgba(255,255,255,.06);
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .3s ease, background .3s ease;
}

.feature-box i {
  color: #d7a9ff;
}

.feature-box:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-6px);
}

/* BOTÃO */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #8e2de2, #5f0fb8);
  padding: 18px 42px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(150,60,255,.6);
}

/* INFO */
.info {
  padding: 80px 20px;
  background: #12051f;
}

.info-wrapper {
  max-width: 920px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 26px;
}

.info-card {
  background: rgba(255,255,255,.05);
  padding: 30px;
  border-radius: 18px;
}

/* CONVERSÃO */
.conversion {
  padding: 90px 20px;
  text-align: center;
  background: radial-gradient(circle at center, #3a0b6a, #0a0416);
}

.conversion h2 {
  font-size: 34px;
  margin-bottom: 26px;
}

.conversion p {
  font-size: 17px;
  max-width: 880px;
  margin: 0 auto 20px;
  color: #e8d9ff;
}

.conversion-highlight {
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(200,140,255,.5);
}

/* FOOTER */
.footer {
  background: #0a0416;
  padding: 22px;
  text-align: center;
  font-size: 13px;
  color: #caa9ff;
}

/* MOBILE */
@media (max-width: 800px) {
  .info-wrapper {
    grid-template-columns: 1fr;
  }

  .title-animated {
    font-size: 34px;
  }
}
