/* ============================================
   DESIGN TOKENS — Impulso Digital (funil de vendas)
   ============================================ */
:root {
  --bg: #070b14;
  --bg-alt: #0c111c;
  --bg-card: #111726;
  --text-primary: #f5f7fa;
  --text-body: #aab2c2;
  --text-muted: #737c8f;
  --border: rgba(255, 255, 255, 0.08);

  --blue: #3b82f6;
  --purple: #8b5cf6;
  --gradient-brand: linear-gradient(90deg, var(--blue), var(--purple));

  --green: #16c266;
  --green-dark: #0d9e53;
  --gradient-whats: linear-gradient(135deg, #14b88a, var(--green));

  --amber: #f5b400;

  --font-display: "Poppins", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 10px;
  --ease: cubic-bezier(0.25, 0, 0, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text-body); font-family: var(--font-body);
  font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-primary); font-weight: 700; line-height: 1.2; }
section { padding: 100px 0; position: relative; }

.gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 36px; font-size: 0.95rem; font-weight: 700; border-radius: 50px;
  cursor: pointer; transition: all 0.3s var(--ease); border: none;
}
.btn-whats {
  background: var(--gradient-whats); color: #fff;
  box-shadow: 0 0 0 rgba(22,194,102,0.4);
}
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(22,194,102,0.35); }
.btn-whats-sm { padding: 12px 24px; font-size: 0.82rem; border-radius: 40px; }
.btn svg { flex-shrink: 0; }

/* ---------- HEADER ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; background: rgba(7, 11, 20, 0.7); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: all 0.3s var(--ease);
}
header.scrolled { border-bottom: 1px solid var(--border); background: rgba(7, 11, 20, 0.92); }
header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
}
.brand-name { font-family: var(--font-display); font-weight: 800; color: var(--text-primary); letter-spacing: 0.02em; font-size: 1.05rem; line-height: 1.1; }
.brand-name span { display: block; font-size: 0.6rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.15em; }
.badge-partner {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 30px;
  background: rgba(139, 92, 246, 0.12); border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c4b5fd; font-size: 0.72rem; font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a:not(.btn) { font-size: 0.88rem; color: var(--text-body); transition: color 0.25s; }
.nav-links a:not(.btn):hover { color: var(--text-primary); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); }

/* ---------- FADE IN ---------- */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ---------- HERO ---------- */
.hero {
  padding: 190px 0 110px; text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(59,130,246,0.14), transparent 70%);
}
.hero h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); max-width: 900px; margin: 0 auto 28px; }
.hero h1 .gratuito { display: block; font-size: clamp(2.4rem, 6.4vw, 4.2rem); color: var(--blue); margin-top: 6px; }
.hero-sub { max-width: 700px; margin: 0 auto 52px; font-size: 1.05rem; color: var(--text-body); }
.hero-sub b { color: var(--text-primary); }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 780px; margin: 0 auto 46px; text-align: left; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 18px 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.benefit-item .check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--green); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.benefit-item span.text { font-size: 0.9rem; color: var(--text-primary); font-weight: 500; }

.trust-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 26px; font-size: 0.85rem; color: var(--text-muted); }
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { flex-shrink: 0; }

/* ---------- SECTION HEAD ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-head .kicker { display: block; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--text-body); font-size: 1rem; }

/* ---------- COMO FUNCIONA ---------- */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; position: relative; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px; position: relative; }
.step-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand); margin-bottom: 22px; position: relative;
}
.step-icon .num { position: absolute; right: -8px; top: -10px; background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-muted); font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); }
.step-arrow { position: absolute; top: 46px; right: -30px; color: var(--blue); z-index: 2; }
@media (min-width: 901px) { .step-card:last-child .step-arrow { display: none; } }

/* ---------- PORTFOLIO ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.portfolio-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.portfolio-card:hover { transform: translateY(-4px); border-color: var(--swatch); }
.portfolio-visual {
  aspect-ratio: 16/10; position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, var(--swatch-soft), var(--bg-alt));
}
.portfolio-visual svg { width: 26%; opacity: 0.55; color: var(--swatch); }
.portfolio-tag {
  position: absolute; top: 14px; left: 14px; background: var(--swatch); color: #070b14;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.portfolio-made {
  position: absolute; bottom: 12px; right: 12px; background: rgba(7,11,20,0.75); backdrop-filter: blur(6px);
  color: var(--text-primary); font-size: 0.62rem; font-weight: 600; padding: 5px 10px; border-radius: 20px;
  display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--border);
}
.portfolio-body { padding: 22px 22px 26px; }
.portfolio-body h3 { font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.portfolio-body p { font-size: 0.85rem; color: var(--text-muted); }
.portfolio-cta { text-align: center; margin-top: 50px; }

/* ---------- BANNER VIP ---------- */
.vip-banner {
  margin-top: 70px; padding: 3px; border-radius: 18px;
  background: linear-gradient(120deg, var(--purple), var(--blue), var(--purple));
  background-size: 200% 200%; animation: vipGlow 6s ease infinite;
}
@keyframes vipGlow { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.vip-banner-inner {
  background: var(--bg-card); border-radius: 15px; padding: 54px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.vip-banner-inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(139,92,246,0.16), transparent 70%);
  pointer-events: none;
}
.vip-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; border-radius: 30px;
  background: rgba(139,92,246,0.14); border: 1px solid rgba(139,92,246,0.4);
  color: #c4b5fd; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 22px; position: relative;
}
.vip-banner-inner h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 14px; position: relative; }
.vip-banner-inner p { max-width: 520px; margin: 0 auto 34px; font-size: 0.95rem; position: relative; }
.vip-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-vip {
  background: var(--gradient-brand); color: #070b14; font-weight: 700; border: none;
}
.btn-vip:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139,92,246,0.35); }

/* ---------- URGÊNCIA ---------- */
.urgency {
  text-align: center; background: linear-gradient(180deg, rgba(245,180,0,0.06), transparent);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.urgency .kicker { color: var(--amber); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 18px; display: block; }
.urgency h2 { color: var(--amber); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 20px; }
.urgency h2 b { color: var(--text-primary); }
.urgency p { max-width: 560px; margin: 0 auto 42px; }
.timer-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.timer { display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; }
.timer-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 22px; min-width: 84px; }
.timer-box .val { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--blue); }
.timer-box .unit { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.urgency-trust { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 24px; font-size: 0.85rem; color: var(--text-muted); }
.urgency-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- DEPOIMENTOS ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.testimonial-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #070b14; font-size: 0.95rem; flex-shrink: 0;
  background: var(--gradient-brand);
}
.testimonial-name { color: var(--text-primary); font-weight: 600; font-size: 0.95rem; }
.testimonial-loc { font-size: 0.78rem; color: var(--text-muted); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--amber); }
.testimonial-card p { font-size: 0.9rem; color: var(--text-body); font-style: italic; }
.testimonials-cta { text-align: center; margin-top: 46px; }

/* ---------- FOOTER ---------- */
footer { padding: 70px 0 40px; text-align: center; border-top: 1px solid var(--border); }
.footer-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-brand); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
footer .tagline { max-width: 460px; margin: 0 auto 20px; font-size: 0.95rem; color: var(--text-body); font-style: italic; }
.footer-contact { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; margin: 26px 0 36px; font-size: 0.88rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--text-body); transition: color 0.25s; }
.footer-contact a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 28px; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom .heart { color: #ef4444; }

/* ---------- WHATSAPP FLUTUANTE ---------- */
.whats-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--gradient-whats);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(22,194,102,0.4);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(22,194,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(22,194,102,0.7), 0 0 0 10px rgba(22,194,102,0.08); }
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 900px) {
  .benefits-grid, .steps-row, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  section { padding: 76px 0; }
  .hero { padding: 150px 0 80px; }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(300px, 82vw);
    background: var(--bg-alt); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 26px; border-left: 1px solid var(--border);
    transform: translateX(100%); transition: transform 0.4s var(--ease); }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .badge-partner { display: none; }
  .timer { gap: 10px; }
  .timer-box { min-width: 68px; padding: 12px 14px; }
  .timer-box .val { font-size: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
