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

    :root {
      --green: #5AB031;
      --green2: #4a8f27;
      --green-bg: rgba(90, 176, 49, 0.08);
      --green-bd: rgba(90, 176, 49, 0.25);
      --yellow: #EEC700;
      --navy: #0d1033;
      --navy2: #101338;
      --navy3: #141840;
      --white: #FFFFFF;
      --gray: #8888aa;
      --border: rgba(255, 255, 255, 0.07);
    }

    html {
      scroll-behavior: smooth;
    }

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

    /* ─── FORM ─── */

    .contato-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-g {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .form-label {
      font-family: 'Teko', sans-serif;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
    }

    .form-input,
    .form-select,
    .form-ta {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--white);
      font-size: 14px;
      font-weight: 300;
      padding: 13px 16px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color .2s, background .2s;
    }

    .form-input::placeholder,
    .form-ta::placeholder {
      color: rgba(255, 255, 255, 0.2);
    }

    .form-input:focus,
    .form-select:focus,
    .form-ta:focus {
      border-color: rgba(90, 176, 49, 0.5);
      background: rgba(90, 176, 49, 0.03);
    }

    .form-ta {
      resize: vertical;
      min-height: 120px;
    }

    .form-select option {
      background: #101338;
    }

    .form-btn {
      background: var(--green);
      color: #fff;
      font-family: 'Teko', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 15px;
      border: none;
      cursor: pointer;
      width: 100%;
      transition: background .2s, transform .15s;
    }

    .form-btn:hover {
      background: var(--green2);
      transform: translateY(-1px);
    }

    .form-btn:disabled {
      cursor: not-allowed;
      opacity: 0.65;
      transform: none;
    }

    .form-feedback {
      display: none;
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13px;
      line-height: 1.45;
      padding: 12px 14px;
    }

    .form-feedback.is-success,
    .form-feedback.is-error {
      display: block;
    }

    /* ═══════════════════════════════════════════
       NUMBERONE — Torcedor Numero 1
       ═══════════════════════════════════════════ */

    .numberone-wrap {
      max-width: 560px;
      width: 100%;
      margin: 0 auto;
      padding: 48px 24px 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .numberone-logo {
      width: 180px;
      height: auto;
      margin-bottom: 32px;
    }

    .numberone-eyebrow {
      font-family: 'Teko', sans-serif;
      font-size: 22px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 6px;
    }

    .numberone-title {
      font-family: 'Teko', sans-serif;
      font-size: clamp(32px, 6vw, 44px);
      font-weight: 500;
      line-height: 1.05;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: center;
      color: var(--white);
      margin-bottom: 10px;
    }

    .numberone-subtitle {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: var(--gray);
      text-align: center;
      line-height: 1.6;
      max-width: 420px;
      margin-bottom: 32px;
    }

    .numberone-wrap .contato-form {
      width: 100%;
    }

    /* ─── File upload ─── */

    .form-file-wrap {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px dashed rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
      padding: 28px 20px;
      cursor: pointer;
      transition: border-color .2s, background .2s;
    }

    .form-file-wrap:hover {
      border-color: rgba(90, 176, 49, 0.4);
      background: rgba(90, 176, 49, 0.04);
    }

    .form-file {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
      z-index: 2;
    }

    .form-file-icon {
      font-size: 28px;
      color: rgba(255, 255, 255, 0.2);
      pointer-events: none;
      transition: color .2s;
    }

    .form-file-wrap:hover .form-file-icon {
      color: var(--green);
    }

    .form-file-text {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.35);
      pointer-events: none;
    }

    .form-file-hint {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.2);
      pointer-events: none;
    }

    .form-file-error {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      color: #e74c3c;
      margin-top: 4px;
      display: none;
    }

    /* ─── Checkboxes ─── */

    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      cursor: pointer;
      user-select: none;
    }

    .form-check input[type="checkbox"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .form-check-box {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      margin-top: 2px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.04);
      position: relative;
      transition: border-color .2s, background .2s;
    }

    .form-check input[type="checkbox"]:checked + .form-check-box {
      background: var(--green);
      border-color: var(--green);
    }

    .form-check input[type="checkbox"]:checked + .form-check-box::after {
      content: '';
      position: absolute;
      top: 2px;
      left: 5px;
      width: 5px;
      height: 9px;
      border: solid #fff;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .form-check input[type="checkbox"]:focus-visible + .form-check-box {
      outline: 2px solid var(--green);
      outline-offset: 2px;
    }

    .form-check-text {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.5;
    }

    .form-check-text a {
      color: var(--green);
      text-decoration: underline;
      transition: color .2s;
    }

    .form-check-text a:hover {
      color: var(--green2);
    }

    /* ─── Button loading state ─── */

    .form-btn-loading {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    /* ─── Feedback ─── */

    .form-feedback.is-success {
      color: var(--green);
      background: rgba(90, 176, 49, 0.08);
      border-color: rgba(90, 176, 49, 0.25);
    }

    .form-feedback.is-error {
      color: #e74c3c;
      background: rgba(231, 76, 60, 0.08);
      border-color: rgba(231, 76, 60, 0.25);
    }

    /* ─── Back link ─── */

    .numberone-back {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.25);
      text-decoration: none;
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .numberone-back:hover {
      color: var(--green);
    }

    /* ─── Footer ─── */

    .numberone-footer {
      text-align: center;
      padding: 24px;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.15);
    }

    /* ─── Regulation text ─── */

    .numberone-wrap--regulation {
      max-width: 680px;
    }

    .numberone-wrap--regulation .numberone-title {
      font-size: clamp(28px, 5vw, 40px);
    }

    .numberone-text {
      width: 100%;
      text-align: left;
    }

    .numberone-text p {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.85;
      margin-bottom: 18px;
    }

    .numberone-text h2 {
      font-family: 'Teko', sans-serif;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-top: 28px;
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }

    .numberone-text ul {
      list-style: none;
      margin-bottom: 18px;
      padding-left: 0;
    }

    .numberone-text ul li {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
      padding-left: 20px;
      position: relative;
      margin-bottom: 6px;
    }

    .numberone-text ul li::before {
      content: '\2014';
      position: absolute;
      left: 0;
      color: var(--green);
      font-size: 11px;
    }

    .numberone-checkbox-group {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    .numberone-checkbox-group .form-check-text {
      font-size: 12px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ─── Responsive ─── */

    @media (max-width: 768px) {
      .numberone-wrap {
        padding: 36px 16px 48px;
      }

      .numberone-logo {
        width: 140px;
      }

      .numberone-title {
        font-size: 28px;
      }

      .numberone-wrap .form-row {
        grid-template-columns: 1fr;
      }

      .numberone-wrap--regulation .numberone-title {
        font-size: 24px;
      }

      .numberone-text h2 {
        font-size: 18px;
      }
    }
