
    /* ── Hero ── */
    .trabajo-hero {
      background: linear-gradient(135deg, #0d1f12 0%, #1b4332 55%, #2d6a4f 100%);
      color: #fff;
      padding: 52px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .trabajo-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M30 30m-20 0a20 20 0 1 0 40 0a20 20 0 1 0-40 0M30 15v30M15 30h30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .trabajo-hero .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      color: #b7e4c7;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .trabajo-hero h1 {
      font-size: clamp(28px, 5vw, 46px);
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: 12px;
    }
    .trabajo-hero p {
      font-size: 15px;
      color: rgba(255,255,255,.78);
      max-width: 560px;
      margin: 0 auto 22px;
    }
    .hero-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .hero-chip {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.22);
      color: #fff;
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 12.5px;
      font-weight: 500;
    }

    /* ── Info strip ── */
    .info-strip {
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
    }
    .info-strip-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .info-strip-item {
      padding: 20px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-right: 1px solid #f0f0f0;
    }
    .info-strip-item:last-child { border-right: none; }
    .info-strip-item .si-icon {
      font-size: 28px;
      flex-shrink: 0;
    }
    .info-strip-item h3 { font-size: 13px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 3px; }
    .info-strip-item p { font-size: 14px; font-weight: 600; color: #1a1a1a; line-height: 1.45; }

    /* ── Main layout ── */
    .trabajo-layout {
      max-width: 1200px;
      margin: 0 auto;
      padding: 36px 20px 0;
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 28px;
      align-items: start;
    }

    /* ── Generic card ── */
    .tj-card {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      margin-bottom: 24px;
    }
    .tj-card-header {
      padding: 18px 24px 16px;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .tj-card-header .tj-icon {
      width: 40px;
      height: 40px;
      background: #f0fdf4;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .tj-card-header h2 { font-size: 17px; font-weight: 700; color: #1a1a1a; }
    .tj-card-header p { font-size: 13px; color: #777; margin-top: 2px; }
    .tj-card-body { padding: 24px; }

    /* ── Perks grid ── */
    .perks-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 0;
    }
    .perk-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: #f9fdf9;
      border: 1px solid #d1fae5;
      border-radius: 10px;
      transition: box-shadow .2s, border-color .2s;
    }
    .perk-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,.06); border-color: #2d6a4f; }
    .perk-item .pk-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
    .perk-item h4 { font-size: 13.5px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
    .perk-item p { font-size: 12.5px; color: #555; line-height: 1.55; }

    /* ── Application form ── */
    .form-intro {
      font-size: 14px;
      color: #555;
      line-height: 1.7;
      margin-bottom: 22px;
    }
    .form-intro strong { color: #1a1a1a; }
    .form-intro a { color: #2d6a4f; font-weight: 600; }
    .form-intro a:hover { text-decoration: underline; }

    .app-form { display: flex; flex-direction: column; gap: 16px; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-group label {
      font-size: 12.5px;
      font-weight: 600;
      color: #444;
      text-transform: uppercase;
      letter-spacing: .4px;
    }
    .form-group label .req { color: #e63946; margin-left: 2px; }
    .form-group input,
    .form-group textarea,
    .form-group select {
      padding: 10px 14px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      font-family: inherit;
      color: #1a1a1a;
      background: #fafafa;
      outline: none;
      transition: border-color .15s, background .15s;
      width: 100%;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: #2d6a4f;
      background: #fff;
    }
    .form-group textarea { resize: vertical; min-height: 110px; }

    /* File upload */
    .file-upload-area {
      border: 2px dashed #d1fae5;
      border-radius: 10px;
      padding: 24px;
      text-align: center;
      background: #f9fdf9;
      cursor: pointer;
      transition: border-color .2s, background .2s;
      position: relative;
    }
    .file-upload-area:hover { border-color: #2d6a4f; background: #ecfdf5; }
    .file-upload-area input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
    }
    .file-upload-area .fu-icon { font-size: 32px; margin-bottom: 8px; }
    .file-upload-area h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
    .file-upload-area p { font-size: 12.5px; color: #777; }
    .file-upload-area .fu-alt {
      margin-top: 10px;
      font-size: 12px;
      color: #2d6a4f;
      font-weight: 600;
    }
    #file-name-display {
      margin-top: 8px;
      font-size: 12.5px;
      color: #2d6a4f;
      font-weight: 600;
      display: none;
    }

    /* Privacy notice */
    .privacy-notice {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 12.5px;
      color: #777;
      line-height: 1.55;
    }
    .privacy-notice input[type="checkbox"] {
      margin-top: 2px;
      width: 16px;
      height: 16px;
      accent-color: #2d6a4f;
      flex-shrink: 0;
      cursor: pointer;
    }

    /* Submit button */
    .btn-submit {
      background: linear-gradient(135deg, #2d6a4f, #1b4332);
      color: #fff;
      padding: 14px 32px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: opacity .2s, transform .15s;
      width: 100%;
    }
    .btn-submit:hover { opacity: .9; transform: translateY(-1px); }
    .btn-submit:active { transform: translateY(0); }

    /* Success message */
    .form-success {
      display: none;
      background: #f0fdf4;
      border: 1px solid #a7f3d0;
      border-radius: 10px;
      padding: 24px;
      text-align: center;
    }
    .form-success .fs-icon { font-size: 40px; margin-bottom: 10px; }
    .form-success h3 { font-size: 17px; font-weight: 700; color: #065f46; margin-bottom: 6px; }
    .form-success p { font-size: 13.5px; color: #047857; line-height: 1.65; }

    /* ── Proceso de selección ── */
    .proceso-steps { display: flex; flex-direction: column; gap: 0; }
    .proceso-item {
      display: flex;
      gap: 18px;
      padding: 18px 0;
      border-bottom: 1px solid #f5f5f5;
      align-items: flex-start;
    }
    .proceso-item:last-child { border-bottom: none; padding-bottom: 0; }
    .proceso-num {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2d6a4f, #1b4332);
      color: #fff;
      font-size: 16px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 3px 8px rgba(27,67,50,.25);
    }
    .proceso-content h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
    .proceso-content p { font-size: 13px; color: #666; line-height: 1.6; }

    /* ── Sidebar ── */
    .sidebar-card {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e8e8e8;
      overflow: hidden;
      margin-bottom: 20px;
    }
    .sidebar-card-header {
      background: #1a1a2e;
      color: #fff;
      padding: 14px 18px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sidebar-card-body { padding: 18px; }

    .sidebar-cta {
      background: linear-gradient(135deg, #2d6a4f, #1b4332);
      border-radius: 12px;
      padding: 22px 18px;
      text-align: center;
      color: #fff;
      margin-bottom: 20px;
    }
    .sidebar-cta h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
    .sidebar-cta p { font-size: 12.5px; opacity: .88; margin-bottom: 14px; line-height: 1.6; }
    .sidebar-cta .btn-email {
      background: #e63946;
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 8px;
      transition: background .2s;
    }
    .sidebar-cta .btn-email:hover { background: #c1121f; }
    .sidebar-cta .btn-scroll {
      background: rgba(255,255,255,.15);
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.25);
      transition: background .2s;
      cursor: pointer;
    }
    .sidebar-cta .btn-scroll:hover { background: rgba(255,255,255,.25); }

    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid #f5f5f5;
      font-size: 13px;
    }
    .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-row .icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .contact-row .info strong { display: block; font-size: 11px; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }
    .contact-row .info a, .contact-row .info span { color: #1a1a1a; font-weight: 500; }
    .contact-row .info a:hover { color: #2d6a4f; }

    /* Values list */
    .values-list { display: flex; flex-direction: column; gap: 10px; }
    .value-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #333;
      font-weight: 500;
      padding: 9px 12px;
      background: #f9fdf9;
      border-radius: 8px;
      border: 1px solid #d1fae5;
    }
    .value-item .v-icon { font-size: 18px; flex-shrink: 0; }

    /* Responsive */
    @media (max-width: 960px) {
      .trabajo-layout { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .info-strip-inner { grid-template-columns: 1fr; }
      .info-strip-item { border-right: none; border-bottom: 1px solid #f0f0f0; }
      .info-strip-item:last-child { border-bottom: none; }
      .form-row { grid-template-columns: 1fr; }
      .perks-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .trabajo-hero { padding: 36px 16px; }
    }