  /* Estilos base */
  .form-container {
      font-family: Arial, sans-serif;
      color: #000;
      background-color: #fff;
      padding: 2.5rem;
      max-width: 900px;
      margin: auto;
  }

  .form-header {
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
  }

  .header-text {
      text-align: center;
      flex: 1;
  }

  .header-text h3 {
      margin: 5px 0;
      font-size: 1.8rem;
      word-wrap: break-word;
      font-weight: bold;
  }

  .header-text h4 {
      margin: 2px 0;
      font-size: 1.3rem;
      font-weight: normal;
  }

  .form-title {
      text-align: center;
      margin: 2rem 0;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 1.6rem;
      letter-spacing: 1px;
  }

  .section-title {
      text-align: center;
      margin: 2rem 0 1rem 0;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 1.4rem;
      border-bottom: 1px solid #ddd;
      padding-bottom: 5px;
  }

  /* Input rows styling */
  .form-row {
      margin-bottom: 1.5rem;
      display: flex;
      align-items: flex-end;
      flex-wrap: wrap;
  }

  .form-row label {
      margin-right: 8px;
      margin-bottom: 5px;
      font-weight: normal;
      font-size: 1.4rem;
      white-space: nowrap;
  }

  .form-row .input-line {
      flex: 1;
      min-width: 200px;
      border: none;
      border-bottom: 1px solid #000;
      padding: 2px 5px;
      height: 30px;
      box-shadow: none;
      border-radius: 0;
      background: transparent;
      font-size: 1.4rem;
  }

  .form-row .input-line-red {
      flex: 1;
      min-width: 100px;
      border: none;
      border-bottom: 1px solid #000;
      padding: 2px 5px;
      height: 30px;
      box-shadow: none;
      border-radius: 0;
      background: transparent;
      font-size: 1.4rem;
  }

  .form-row .input-line:focus {
      outline: none;
      border-bottom: 2px solid #337ab7;
  }

  .small-input {
      max-width: 200px !important;
  }

  .checkbox-group {
      display: inline-flex;
      align-items: center;
      margin-left: 20px;
      flex-wrap: wrap;
  }

  .checkbox-group label {
      margin: 5px 15px 5px 5px;
      font-weight: normal;
      white-space: nowrap;
  }

  .rtsp-note {
      font-size: 1.1rem;
      color: #555;
      width: 100%;
      margin-top: 5px;
  }

  .term-text {
      text-align: justify;
      line-height: 1.6;
      font-size: 1.3rem;
      margin-top: 2.5rem;
      padding-bottom: 2rem;
  }

  /* Imagens e placeholders */
  .placeholder-img {
      width: 100px;
      height: 120px;

      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.9rem;
      color: #999;
      flex-shrink: 0;
  }

  /* Media queries para mobile */
  @media (max-width: 768px) {
      .form-container {
          padding: 1.5rem;
      }

      .form-header {
          flex-direction: column;
          text-align: center;
      }

      .header-text h3 {
          font-size: 1.5rem;
      }

      .header-text h4 {
          font-size: 1.1rem;
      }

      .form-row {
          flex-direction: column;
          align-items: stretch;
      }

      .form-row label {
          margin-bottom: 5px;
          white-space: normal;
      }

      .form-row .input-line {
          width: 100%;
          min-width: 0;
      }


      .small-input {
          max-width: 100% !important;
      }

      .checkbox-group {
          margin-left: 0;
          margin-top: 10px;
          width: 100%;
          justify-content: flex-start;
      }

      .section-title {
          font-size: 1.2rem;
      }

      .form-title {
          font-size: 1.3rem;
      }
  }

  .footer-custom {
      text-align: center;
      font-size: 1.1rem;
      margin-top: 4rem;
      color: #444;
      border-top: 1px solid #eee;
      padding-top: 1.5rem;
  }

  @media print {

      .btn,
      .upload-section {
          display: none !important;
      }

      .form-container {
          padding: 0;
          width: 100%;
          max-width: none;
      }
  }