:root {
    --purple: #5B21B6;
    --purple-700: #4C1D95;
    --purple-600: #6D28D9;
    --purple-500: #7C3AED;
    --purple-50: #F8F7FF;
    --yellow: #F59E0B;
    --yellow-600: #D97706;
    --pink: #EC4899;
    --green: #25D366;
    --white: #FFFFFF;
    --ink: #1C1B22;
    --ink-soft: #3A3A44;
    --muted: #6B6B7B;
    --line: #E7E5F2;
    --section-gap: 80px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  ul { list-style: none; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  /* ============= BUTTONS ============= */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 28px; height: 56px; min-height: 56px; border-radius: 999px;
    font-weight: 700; font-size: 16px; letter-spacing: 0.2px;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
    white-space: nowrap; cursor: pointer; text-align: center;
  }
  .btn-yellow {
    background: var(--yellow); color: var(--ink);
    box-shadow: 0 8px 22px -8px rgba(245, 158, 11, .65);
  }
  .btn-yellow:hover { background: #FFB020; transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(245, 158, 11, .8); }
  .btn-purple {
    background: var(--purple); color: var(--white);
    box-shadow: 0 8px 22px -8px rgba(91, 33, 182, .55);
  }
  .btn-purple:hover { background: var(--purple-600); transform: translateY(-2px); }
  .btn-ghost-purple {
    background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5);
  }
  .btn-ghost-purple:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
  .btn-ghost-purple-light {
    background: transparent; color: var(--purple); border: 2px solid var(--purple);
  }
  .btn-ghost-purple-light:hover { background: var(--purple); color: var(--white); }
  .btn-whatsapp {
    background: var(--green); color: var(--white);
    box-shadow: 0 8px 22px -8px rgba(37, 211, 102, .55);
  }
  .btn-whatsapp:hover { background: #1FB857; transform: translateY(-2px); }
  .btn-large { padding: 16px 28px; font-size: 16px; height: 56px; min-height: 56px; }

  /* ============= NAVBAR ============= */
  .navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  .navbar.scrolled { border-color: var(--line); background: rgba(255,255,255,.95); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px; gap: 24px;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo img { height: 44px; width: auto; border-radius: 8px; }
  .nav-logo-text {
    font-family: 'Bebas Neue', sans-serif; color: var(--purple);
    font-size: 26px; letter-spacing: 1px;
  }
  .nav-links {
    display: flex; gap: 32px;
    font-weight: 600; font-size: 15px;
  }
  .nav-links a {
    color: var(--ink-soft); position: relative; padding: 6px 0;
    transition: color .2s ease;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--purple); transform: scaleX(0); transform-origin: center;
    transition: transform .2s ease;
  }
  .nav-links a:hover { color: var(--purple); }
  .nav-links a.active { color: var(--purple); }
  .nav-links a.active::after { transform: scaleX(1); }
  .nav-right { display: flex; align-items: center; gap: 18px; }
  .nav-whatsapp {
    display: flex; align-items: center; gap: 8px;
    color: var(--ink); font-weight: 700; font-size: 15px;
  }
  .nav-whatsapp svg { color: var(--green); }
  .nav-whatsapp:hover { color: var(--green); }
  .nav-burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--purple); }
  .nav-cta { padding: 0 22px; height: 46px; min-height: 46px; font-size: 14px; }
  .nav-burger svg { width: 26px; height: 26px; }

  /* Mobile menu */
  .mobile-menu {
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--white); padding: 24px;
    transform: translateY(-120%); transition: transform .3s ease;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,.15);
    z-index: 99; border-top: 1px solid var(--line);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a {
    display: block; padding: 14px 8px; font-weight: 600;
    border-bottom: 1px solid var(--line); color: var(--ink-soft);
  }
  .mobile-menu a:last-of-type { border: none; }
  .mobile-menu .btn { margin-top: 16px; width: 100%; }

  /* ============= HERO ============= */
  .hero {
    position: relative;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-700) 100%);
    color: var(--white);
    padding: 96px 0 140px;
    overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(60% 60% at 80% 10%, rgba(245,158,11,.18), transparent 60%),
      radial-gradient(50% 50% at 10% 90%, rgba(124,58,237,.5), transparent 60%);
    pointer-events: none;
  }
  .hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.3px; backdrop-filter: blur(8px); margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(48px, 6.4vw, 84px);
    line-height: .95; margin-bottom: 22px;
    letter-spacing: 1px;
  }
  .hero h1 .accent { color: var(--yellow); }
  .hero-sub {
    font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.85);
    margin-bottom: 36px; max-width: 540px;
  }
  .hero-cta-row {
    display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 8px;
  }
  .hero-cta { flex: 1 1 0; min-width: 220px; max-width: 280px; }
  .hero-perks {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    max-width: 540px;
  }
  .perk {
    display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
    padding: 14px; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px; backdrop-filter: blur(6px);
  }
  .perk-icon {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    color: var(--yellow);
  }
  .perk-label { font-size: 12px; font-weight: 600; line-height: 1.2; }

  /* Hero image side */
  .hero-visual { position: relative; min-height: 480px; }
  .hero-image-frame {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 12px;
  }
  .hero-image {
    width: 100%; height: 100%;
    object-fit: cover; object-position: calc(50% + 40px) center;
    filter: drop-shadow(0 28px 60px rgba(0,0,0,.26));
    transform: translateY(8px);
    border-radius: 28px;
  }
  .hero-blob {
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 50% 50%, rgba(245,158,11,.4), transparent 55%),
      radial-gradient(circle at 50% 50%, rgba(255,255,255,.16) 0%, rgba(255,255,255,.05) 60%, transparent 70%);
    border-radius: 50%;
  }
  .hero-moto-card {
    position: absolute; inset: 5%;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
      repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 14px, transparent 14px 28px);
    border: 1px solid rgba(255,255,255,.18);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 28px;
  }
  .hero-moto-tag {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,.7); margin-bottom: 12px;
  }
  .hero-moto-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 56px; letter-spacing: 2px;
    color: var(--white);
  }
  .hero-moto-sub {
    font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px;
    letter-spacing: 1px; text-transform: uppercase;
  }
  .hero-floating-stat {
    position: absolute; padding: 14px 18px; border-radius: 14px;
    background: var(--white); color: var(--ink); box-shadow: 0 14px 30px -8px rgba(0,0,0,.25);
    display: flex; align-items: center; gap: 12px;
    animation: floaty 4s ease-in-out infinite;
  }
  .hero-floating-stat strong { font-size: 18px; display: block; line-height: 1; }
  .hero-floating-stat span { font-size: 11px; color: var(--muted); }
  .hero-stat-1 { top: 10%; left: -10%; animation-delay: 0s; }
  .hero-stat-2 { bottom: 12%; right: -8%; animation-delay: 1.5s; }
  .hero-stat-icon {
    width: 36px; height: 36px; border-radius: 10px; background: var(--purple-50);
    display: flex; align-items: center; justify-content: center; color: var(--purple);
  }
  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .scroll-down {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.7); display: flex; flex-direction: column; align-items: center; gap: 6px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  }
  .scroll-down svg { animation: bounce 1.8s ease-in-out infinite; }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: .5; }
  }

  /* ============= SECTION COMMON ============= */
  section { padding: var(--section-gap) 0; }
  .eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--purple);
    padding: 6px 14px; background: var(--purple-50);
    border-radius: 999px; margin-bottom: 18px;
  }
  .section-title {
    font-size: clamp(36px, 4.2vw, 56px); line-height: 1.05; max-width: 760px;
    margin-bottom: 16px; letter-spacing: 1px;
  }
  .section-title .accent { color: var(--yellow); }
  .section-title .accent-purple { color: var(--purple); }
  .section-sub {
    font-size: 17px; color: var(--muted); max-width: 600px; margin-bottom: 56px;
  }
  .center { text-align: center; }
  .center .section-sub { margin-left: auto; margin-right: auto; }

  /* ============= DIFERENCIAIS ============= */
  #diferenciais .container { text-align: center; }
  .diff-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: left;
  }
  .diff-card {
    padding: 32px 26px; border-radius: 20px; background: var(--white);
    border: 1.5px solid var(--line);
    position: relative; overflow: hidden;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }
  .diff-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 20px;
    border: 2px solid var(--purple); opacity: 0; transform: scale(.96);
    transition: opacity .25s ease, transform .25s ease; pointer-events: none;
  }
  .diff-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -16px rgba(91,33,182,.2); }
  .diff-card:hover::before { opacity: 1; transform: scale(1); }
  .diff-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--purple-50); color: var(--purple);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .diff-card h3 { font-size: 24px; letter-spacing: 1px; margin-bottom: 10px; }
  .diff-card p { color: var(--muted); font-size: 15px; line-height: 1.55; }

  /* ============= COMO FUNCIONA ============= */
  #como-funciona { background: var(--purple-50); }
  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative;
    margin-top: 24px;
  }
  .steps::before {
    content: ''; position: absolute; top: 64px; left: 16.6%; right: 16.6%;
    height: 2px;
    background-image: linear-gradient(to right, var(--purple) 50%, transparent 50%);
    background-size: 14px 2px; background-repeat: repeat-x;
    z-index: 0;
  }
  .step {
    position: relative; z-index: 1; background: var(--white);
    border-radius: 22px; padding: 32px 28px; text-align: center;
    border: 1.5px solid var(--line);
    box-shadow: 0 6px 18px -10px rgba(91,33,182,.15);
  }
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 76px; color: var(--purple); line-height: 1;
    margin-bottom: 12px; letter-spacing: 1px;
  }
  .step h3 { font-size: 22px; margin-bottom: 8px; letter-spacing: 1px; }
  .step p { color: var(--muted); font-size: 15px; }

  /* ============= QUALIDADE ============= */
  .split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
  .moto-illu {
    aspect-ratio: 1.1 / 1;
    border-radius: 32px;
    background:
      radial-gradient(circle at 50% 55%, var(--purple-50) 0%, var(--purple-50) 55%, transparent 75%),
      linear-gradient(135deg, var(--white) 0%, var(--white) 100%);
    position: relative; overflow: hidden;
    border: 1.5px solid var(--line);
    display: flex; align-items: center; justify-content: center;
  }
  .moto-illu::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(135deg, rgba(91,33,182,.04) 0 12px, transparent 12px 24px);
  }
  .moto-illu-card {
    position: relative; z-index: 1;
    background: var(--white); border-radius: 20px; padding: 26px 28px; max-width: 80%;
    text-align: center;
    box-shadow: 0 18px 40px -16px rgba(91,33,182,.25);
    border: 1.5px solid var(--purple-50);
  }
  .moto-illu-tag {
    font-family: ui-monospace, 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--purple); margin-bottom: 14px;
  }
  .moto-illu-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 44px;
    color: var(--ink); letter-spacing: 2px; line-height: 1;
  }
  .moto-illu-sub {
    font-size: 12px; color: var(--muted); margin-top: 4px;
    letter-spacing: 1px; text-transform: uppercase;
  }
  .moto-illu-stripe {
    position: absolute; height: 8px; left: 0; right: 0; bottom: 22%;
    background: linear-gradient(90deg, transparent, var(--purple) 20%, var(--yellow) 50%, var(--purple) 80%, transparent);
    opacity: .25; filter: blur(2px);
  }
  .checklist { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 32px; }
  .checklist li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 17px; color: var(--ink-soft); line-height: 1.4;
  }
  .check-icon {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
    background: var(--purple-50); color: var(--purple);
    display: flex; align-items: center; justify-content: center;
  }

  /* ============= PLANOS ============= */
  #planos {
    background: linear-gradient(180deg, var(--purple) 0%, var(--purple-700) 100%);
    color: var(--white); position: relative; overflow: hidden;
  }
  #planos::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(60% 60% at 50% 0%, rgba(245,158,11,.12), transparent 60%);
    pointer-events: none;
  }
  #planos .container { position: relative; }
  #planos .center { text-align: center; }
  #planos .section-title { color: var(--white); margin-left: auto; margin-right: auto; }
  .plans-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 1200px; margin: 0 auto 48px;
  }
  .plan-card {
    background: var(--white); color: var(--ink);
    border-radius: 24px; padding: 32px 26px;
    position: relative; display: flex; flex-direction: column;
    box-shadow: 0 24px 60px -20px rgba(0,0,0,.3);
  }
  .plan-card.featured {
    border: 3px solid var(--yellow);
    transform: translateY(-12px);
  }
  .plan-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--yellow); color: var(--ink);
    font-weight: 800; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    padding: 7px 16px; border-radius: 999px;
  }
  .plan-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 32px;
    letter-spacing: 1.5px; color: var(--purple);
  }
  .plan-tagline { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
  .plan-price {
    display: flex; align-items: baseline; gap: 8px;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 6px;
  }
  .plan-price .currency { font-size: 24px; color: var(--ink-soft); }
  .plan-price .value { font-size: 72px; color: var(--purple); line-height: 1; letter-spacing: 1px; }
  .plan-price .period { font-size: 16px; color: var(--muted); font-family: 'Manrope', sans-serif; }
  .plan-caption { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
  .plan-features {
    display: flex; flex-direction: column; gap: 12px;
    border-top: 1px solid var(--line); padding-top: 22px; margin-bottom: 28px;
  }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--ink-soft); font-size: 14px;
  }
  .plan-features svg { flex-shrink: 0; margin-top: 2px; color: var(--purple); }
  .plan-cta { margin-top: auto; }

  /* Compare table */
  .compare {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px; padding: 8px;
    max-width: 900px; margin: 0 auto;
    backdrop-filter: blur(8px);
  }
  .compare table {
    width: 100%; border-collapse: collapse; color: var(--white);
  }
  .compare th, .compare td {
    padding: 14px 18px; text-align: left; font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .compare th {
    font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px;
    font-weight: 400; color: var(--white);
  }
  .compare th:nth-child(2), .compare th:nth-child(3), .compare th:nth-child(4),
  .compare td:nth-child(2), .compare td:nth-child(3), .compare td:nth-child(4) { text-align: center; }
  .compare tr:last-child th, .compare tr:last-child td { border-bottom: none; }
  .check-yes { color: var(--yellow); font-weight: 700; }
  .check-no { color: rgba(255,255,255,.4); }
  .col-feat { color: var(--yellow); }

  /* ============= MOOVERY ============= */
  .moovery {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  }
  .moovery-visual {
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    background:
      radial-gradient(circle at 35% 40%, var(--purple-50), transparent 70%),
      linear-gradient(135deg, #FFF, #FFF);
    border: 1.5px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .phone-frame {
    width: 70%; max-width: 320px; aspect-ratio: 9/19;
    border-radius: 38px; background: var(--ink);
    padding: 12px; box-shadow: 0 30px 60px -20px rgba(28,27,34,.4);
    position: relative;
  }
  .phone-screen {
    width: 100%; height: 100%; border-radius: 28px; background: var(--purple);
    overflow: hidden; position: relative;
    display: flex; flex-direction: column;
  }
  .phone-screen::after {
    content: ''; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 22px; background: var(--ink); border-radius: 12px;
  }
  .phone-top {
    padding: 42px 18px 14px; display: flex; align-items: center; justify-content: space-between;
    color: var(--white);
  }
  .phone-top-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; }
  .phone-map {
    flex: 1; margin: 0 12px 12px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, #FFEDD5 0%, #FED7AA 100%),
      repeating-linear-gradient(45deg, rgba(0,0,0,.05) 0 8px, transparent 8px 16px);
    position: relative; overflow: hidden;
    background-blend-mode: multiply;
  }
  .phone-map::before {
    content: ''; position: absolute; inset: 0;
    background:
      linear-gradient(120deg, transparent 30%, rgba(91,33,182,.08) 30% 32%, transparent 32% 60%, rgba(91,33,182,.08) 60% 62%, transparent 62%),
      linear-gradient(60deg, transparent 40%, rgba(91,33,182,.08) 40% 42%, transparent 42%);
  }
  .pin {
    position: absolute; width: 28px; height: 28px; border-radius: 50%;
    background: var(--purple); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 16px -4px rgba(91,33,182,.4);
    font-size: 12px;
  }
  .pin.yellow { background: var(--yellow); color: var(--ink); }
  .pin.pulse::after {
    content: ''; position: absolute; inset: -8px; border-radius: 50%;
    border: 2px solid var(--purple); opacity: .5;
    animation: pulse 1.8s ease-out infinite;
  }
  @keyframes pulse {
    0% { transform: scale(.5); opacity: .8; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  .moovery-bullets { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 32px; }
  .moovery-bullet {
    display: flex; align-items: center; gap: 16px; padding: 14px 18px;
    background: var(--purple-50); border-radius: 14px;
  }
  .moovery-bullet-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--purple); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 18px;
    flex-shrink: 0;
  }
  .moovery-bullet-text { font-size: 16px; color: var(--ink-soft); font-weight: 500; }
  .tag-pill {
    display: inline-block; padding: 6px 14px;
    background: var(--yellow); color: var(--ink); border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 18px;
  }

  /* ============= CIDADES ============= */
  #cidades { background: var(--purple-50); }
  .cities-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
  }
  .city-list { display: flex; flex-direction: column; gap: 16px; }
  .city-card {
    display: flex; align-items: center; gap: 18px;
    padding: 22px 24px; background: var(--white);
    border-radius: 18px; border: 1.5px solid var(--line);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
  }
  .city-card:hover { transform: translateX(6px); box-shadow: 0 16px 32px -16px rgba(91,33,182,.2); }
  .city-dot {
    width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(0,0,0,.06);
  }
  .city-dot.purple { background: var(--purple); box-shadow: 0 0 0 6px rgba(91,33,182,.15); }
  .city-dot.yellow { background: var(--yellow); box-shadow: 0 0 0 6px rgba(245,158,11,.18); }
  .city-dot.pink { background: var(--pink); box-shadow: 0 0 0 6px rgba(236,72,153,.18); }
  .city-name {
    font-family: 'Bebas Neue', sans-serif; font-size: 28px;
    letter-spacing: 1.5px; color: var(--ink);
  }
  .city-state { font-size: 13px; color: var(--muted); margin-top: -4px; }
  .city-state + .city-state { margin-top: 4px; }
  .city-status {
    margin-left: auto; font-size: 12px; font-weight: 700;
    color: #16A34A; display: flex; align-items: center; gap: 6px;
  }
  .city-status::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%; background: #16A34A;
  }
  .map-wrap {
    aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; position: relative;
    background: var(--white); border-radius: 24px; padding: 24px;
    border: 1.5px solid var(--line);
  }
  #ne-map { position: relative; width: 100%; height: 100%; }
  #ne-map svg { width: 100%; height: 100%; display: block; overflow: visible; }
  .state-path { fill: #E5E7EB; stroke: var(--white); stroke-width: 1; stroke-linejoin: round; transition: fill .25s ease; }
  .state-path.ne-state { fill: #DDD6FE; }
  .state-path.state-rn { fill: #7C3AED; }
  .state-path.state-pb { fill: #5B21B6; }
  .map-marker { cursor: pointer; z-index: 2; }
  .map-marker-label {
    background: var(--ink); color: var(--white);
    font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: 6px;
    white-space: nowrap; opacity: 0; transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none; box-shadow: 0 6px 14px -4px rgba(0,0,0,.3);
    display: flex; flex-direction: column; align-items: center; gap: 2px;
  }
  .map-marker-label .lbl-status { font-size: 9px; font-weight: 600; color: #4ADE80; letter-spacing: 1px; text-transform: uppercase; }
  .map-marker:hover .map-marker-label { opacity: 1; transform: translateY(0); }
  .map-marker {
    position: absolute; transform: translate(-50%, -50%);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .map-marker-dot {
    width: 16px; height: 16px; border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,255,255,.9), 0 4px 10px -2px rgba(0,0,0,.3);
    animation: pulse-mini 2s ease-out infinite;
  }
  .map-marker-dot.purple { background: var(--purple); }
  .map-marker-dot.yellow { background: var(--yellow); }
  .map-marker-dot.pink { background: var(--pink); }
  .map-marker-label {
    background: var(--ink); color: var(--white);
    font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 6px;
    letter-spacing: 0.5px; white-space: nowrap;
  }
  @keyframes pulse-mini {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,.9), 0 0 0 0 currentColor; }
    50% { box-shadow: 0 0 0 4px rgba(255,255,255,.9), 0 0 0 12px transparent; }
  }

  /* ============= DEPOIMENTOS ============= */
  #depoimentos { background: var(--purple-50); }
  .testimonials {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .testimonial {
    background: var(--white); border-radius: 22px; padding: 30px 28px;
    border: 1.5px solid var(--line);
    display: flex; flex-direction: column;
  }
  .stars { display: flex; gap: 2px; color: var(--yellow); margin-bottom: 14px; }
  .testimonial p {
    color: var(--ink-soft); font-size: 15px; line-height: 1.55;
    margin-bottom: 22px; flex: 1;
  }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--purple); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px;
  }
  .author-avatar.y { background: var(--yellow); color: var(--ink); }
  .author-avatar.p { background: var(--pink); color: var(--white); }
  .author-name { font-weight: 700; font-size: 15px; }
  .author-city { font-size: 13px; color: var(--muted); }

  /* ============= FAQ ============= */
  .faq-grid { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
  .faq-item {
    border: 1.5px solid var(--line); border-radius: 16px;
    background: var(--white); overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .faq-item.open { border-color: var(--purple); box-shadow: 0 14px 28px -16px rgba(91,33,182,.2); }
  .faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; font-weight: 700; font-size: 16px; color: var(--ink);
    text-align: left; gap: 16px;
  }
  .faq-icon {
    width: 32px; height: 32px; border-radius: 50%; background: var(--purple-50);
    display: flex; align-items: center; justify-content: center; color: var(--purple);
    flex-shrink: 0; transition: transform .25s ease, background .25s ease, color .25s ease;
  }
  .faq-item.open .faq-icon { background: var(--purple); color: var(--white); transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .faq-a-inner {
    padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.6;
  }

  /* ============= FORM ============= */
  #formulario { position: relative; padding-top: 0; }
  .urgency-strip {
    background: var(--yellow); color: var(--ink);
    padding: 16px 24px; text-align: center; font-weight: 700; font-size: 15px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .urgency-strip svg { color: var(--purple); }
  .form-wrap { padding: var(--section-gap) 0; }
  .form-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start;
  }
  .form-info h2 { font-size: clamp(36px, 4vw, 52px); letter-spacing: 1px; margin-bottom: 18px; }
  .form-info p { color: var(--muted); font-size: 16px; margin-bottom: 28px; }
  .form-benefits {
    display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px;
  }
  .form-benefits li {
    display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-soft);
  }
  .form-benefits svg { color: var(--purple); flex-shrink: 0; }
  .contact-block {
    padding: 22px 24px; background: var(--purple-50); border-radius: 16px;
  }
  .contact-block strong { display: block; font-size: 18px; margin-bottom: 4px; }
  .contact-row {
    display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 15px;
    margin-top: 8px;
  }
  .contact-row svg { color: var(--purple); }
  .form-card {
    background: var(--white); border-radius: 22px; padding: 36px;
    border: 1.5px solid var(--line);
    box-shadow: 0 24px 60px -28px rgba(91,33,182,.18);
  }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block; font-size: 13px; font-weight: 700;
    color: var(--ink-soft); margin-bottom: 8px; letter-spacing: 0.3px;
  }
  .form-group input, .form-group select {
    width: 100%; padding: 14px 16px; border-radius: 12px;
    border: 1.5px solid var(--line); background: var(--white);
    font-family: inherit; font-size: 15px; color: var(--ink);
    transition: border-color .2s ease, box-shadow .2s ease;
    min-height: 50px;
  }
  .form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(91,33,182,.1);
  }
  .form-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
  .form-actions .btn { width: 100%; }
  .form-success {
    display: none; padding: 16px; background: #DCFCE7; color: #166534;
    border-radius: 12px; margin-top: 14px; font-weight: 600; font-size: 14px;
    text-align: center;
  }
  .form-success.show { display: block; }

  /* ============= FOOTER ============= */
  footer {
    background: var(--ink); color: rgba(255,255,255,.7);
    padding: 64px 0 32px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-brand img { height: 56px; width: auto; margin-bottom: 18px; border-radius: 8px; }
  .footer-brand p { font-size: 14px; line-height: 1.55; max-width: 280px; }
  .footer h4 {
    font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1.5px;
    color: var(--white); margin-bottom: 18px;
  }
  .footer ul { display: flex; flex-direction: column; gap: 10px; }
  .footer ul a { font-size: 14px; transition: color .2s ease; }
  .footer ul a:hover { color: var(--yellow); }
  .footer-bottom {
    padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255,255,255,.5);
  }
  .footer-bottom .socials { display: flex; gap: 14px; }
  .footer-bottom .socials a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, color .2s ease;
  }
  .footer-bottom .socials a:hover { background: var(--yellow); color: var(--ink); }

  /* WhatsApp floating */
  .wa-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--green); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 16px 30px -8px rgba(37, 211, 102, .5);
    z-index: 90; cursor: pointer;
    transition: transform .2s ease;
  }
  .wa-float:hover { transform: scale(1.08); }
  .wa-float::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 3px solid var(--green); opacity: .5;
    animation: pulse 2s ease-out infinite;
  }

  /* Reveal on scroll */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ============= RESPONSIVE ============= */
  @media (max-width: 1200px) {
    .nav-links { gap: 22px; font-size: 14px; }
  }
  @media (max-width: 980px) {
    :root { --section-gap: 64px; }
    .nav-links, .nav-whatsapp { display: none; }
    .nav-burger { display: flex; }
    .hero-grid, .split, .split.reverse, .moovery, .cities-grid, .form-grid { grid-template-columns: 1fr; gap: 40px; }
    .split.reverse { direction: ltr; }
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; gap: 16px; }
    .steps::before { display: none; }
    .plans-grid { grid-template-columns: 1fr; }
    .plan-card.featured { transform: none; }
    .testimonials { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding: 56px 0 100px; }
    .hero-perks { grid-template-columns: repeat(2, 1fr); }
    .hero-visual { min-height: 380px; }
    .hero-floating-stat { display: none; }
  }
  @media (max-width: 560px) {
    .container { padding: 0 18px; }
    .diff-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
    .nav-logo-text { display: none; }
    .hero-cta-row .btn { width: 100%; }
    .hero h1 { font-size: 44px; }
    .form-card { padding: 24px; }
    .compare th, .compare td { padding: 10px; font-size: 13px; }
    .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  }

  /* Pipefy form embed */
  .pipefy-card {
    background: var(--white); border-radius: 16px; padding: 32px;
    border: 1.5px solid var(--line); box-shadow: 0 10px 30px -10px rgba(0,0,0,.06);
    overflow: hidden;
  }
  .pipefy-card iframe { display: block; width: 100%; min-height: 1000px; border: 0; border-radius: 8px; background: var(--white); }
  @media (max-width: 768px) { .pipefy-card { padding: 20px; border-radius: 14px; } }

  /* Joinchat-style floating bubble */
  .joinchat {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    display: flex; align-items: flex-end; gap: 12px;
    opacity: 0; transform: translateY(20px) scale(.96);
    transition: opacity .4s cubic-bezier(.22,.61,.36,1), transform .4s cubic-bezier(.22,.61,.36,1);
    pointer-events: none;
  }
  .joinchat.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .joinchat.bubble-hidden .joinchat-bubble { display: none; }
  .joinchat-bubble {
    background: var(--white); border-radius: 16px 16px 4px 16px;
    padding: 14px 16px; max-width: 280px;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,.22), 0 4px 10px -4px rgba(0,0,0,.1);
    font-size: 14px; line-height: 1.45; color: var(--ink);
    position: relative; text-decoration: none; display: block;
    border: 1px solid rgba(0,0,0,.04);
    animation: jc-pop .35s .1s both;
  }
  .joinchat-bubble strong { font-weight: 700; display: block; margin-bottom: 2px; color: var(--ink); }
  .joinchat-bubble::after {
    content: ''; position: absolute; right: -10px; bottom: 8px;
    width: 0; height: 0;
    border-left: 12px solid var(--white);
    border-top: 8px solid transparent;
  }
  .joinchat-close {
    position: absolute; top: -8px; left: -8px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--ink); color: var(--white); border: 0; cursor: pointer;
    font-size: 14px; line-height: 1; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px -2px rgba(0,0,0,.3);
  }
  .joinchat-close:hover { transform: scale(1.1); }
  .joinchat-btn {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--green); display: flex; align-items: center; justify-content: center;
    color: var(--white); box-shadow: 0 12px 30px -6px rgba(37,211,102,.55), 0 4px 10px -2px rgba(0,0,0,.2);
    text-decoration: none; flex-shrink: 0; position: relative;
    transition: transform .2s ease;
  }
  .joinchat-btn:hover { transform: scale(1.08); }
  .joinchat-btn::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 3px solid var(--green); opacity: .5;
    animation: pulse-ring 2s infinite;
  }
  @keyframes jc-pop {
    0% { transform: scale(.6); opacity: 0; }
    60% { transform: scale(1.04); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
  @media (max-width: 768px) {
    .joinchat { bottom: 16px; right: 16px; gap: 8px; }
    .joinchat-bubble { max-width: 220px; font-size: 13px; padding: 12px 14px; }
    .joinchat-btn { width: 56px; height: 56px; }
  }
