@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 100px;
}

/* HEADER */
.header {
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 12px;
  border-bottom: 1px solid #1f1f1f;
  margin-bottom: 4px;
}

.header-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.header-text {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-text span { color: #22c55e; font-weight: 700; }

/* HERO */
.hero {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 32px 0 20px;
}

.badge {
  display: inline-block;
  background: #1a0000;
  border: 1px solid #7f1d1d;
  color: #f87171;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

h1 .red {
  color: #ef4444;
  text-shadow: 0 0 20px rgba(239,68,68,0.5);
}

.subtitle {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* PRESTES SECTION */
.prestes {
  width: 100%;
  max-width: 420px;
  text-align: center;
  padding: 24px 0 20px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 24px;
}

.prestes h2 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.prestes h2 .red { color: #ef4444; }

.prestes p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* FEATURES */
.features-title {
  width: 100%;
  max-width: 420px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.features {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0f0f0f;
  border: 1px solid #2a0a0a;
  border-radius: 14px;
  padding: 14px 16px;
}

.feature-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(180,0,0,0.25);
  border: 1px solid rgba(239,68,68,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  color: #fff;
}

.feature-text span {
  font-size: 12px;
  color: #666;
}

/* SOCIAL PROOF */
.proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #555;
}

.proof-dot { color: #22c55e; }
.proof strong { color: #fff; }

/* CTA FIXED BAR */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-top: 2px solid #ef4444;
  background: #0a0a0a;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}

.cta-bar-inner {
  max-width: 420px;
  margin: 0 auto;
}

.cta {
  display: block;
  width: 100%;
  padding: 17px;
  background: linear-gradient(180deg, #f05252 0%, #c81e1e 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(239,68,68,0.35);
  transition: transform 0.1s, box-shadow 0.1s;
  letter-spacing: 0.01em;
}

.cta:active {
  transform: scale(0.98);
  box-shadow: 0 0 12px rgba(239,68,68,0.2);
}
