:root {
      --azul: #00135f;
      --azul2: #071f8f;
      --dourado: #f4a000;
      --dourado2: #ffbf2e;
      --texto: #17203a;
      --muted: #657086;
      --bg: #f4f6fb;
      --white: #ffffff;
      --border: #e3e7f2;
      --danger: #b42318;
      --success: #067647;
      --shadow: 0 24px 60px rgba(0, 19, 95, .14);
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--texto);
      background: var(--bg);
      overflow-x: hidden;
    }

    a { color: inherit; }

    .container {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 50;
      box-shadow: 0 8px 24px rgba(0,0,0,.05);
    }

    .topbar-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand img {
      display: block;
      width: min(260px, 56vw);
      height: auto;
    }

    .topbar-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: #fff7e6;
      color: #7a4a00;
      font-weight: 800;
      font-size: 13px;
      border: 1px solid #ffe0a3;
      white-space: nowrap;
    }

    .hero {
      position: relative;
      padding: clamp(44px, 7vw, 88px) 0 clamp(42px, 7vw, 76px);
      background:
        radial-gradient(circle at 10% 10%, rgba(244,160,0,.22), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(255,191,46,.20), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #f9fbff 54%, #eef3ff 100%);
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: center;
      gap: clamp(28px, 5vw, 70px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(0,19,95,.08);
      color: var(--azul);
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 18px;
    }

    h1 {
      margin: 0;
      font-size: clamp(42px, 6.6vw, 76px);
      line-height: .95;
      letter-spacing: -0.055em;
      color: var(--azul);
    }

    .hero p {
      margin: 22px 0 0;
      font-size: clamp(18px, 2vw, 23px);
      line-height: 1.5;
      color: #33405b;
      max-width: 650px;
    }

    .hero-actions {
      margin-top: 28px;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn {
      appearance: none;
      border: 0;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 15px 24px;
      border-radius: 999px;
      font-weight: 900;
      text-decoration: none;
      font-size: 15px;
      transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
      font-family: inherit;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #151515;
      background: linear-gradient(135deg, var(--dourado2), var(--dourado));
      box-shadow: 0 16px 34px rgba(244,160,0,.26);
    }

    .btn-secondary {
      color: var(--azul);
      background: #fff;
      border: 1px solid rgba(0,19,95,.14);
      box-shadow: 0 10px 25px rgba(0,19,95,.08);
    }

    .hero-card {
      background: rgba(255,255,255,.86);
      border: 1px solid rgba(255,255,255,.88);
      border-radius: 34px;
      padding: clamp(20px, 3vw, 32px);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
    }

    .hero-card img {
      display: block;
      width: 100%;
      max-height: 360px;
      object-fit: contain;
      margin: 0 auto;
    }

    .hero-points {
      margin-top: 20px;
      display: grid;
      gap: 12px;
    }

    .hero-point {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 14px;
      font-size: 14px;
      line-height: 1.45;
      color: #33405b;
    }

    .hero-point strong {
      color: var(--azul);
    }

    .section {
      padding: clamp(46px, 7vw, 78px) 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-title h2 {
      margin: 0;
      color: var(--azul);
      font-size: clamp(30px, 4.5vw, 48px);
      line-height: 1.05;
      letter-spacing: -.04em;
    }

    .section-title p {
      margin: 14px auto 0;
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .form-wrap {
      margin-top: 20px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 24px;
      align-items: start;
      padding-bottom: 42vh;
    }

    .form-info {
      position: sticky;
      top: 98px;
      background: linear-gradient(145deg, var(--azul), var(--azul2));
      color: #fff;
      border-radius: 28px;
      padding: 26px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .form-info:before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 999px;
      background: rgba(244,160,0,.18);
      right: -100px;
      top: -80px;
    }

    .form-info > * {
      position: relative;
      z-index: 1;
    }

    .form-info .small {
      color: #ffd67a;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .06em;
      font-size: 12px;
      margin-bottom: 12px;
    }

    .form-info h3 {
      margin: 0;
      font-size: 30px;
      line-height: 1.05;
      letter-spacing: -.035em;
    }

    .form-info p {
      margin: 14px 0 0;
      color: rgba(255,255,255,.84);
      line-height: 1.55;
      font-size: 15px;
    }

    .progress-box {
      margin-top: 22px;
      padding: 16px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 18px;
    }

    .progress-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      font-size: 13px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }

    .progress-track {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      width: 0%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--dourado2), var(--dourado));
      transition: width .25s ease;
    }

    .form-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: 0 18px 48px rgba(0,19,95,.09);
      overflow: hidden;
    }

    .test-panel {
      padding: 24px;
      background: linear-gradient(135deg, #fff8e7, #ffffff);
      border-bottom: 1px solid #ffe0a3;
    }

    .test-panel h3 {
      margin: 0 0 8px;
      color: var(--azul);
      font-size: 22px;
    }

    .test-panel p {
      margin: 0;
      color: #5c4b24;
      line-height: 1.55;
      font-size: 15px;
    }

    .step {
      display: none;
      padding: clamp(22px, 4vw, 34px);
    }

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

    .step-tag {
      display: inline-flex;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0,19,95,.08);
      color: var(--azul);
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 14px;
    }

    .step h3 {
      margin: 0 0 8px;
      color: var(--azul);
      font-size: clamp(26px, 4vw, 36px);
      line-height: 1.08;
      letter-spacing: -.035em;
    }

    .step-desc {
      margin: 0 0 24px;
      color: var(--muted);
      line-height: 1.55;
      font-size: 15px;
    }

    .field {
      margin-bottom: 18px;
    }

    label.field-label,
    .field-label {
      display: block;
      margin-bottom: 9px;
      color: var(--texto);
      font-size: 15px;
      font-weight: 900;
    }

    .required {
      color: var(--dourado);
      font-weight: 900;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
      width: 100%;
      border: 1px solid #d8dfed;
      border-radius: 16px;
      padding: 15px 16px;
      min-height: 52px;
      font: inherit;
      color: var(--texto);
      background: #fff;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    textarea {
      min-height: 110px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--azul2);
      box-shadow: 0 0 0 4px rgba(0,19,95,.10);
    }

    .options {
      display: grid;
      gap: 10px;
    }

    .option {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 13px 14px;
      border: 1px solid #dfe5f1;
      border-radius: 16px;
      background: #fbfcff;
      cursor: pointer;
      transition: border-color .2s ease, background .2s ease, transform .2s ease;
    }

    .option:hover {
      border-color: rgba(0,19,95,.30);
      background: #fff;
      transform: translateY(-1px);
    }

    .option input {
      margin-top: 2px;
      accent-color: var(--azul);
    }

    .option span {
      line-height: 1.35;
    }

    .option-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .conditional {
      display: none;
      margin-top: 14px;
      padding: 16px;
      background: #f8faff;
      border: 1px solid var(--border);
      border-radius: 18px;
    }

    .conditional.is-visible {
      display: block;
    }

    .privacy-line {
      margin: 18px 0 6px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: #3b465f;
      line-height: 1.45;
      font-size: 14px;
    }

    .privacy-line input {
      margin-top: 2px;
      accent-color: var(--azul);
    }

    .privacy-button {
      display: inline;
      border: 0;
      background: none;
      padding: 0;
      margin: 0;
      color: var(--azul);
      font: inherit;
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
    }

    .form-actions {
      display: flex;
      gap: 12px;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .btn-ghost {
      background: #eef2fb;
      color: var(--azul);
    }

    .btn-submit {
      background: linear-gradient(135deg, var(--azul2), var(--azul));
      color: #fff;
      box-shadow: 0 16px 34px rgba(0,19,95,.20);
    }

    .hidden {
      display: none !important;
    }

    .status-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(0, 10, 38, .62);
      backdrop-filter: blur(5px);
    }

    .status-modal.is-open {
      display: flex;
    }

    .status-card {
      width: min(620px, 94vw);
      background: #fff;
      border-radius: 26px;
      padding: 34px;
      text-align: center;
      box-shadow: 0 30px 100px rgba(0,0,0,.34);
    }

    .status-icon {
      width: 74px;
      height: 74px;
      margin: 0 auto 18px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 34px;
      font-weight: 900;
      background: var(--success);
    }

    .status-modal.is-error .status-icon {
      background: var(--danger);
    }

    .status-card h2 {
      margin: 0 0 12px;
      color: var(--azul);
      font-size: 32px;
    }

    .status-card p {
      margin: 0 0 22px;
      color: #39465f;
      line-height: 1.55;
      white-space: pre-line;
    }

    .privacy-modal {
      position: fixed;
      inset: 0;
      z-index: 9998;
      display: none;
      background: rgba(0, 10, 38, .62);
      backdrop-filter: blur(5px);
    }

    .privacy-modal.is-open {
      display: block;
    }

    .privacy-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: min(900px, 94vw);
      height: 100%;
      background: #fff;
      box-shadow: -24px 0 70px rgba(0,0,0,.30);
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      animation: slideIn .25s ease forwards;
    }

    @keyframes slideIn {
      to { transform: translateX(0); }
    }

    .privacy-header {
      padding: 20px;
      background: linear-gradient(135deg, var(--azul), var(--azul2));
      color: #fff;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
    }

    .privacy-header h2 {
      margin: 0;
      font-size: 22px;
    }

    .privacy-close {
      border: 0;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background: rgba(255,255,255,.16);
      color: #fff;
      font-size: 28px;
      cursor: pointer;
    }

    .privacy-body {
      padding: 22px;
      overflow: auto;
      line-height: 1.65;
      color: #2f3b56;
    }

    .privacy-body h3 {
      color: var(--azul);
      margin-top: 0;
    }

    .privacy-pref {
      display: grid;
      gap: 10px;
      margin: 18px 0;
    }

    .privacy-pref label {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #f8faff;
    }

    .privacy-pref input {
      margin-top: 3px;
      accent-color: var(--azul);
    }

    .privacy-footer {
      padding: 16px 20px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      background: #fff;
    }

    .sr-only,
    .honeypot {
      position: absolute !important;
      left: -9999px !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      opacity: 0 !important;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-info {
        position: relative;
        top: auto;
      }

      .form-grid {
        padding-bottom: 45vh;
      }

      .hero-card {
        order: -1;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 22px, 1160px);
      }

      .topbar-inner {
        min-height: 68px;
      }

      .topbar-badge {
        display: none;
      }

      .hero {
        padding-top: 34px;
      }

      .hero-grid {
        gap: 22px;
      }

      .hero-card img {
        max-height: 250px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .section {
        padding: 38px 0;
      }

      .form-info {
        border-radius: 22px;
        padding: 22px;
      }

      .form-info h3 {
        font-size: 26px;
      }

      .step {
        padding: 22px;
      }

      .test-panel {
        padding: 20px;
      }

      .option-grid {
        grid-template-columns: 1fr;
      }

      .form-actions .btn {
        width: 100%;
      }

      .privacy-panel {
        width: 100vw;
      }

      .privacy-footer {
        flex-direction: column;
      }

      .privacy-footer .btn {
        width: 100%;
      }
    }
