:root {
  --bg: #0b1220;
  --panel: #0f172a;
  --panel-2: #10192d;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --primary: #16a34a;
  --primary-2: #22c55e;
  --accent: #06b6d4;
  --danger: #ef4444;
  --success: #22c55e;
  --shadow: rgba(0,0,0,0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
  background: radial-gradient(1200px 600px at 20% -200px, rgba(11,97,114,0.25), transparent),
              radial-gradient(1000px 400px at 90% -100px, rgba(6,182,212,0.15), transparent);
}

.hero-grid {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-topline { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; background: rgba(255,255,255,0.04); border: 1px solid #1f2a3a; border-radius: 999px; color: #cbd5e1; margin-bottom: 16px; }
.hero-icons { display: inline-flex; align-items: center; gap: 0; }
.hero-icons .emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.14);
  border: 1px solid #1f2a3a;
}
.hero-icons .emoji:not(:first-child) { margin-left: -6px; }
.hero-icons .emoji:nth-child(1) { z-index: 1; }
.hero-icons .emoji:nth-child(2) { z-index: 2; }
.hero-icons .emoji:nth-child(3) { z-index: 3; }
.hero-icons .emoji:nth-child(1) { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.hero-icons .emoji:nth-child(2) { background: linear-gradient(135deg, #a78bfa, #818cf8); }
.hero-icons .emoji:nth-child(3) { background: linear-gradient(135deg, #22c55e, #16a34a); }
.topline-text { font-weight: 700; }

.hero-heading {
  font-size: clamp(24px, 6vw, 50px); /* -6px no teto */
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.hero-heading .grad-cyan { display: inline; font-size: clamp(22px, 5.5vw, 46px); margin: 0; font-weight: 800; letter-spacing: -0.01em; }

.hero-support {
  font-size: 16px;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
  display: flex;
  align-items: center;   /* vertical */
  justify-content: center; /* horizontal */
}

.highlight { color: var(--primary-2); }
.emph { color: #e2e8f0; font-weight: 700; }
.emph-green { color: #22d3ee; font-weight: 800; }

.grad-bluepurple {
  background: linear-gradient(90deg, #6CC5FD, #1C9BFD);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-cyan {
  background: linear-gradient(90deg, #6CC5FD, #1C9BFD);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  justify-content: center;
}
.trust-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid #1f2a3a;
}

.cta-wrap { display: grid; gap: 10px; align-items: start; justify-items: center; }
.countdown { color: #cbd5e1; font-size: 14px; }
.countdown .time { font-weight: 700; color: var(--primary-2); }

.app-placeholder { width: 100%; max-width: 320px; filter: drop-shadow(0 12px 24px var(--shadow)); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
}

/* Icon inside buttons */
.btn .icon { display: inline-flex; align-items: center; }
.btn .icon svg { width: 20px; height: 20px; }

.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #052e1a;
  box-shadow: 0 10px 20px rgba(34,197,94,0.25), inset 0 -2px 0 rgba(0,0,0,0.2);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-primary:active { transform: translateY(1px); }

.btn-hero {
  background: #0CC143;
  color: #ffffff;
  font-size: clamp(16px, 2.4vw, 18px);
  font-weight: 800;
  padding: 16px 22px;
  border-radius: 16px;
  width: min(820px, 92%);
  box-shadow: 0 18px 36px rgba(37,211,102,0.25), inset 0 -2px 0 rgba(0,0,0,0.25);
}

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Cards and sections */
.section-title {
  font-size: clamp(22px, 4.5vw, 32px);
  margin-bottom: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid #1f2a3a;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px var(--shadow);
}

.hit-card .hit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hit-title { font-weight: 700; }
.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #1f2a3a;
}
.badge.success { background: rgba(34,197,94,0.15); color: #86efac; }
.hit-body { color: #cbd5e1; }
.hit-body .match { font-weight: 600; color: #e2e8f0; }
.hit-body .meta { margin: 6px 0; }
.hit-cta { margin-top: 14px; }
.hit-cta { display: grid; place-items: center; }

.lead { color: #cbd5e1; margin: 10px 0; }
.benefits {
  list-style: none;
  padding: 0;
  margin: 16px 0 8px;
}
.benefits li { margin: 8px 0; }
.final { color: #e2e8f0; font-weight: 700; margin: 18px 0; }
.center { display: grid; place-items: center; }

/* CTA form */
.cta-section { background: linear-gradient(180deg, rgba(11,97,114,0.12), transparent); }
.cta-card { max-width: 640px; margin: 0 auto; }
.cta-title { font-size: 22px; font-weight: 800; }
.cta-sub { color: #cbd5e1; margin: 6px 0 16px; }
.lead-form { display: grid; gap: 12px; }
.lead-form button { justify-self: center; }
.form-group { display: grid; gap: 6px; }
label { font-size: 14px; color: #cbd5e1; }
input[type="email"] {
  background: var(--panel-2);
  border: 1px solid #1f2a3a;
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
}
input[type="email"]::placeholder { color: #64748b; }
.form-note { font-size: 12px; color: #94a3b8; }
.form-success { background: rgba(34,197,94,0.12); border: 1px solid #14532d; padding: 12px; border-radius: 12px; }

/* Footer */
.footer { border-top: 1px solid #1f2a3a; padding: 28px 0; color: #94a3b8; font-size: 13px; }

/* Fade-in on scroll */
.fade { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1000;
  animation: fadeIn .25s ease;
}
.popup-overlay.visible { display: flex; }
.popup {
  background: #f8fafc;
  color: #0f172a;
  border-radius: 16px;
  width: min(640px, 96%);
  padding: 22px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  border: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(12px);
  animation: popupEnter .3s ease forwards;
}
.popup-title { font-size: clamp(20px, 4.5vw, 26px); font-weight: 800; margin: 0 0 6px; }
.popup-sub { color: #334155; margin: 6px 0 14px; font-weight: 600; }
.popup-intro { color: #334155; margin: 0 0 6px; }
.popup-steps { margin: 0 0 12px; padding-left: 0; list-style: none; color: #0f172a; }
.popup-steps li { margin: 8px 0; }
.popup-final { color: #0f172a; font-weight: 600; margin: 10px 0 18px; }
.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
}
.popup-close:hover { filter: brightness(0.98); }
.popup-cta { margin-top: 6px; }

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes popupEnter { to { opacity: 1; transform: translateY(0) } }

/* Responsive */
@media (min-width: 768px) {
  .hero-grid { align-items: center; }
}
.hero-logo {
  display: block;
  margin: 0 auto 16px;
  width: clamp(96px, 16vw, 200px);
  height: auto;
  filter: drop-shadow(0 6px 16px var(--shadow));
}
/* Override: larger WhatsApp icon */
.btn .icon svg { width: 22px; height: 22px; }