
    :root{
      --bg: #f6f8fb;               /* fundo claro estilo home */
      --panel: rgba(255,255,255,.78);
      --panel-solid: #ffffff;
      --text: #0f172a;
      --muted: #667085;
      --line: rgba(15, 23, 42, .10);

      /* Brand (ajuste para Relevo) */
      --brand: #0a7a4b;            /* verde */
      --brand-2: #0f9a63;
      --gold: #d7b56d;

      --shadow: 0 18px 55px rgba(15, 23, 42, .10);
      --shadow-soft: 0 10px 30px rgba(15, 23, 42, .08);
      --radius: 22px;

      --focus: 0 0 0 4px rgba(10, 122, 75, .18);
    }

    *{ box-sizing: border-box; }
    html, body{ height: 100%; }
    body{
      margin: 0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(1200px 600px at 10% 0%, rgba(10,122,75,.10), transparent 60%),
        radial-gradient(900px 500px at 90% 20%, rgba(215,181,109,.14), transparent 55%),
        radial-gradient(800px 500px at 50% 100%, rgba(10,122,75,.08), transparent 55%),
        var(--bg);
      overflow-x: hidden;
    }

    /* container */
    .container{
      width: min(1120px, calc(100% - 48px));
      margin: 0 auto;
    }

    /* topo */
    .topbar{
      padding: 18px 0;
    }
    .crumbs{
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--muted);
    }
    .crumbs a{
      color: inherit;
      text-decoration: none;
    }
    .crumbs a:hover{ color: var(--text); }
    .crumbs .dot{
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(15,23,42,.25);
    }

    /* hero */
    .hero{
      position: relative;
      padding: 26px 0 22px;
    }
    .hero-card{
      position: relative;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.60));
      border: 1px solid rgba(255,255,255,.55);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(700px 200px at 15% 0%, rgba(10,122,75,.20), transparent 60%),
        radial-gradient(700px 220px at 85% 10%, rgba(215,181,109,.20), transparent 55%);
      filter: blur(10px);
      opacity: .9;
      pointer-events: none;
    }
    .hero-inner{
      position: relative;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 22px;
      padding: 26px;
      align-items: center;
    }
    .hero h1{
      margin: 0 0 8px;
      font-size: clamp(26px, 3vw, 36px);
      letter-spacing: -0.03em;
      line-height: 1.1;
    }
    .hero p{
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
      font-size: 15px;
      max-width: 62ch;
    }
    .hero-badges{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(15,23,42,.10);
      box-shadow: 0 8px 22px rgba(15,23,42,.06);
      font-size: 13px;
      color: rgba(15,23,42,.78);
      backdrop-filter: blur(10px);
    }
    .b-dot{
      width: 10px; height: 10px; border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ffffff, var(--brand));
      box-shadow: 0 0 0 3px rgba(10,122,75,.12);
    }

    .hero-aside{
      display:flex;
      justify-content: flex-end;
      align-items: center;
    }
    .hero-mini{
      width: 100%;
      max-width: 320px;
      border-radius: 18px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(15,23,42,.10);
      box-shadow: var(--shadow-soft);
      padding: 14px 14px 12px;
      backdrop-filter: blur(10px);
    }
    .hero-mini .mini-title{
      display:flex; align-items:center; justify-content:space-between;
      font-size: 12px;
      color: rgba(15,23,42,.65);
      margin-bottom: 10px;
    }
    .pill{
      font-size: 11px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(10,122,75,.10);
      color: var(--brand);
      border: 1px solid rgba(10,122,75,.20);
      font-weight: 600;
    }
    .mini-list{
      display:grid;
      gap: 10px;
    }
    .mini-item{
      display:flex;
      gap: 10px;
      padding: 10px;
      border-radius: 14px;
      background: rgba(255,255,255,.8);
      border: 1px solid rgba(15,23,42,.08);
    }
    .mini-ic{
      width: 34px; height: 34px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(10,122,75,.14), rgba(10,122,75,.06));
      border: 1px solid rgba(10,122,75,.18);
      display:flex; align-items:center; justify-content:center;
      color: var(--brand);
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .mini-item strong{
      display:block;
      font-size: 13px;
      margin-bottom: 2px;
    }
    .mini-item span{
      display:block;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.35;
    }

    /* layout principal */
    .main{
      padding: 22px 0 60px;
    }
    .grid{
      display:grid;
      grid-template-columns: 1fr .48fr;
      gap: 18px;
      align-items: start;
      margin-top: 16px;
    }

    .card{
      border-radius: var(--radius);
      background: var(--panel);
      border: 1px solid rgba(255,255,255,.60);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(12px);
      overflow: hidden;
    }
    .card-header{
      padding: 18px 18px 0;
    }
    .card-title{
      margin: 0 0 6px;
      font-size: 16px;
      letter-spacing: -0.02em;
    }
    .card-sub{
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }
    .card-body{
      padding: 18px;
    }
    .card + .card{ margin-top: 18px; }

    /* form */
    form{ margin:0; }
    .rows{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 12px;
    }
    .field{
      grid-column: span 12;
    }
    .field.col-6{ grid-column: span 6; }
    .field.col-4{ grid-column: span 4; }
    .field.col-8{ grid-column: span 8; }

    label{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 10px;
      font-size: 13px;
      color: rgba(15,23,42,.85);
      margin-bottom: 6px;
      font-weight: 600;
    }
    .hint{
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
    }
    input, select, textarea{
      width: 100%;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.90);
      padding: 12px 12px;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
    }
    textarea{ min-height: 110px; resize: vertical; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(10,122,75,.35);
      box-shadow: var(--focus);
    }
    input::placeholder, textarea::placeholder{ color: rgba(102,112,133,.8); }

    .divider{
      height: 1px;
      background: rgba(15,23,42,.08);
      margin: 14px 0;
    }

    /* chips */
    .chips{
      display:flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .chip{
      position: relative;
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.86);
      cursor: pointer;
      user-select: none;
      transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
      font-size: 13px;
      color: rgba(15,23,42,.78);
      font-weight: 600;
    }
    .chip:hover{
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(15,23,42,.08);
    }
    .chip[aria-pressed="true"]{
      border-color: rgba(10,122,75,.35);
      background: rgba(10,122,75,.10);
      color: var(--brand);
      box-shadow: 0 10px 22px rgba(10,122,75,.12);
    }
    .chip .k{
      width: 22px; height: 22px;
      border-radius: 8px;
      background: rgba(15,23,42,.06);
      display:flex; align-items:center; justify-content:center;
      font-size: 12px;
      font-weight: 800;
      color: rgba(15,23,42,.75);
    }
    .chip[aria-pressed="true"] .k{
      background: rgba(10,122,75,.16);
      color: var(--brand);
    }

    /* upload */
    .drop{
      border-radius: 18px;
      border: 1.5px dashed rgba(15,23,42,.20);
      background: rgba(255,255,255,.72);
      padding: 16px;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      transition: border-color .18s ease, box-shadow .18s ease, transform .12s ease;
    }
    .drop:hover{
      border-color: rgba(10,122,75,.35);
      box-shadow: 0 10px 22px rgba(15,23,42,.08);
      transform: translateY(-1px);
    }
    .drop-left{
      display:flex;
      gap: 12px;
      align-items: center;
      min-width: 0;
    }
    .drop-ic{
      width: 44px; height: 44px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(215,181,109,.18), rgba(10,122,75,.10));
      border: 1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight: 900;
      color: rgba(15,23,42,.75);
      flex: 0 0 auto;
    }
    .drop-text{
      min-width: 0;
    }
    .drop-text strong{
      display:block;
      font-size: 13px;
      margin-bottom: 3px;
    }
    .drop-text span{
      display:block;
      font-size: 12px;
      color: var(--muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .btn{
      appearance: none;
      border: 0;
      border-radius: 14px;
      padding: 11px 14px;
      font-weight: 800;
      font-size: 13px;
      cursor: pointer;
      transition: transform .12s ease, box-shadow .18s ease, opacity .18s ease, background .18s ease;
      display:inline-flex;
      align-items:center;
      justify-content: center;
      gap: 10px;
      text-decoration:none;
      white-space: nowrap;
    }
    .btn:active{ transform: translateY(1px); }
    .btn-primary{
      background: linear-gradient(180deg, var(--brand-2), var(--brand));
      color: white;
      box-shadow: 0 12px 28px rgba(10,122,75,.22);
    }
    .btn-primary:hover{ box-shadow: 0 16px 40px rgba(10,122,75,.26); }
    .btn-ghost{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(15,23,42,.14);
      color: rgba(15,23,42,.82);
    }
    .btn-ghost:hover{ box-shadow: 0 12px 26px rgba(15,23,42,.10); }

    .files{
      margin-top: 12px;
      display:grid;
      gap: 10px;
    }
    .file{
      display:flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.82);
      border: 1px solid rgba(15,23,42,.10);
    }
    .file .meta{
      min-width: 0;
    }
    .file .meta strong{
      display:block;
      font-size: 13px;
      margin-bottom: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 520px;
    }
    .file .meta span{
      display:block;
      font-size: 12px;
      color: var(--muted);
    }
    .x{
      width: 34px; height: 34px;
      border-radius: 12px;
      border: 1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.85);
      cursor: pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight: 900;
      color: rgba(15,23,42,.65);
      transition: transform .12s ease, box-shadow .18s ease;
      flex: 0 0 auto;
    }
    .x:hover{
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(15,23,42,.10);
    }

    /* aside */
    .side{
      position: sticky;
      top: 18px;
    }
    .note{
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(15,23,42,.10);
      box-shadow: var(--shadow-soft);
    }
    .note h3{
      margin: 0 0 8px;
      font-size: 14px;
      letter-spacing: -0.02em;
    }
    .note p{
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
    }
    .note ul{
      margin: 12px 0 0;
      padding-left: 18px;
      color: rgba(15,23,42,.75);
      font-size: 13px;
      line-height: 1.55;
    }
    .note li{ margin: 6px 0; }
    .note .mini-cta{
      margin-top: 14px;
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    /* footer actions */
    .actions{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(15,23,42,.08);
    }
    .actions .left{
      display:flex; gap: 10px; flex-wrap: wrap;
    }
    .ok{
      font-size: 13px;
      color: rgba(10,122,75,.95);
      font-weight: 700;
      display:none;
      align-items:center;
      gap: 8px;
    }
    .ok.show{ display:flex; }
    .ok .check{
      width: 18px; height: 18px;
      border-radius: 6px;
      background: rgba(10,122,75,.14);
      border: 1px solid rgba(10,122,75,.22);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-weight: 900;
    }

    /* responsive */
    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-aside{ justify-content: flex-start; }
      .grid{ grid-template-columns: 1fr; }
      .side{ position: static; }
      .field.col-6, .field.col-4, .field.col-8{ grid-column: span 12; }
      .file .meta strong{ max-width: 60vw; }
    }
  