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

:root {
  --telegram: #229ED9;
  --telegram-dark: #1a7fb3;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --bg: #0a0a0f;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f0f5;
  --muted: #888;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Blobs de fundo */
.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.bg-blur-1 {
  width: 500px;
  height: 500px;
  background: var(--telegram);
  top: -100px;
  left: -150px;
}

.bg-blur-2 {
  width: 400px;
  height: 400px;
  background: var(--whatsapp);
  bottom: -120px;
  right: -100px;
}

/* Container principal */
.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  max-width: 520px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  margin: 24px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ccc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Título */
.headline {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.highlight {
  background: linear-gradient(135deg, var(--telegram) 0%, var(--whatsapp) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtexto */
.subtext {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Lista de benefícios */
.perks {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}

.perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #ccc;
}

.perk-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Label acima dos botões */
.cta-label {
  font-size: 13px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Prova social */
.social-proof {
  margin-top: 16px;
  font-size: 13px;
  color: #555;
}

.social-proof strong {
  color: #999;
}

/* Botões */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-bottom: 24px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn:active {
  transform: translateY(0);
}

.btn-telegram {
  background: linear-gradient(135deg, #229ED9 0%, #1a7fb3 100%);
  box-shadow: 0 8px 24px rgba(34, 158, 217, 0.35);
}

.btn-telegram:hover {
  box-shadow: 0 12px 32px rgba(34, 158, 217, 0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Rodapé */
.disclaimer {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.02em;
}

/* Mobile */
@media (max-width: 400px) {
  .container {
    padding: 36px 20px;
    margin: 16px;
  }

  .btn {
    font-size: 15px;
    padding: 15px 20px;
  }
}
