:root {
      /* Tu paleta de colores original */
      --primary: #BE1823;
      --secondary: #E52032;
      --dark: #1E1F1C;
      
      /* Colores para el efecto Glass */
      --band-bg: rgba(30, 31, 28, 0.7); /* La banda horizontal oscura */
      --glass-border: rgba(255, 255, 255, 0.1);
      
      /* Recuadro del formulario CAMBIADO A NEGRO TRANSPARENTE */
      --card-bg: rgba(15, 15, 15, 0.9); 
      
      /* Colores de texto para fondo negro */
      --text-main: #ffffff;
      --text-muted: rgba(255, 255, 255, 0.6);
      --input-bg: rgba(255, 255, 255, 0.05);
      --input-border: rgba(255, 255, 255, 0.1);
    }

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

    body {
      font-family: 'Roboto Condensed', sans-serif;
      /* Fondo oscuro sutil para que el cristal destaque */
      background: linear-gradient(135deg, var(--dark) 0%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      overflow-x: hidden;
      color: var(--text-main);
    }

    /* LA BANDA HORIZONTAL OSCURA (Liquid Glass) */
    .main-wrapper {
      display: flex;
      width: 100%;
      max-width: 1200px;
      background: var(--band-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
      align-items: center; 
    }

    /* 1. Panel Izquierdo (Logo y textos) */
    .left-panel {
      flex: 0 0 350px;
      padding: 40px;
      color: #ffffff;
      background: transparent;
      border-right: 1px solid var(--glass-border);
    }
    
    .logo-container { margin-bottom: 30px; }
    .logo { width: 130px; height: auto; display: block; }
    
    .left-content h1 { font-family: 'Squada One', sans-serif; font-style: italic; font-weight: normal; font-size: 34px; margin-bottom: 10px; letter-spacing: 1px; line-height: 1.1; }
    .left-content .subtitle { font-size: 15px; margin-bottom: 24px; color: rgba(255,255,255,0.7); }

    .security-badge { background: rgba(255,255,255,0.05); border-radius: 15px; padding: 15px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.1); }
    .security-badge h3 { font-family: 'Squada One', sans-serif; font-style: italic; font-weight: normal; font-size: 20px; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; letter-spacing: 1px; color: var(--secondary); }
    .security-badge p { font-size: 13px; color: rgba(255,255,255,0.7); }

    .info-list { list-style: none; padding: 0; }
    .info-list li { font-size: 13px; margin-bottom: 10px; padding-left: 15px; position: relative; color: rgba(255,255,255,0.8); }
    .info-list li::before { content: '•'; position: absolute; left: 0; color: var(--secondary); font-size: 18px; line-height: 1; top: -3px; }

    /* 2. CONTENEDOR DERECHO */
    .right-panel {
      flex: 1;
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0 40px 0 30px;
      gap: 30px;
    }

    /* EL PROGRESO EN VERTICAL */
    .progress-container {
      flex: 0 0 80px;
      background: transparent;
      border: none;
      padding: 0;
    }

    .progress-bar { display: flex; flex-direction: column; align-items: center; }

    .progress-step { display: flex; flex-direction: column; align-items: center; gap: 5px; color: rgba(255,255,255,0.4); transition: all 0.3s; }
    .progress-step span { font-size: 11px; text-transform: uppercase; font-weight: 600; text-align: center; }
    
    .progress-dot {
      width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: bold; background: transparent; transition: all 0.3s;
    }

    .progress-step.active { color: var(--secondary); }
    .progress-step.active .progress-dot { border-color: var(--secondary); background: var(--secondary); color: #fff; box-shadow: 0 0 20px var(--secondary); transform: scale(1.2); }
    .progress-step.completed { color: #fff; }
    .progress-step.completed .progress-dot { border-color: var(--primary); background: transparent; color: var(--primary); }

    .progress-line { width: 2px; height: 35px; background: rgba(255, 255, 255, 0.1); margin: 5px 0; }
    .progress-step.completed + .progress-line { background: var(--primary); }

    /* 3. EL FORMULARIO (Tarjeta) */
    .form-container {
      flex: 1;
      background: var(--card-bg); /* NEGRO Translúcido */
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      
      /* EFECTO NEÓN */
      border: 1px solid var(--secondary);
      box-shadow: 
        0 0 10px var(--secondary),       
        0 0 25px var(--primary),        
        0 0 50px rgba(190, 24, 35, 0.8), 
        0 30px 60px rgba(0,0,0,0.9);     
      
      border-radius: 20px;
      padding: 40px;
      margin: -60px 0; 
      max-height: 90vh;
      overflow-y: auto;
    }

    /* Scrollbar minimalista */
    .form-container::-webkit-scrollbar { width: 6px; }
    .form-container::-webkit-scrollbar-track { background: transparent; }
    .form-container::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }

    .form-header { text-align: left; margin-bottom: 30px; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; }
    .form-header h2 { color: #fff; font-family: 'Squada One', sans-serif; font-style: italic; font-weight: normal; font-size: 38px; margin-bottom: 5px; letter-spacing: 1px; }
    .form-header p { color: var(--text-muted); font-size: 14px; }

    /* Estilos internos adaptados a fondo negro */
    .section { padding: 0; background: transparent; border: none; box-shadow: none; margin-bottom: 20px; }
    .section h3 { display: none; }
    .section .hint { font-size: 14px; color: #eeeeee; margin-bottom: 30px; padding: 12px 16px; background: rgba(229, 32, 50, 0.1); border-left: 4px solid var(--secondary); border-radius: 4px; }

    .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
    .col-6 { grid-column: span 6; }
    .col-12 { grid-column: span 12; }

    .field-group { background: transparent; border: none; padding: 0; margin: 0; }
    .field-group-title { display: none; }

    label { font-size: 14px; color: #ffffff; font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; margin-left: 15px; }
    label svg { width: 14px; height: 14px; color: var(--secondary); }
    label .required { color: var(--secondary); }

    /* INPUTS TIPO PÍLDORA ADAPTADOS A FONDO NEGRO */
    input[type="text"], input[type="file"] {
      width: 100%;
      padding: 12px 20px;
      background: var(--input-bg);
      border: 1px solid var(--input-border);
      border-radius: 50px; 
      font-size: 14px;
      color: #fff;
      font-family: 'Roboto Condensed', sans-serif;
      transition: all 0.3s ease;
    }
    input[type="text"]:hover, input[type="file"]:hover { background: rgba(255, 255, 255, 0.08); }
    input[type="text"]:focus, input[type="file"]:focus {
      outline: none; border-color: var(--secondary); background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 0 3px rgba(229, 32, 50, 0.15);
    }

    input[type="file"] { padding: 8px 15px; cursor: pointer; color: var(--text-muted); }
    input[type="file"]::file-selector-button {
      padding: 6px 16px; margin-right: 12px; border: none; border-radius: 50px;
      background: rgba(255, 255, 255, 0.1); color: #fff; font-weight: 600; cursor: pointer;
      transition: all 0.3s; font-family: 'Roboto Condensed', sans-serif;
    }
    input[type="file"]::file-selector-button:hover { background: var(--secondary); }

    .nss-mode { display: flex; gap: 20px; margin-bottom: 20px; padding: 12px 24px; border-radius: 50px; border: 1px solid var(--input-border); background: var(--input-bg); }
    .nss-mode label { margin: 0; color: #fff; font-size: 14px; cursor: pointer; text-transform: none; }
    input[type="radio"] { accent-color: var(--secondary); width: 16px; height: 16px; }

    .muted { font-size: 13px; color: rgba(255, 255, 255, 0.8); font-style: italic; margin-top: 6px; margin-left: 15px; }
    .help-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; margin-left: 15px; padding: 8px 16px; font-size: 13px; color: #fff; background: rgba(229, 32, 50, 0.2); border: 1px solid var(--secondary); border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
    .help-link:hover { background: var(--secondary); color: #fff; box-shadow: 0 0 10px rgba(229, 32, 50, 0.5); transform: translateY(-2px); }

    /* BOTONES */
    .nav-buttons { display: flex; justify-content: flex-end; gap: 20px; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--glass-border); }
    button {
      padding: 15px 30px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: #fff; border: none; border-radius: 50px; font-size: 15px; font-weight: 600;
      font-family: 'Roboto Condensed', sans-serif; cursor: pointer; transition: all 0.3s;
      box-shadow: 0 5px 15px rgba(190, 24, 35, 0.3);
    }
    button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(190, 24, 35, 0.4); }
    button[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

    /* BOTÓN SECUNDARIO ADAPTADO A FONDO NEGRO */
    .btn-secondary { background: rgba(255, 255, 255, 0.05) !important; color: #fff !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; box-shadow: none !important; opacity: 0.8; }
    .btn-secondary:hover { background: rgba(255, 255, 255, 0.1) !important; border-color: rgba(255, 255, 255, 0.2) !important; opacity: 1; }

    #err { color: #fff; background: rgba(190, 24, 35, 0.2); padding: 12px 24px; border-radius: 50px; margin-top: 20px; display: none; font-size: 14px; text-align: center; border: 1px solid var(--primary); }
    input.invalid { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(190, 24, 35, 0.2) !important; }

    .step { display: none; animation: fadeIn 0.4s ease-in-out; }
    .step.active { display: block; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .main-wrapper { flex-direction: column; padding: 20px; height: auto; border-radius: 20px; }
      .left-panel { flex: none; border-right: none; border-bottom: 1px solid var(--glass-border); padding: 20px; width: 100%; }
      .logo { margin: 0 auto; }
      .right-panel { flex-direction: column; padding: 20px 0; gap: 20px; }
      .progress-container { width: 100%; position: static; }
      .progress-bar { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }
      .progress-step { flex-direction: row; gap: 10px; }
      .progress-line { width: 30px; height: 2px; margin: 0; }
      .form-container { margin: 0; padding: 30px 20px; width: 100%; max-height: none; }
      .col-6 { grid-column: span 12; }
      .nav-buttons { flex-direction: column; }
      button { width: 100%; }
    }

    /* MOBILE (< 600px) */
    @media (max-width: 600px) {
      body { padding: 15px 10px; }
      .left-content h1 { font-size: 28px; }
      .left-content .subtitle { font-size: 14px; margin-bottom: 15px; }
      .form-header h2 { font-size: 28px; }
      .security-badge h3 { font-size: 18px; }
      .form-container { padding: 20px 15px; }
      .progress-dot { width: 28px; height: 28px; font-size: 12px; }
      label { margin-left: 5px; }
      input[type="text"], input[type="file"] { padding: 10px 15px; }
      .nss-mode { flex-direction: column; gap: 10px; padding: 12px 15px; }
    }







/* ===== Pantalla inicial siguiendo patrón del formulario ===== */
body.pre-registration {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 20px;
}

body.pre-registration .main-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  min-height: 560px;
  align-items: center;
}

body.pre-registration .left-panel {
  display: flex;
  min-height: 500px;
}

body.pre-registration .left-panel .logo-container {
  display: block;
}

body.pre-registration .right-panel {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.pre-registration .progress-container {
  display: none;
}

body.pre-registration .form-container {
  width: min(620px, 100%);
  margin: 0;
  padding: 42px;
  border-radius: 22px;
}

body.pre-registration .form-header,
body.pre-registration #document-form,
body.pre-registration #ai-review-screen {
  display: none;
}

body.pre-registration #resume-card {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.resume-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  margin-bottom: 14px;
  background: rgba(248, 0, 32, .12);
  color: #ff5a6b;
  border: 1px solid rgba(248, 0, 32, .25);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}

body.pre-registration #resume-card h3 {
  font-family: 'Squada One', sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: .95;
  letter-spacing: 1px;
  margin: 0 0 10px;
  color: #ffffff;
}

body.pre-registration #resume-card .resume-intro {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 18px;
  max-width: 420px;
}

.resume-trust-note {
  display: grid;
  gap: 3px;
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 15px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
}

.resume-trust-note strong {
  color: #ffffff;
  font-size: 14px;
}

.resume-trust-note span {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.35;
}

body.pre-registration #resume-card h4 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

body.pre-registration #resume-card h4 + p,
body.pre-registration #resume-card > p:not(.resume-intro) {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 16px;
}

body.pre-registration .resume-actions-row {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

body.pre-registration .btn-outline-soft {
  min-height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.14);
}

body.pre-registration .btn-outline-soft:hover {
  background: rgba(248,0,32,.18);
  border-color: rgba(248,0,32,.35);
}

body.pre-registration .resume-box {
  margin-top: 16px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  body.pre-registration .main-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  body.pre-registration .left-panel {
    min-height: auto;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--glass-border);
  }

  body.pre-registration .right-panel {
    min-height: auto;
    width: 100%;
  }

  body.pre-registration .form-container {
    width: 100%;
    padding: 30px;
  }
}

@media (max-width: 640px) {
  body.pre-registration {
    padding: 24px 12px;
  }

  body.pre-registration .left-panel {
    padding: 28px;
  }

  body.pre-registration .form-container {
    padding: 26px 22px;
  }

  body.pre-registration .resume-actions-row,
  .resume-inline {
    grid-template-columns: 1fr;
  }

  body.pre-registration #resume-card h3 {
    font-size: 40px;
  }
}



/* ===== Logo SHIP en pantalla inicial ===== */
body.pre-registration .resume-card-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 22px;
}

body.pre-registration .resume-card-logo img {
  display: block;
  width: 136px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(248, 0, 32, .22));
}

body.pre-registration .resume-kicker {
  margin-bottom: 16px;
}

body.pre-registration #resume-card h3 {
  margin-top: 0;
}

@media (max-width: 640px) {
  body.pre-registration .resume-card-logo {
    margin-bottom: 18px;
  }

  body.pre-registration .resume-card-logo img {
    width: 112px;
  }
}



/* ===== Validación parcial por paso ===== */
.progress-step.completed .progress-dot {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: #ffffff !important;
}

.progress-step.completed span::after {
  content: " validado";
  color: #10b981;
  font-size: 10px;
  margin-left: 4px;
  font-weight: 900;
}



/* ===== Selector de tipo de vacante ===== */
.vacancy-box {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.10);
}

.vacancy-box.active {
  display: block;
}

.vacancy-title {
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 10px;
}

.vacancy-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.vacancy-option {
  text-align: left;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  transition: .18s ease;
}

.vacancy-option:hover,
.vacancy-option.active {
  border-color: rgba(248,0,32,.60);
  background: rgba(248,0,32,.18);
}

.vacancy-option strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.vacancy-option span {
  display: block;
  color: rgba(255,255,255,.70);
  font-size: 12px;
  line-height: 1.35;
}

.vacancy-rule-note {
  margin-top: 12px;
  margin-bottom: 14px;
}



/* ===== Snackbar profesional para validación parcial ===== */
.section-validation-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  min-width: min(420px, calc(100vw - 32px));
  max-width: min(460px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(21, 21, 24, .96), rgba(38, 38, 42, .94));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 22px 60px rgba(0,0,0,.45),
    0 0 28px rgba(248,0,32,.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(24px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.section-validation-toast.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(248,0,32,.16);
  border: 1px solid rgba(248,0,32,.32);
  color: #ff3344;
  font-weight: 900;
  font-size: 18px;
}

.section-toast-content {
  min-width: 0;
}

.section-toast-content strong {
  display: block;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 3px;
}

.section-toast-content span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,.72);
}

.section-toast-spinner {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.20);
  border-top-color: #ff3344;
  animation: sectionToastSpin .75s linear infinite;
}

.section-validation-toast.success {
  border-color: rgba(16,185,129,.34);
  box-shadow:
    0 22px 60px rgba(0,0,0,.42),
    0 0 28px rgba(16,185,129,.18);
}

.section-validation-toast.success .section-toast-icon {
  background: rgba(16,185,129,.18);
  border-color: rgba(16,185,129,.38);
  color: #34d399;
}

.section-validation-toast.warning {
  border-color: rgba(245,158,11,.34);
  box-shadow:
    0 22px 60px rgba(0,0,0,.42),
    0 0 28px rgba(245,158,11,.16);
}

.section-validation-toast.warning .section-toast-icon {
  background: rgba(245,158,11,.18);
  border-color: rgba(245,158,11,.38);
  color: #fbbf24;
}

.section-validation-toast.error {
  border-color: rgba(248,0,32,.42);
}

.section-validation-toast.error .section-toast-icon {
  background: rgba(248,0,32,.18);
  border-color: rgba(248,0,32,.38);
  color: #ff3344;
}

@keyframes sectionToastSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .section-validation-toast {
    right: 16px;
    left: 16px;
    bottom: 16px;
    min-width: 0;
    max-width: none;
  }
}



/* ===== Progreso: paso validando en segundo plano ===== */
.progress-step.validating .progress-dot {
  color: transparent !important;
  border-color: rgba(248,0,32,.70) !important;
  background: rgba(248,0,32,.16) !important;
}

.progress-step.validating span::after {
  content: " validando";
  color: #ff6b7b;
  font-size: 10px;
  margin-left: 4px;
  font-weight: 900;
}

.progress-dot-spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: #ffffff;
  display: inline-block;
  animation: sectionToastSpin .75s linear infinite;
}



/* ===== Resumen y revalidación dirigida ===== */
.review-actions #review-revalidate-btn {
  min-width: 210px;
}

.file-status.is-selected small {
  color: rgba(255,255,255,.66);
}



/* ===== Omitir pasos no aplicables por tipo de vacante ===== */
body.skip-vehicle-step .section.step[data-step="3"],
.section.step.step-not-applicable {
  display: none !important;
}

.progress-bar.skip-vehicle-step > :nth-child(4),
.progress-bar.skip-vehicle-step > :nth-child(5) {
  display: none !important;
}

.progress-step.not-applicable {
  opacity: .45;
}

.progress-step.not-applicable span::after {
  content: " no aplica";
  color: rgba(255,255,255,.45);
  font-size: 10px;
  margin-left: 4px;
  font-weight: 900;
}



/* ===== Ocultar campos no obligatorios por vacante ===== */
.field-not-applicable {
  display: none !important;
}

body.skip-vehicle-step .progress-bar > :nth-child(4),
body.skip-vehicle-step .progress-bar > :nth-child(5),
body.skip-vehicle-step .progress-bar > :nth-child(6),
.progress-bar.skip-vehicle-step > :nth-child(4),
.progress-bar.skip-vehicle-step > :nth-child(5),
.progress-bar.skip-vehicle-step > :nth-child(6) {
  display: none !important;
}

body.skip-vehicle-step .progress-step[data-step="3"] {
  display: none !important;
}



/* ===== Progreso renumerado cuando Vehículo no aplica ===== */
/* Mantiene la línea entre Documentos y Referencias, oculta sólo el paso Vehículo y la línea posterior. */
body.skip-vehicle-step .progress-bar > :nth-child(4),
.progress-bar.skip-vehicle-step > :nth-child(4) {
  display: block !important;
}

body.skip-vehicle-step .progress-bar > :nth-child(5),
body.skip-vehicle-step .progress-bar > :nth-child(6),
.progress-bar.skip-vehicle-step > :nth-child(5),
.progress-bar.skip-vehicle-step > :nth-child(6) {
  display: none !important;
}

body.skip-vehicle-step .progress-step[data-step="4"] .progress-dot,
.progress-bar.skip-vehicle-step .progress-step[data-step="4"] .progress-dot {
  font-variant-numeric: tabular-nums;
}

.progress-step.visually-renumbered span::after {
  content: "";
}



/* ===== Acción: comprimir y validar archivo pesado ===== */
.review-item-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.review-compress-btn {
  border: 1px solid rgba(245, 158, 11, .55);
  background: rgba(245, 158, 11, .12);
  color: #fbbf24;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.review-compress-btn:hover {
  background: rgba(245, 158, 11, .22);
  border-color: rgba(245, 158, 11, .75);
}

@media (max-width: 720px) {
  .review-item-actions {
    align-items: stretch;
  }
}



/* ===== UX archivo pesado cargado ===== */
.review-item.warning[data-field] .review-item-file {
  word-break: break-word;
}

.review-item.warning .review-compress-btn + .review-replace-btn {
  margin-top: 0;
}
