
    /* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM
═══════════════════════════════════════════════════════════════ */
    :root {
      --onyx-950: #09090B;
  --bg-primary: #09090B;
      --onyx-900: #0a0a0f;
      --onyx-850: #111114;
      --onyx-800: #18181B;
      --onyx-700: #27272a;
      --onyx-600: #3f3f46;
      --gold: #D4AF37;
      --gold-light: #f4d03f;
      --gold-dark: #a88828;
      --gold-glow: rgba(212, 175, 55, 0.35);
      --accent-success: #10B981;
      --accent-warning: #F59E0B;
      --accent-danger: #EF4444;
      --info: #3B82F6;
      --text: #fafafa;
      --text-muted: #a1a1aa;
      --text-subtle: #71717a;
      --border: rgba(212, 175, 55, 0.12);
      --border-strong: rgba(212, 175, 55, 0.25);
      --glass: rgba(24, 24, 27, 0.55);
      --gradient-gold: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
      --gradient-gold-anim: linear-gradient(120deg, #a88828, #f4d03f, #D4AF37, #f4d03f, #a88828);
      --shadow-gold: 0 10px 40px -10px var(--gold-glow);
      --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.6);

      --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --tracking-tight: -0.04em;
      --leading-display: 1.05;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-body);
      background: var(--onyx-950);
      color: var(--text);
      line-height: 1.65;
      overflow-x: clip;
      min-height: 100vh; min-height: 100dvh;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      font-feature-settings: 'kern' 1, 'liga' 1;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--onyx-950); }
    ::-webkit-scrollbar-thumb { background: var(--onyx-700); border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--onyx-600); }

    img {
      max-width: 100%;
      display: block;
    }

    i,
    svg {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all .25s ease;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: var(--leading-heading, 1.15);
      letter-spacing: var(--tracking-snug, -0.025em);
    }

    /* Background ambient */
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.06), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.04), transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    /* ═══════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════ */
    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    .gradient-gold {
      background: var(--gradient-gold-anim);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 6s ease infinite;
    }

    @keyframes shimmer {

      0%,
      100% {
        background-position: 0% 50%
      }

      50% {
        background-position: 100% 50%
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 15px;
      transition: all .3s cubic-bezier(.4, 0, .2, 1);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--gradient-gold);
      color: #0a0a0a;
      box-shadow: var(--shadow-gold);
    }

    .btn-primary:hover {
      box-shadow: 0 15px 50px -10px var(--gold-glow);
      color: #0a0a0a;
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      border: 1px solid var(--border-strong);
      backdrop-filter: blur(10px);
    }

    .btn-ghost:hover {
      background: rgba(212, 175, 55, 0.08);
      border-color: var(--gold);
    }

    .btn-large {
      padding: 18px 36px;
      font-size: 16px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .03em;
      background: rgba(212, 175, 55, 0.12);
      border: 1px solid var(--border-strong);
      color: var(--gold-light);
    }

    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 64px;
    }

    .section-eyebrow {
      color: var(--gold);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.12;
      margin-bottom: 16px;
    }

    .section-sub {
      color: var(--text-muted);
      font-size: 17px;
      line-height: 1.65;
      letter-spacing: -0.01em;
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex !important;
      align-items: center !important;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      background: rgba(9, 9, 11, 0.7);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      display: flex !important;
      align-items: center !important;
      gap: 10px !important;
      text-decoration: none !important;
    }

    .logo-icon {
      width: 36px !important;
      height: 36px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      background: var(--gradient-gold) !important;
      border-radius: 10px !important;
      box-shadow: var(--shadow-gold) !important;
      flex-shrink: 0 !important;
    }

    .logo-icon svg,
    .logo-icon i {
      width: 20px !important;
      height: 20px !important;
      color: #0a0a0a !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .feature-list li i,
    .feature-list li svg,
    .service-features li i,
    .service-features li svg,
    .price-features li i,
    .price-features li svg,
    .affiliate-features li i,
    .affiliate-features li svg,
    .trust-item i,
    .trust-item svg,
    .quiz-opt i,
    .quiz-opt svg,
    .dropdown-item i,
    .dropdown-item svg,
    .faq-q i,
    .faq-q svg,
    .mockup-row i,
    .mockup-row svg,
    .social a i,
    .social a svg,
    .cookie-banner h4 i,
    .cookie-banner h4 svg {
      width: 20px;
      height: 20px;
      margin: 0;
      padding: 0;
      line-height: 1;
    }

    .logo-text {
      font-family: var(--font-heading) !important;
      font-size: 21px !important;
      font-weight: 800 !important;
      letter-spacing: -0.5px !important;
      display: block !important;
      margin-top: -4px !important;
      line-height: 1 !important;
    }

    .logo-text span {
      color: var(--gold) !important;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      position: relative;
      line-height: 1;
      min-height: 40px;
    }

    .nav-link:hover {
      color: var(--text);
      background: rgba(255, 255, 255, 0.04);
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 260px;
      padding: 8px;
      background: rgba(17, 17, 20, 0.95);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border-strong);
      border-radius: 14px;
      box-shadow: var(--shadow-card);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all .25s ease;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 8px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .dropdown-item:hover {
      background: rgba(212, 175, 55, 0.08);
      color: var(--gold);
    }

    .dropdown-item i {
      color: var(--gold);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .install-btn {
      display: none;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 13px;
      color: var(--gold);
      border: 1px solid var(--border-strong);
    }

    .install-btn.active {
      display: inline-flex;
    }

    .menu-toggle {
      display: none;
      padding: 8px;
      color: var(--text);
    }

    @media (max-width: 1024px) {

      .nav,
      .header-actions .btn-ghost,
      .install-btn {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }
    }

    /* Mobile menu */
    .mobile-menu {
      position: fixed;
      inset: 72px 0 0 0;
      z-index: 99;
      background: rgba(9, 9, 11, 0.98);
      backdrop-filter: blur(20px);
      padding: 24px;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4, 0, .2, 1);
      overflow-y: auto;
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .mobile-menu a {
      display: block;
      padding: 14px 16px;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .mobile-menu a:hover {
      background: rgba(212, 175, 55, 0.08);
      color: var(--gold);
    }

    .mobile-menu .btn {
      width: 100%;
      justify-content: center;
      margin-top: 10px;
    }

    /* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      padding: 80px 0 100px;
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.08), transparent 50%);
      z-index: 0;
    }

    .particles {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0.3;
      animation: float 12s infinite ease-in-out;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) translateX(0);
        opacity: 0.2;
      }

      50% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0.6;
      }
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      width: 100%;
    }

    .hero-badge {
      margin-bottom: 28px;
      animation: floatY 4s ease-in-out infinite;
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 6vw, 72px);
      font-weight: 800;
      margin-bottom: 24px;
      letter-spacing: var(--tracking-tight, -0.04em);
      line-height: var(--leading-display, 1.05);
    }

    .hero-sub {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-muted);
      max-width: 720px;
      margin: 0 auto 48px;
      line-height: 1.7;
      letter-spacing: -0.01em;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 880px;
      margin: 0 auto 48px;
    }

    .stat-card {
      padding: 24px 16px;
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border-strong);
      border-radius: 16px;
      text-align: center;
      transition: all .3s ease;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
      box-shadow: var(--shadow-gold);
    }

    .stat-num {
      font-family: var(--font-heading);
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 800;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.03em;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    @media (max-width: 640px) {
      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ═══════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════ */
    .trust-bar {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: rgba(0, 0, 0, 0.2);
    }

    .trust-head {
      text-align: center;
      margin-bottom: 24px;
    }

    .trust-head .badge {
      background: rgba(16, 185, 129, 0.1);
      border-color: rgba(16, 185, 129, 0.3);
      color: var(--accent-success);
    }

    .marquee {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    }

    .marquee-track {
      display: flex;
      gap: 64px;
      width: max-content;
      animation: marquee 30s linear infinite;
    }

    @keyframes marquee {
      to {
        transform: translateX(-50%);
      }
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 18px;
      color: var(--text-muted);
      padding: 12px 24px;
      opacity: 0.8;
    }

    .trust-item i {
      color: var(--gold);
    }

    /* ═══════════════════════════════════════════════════════════════
   QUIZ
═══════════════════════════════════════════════════════════════ */
    .quiz-wrap {
      max-width: 720px;
      margin: 0 auto;
      padding: 40px;
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border-strong);
      border-radius: 24px;
      box-shadow: var(--shadow-card);
    }

    .quiz-progress {
      height: 4px;
      background: var(--onyx-700);
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 32px;
    }

    .quiz-progress-bar {
      height: 100%;
      background: var(--gradient-gold);
      width: 33%;
      transition: width .4s ease;
    }

    .quiz-step {
      display: none;
      animation: fadeIn .4s ease;
    }

    .quiz-step.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .quiz-q {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 24px;
      text-align: center;
    }

    .quiz-options {
      display: grid;
      gap: 12px;
    }

    .quiz-opt {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      padding: 18px 22px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 12px;
      font-size: 15px;
      font-weight: 500;
      text-align: left;
      color: var(--text);
      transition: all .25s ease;
    }

    .quiz-opt:hover {
      border-color: var(--gold);
      background: rgba(212, 175, 55, 0.08);
      transform: translateX(4px);
    }

    .quiz-opt i {
      color: var(--gold);
      flex-shrink: 0;
    }

    .quiz-result {
      display: none;
      text-align: center;
    }

    .quiz-result.active {
      display: block;
      animation: fadeIn .5s ease;
    }

    .quiz-result-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 20px;
      display: grid;
      place-items: center;
      background: var(--gradient-gold);
      border-radius: 20px;
      color: #0a0a0a;
      box-shadow: var(--shadow-gold);
    }

    .quiz-result h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .quiz-result p {
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .quiz-back {
      margin-top: 16px;
      color: var(--text-muted);
      font-size: 13px;
      text-decoration: underline;
    }

    /* ═══════════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════════ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .services-grid .service-card:last-child {
      grid-column: 1 / -1;
      flex-direction: row;
      align-items: center;
      gap: 24px;
      padding: 32px 40px;
    }

    .services-grid .service-card:last-child .service-icon {
      margin: 0;
      flex-shrink: 0;
    }

    .services-grid .service-card:last-child .service-title,
    .services-grid .service-card:last-child .service-desc {
      margin-bottom: 0;
    }

    .services-grid .service-card:last-child .btn {
      width: auto;
      min-width: 240px;
      margin-top: 0;
      flex-shrink: 0;
    }

    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .services-grid .service-card:last-child {
        grid-column: 1 / -1;
        flex-direction: column;
        text-align: center;
      }

      .services-grid .service-card:last-child .btn {
        width: 100%;
      }
    }

    @media (max-width: 640px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    .service-card {
      position: relative;
      padding: 32px;
      background: linear-gradient(160deg, rgba(24, 24, 27, 0.8), rgba(17, 17, 20, 0.6));
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 20px;
      transition: all .4s cubic-bezier(.4, 0, .2, 1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 60%);
      opacity: 0;
      transition: opacity .4s ease;
      pointer-events: none;
    }

    .service-card:hover {
      transform: translateY(-8px) perspective(1000px) rotateX(2deg);
      border-color: var(--gold);
      box-shadow: var(--shadow-card), 0 20px 60px -20px var(--gold-glow);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      background: rgba(212, 175, 55, 0.12);
      border: 1px solid var(--border-strong);
      border-radius: 14px;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .service-card .badge {
      position: absolute;
      top: 20px;
      right: 20px;
    }

    .service-title {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .service-desc {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .service-features {
      margin-bottom: 24px;
    }

    .service-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-muted);
      padding: 6px 0;
    }

    .service-features li i {
      color: var(--gold);
      width: 16px;
    }

    .service-card .btn {
      margin-top: auto;
      width: 100%;
      justify-content: center;
    }

    /* ═══════════════════════════════════════════════════════════════
   PAINEL & AFILIADOS
═══════════════════════════════════════════════════════════════ */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .split {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .split h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 16px;
    }

    .split p.lead {
      color: var(--text-muted);
      font-size: 17px;
      margin-bottom: 28px;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 12px 0;
      font-size: 15px;
    }

    .feature-list li i {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      background: rgba(212, 175, 55, 0.12);
      border-radius: 8px;
      color: var(--gold);
    }

    .panel-mockup {
      position: relative;
      padding: 24px;
      background: linear-gradient(160deg, var(--onyx-800), var(--onyx-850));
      border: 1px solid var(--border-strong);
      border-radius: 20px;
      box-shadow: var(--shadow-card);
      transform: perspective(1000px) rotateY(-5deg);
      transition: transform .5s ease;
    }

    .panel-mockup:hover {
      transform: perspective(1000px) rotateY(0);
    }

    .mockup-bar {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
    }

    .mockup-bar span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--onyx-700);
    }

    .mockup-bar span:first-child {
      background: var(--accent-danger);
    }

    .mockup-bar span:nth-child(2) {
      background: var(--accent-warning);
    }

    .mockup-bar span:nth-child(3) {
      background: var(--accent-success);
    }

    .mockup-content {
      display: grid;
      gap: 12px;
    }

    .mockup-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      border: 1px solid var(--border);
    }

    .mockup-row i {
      color: var(--gold);
    }

    .mockup-row .mock-text {
      flex: 1;
    }

    .mockup-row .mock-text div:first-child {
      font-size: 13px;
      font-weight: 600;
    }

    .mockup-row .mock-text div:last-child {
      font-size: 11px;
      color: var(--text-subtle);
    }

    .mockup-row .mock-tag {
      font-size: 11px;
      padding: 4px 8px;
      background: rgba(16, 185, 129, 0.15);
      color: var(--accent-success);
      border-radius: 6px;
    }

    /* Afiliados */
    .affiliate-card {
      max-width: 1080px;
      margin: 0 auto;
      padding: 56px;
      background: linear-gradient(160deg, rgba(212, 175, 55, 0.08), rgba(24, 24, 27, 0.6));
      border: 1px solid var(--gold);
      border-radius: 28px;
      box-shadow: 0 30px 80px -30px var(--gold-glow);
      position: relative;
      overflow: hidden;
    }

    .affiliate-card::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 40%);
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
      to {
        transform: rotate(360deg);
      }
    }

    .affiliate-card>* {
      position: relative;
      z-index: 1;
    }

    .affiliate-card .text-center {
      text-align: center;
    }

    .affiliate-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 36px 0;
    }

    @media (max-width: 640px) {
      .affiliate-stats {
        grid-template-columns: 1fr;
      }
    }

    .affiliate-stat {
      padding: 24px;
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-strong);
      border-radius: 16px;
      text-align: center;
    }

    .affiliate-stat .num {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 800;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .affiliate-stat .lbl {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    .affiliate-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 720px;
      margin: 0 auto 32px;
    }

    @media (max-width: 640px) {
      .affiliate-features {
        grid-template-columns: 1fr;
      }
    }

    .affiliate-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
    }

    .affiliate-features li i {
      color: var(--gold);
    }

    /* ═══════════════════════════════════════════════════════════════
   COMO FUNCIONA
═══════════════════════════════════════════════════════════════ */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
    }

    @media (max-width: 900px) {
      .steps {
        grid-template-columns: 1fr;
      }
    }

    .steps::before {
      content: "";
      position: absolute;
      top: 60px;
      left: 16%;
      right: 16%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.4;
    }

    @media (max-width: 900px) {
      .steps::before {
        display: none;
      }
    }

    .step {
      text-align: center;
      padding: 32px 24px;
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 20px;
      transition: all .3s ease;
      position: relative;
    }

    .step:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }

    .step-num {
      font-family: var(--font-display);
      font-size: 56px;
      font-weight: 800;
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
      margin-bottom: 8px;
    }

    .step-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 16px;
      display: grid;
      place-items: center;
      background: rgba(212, 175, 55, 0.12);
      border-radius: 14px;
      color: var(--gold);
    }

    .step h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .step p {
      color: var(--text-muted);
      font-size: 14px;
    }

    /* ═══════════════════════════════════════════════════════════════
   PREÇOS
═══════════════════════════════════════════════════════════════ */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 880px;
      margin: 0 auto;
      align-items: stretch;
    }

    /* Serviços Especializados: 3 colunas no desktop (empilha no mobile via media query) */
    .pricing-grid--3 {
      grid-template-columns: repeat(3, 1fr);
      max-width: 1080px;
    }

    @media (max-width: 700px) {
      .pricing-grid,
      .pricing-grid--3 {
        grid-template-columns: 1fr;
      }
    }

    .price-card {
      padding: 40px 32px;
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 20px;
      position: relative;
      transition: all .3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
    }

    .price-card.featured {
      border-color: var(--gold);
      box-shadow: var(--shadow-gold);
    }

    .price-card:hover {
      transform: translateY(-4px);
    }

    .price-card.featured:hover {
      transform: translateY(-4px);
    }

    /* Cards não-destacados: borda consistente + hover com brilho dourado sutil */
    .pricing-grid--3 .price-card:not(.featured) {
      border-color: var(--border-strong);
    }

    .pricing-grid--3 .price-card:not(.featured):hover {
      border-color: var(--gold);
      box-shadow: 0 14px 44px -16px rgba(212, 175, 55, 0.4);
    }

    /* Botões dos cards secundários: estado base dourado suave + hover preenchido em dourado */
    .pricing-grid--3 .price-card:not(.featured) .btn-ghost {
      background: rgba(212, 175, 55, 0.06);
      color: var(--gold-light);
      border-color: var(--border-strong);
    }

    .pricing-grid--3 .price-card:not(.featured) .btn-ghost:hover {
      background: var(--gradient-gold);
      color: #0a0a0a;
      border-color: var(--gold);
      box-shadow: var(--shadow-gold);
    }

    .price-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
    }

    .price-card:not(.featured) h3 {
      padding-top: 36px;
    }

    .price-card .price-tag {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 800;
      margin: 16px 0;
    }

    .price-card.featured .price-tag {
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .price-card .price-tag span {
      font-size: 16px;
      color: var(--text-muted);
      font-weight: 400;
    }

    .price-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      font-size: 14px;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
    }

    .price-features li i {
      color: var(--gold);
    }

    .price-features li.disabled {
      opacity: 0.4;
    }

    .price-features li.disabled i {
      color: var(--text-subtle);
    }

    .price-card .btn {
      width: 100%;
      justify-content: center;
      margin-top: auto;
    }

    /* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    .faq-item {
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color .25s ease;
    }

    .faq-item.open {
      border-color: var(--gold);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 20px 24px;
      font-size: 16px;
      font-weight: 600;
      text-align: left;
    }

    .faq-q i {
      transition: transform .3s ease;
      color: var(--gold);
    }

    .faq-item.open .faq-q i {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      padding: 0 24px;
      color: var(--text-muted);
      font-size: 15px;
    }

    .faq-item.open .faq-a {
      max-height: 400px;
      padding: 0 24px 20px;
    }

    /* ═══════════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════════ */
    .final-cta {
      position: relative;
      padding: 80px 48px;
      /* Fundo escuro real com leve calor dourado no topo — sem amarelo chapado */
      background:
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.10), transparent 55%),
        linear-gradient(160deg, #131316, #09090B 70%);
      border-radius: 32px;
      text-align: center;
      overflow: hidden;
      max-width: 1080px;
      margin: 0 auto;
      /* Sombra dourada externa, sutil e elegante */
      box-shadow:
        0 30px 80px -30px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.18),
        0 0 60px -20px rgba(212, 175, 55, 0.25);
    }

    /* Borda dourada em gradient stroke (sem preencher o card) */
    .final-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 32px;
      padding: 1px;
      background: var(--gradient-gold-anim);
      background-size: 300% 300%;
      animation: shimmer 6s ease infinite;
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      opacity: 0.9;
    }

    /* Brilho radial muito sutil ao centro */
    .final-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 120%, rgba(212, 175, 55, 0.18), transparent 55%);
      pointer-events: none;
      animation: pulse 4s ease infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 0.6;
      }

      50% {
        opacity: 1;
      }
    }

    .final-cta>* {
      position: relative;
      z-index: 1;
    }

    .final-cta h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4.5vw, 48px);
      margin-bottom: 16px;
    }

    .final-cta p {
      color: var(--text-muted);
      font-size: 18px;
      margin-bottom: 36px;
    }

    .final-cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
    .footer {
      background: var(--onyx-900);
      border-top: 1px solid var(--border);
      padding: 80px 0 32px;
      margin-top: 80px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 56px;
    }

    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer-col h4 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col a {
      font-size: 14px;
      color: var(--text-muted);
    }

    .footer-col a:hover {
      color: var(--gold);
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 16px 0 20px;
      max-width: 320px;
    }

    .social {
      display: flex;
      gap: 10px;
    }

    .social a {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--text-muted);
    }

    .social a i,
    .social a svg {
      display: block;
      width: 18px;
      height: 18px;
      margin: auto;
    }

    .social a:hover {
      background: rgba(212, 175, 55, 0.12);
      border-color: var(--gold);
      color: var(--gold);
    }

    .status-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-bottom: 24px;
    }

    .status-items {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .status-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-success);
      box-shadow: 0 0 8px var(--accent-success);
      animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.4;
      }
    }

    .payment-methods {
      display: flex;
      gap: 8px;
    }

    .payment-methods span {
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--text-muted);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: var(--text-subtle);
    }

    /* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════════ */
    .cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 20px;
      right: 20px;
      max-width: 720px;
      margin: 0 auto;
      padding: 24px 28px;
      background: rgba(17, 17, 20, 0.95);
      backdrop-filter: blur(20px);
      border: 1px solid var(--gold);
      border-radius: 18px;
      box-shadow: var(--shadow-card), var(--shadow-gold);
      z-index: 200;
      display: none;
    }

    .cookie-banner.show {
      display: block;
      animation: slideUp .5s ease;
    }

    @keyframes slideUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .cookie-banner h4 {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
      font-size: 17px;
    }

    .cookie-banner h4 i {
      color: var(--gold);
    }

    .cookie-banner p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .cookie-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cookie-actions .btn {
      padding: 10px 20px;
      font-size: 13px;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal.show {
      display: flex;
      animation: fadeIn .25s ease;
    }

    .modal-content {
      background: var(--onyx-800);
      border: 1px solid var(--border-strong);
      border-radius: 20px;
      padding: 32px;
      max-width: 520px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
    }

    .modal-content h3 {
      margin-bottom: 16px;
      font-family: var(--font-display);
    }

    .cookie-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      margin-bottom: 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 12px;
    }

    .cookie-toggle .info h5 {
      font-size: 14px;
      margin-bottom: 4px;
    }

    .cookie-toggle .info p {
      font-size: 12px;
      color: var(--text-muted);
      margin: 0;
    }

    .switch {
      position: relative;
      width: 44px;
      height: 24px;
      flex-shrink: 0;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      inset: 0;
      background: var(--onyx-700);
      border-radius: 24px;
      cursor: pointer;
      transition: background .25s ease;
    }

    .slider::before {
      content: "";
      position: absolute;
      top: 3px;
      left: 3px;
      width: 18px;
      height: 18px;
      background: white;
      border-radius: 50%;
      transition: transform .25s ease;
    }

    .switch input:checked+.slider {
      background: var(--gold);
    }

    .switch input:checked+.slider::before {
      transform: translateX(20px);
    }

    .switch input:disabled+.slider {
      opacity: 0.6;
      cursor: not-allowed;
    }

    /* WhatsApp floating */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      background: #25D366;
      border-radius: 50%;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      z-index: 90;
      color: white;
      animation: floatY 3s ease-in-out infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    /* ============================================================
   RESPONSIVIDADE MOBILE - PWA APP-LIKE
   ============================================================ */

    /* iOS Safe Area Support */
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
      body {
        padding-bottom: env(safe-area-inset-bottom);
      }
    }

    /* Mobile: max-width 768px */
    @media (max-width: 768px) {

      /* Touch targets de 44px mínimo */
      .btn,
      .btn-primary,
      .btn-ghost,
      .nav-link,
      .dropdown-item,
      .menu-toggle {
        min-height: 44px;
        min-width: 44px;
      }

      /* Inputs: font-size 16px para prevenir zoom no iOS */
      input,
      select,
      textarea {
        font-size: 16px !important;
        min-height: 44px;
      }

      /* Mobile menu links */
      .mobile-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 16px;
      }

      /* Hero ajustes */
      .hero-title {
        font-size: clamp(32px, 8vw, 48px);
      }

      .hero-ctas {
        flex-direction: column;
        align-items: center;
      }

      .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
      }

      /* Section padding reduzido */
      .section {
        padding: 60px 0;
      }

      /* Container com padding lateral */
      .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      /* Cookie banner reposicionado */
      .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
      }

      /* WhatsApp button ajustado */
      .whatsapp-float {
        bottom: calc(24px + env(safe-area-inset-bottom, 0px));
        width: 48px;
        height: 48px;
      }

      /* Modais mobile-friendly */
      .modal-content {
        max-height: 90vh;
        margin: 16px;
        padding: 24px;
      }

      /* FAQ accordion */
      .faq-a {
        max-height: none;
        overflow-y: auto;
      }
    }

    /* Mobile pequeno: max-width 480px */
    @media (max-width: 480px) {
      .hero-title {
        font-size: 28px;
      }

      .hero-sub {
        font-size: 16px;
      }

      .section-title {
        font-size: 24px;
      }

      .service-card,
      .price-card {
        padding: 24px;
      }
    }

    /* =======================================================
       PROTEÇÃO CONTRA O MODAL FANTASMA NO MOBILE
       Garante que os modais fiquem escondidos se não tiverem a classe .show
       ======================================================= */
    .video-modal:not(.show),
    .cookie-modal:not(.show) {
      display: none !important;
    }

    /* =======================================================
   PROTEÇÃO CONTRA MODAL FANTASMA NO MOBILE
   ======================================================= */
    .modal:not(.show):not(.open),
    .cookie-modal:not(.show):not(.open),
    .video-modal:not(.show):not(.open),
    .modal-backdrop:not(.show):not(.open) {
      display: none !important;
    }
  


    @media (max-width: 768px) {

      /* 1. MATA A ROLAGEM HORIZONTAL E TRAVA A TELA */
      html,
      body {
        overflow-x: clip !important;
        width: 100vw !important;
        max-width: 100% !important;
      }

      /* 2. SALVA O MENU HAMBÚRGUER (Esconde os botões grandes no topo) */
      .header-actions .btn-primary,
      .header-actions .btn-ghost,
      .header-actions .install-btn {
        display: none !important;
      }

      .menu-toggle {
        display: inline-flex !important;
        min-width: 44px !important;
        min-height: 44px !important;
      }

      .header-inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      /* 3. DOMA O TEXTO GIGANTE "5 SOLUÇÕES" PARA CABER NA TELA */
      .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        padding: 0 10px !important;
      }

      /* 4. GARANTE QUE O VÍDEO E OS CARDS NÃO VAZEM */
      * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
      }
    }
  