:root {
      --violet: #7C3AED;
      --violet-light: #A78BFA;
      --violet-glow: #8B5CF640;
      --cobalt: #2563EB;
      --cobalt-light: #60A5FA;
      --navy: #0A0F1E;
      --navy-mid: #0F1629;
      --navy-surface: #141B35;
      --navy-card: #1A2340;
      --navy-border: #1E2A4A;
      --white: #F8F7FF;
      --white-dim: rgba(248,247,255,0.65);
      --white-faint: rgba(248,247,255,0.12);
      --gold: #F4C85F;
      --red: rgba(239,68,68,0.9);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--white);
      font-family: 'Syne', sans-serif;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 999;
      opacity: 0.4;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 48px;
      background: rgba(10,15,30,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--navy-border);
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -0.02em;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .logo-dot {
      width: 8px; height: 8px;
      background: var(--violet);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 10px var(--violet);
    }

    nav a.nav-cta {
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.04em;
      color: var(--white);
      text-decoration: none;
      background: var(--violet);
      padding: 10px 24px;
      border-radius: 100px;
      transition: all 0.25s ease;
    }

    nav a.nav-cta:hover {
      background: #6D28D9;
      box-shadow: 0 0 24px rgba(124,58,237,0.5);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 24px 100px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-glow {
      position: absolute;
      top: -200px; left: 50%;
      transform: translateX(-50%);
      width: 900px; height: 700px;
      background: radial-gradient(ellipse at center, rgba(124,58,237,0.22) 0%, rgba(37,99,235,0.1) 45%, transparent 70%);
      pointer-events: none;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 80%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white-faint);
      border: 1px solid rgba(124,58,237,0.35);
      border-radius: 100px;
      padding: 6px 16px 6px 10px;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.12em;
      color: var(--violet-light);
      text-transform: uppercase;
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
      animation: fadeUp 0.7s ease both;
    }

    .badge-dot {
      width: 6px; height: 6px;
      background: var(--violet-light);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: clamp(48px, 8vw, 90px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--white);
      max-width: 820px;
      position: relative;
      z-index: 1;
      animation: fadeUp 0.8s 0.1s ease both;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--violet-light);
    }

    .hero-sub {
      font-family: 'Syne', sans-serif;
      font-weight: 400;
      font-size: clamp(16px, 2vw, 20px);
      color: var(--white-dim);
      max-width: 560px;
      line-height: 1.65;
      margin-top: 28px;
      position: relative;
      z-index: 1;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 48px;
      flex-wrap: wrap;
      justify-content: center;
      position: relative;
      z-index: 1;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn-primary {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.02em;
      color: var(--white);
      background: linear-gradient(135deg, var(--violet) 0%, #5B21B6 100%);
      border: none;
      padding: 16px 36px;
      border-radius: 100px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 32px rgba(124,58,237,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
      transition: all 0.25s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 48px rgba(124,58,237,0.55), inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .btn-primary svg { width: 16px; height: 16px; }

    .btn-ghost {
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: var(--white-dim);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }

    .btn-ghost:hover { color: var(--white); }

    .hero-cta-sub {
      display: block;
      margin-top: 14px;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--white-dim);
      position: relative;
      z-index: 1;
      animation: fadeUp 0.8s 0.4s ease both;
    }

    /* ── SECTION COMMONS ── */
    section { padding: 120px 24px; position: relative; }

    .container { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--violet-light);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::before {
      content: '';
      width: 24px; height: 1px;
      background: var(--violet-light);
    }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--white);
      max-width: 640px;
    }

    h2 em { font-style: italic; color: var(--violet-light); }

    /* ── PROBLEMA ── */
    .problema {
      background: var(--navy-mid);
      border-top: 1px solid var(--navy-border);
      border-bottom: 1px solid var(--navy-border);
    }

    .problema-items {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 56px;
    }

    .problema-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 28px 0;
      border-bottom: 1px solid var(--navy-border);
    }

    .problema-item:last-child { border-bottom: none; }

    .problema-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(239,68,68,0.08);
      border: 1px solid rgba(239,68,68,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: 'DM Mono', monospace;
      font-size: 16px;
      font-weight: 500;
      color: rgba(239,68,68,0.85);
    }

    .problema-item h4 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--white);
      margin-bottom: 8px;
    }

    .problema-item p {
      font-family: 'Syne', sans-serif;
      font-weight: 400;
      font-size: 14px;
      color: var(--white-dim);
      line-height: 1.7;
    }

    /* ── AGITAÇÃO ── */
    .agitacao { background: var(--navy); }

    .agit-box {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: 20px;
      padding: 48px;
      margin-top: 60px;
      position: relative;
      overflow: hidden;
    }

    .head-text {
      margin-bottom: 36px;
    }

    .agit-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(239,68,68,0.3), transparent);
    }

    .agit-q {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(20px, 2.5vw, 26px);
      color: var(--white-dim);
      line-height: 1.45;
      margin-bottom: 36px;
    }

    .agit-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
    }

    .agit-list-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      color: var(--white-dim);
      line-height: 1.6;
    }

    .agit-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--violet-light);
      margin-top: 9px;
      flex-shrink: 0;
    }

    .agit-close {
      font-family: 'Syne', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.6;
      border-top: 1px solid var(--navy-border);
      padding-top: 28px;
    }

    /* ── VIRADA ── */
    .virada {
      background: var(--navy-mid);
      border-top: 1px solid var(--navy-border);
      border-bottom: 1px solid var(--navy-border);
      text-align: center;
      padding: 100px 24px;
    }

    .virada .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .virada-text {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.2;
      color: var(--white);
      max-width: 780px;
    }

    .virada-text em { font-style: italic; color: var(--violet-light); }

    /* ── MECANISMO ── */
    .mecanismo-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 64px;
    }

    .mec-card {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s ease, transform 0.3s ease;
    }

    .mec-card:hover {
      border-color: rgba(124,58,237,0.4);
      transform: translateY(-4px);
    }

    .mec-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--violet), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .mec-card:hover::after { opacity: 1; }

    .mec-number {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      color: var(--violet-light);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .mec-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 26px;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 14px;
    }

    .mec-card h3 em { font-style: italic; color: var(--violet-light); }

    .mec-card p {
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      line-height: 1.7;
      color: var(--white-dim);
    }

    .mec-tag {
      display: inline-block;
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--white-faint);
      border: 1px solid rgba(124,58,237,0.2);
      color: var(--violet-light);
      border-radius: 6px;
      padding: 4px 10px;
      margin-top: 20px;
    }

    .proof-strip {
      margin-top: 40px;
      background: var(--navy-surface);
      border: 1px solid var(--navy-border);
      border-left: 3px solid var(--violet);
      border-radius: 0 12px 12px 0;
      padding: 20px 28px;
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      color: var(--white-dim);
      line-height: 1.7;
    }

    .proof-strip strong { color: var(--white); }

    /* ── COMO FUNCIONA ── */
    .como-funciona {
      background: var(--navy-mid);
      border-top: 1px solid var(--navy-border);
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 64px;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      left: 27px; top: 28px; bottom: 28px;
      width: 1px;
      background: linear-gradient(to bottom, var(--violet), transparent);
    }

    .step {
      display: flex;
      gap: 32px;
      padding: 40px 0;
      border-bottom: 1px solid var(--navy-border);
      align-items: flex-start;
    }

    .step:last-child { border-bottom: none; }

    .step-num {
      width: 56px; height: 56px;
      border-radius: 16px;
      background: var(--navy-surface);
      border: 1px solid rgba(124,58,237,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Mono', monospace;
      font-size: 16px;
      font-weight: 500;
      color: var(--violet-light);
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .step-body h3 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: var(--white);
      margin-bottom: 10px;
    }

    .step-body p {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      line-height: 1.7;
      color: var(--white-dim);
      max-width: 560px;
    }

    .step-mono {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--violet-light);
      text-transform: uppercase;
      margin-top: 14px;
    }

    /* ── PARA QUEM É ── */
    .para-quem { background: var(--navy); }

    .fit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 60px;
    }

    .fit-card {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: 20px;
      padding: 36px 32px;
    }

    .fit-card.yes { border-color: rgba(29,158,117,0.25); }
    .fit-card.no { border-color: rgba(239,68,68,0.15); }

    .fit-label {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .fit-label.yes { color: #34D399; }
    .fit-label.no { color: rgba(239,68,68,0.75); }

    .fit-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      color: var(--white-dim);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .fit-item:last-child { margin-bottom: 0; }

    .fit-icon { flex-shrink: 0; margin-top: 2px; font-size: 13px; }

    /* ── DEPOIMENTOS ── */
    .depoimentos { background: var(--navy-mid); border-top: 1px solid var(--navy-border); }

    .depoimentos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 64px;
    }

    .depo-card {
      background: var(--navy-card);
      border: 1px solid var(--navy-border);
      border-radius: 16px;
      padding: 28px;
      display: flex;
      flex-direction: column;
    }

    .depo-img-wrap {
      width: calc(100% + 56px);
      margin: -28px -28px 20px -28px;
      border-radius: 16px 16px 0 0;
      overflow: hidden;
      background: var(--navy-surface);
      aspect-ratio: 16 / 9;
    }

    .depo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .depo-img[src]:not([src=""]) { opacity: 1; }

    .depo-stars {
      display: flex;
      gap: 3px;
      color: var(--gold);
      font-size: 12px;
      margin-bottom: 14px;
    }

    .depo-text {
      flex: 1;
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      line-height: 1.7;
      color: var(--white-dim);
      margin-bottom: 20px;
    }

    .depo-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .depo-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--navy-surface);
      border: 1px solid var(--navy-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }

    .depo-name {
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: var(--white);
    }

    .depo-role {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      color: var(--white-dim);
    }

    .depo-disclaimer {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.06em;
      color: rgba(248,247,255,0.3);
      text-align: center;
      margin-top: 8px;
    }

        /* ── COMPARAÇÃO ── */
    .comparacao {
      background: var(--navy-mid);
      border-top: 1px solid var(--navy-border);
      border-bottom: 1px solid var(--navy-border);
    }
 
    .comp-wrap {
      margin-top: 56px;
      overflow-x: hidden;
      border-radius: 20px;
      border: 1px solid var(--navy-border);
    }
 
    .comp-table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
    }
 
    /* HEADER */
    .comp-th-empty {
      width: 22%;
      background: transparent;
      padding: 0;
    }
 
    .comp-th {
      width: 20%;
      padding: 10px;
      text-align: center;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      text-transform: uppercase;
      color: var(--white-dim);
      background: var(--navy-surface);
      border-bottom: 1px solid var(--navy-border);
      border-left: 1px solid var(--navy-border);
    }
 
    .comp-th-destaque {
      background: var(--violet);
      border-left: 1px solid rgba(255,255,255,0.1);
      border-radius: 0 20px 0 0;
    }
 
    .comp-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 8px;
      letter-spacing: -0.02em;
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
 
    .comp-logo-dot {
      width: 3px; height: 3px;
      background: rgba(255,255,255,0.7);
      border-radius: 50%;
      display: inline-block;
    }
 
    /* ROWS */
    .comp-table tbody tr {
      border-bottom: 1px solid var(--navy-border);
    }
 
    .comp-table tbody tr:last-child {
      border-bottom: none;
    }
 
    .comp-row-label {
      padding: 22px 20px;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: var(--white);
      background: var(--navy-card);
      vertical-align: middle;
      line-height: 1.4;
    }
 
    .comp-cell {
      padding: 22px 16px;
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      line-height: 1.5;
      text-align: center;
      vertical-align: middle;
      border-left: 1px solid var(--navy-border);
    }
 
    .comp-neg {
      color: rgba(248,247,255,0.35);
      background: var(--navy-surface);
    }
 
    .comp-pos {
      color: var(--white);
      font-weight: 600;
      background: rgba(124,58,237,0.12);
      border-left: 1px solid rgba(124,58,237,0.2);
    }
 
    /* last row rounded corners */
    .comp-table tbody tr:last-child .comp-row-label {
      border-radius: 0 0 0 20px;
    }
 
    .comp-table tbody tr:last-child .comp-pos {
      border-radius: 0 0 20px 0;
    }
 
    @media (max-width: 640px) {
      .comp-th-empty { width: 28%; }
      .comp-th { width: 20%; font-size: 8px; padding: 10px 10px; }
      .comp-cell { padding: 16px 10px; font-size: 8px; }
      .comp-row-label { padding: 16px 12px; font-size: 8px; }
    }





    /* ── OFERTA ── */
    .oferta { background: var(--navy); border-top: 1px solid var(--navy-border); }

    .oferta-wrap {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
      align-items: start;
      margin-top: 60px;
    }

    .oferta-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 8px;
    }

    .oferta-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      color: var(--white-dim);
      line-height: 1.65;
    }

    .check {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: rgba(124,58,237,0.15);
      border: 1px solid rgba(124,58,237,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 11px;
      color: var(--violet-light);
      margin-top: 2px;
    }

    .logo-price{
      display: flex;
      justify-content: center;
    }

    .preco-card {
      background: var(--navy-card);
      border: 2px solid var(--violet);
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 0 48px rgba(124,58,237,0.2);
    }

    .preco-topo {
      padding: 40px 36px 32px;
      text-align: center;
    }

    .preco-label-top {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--white-dim);
      margin-bottom: 16px;
    }

    .preco-valor {
      font-family: "Syne", sans-serif;
      font-weight: 600;
      font-size: 72px;
      line-height: 1;
      color: var(--white);
      letter-spacing: -0.03em;
    }

    .preco-valor span.prefix {
      font-size: 16px;
      color: var(--white-dim);
      vertical-align: super;
      font-weight: 600;
      letter-spacing: 0;
    }

    .preço-periodo-card {
      padding: 16px;
    }

    .preco-periodo {
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      color: var(--white-dim);
      margin-top: 0px;
      margin-bottom: 0px;
    }

    .preco-cta {
      display: block;
      width: 100%;
      text-align: center;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--white);
      background: var(--violet);
      padding: 16px;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 8px 32px rgba(124,58,237,0.45);
      transition: all 0.25s ease;
      letter-spacing: 0.02em;
    }

    .preco-cta:hover {
      transform: translateY(-2px);
      background: #6D28D9;
      box-shadow: 0 16px 48px rgba(124,58,237,0.6);
    }

    .preco-divider {
      width: 100%;
      height: 1px;
      background: var(--navy-border);
    }

    .preco-itens {
      padding: 28px 36px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .preco-item {
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      color: var(--white-dim);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .preco-check {
      color: var(--violet-light);
      font-size: 13px;
      flex-shrink: 0;
    }

    .preco-garantia {
      text-align: center;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--white-dim);
      padding: 0 36px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    /* ── GARANTIA BLOCK ── */
    .garantia-box {
      background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(37,99,235,0.06) 100%);
      border: 1px solid rgba(124,58,237,0.3);
      border-radius: 20px;
      padding: 40px 36px;
      margin-top: 36px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .garantia-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124,58,237,0.6), transparent);
    }

    .garantia-shield {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 72px;
      margin: 0 auto 20px;
    }

    .garantia-shield svg {
      width: 72px;
      height: 72px;
      color: var(--violet-light);
    }

    .garantia-dias {
      position: absolute;
      font-family: 'DM Mono', monospace;
      font-size: 16px;
      font-weight: 500;
      color: var(--violet-light);
      line-height: 1;
    }

    .garantia-label {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--violet-light);
      margin-bottom: 16px;
    }

    .garantia-box h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 600;
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 16px;
    }

    .garantia-box p {
      font-family: 'Syne', sans-serif;
      font-size: 14px;
      color: var(--white-dim);
      line-height: 1.75;
      max-width: 420px;
      margin: 0 auto 24px;
    }

    .garantia-linha {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Syne', sans-serif;
      font-size: 13px;
      color: var(--white-dim);
      border-top: 1px solid rgba(124,58,237,0.2);
      padding-top: 20px;
      width: 100%;
      justify-content: center;
    }

    .garantia-linha svg { color: var(--violet-light); flex-shrink: 0; }

    .garantia-linha strong {
      color: var(--white);
      font-weight: 600;
    }

    /* ── FAQ ── */
    .faq { background: var(--navy-mid); border-top: 1px solid var(--navy-border); }

    .faq-list {
      max-width: 720px;
      margin: 64px auto 0;
    }

    .faq-item { border-bottom: 1px solid var(--navy-border); }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      cursor: pointer;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 16px;
      color: var(--white);
      gap: 20px;
      user-select: none;
    }

    .faq-q:hover { color: var(--violet-light); }

    .faq-icon {
      width: 28px; height: 28px;
      border: 1px solid var(--navy-border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
      color: var(--violet-light);
      transition: transform 0.3s;
    }

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

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      line-height: 1.7;
      color: var(--white-dim);
    }

    .faq-item.open .faq-a { max-height: 300px; }
    .faq-a-inner { padding-bottom: 24px; }

    /* ── CTA FINAL ── */
    .cta-final {
      text-align: center;
      padding: 140px 24px;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .cta-final::before {
      content: '';
      position: absolute;
      bottom: -300px; left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 600px;
      background: radial-gradient(ellipse at center, rgba(124,58,237,0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-final h2 { margin: 0 auto 28px; text-align: center; }

    .cta-final p {
      font-family: 'Syne', sans-serif;
      font-size: 18px;
      color: var(--white-dim);
      max-width: 500px;
      margin: 0 auto 48px;
      line-height: 1.65;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--navy-border);
      padding: 40px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    footer .logo { font-size: 18px; }

    .footer-copy {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      color: var(--white-dim);
      letter-spacing: 0.05em;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .mecanismo-cards { grid-template-columns: 1fr; }
      .oferta-wrap { grid-template-columns: 1fr; }
      .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
      .fit-grid { grid-template-columns: 1fr; }
      .steps::before { display: none; }
    }

    @media (max-width: 640px) {
      .depoimentos-grid { grid-template-columns: 1fr; }
      h2 { font-size: 36px; }
      .hero h1 { font-size: 46px; }
      footer { flex-direction: column; text-align: center; }
      .agit-box { padding: 32px 24px; }
      .garantia-box { padding: 32px 24px; }
    }