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

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      font-family: 'DM Sans', sans-serif;
      color: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 68px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(9,9,11,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      width: 100%; max-width: 1280px; padding: 0 56px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo-text {
      font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800;
      color: var(--white); letter-spacing: -0.03em; text-decoration: none;
    }
    .nav-logo-text span { color: var(--blue); }
    .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 12px; font-weight: 400; letter-spacing: 0.08em;
      color: var(--muted); text-decoration: none; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-btn-fill {
      padding: 8px 20px; background: var(--blue); color: white;
      font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
      border-radius: 6px; text-decoration: none;
      transition: filter 0.2s, transform 0.2s;
      box-shadow: 0 0 24px var(--blue-glow);
    }
    .nav-btn-fill:hover { filter: brightness(1.12); transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      padding-top: 68px; position: relative; overflow: hidden;
    }

    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 80px 56px 80px 64px; position: relative; z-index: 1;
    }

    .hero-orb {
      position: absolute; top: -100px; left: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(79,126,255,0.12) 0%, transparent 70%);
      animation: orb 8s ease-in-out infinite alternate; pointer-events: none;
    }
    @keyframes orb {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(60px,40px) scale(1.15); }
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(79,126,255,0.12); border: 1px solid rgba(79,126,255,0.25);
      border-radius: 99px; padding: 6px 16px;
      font-size: 11px; font-weight: 500; color: var(--blue-light);
      letter-spacing: 0.06em; margin-bottom: 28px; width: fit-content;
    }
    .hero-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--blue); box-shadow: 0 0 8px var(--blue);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

    .hero-headline {
      font-family: 'Syne', sans-serif;
      font-size: clamp(44px, 5.5vw, 70px);
      font-weight: 800; line-height: 1.0;
      letter-spacing: -0.03em; color: var(--white); margin-bottom: 8px;
    }
    .hero-headline .gradient {
      background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 50%, var(--orange) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-sub {
      font-family: 'Syne', sans-serif;
      font-size: clamp(22px, 3vw, 38px);
      font-weight: 400; letter-spacing: -0.02em;
      color: var(--muted); margin-bottom: 24px; line-height: 1.1;
    }
    .hero-desc {
      font-size: 15px; font-weight: 300; font-style: italic;
      line-height: 1.8; color: var(--white); max-width: 440px;
      margin-bottom: 44px; opacity: 0.8;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; background: var(--blue); color: white;
      font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
      border-radius: 8px; text-decoration: none;
      transition: filter 0.2s, transform 0.2s;
      box-shadow: 0 0 32px var(--blue-glow);
    }
    .btn-primary:hover { filter: brightness(1.12); transform: translateY(-2px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 24px; background: transparent; color: var(--white);
      font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
      border-radius: 8px; text-decoration: none;
      border: 1px solid var(--border-hi);
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: var(--blue); color: var(--blue-light); }

    .hero-metrics {
      display: flex; gap: 32px; margin-top: 56px; padding-top: 32px;
      border-top: 1px solid var(--border);
    }
    .metric-num {
      font-family: 'Syne', sans-serif;
      font-size: 28px; font-weight: 800; color: var(--white);
      line-height: 1; letter-spacing: -0.02em;
    }
    .metric-num span { color: var(--blue); }
    .metric-label { font-size: 11px; color: var(--muted); margin-top: 4px; }

    /* Hero right visual */
    .hero-right {
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-right::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to right, var(--bg) 0%, transparent 30%),
                  linear-gradient(to top, var(--bg) 0%, transparent 40%);
      z-index: 3; pointer-events: none;
    }

    /* Dashboard mockup */
    .dashboard-mock {
      position: relative; z-index: 2;
      background: var(--card); border: 1px solid var(--border-hi);
      border-radius: 16px; padding: 24px;
      width: 340px;
      animation: floatmid 6s ease-in-out infinite alternate;
      box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    }
    @keyframes floatmid {
      from { transform: translateY(-10px) rotate(-1deg); }
      to   { transform: translateY(10px) rotate(0deg); }
    }
    .dash-title {
      font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
      margin-bottom: 16px;
    }
    .dash-stat {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 0; border-bottom: 1px solid var(--border);
    }
    .dash-stat:last-child { border-bottom: none; }
    .dash-stat-label { font-size: 12px; color: var(--muted); }
    .dash-stat-val { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); }
    .dash-stat-delta {
      font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 99px;
    }
    .dash-delta-up { background: rgba(79,255,150,0.10); color: #7FFFA8; border: 1px solid rgba(79,255,150,0.2); }
    .dash-delta-down { background: rgba(255,80,80,0.10); color: #FF8080; border: 1px solid rgba(255,80,80,0.2); }
    .dash-bar-wrap { margin-top: 16px; }
    .dash-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 6px; }
    .dash-bar-track { height: 4px; background: var(--border); border-radius: 99px; overflow: hidden; margin-bottom: 8px; }
    .dash-bar-fill { height: 100%; border-radius: 99px; background: var(--blue); }

    .float-card {
      position: absolute; z-index: 4;
      background: rgba(14,14,18,0.90); border: 1px solid var(--border-hi);
      border-radius: 12px; padding: 14px 18px;
      backdrop-filter: blur(20px);
      box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    }
    .float-card.one { top: 28%; right: 40px; }
    .float-card.two { bottom: 22%; right: 40px; }
    .float-label { font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
    .float-val { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
    .float-val span { color: var(--blue); }
    .float-sub { font-size: 10px; color: var(--muted); margin-top: 3px; }
    .float-tag {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 4px 10px; border-radius: 99px; font-size: 10px; font-weight: 500;
      background: rgba(79,255,150,0.12); border: 1px solid rgba(79,255,150,0.25);
      color: #7FFFA8; margin-top: 8px;
    }
    .float-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: #7FFFA8; }

    /* ── SECTIONS ── */
    section { padding: 96px 64px; max-width: 1280px; margin: 0 auto; }

    .section-eyebrow {
      font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 14px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--blue); }

    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(32px, 4vw, 52px); font-weight: 800;
      line-height: 1.05; letter-spacing: -0.03em; color: var(--white); margin-bottom: 14px;
    }
    .section-title .accent { color: var(--blue); }
    .section-title .italic { font-weight: 400; font-style: italic; color: var(--muted); }

    .section-sub {
      font-size: 15px; font-weight: 300; font-style: italic;
      color: var(--muted); line-height: 1.7; max-width: 540px; margin-bottom: 56px;
    }

    /* ── PLATAFORMAS ── */
    .platforms-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
    .platform-tag {
      display: flex; align-items: center; gap: 10px;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 10px; padding: 12px 20px;
      font-size: 13px; font-weight: 500; color: var(--white);
      transition: border-color 0.2s;
    }
    .platform-tag:hover { border-color: var(--border-hi); }
    .platform-icon {
      width: 24px; height: 24px; border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
    }

    /* ── INCLUDES ── */
    .includes-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px;
    }
    .include-item {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; padding: 20px 18px;
      display: flex; align-items: flex-start; gap: 12px;
      transition: border-color 0.2s;
    }
    .include-item:hover { border-color: var(--border-hi); }
    .include-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(79,126,255,0.12); border: 1px solid rgba(79,126,255,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .include-title { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .include-desc { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.5; }

    /* ── PRICING ── */
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; max-width: 960px; margin: 0 auto; }
    .pricing-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 32px 28px;
      display: flex; flex-direction: column; gap: 20px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .pricing-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
    .pricing-card.featured {
      border-color: var(--blue);
      background: linear-gradient(145deg, var(--card), rgba(79,126,255,0.06));
      box-shadow: 0 0 40px var(--blue-glow);
    }
    .pricing-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); }
    .pricing-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); }
    .pricing-sub { font-size: 13px; font-weight: 300; color: var(--muted); font-style: italic; line-height: 1.5; margin-top: -12px; }
    .pricing-price { display: flex; align-items: baseline; gap: 4px; }
    .pricing-currency { font-size: 16px; font-weight: 500; color: var(--muted); }
    .pricing-value { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--white); line-height: 1; }
    .pricing-period { font-size: 12px; color: var(--muted); align-self: flex-end; margin-bottom: 4px; }
    .pricing-note { font-size: 12px; color: var(--muted); font-style: italic; margin-top: -12px; }
    .pricing-verba { font-size: 11px; color: var(--blue-light); margin-top: -12px; }
    .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .pricing-features li {
      font-size: 13px; font-weight: 400; color: var(--white);
      display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
    }
    .pricing-features li::before {
      content: ''; flex-shrink: 0; margin-top: 3px;
      width: 16px; height: 16px; border-radius: 50%;
      background: rgba(79,126,255,0.12);
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%234F7EFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: cover;
    }
    .pricing-btn {
      padding: 13px; border-radius: 10px; text-align: center;
      font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
      text-decoration: none; transition: filter 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
      display: block;
    }
    .pricing-btn.outline { border: 1px solid var(--border-hi); color: var(--white); }
    .pricing-btn.outline:hover { border-color: var(--blue); color: var(--white); }
    .pricing-btn.filled { background: var(--blue); color: white; box-shadow: 0 0 20px var(--blue-glow); }
    .pricing-btn.filled:hover { filter: brightness(1.1); transform: translateY(-1px); }

    /* ── FAQ ── */
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .faq-item {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; padding: 20px 22px;
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: var(--border-hi); }
    .faq-q { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .faq-a { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }

    /* ── CTA FINAL ── */
    .cta-final {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 20px; padding: 72px 40px; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-final::before {
      content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
      width: 400px; height: 300px;
      background: radial-gradient(ellipse, rgba(79,126,255,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-final-title {
      font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 44px);
      font-weight: 800; letter-spacing: -0.03em; color: var(--white); line-height: 1.1; margin-bottom: 16px;
    }
    .cta-final-title .accent { color: var(--blue); }
    .cta-final-sub {
      font-size: 15px; font-weight: 300; font-style: italic;
      color: var(--muted); margin-bottom: 36px;
      max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.7;
    }
    .btn-wa {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 32px; background: #25D366; color: white;
      font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
      border-radius: 10px; text-decoration: none;
      transition: filter 0.2s, transform 0.2s;
      box-shadow: 0 0 30px rgba(37,211,102,0.2);
    }
    .btn-wa:hover { filter: brightness(1.08); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border); padding: 32px 64px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-copy { font-size: 12px; color: var(--muted); }
    .footer-social { display: flex; gap: 7px; align-items: center; }
    .footer-social-link {
      width: 28px; height: 28px; border-radius: 6px;
      background: var(--card); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); text-decoration: none; font-size: 13px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .footer-social-link:hover { background: var(--blue-dim); color: var(--blue-light); border-color: rgba(79,126,255,0.25); }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .nav-inner { padding: 0 32px; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 80px 40px 60px; }
      .hero-right { display: none; }
      section { padding: 72px 40px; }
      .faq-grid { grid-template-columns: 1fr; }
      footer { padding: 32px 40px; }
    }
    @media (max-width: 768px) {
      section { padding: 64px 20px; }
      .hero-left { padding: 80px 20px 60px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .includes-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
      .cta-final { padding: 48px 24px; }
    }
