 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --laranja:  #ea580c;
      --laranja2: #c2410c;
      --laranja-light: #fff7ed;
      --azul-hero: #2563eb;
      --azul-deep: #0f172a;
      --azul-soft: #dbeafe;
      --azul:     #1e3a8a;
      --azul2:    #172554;
      --branco:   #ffffff;
      --slate-50: #f8fafc;
      --slate-100:#f1f5f9;
      --slate-200:#e2e8f0;
      --slate-300:#cbd5e1;
      --slate-400:#94a3b8;
      --slate-500:#64748b;
      --slate-600:#475569;
      --slate-700:#334155;
      --slate-800:#1e293b;
      --slate-900:#0f172a;
      --erro:     #ef4444;
      --r:        8px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background:
        radial-gradient(circle at bottom left, rgba(96, 165, 250, .34) 0%, transparent 34%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, .28) 0%, transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #172554 42%, #2563eb 100%);
      color: var(--slate-50);
      min-height: 100vh;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── NAVBAR ─────────────────── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(15,23,42,.68);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(219,234,254,.14);
      height: 72px;
      display: flex;
      align-items: center;
      padding: 0 24px;
      box-shadow: 0 12px 32px rgba(2,6,23,.18);
    }

    .navbar-inner {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-logo {
      height: 56px;
      width: auto;
      flex-shrink: 0;
      display: block;
    }

    .brand-text { line-height: 1.15; }

    .brand-name {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--azul2);
      letter-spacing: -0.4px;
      display: block;
    }

    .brand-sub {
      font-size: .62rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--slate-400);
      display: block;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-badge {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: .71rem;
      font-weight: 700;
      color: var(--azul-soft);
      white-space: nowrap;
    }

    .nav-cta {
      background: var(--laranja);
      color: #fff;
      border: none;
      border-radius: var(--r);
      padding: 9px 18px;
      font-family: 'Inter', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .3px;
      transition: background .15s, transform .12s;
      display: none;
    }

    @media (min-width: 540px) { .nav-cta { display: inline-flex; } }
    .nav-cta:hover { background: var(--laranja2); transform: translateY(-1px); }

    /* ─── HERO ───────────────────── */
    .hero {
      padding-top: 72px;
      background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
      border-bottom: 1px solid rgba(219,234,254,.12);
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(96,165,250,.22) 0%, transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 45%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 52px 24px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .tituloFont{
           font-family: 'DM Serif Display', serif;
    }

    /* ─── PAINEL ESQUERDO ─────────── */
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--laranja-light);
      border: 1px solid rgba(234,88,12,.16);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: .7rem;
      font-weight: 700;
      color: var(--laranja);
      letter-spacing: .8px;
      text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeUp .5s ease both;
    }

    .hero h1 {
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--branco);
      letter-spacing: -0.8px;
      margin-bottom: 16px;
      animation: fadeUp .5s .08s ease both;
      text-shadow: 0 10px 30px rgba(15,23,42,.2);
    }

    .hero h1 span { color: var(--laranja); }

    .hero h1 .hero-minutos { color: var(--branco); }

    .hero-desc {
      font-size: .98rem;
      color: rgba(241,245,249,.84);
      line-height: 1.72;
      max-width: 430px;
      margin-bottom: 36px;
      animation: fadeUp .5s .16s ease both;
    }

    .hero-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      animation: fadeUp .5s .24s ease both;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .88rem;
      color: rgba(241,245,249,.88);
      font-weight: 500;
    }

    .hf-icon {
      width: 30px;
      height: 30px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      flex-shrink: 0;
    }

    /* ─── CARD FORMULÁRIO ─────────── */
    .card-form {
      background: rgba(255,255,255,.97);
      border: 1px solid rgba(255,255,255,.18);
      border-top: 8px solid var(--laranja);
      border-radius: 16px;
      padding: clamp(22px, 4vw, 36px);
      box-shadow: 0 24px 80px rgba(2,6,23,.26), 0 4px 20px rgba(15,23,42,.08);
      backdrop-filter: blur(10px);
      animation: fadeUp .5s .1s ease both;
    }

    .card-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--azul2);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .card-title-dot {
      width: 7px;
      height: 7px;
      background: var(--laranja);
      border-radius: 50%;
    }

    .etapa-label {
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--slate-400);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .etapa-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--laranja);
    }

    /* ─── QUESTIONS ───────────────── */
    .question { margin-bottom: 13px; }

    .q-texto {
      font-size: .86rem;
      font-weight: 600;
      color: var(--slate-700);
      margin-bottom: 7px;
    }

    .btn-group { display: flex; gap: 8px; }

    .btn-opcao {
      flex: 1;
      padding: 10px;
      border-radius: var(--r);
      border: 1.5px solid var(--slate-200);
      background: var(--slate-50);
      color: var(--slate-500);
      font-family: 'Inter', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .15s;
    }

    .btn-opcao:hover {
      border-color: var(--slate-300);
      background: var(--slate-100);
      color: var(--slate-700);
    }

    .btn-opcao.sim.selecionado {
      background: var(--laranja-light);
      border-color: var(--laranja);
      color: var(--laranja);
      box-shadow: 0 0 0 3px rgba(234,88,12,.09);
    }

    .btn-opcao.nao.selecionado {
      background: #fef2f2;
      border-color: var(--erro);
      color: var(--erro);
      box-shadow: 0 0 0 3px rgba(239,68,68,.07);
    }

    .divider {
      height: 1px;
      background: var(--slate-100);
      margin: 16px 0;
    }

    /* ─── FIELDS ─────────────────── */
    .field { margin-bottom: 14px; }

    .field label {
      display: block;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .6px;
      text-transform: uppercase;
      color: var(--slate-500);
      margin-bottom: 6px;
    }

    .field input {
      width: 100%;
      padding: 11px 13px;
      background: var(--branco);
      border: 1.5px solid var(--slate-200);
      border-radius: var(--r);
      color: var(--slate-800);
      font-family: 'Inter', sans-serif;
      font-size: .93rem;
      outline: none;
      transition: border-color .15s, box-shadow .15s;
    }

    .field input:focus {
      border-color: var(--azul);
      box-shadow: 0 0 0 3px rgba(30,58,138,.07);
    }

    .field input::placeholder { color: var(--slate-400); }

    /* ─── BOTÃO PRINCIPAL ─────────── */
    .btn-simular {
      width: 100%;
      padding: 14px;
      background: var(--laranja);
      color: #fff;
      border: none;
      border-radius: var(--r);
      font-family: 'Inter', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .15s, transform .12s, box-shadow .15s;
      box-shadow: 0 4px 14px rgba(234,88,12,.28);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-simular:hover:not(:disabled) {
      background: var(--laranja2);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(234,88,12,.38);
    }

    .btn-simular:active:not(:disabled) { transform: translateY(0); }
    .btn-simular:disabled { opacity: .4; cursor: not-allowed; }

    /* ─── CHIPS ABAIXO ─────────────── */
    .chips-row {
      display: flex;
      gap: 8px;
      margin-top: 14px;
      flex-wrap: wrap;
    }

    .chip {
      display: flex;
      align-items: center;
      gap: 5px;
      background: var(--slate-50);
      border: 1px solid var(--slate-200);
      border-radius: 20px;
      padding: 4px 10px;
      font-size: .69rem;
      font-weight: 600;
      color: var(--slate-500);
    }

    /* ─── APROVADO ────────────────── */
    .aprovado-badge {
      background: var(--laranja-light);
      border: 1px solid rgba(234,88,12,.2);
      border-radius: 10px;
      padding: 14px;
      font-size: .93rem;
      font-weight: 700;
      color: var(--laranja);
      text-align: center;
      margin-bottom: 6px;
      animation: fadeUp .3s ease both;
    }

    .aprovado-sub {
      color: var(--slate-500);
      font-size: .8rem;
      text-align: center;
      margin-bottom: 18px;
      line-height: 1.55;
    }

    /* ─── ERRO ────────────────────── */
    .alert-erro {
      background: #fef2f2;
      border: 1px solid rgba(239,68,68,.2);
      border-left: 4px solid var(--erro);
      border-radius: 10px;
      padding: 14px 16px;
      font-size: .86rem;
      line-height: 1.65;
      color: #991b1b;
      animation: fadeUp .3s ease both;
    }

    .alert-erro strong { color: var(--erro); }

    .btn-whats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      width: 100%;
      padding: 12px;
      margin-top: 12px;
      background: #25D366;
      color: #fff;
      border: none;
      border-radius: var(--r);
      font-family: 'Inter', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: background .15s, transform .12s;
    }

    .btn-whats:hover { background: #1db954; transform: translateY(-1px); }

    /* ─── STATS BAR ───────────────── */
    .stats-bar {
      background: rgba(15,23,42,.32);
      border-top: 1px solid rgba(219,234,254,.08);
      border-bottom: 1px solid rgba(219,234,254,.08);
      backdrop-filter: blur(10px);
      padding: 32px 24px;
    }

    .stats-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 12px 8px;
      border-right: 1px solid rgba(255,255,255,.08);
    }

    .stat-item:last-child { border-right: none; }
    .stat-icon { font-size: 1.3rem; margin-bottom: 6px; }
    .stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
    .stat-label { font-size: .64rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .9px; margin-top: 3px; font-weight: 500; }

    /* ─── FOOTER ─────────────────── */
    footer {
      background: transparent;
      text-align: center;
      padding: 24px;
      color: rgba(255,255,255,.52);
      font-size: .74rem;
      line-height: 1.7;
      border-top: 1px solid rgba(219,234,254,.08);
    }

    footer a { color: var(--laranja); text-decoration: none; }
    footer a:hover { color: #f97316; }

    /* ─── ANIMAÇÃO ────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── RESPONSIVO ─────────────── */
    @media (max-width: 768px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 16px 44px;
      }

      .hero-left { text-align: center; }
      .hero h1 {
        font-size: clamp(2.15rem, 9vw, 3rem);
        line-height: 1;
        margin-bottom: 10px;
      }
      .hero h1 br { display: none; }
      .hero h1 span { display: inline; }
      .hero h1 .hero-minutos { display: none; }
      .hero-eyebrow { display: none; }
      .hero-desc { display: none; }
      .hero-features { display: none; }

      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
      .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); border-right: none; }
    }

    @media (max-width: 480px) {
      .navbar { padding: 0 14px; }
      .brand-name { font-size: 1.05rem; }
      .card-form { padding: 18px 14px; }
      .nav-badge { display: none; }
    }