@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy: #091e36;
  --navy2: #051324;
  --navy-light: #133355;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --teal-glow: rgba(20, 184, 166, 0.18);
  --cyan: #0284c7;
  --cyan-light: #38bdf8;
  --gold: #d97706;
  --gold-light: #fbbf24;
  --gold-glow: rgba(251, 191, 36, 0.22);
  --ink: #0f172a;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --soft: #f8fafc;
  --soft-alt: #f1f5f9;
  --card-bg: #ffffff;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --white: #ffffff;
  --success: #10b981;
  --success-bg: #ecfdf5;
  --danger: #ef4444;
  --danger-bg: #fef2f2;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 4px rgba(9, 30, 54, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(9, 30, 54, 0.08), 0 8px 10px -6px rgba(9, 30, 54, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(9, 30, 54, 0.12), 0 10px 15px -8px rgba(9, 30, 54, 0.06);
  --shadow-glow: 0 0 35px rgba(14, 165, 233, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background-color: #fcfdfe;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand b, .eyebrow, .btn, .stat-value {
  font-family: 'Outfit', 'Inter', sans-serif;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--teal);
}

.wrap {
  width: min(1220px, 92%);
  margin: auto;
}

.narrow {
  width: min(800px, 92%);
  margin: auto;
}

/* Header & Navigation */
.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease;
}

.top:hover {
  box-shadow: 0 4px 20px rgba(9, 30, 54, 0.05);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand b {
  font-size: 19px;
  letter-spacing: -0.5px;
  color: var(--navy);
}

.brand small {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--teal);
  font-weight: 800;
}

.mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-light), var(--cyan), var(--navy));
  color: white;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
  transition: transform 0.3s ease;
}

.brand:hover .mark {
  transform: rotate(5deg) scale(1.05);
}

.mark.big {
  width: 76px;
  height: 76px;
  font-size: 28px;
  border-radius: 20px;
  margin: auto;
}

.nav nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav nav a:hover {
  background: var(--soft-alt);
  color: var(--teal);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.role-tag {
  background: var(--teal-glow);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: linear-gradient(135deg, var(--teal), var(--cyan), var(--navy));
  color: #fff !important;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(13, 148, 136, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.35);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0);
}

.btn.small {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 9px;
}

.btn.ghost {
  background: white;
  color: var(--navy) !important;
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.btn.ghost:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
  background: var(--soft);
  box-shadow: var(--shadow-md);
}

.btn.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.28);
}

.btn.gold:hover {
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.38);
}

.btn.danger {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.25);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(20, 184, 166, 0.12) 0%, transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(2, 132, 199, 0.08) 0%, transparent 40%),
              linear-gradient(170deg, #f9fbfd 0%, #f0f7f6 100%);
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  background: var(--teal-glow);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(20, 184, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.05;
  margin: 10px 0 20px;
  color: var(--navy2);
  letter-spacing: -1.5px;
  font-weight: 900;
}

.hero h1 em {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.hero p {
  font-size: 18.5px;
  line-height: 1.7;
  color: #475569;
  max-width: 680px;
}

.actions {
  display: flex;
  gap: 14px;
  margin: 30px 0;
  flex-wrap: wrap;
}

/* Live Dynamic Countdown */
.countdown-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-digits {
  display: flex;
  gap: 10px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  min-width: 58px;
  box-shadow: 0 4px 12px rgba(9, 30, 54, 0.15);
}

.countdown-item strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}

.countdown-item span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-top: 2px;
}

/* Prize & Podium Showcase */
.prize {
  position: relative;
  background: linear-gradient(145deg, #091e36, #051324);
  color: white;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(9, 30, 54, 0.4), var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.prize::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.prize small {
  font-size: 11.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan-light);
  font-weight: 800;
}

.prize strong {
  display: block;
  font-size: clamp(40px, 4.5vw, 54px);
  margin: 8px 0 0;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prize > span {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 2px;
}

.podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.podium-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 8px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.podium-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.podium-card.first {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.1);
  transform: scale(1.05);
}

.podium-card.first:hover {
  transform: scale(1.05) translateY(-4px);
}

.podium-card b {
  display: block;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 4px;
}

.podium-card.first b { color: #ffd86a; }
.podium-card.second b { color: #e2e8f0; }
.podium-card.third b { color: #f97316; }

.podium-card div {
  font-size: 15px;
  font-weight: 700;
}

.podium-card small {
  font-size: 10px;
  color: #cbd5e1;
  display: block;
}

/* Sections */
.section {
  padding: 85px 0;
}

.section.soft {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  color: var(--navy2);
  font-size: clamp(28px, 3.5vw, 42px);
  margin: 10px 0;
  letter-spacing: -1px;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

/* Cards */
.cards {
  display: grid;
  gap: 24px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
  background: var(--teal-glow);
  color: var(--teal);
}

.card h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  color: #475569;
  line-height: 1.65;
  font-size: 15px;
}

/* Interactive Area Explorer */
.areas-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.area-tab {
  border: 1.5px solid var(--line);
  background: white;
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.area-tab:hover {
  border-color: var(--teal);
  background: var(--soft);
}

.area-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.area-content-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Steps Section */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-num {
  font-size: 36px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Timeline */
.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 30px;
}

.timeline-node {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--line);
  transition: all 0.3s ease;
}

.timeline-node.active {
  border-top-color: var(--teal);
  box-shadow: var(--shadow-md);
  background: #f0fdfa;
}

.timeline-node b {
  color: var(--navy);
  font-size: 18px;
  display: block;
}

.timeline-node span {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 6px;
  display: block;
}

.timeline-badge {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 8px;
}

/* Interactive Status Tracker on Index */
.tracker-box {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}

.tracker-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tracker-search {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.tracker-search input {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  color: var(--ink);
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 12px;
}

/* Interactive Rubric Simulator */
.rubric-simulator {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.rubric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.rubric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: var(--soft);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.rubric-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.rubric-slider {
  width: 100%;
  accent-color: var(--teal);
  cursor: pointer;
}

.rubric-total-card {
  background: linear-gradient(145deg, var(--navy), var(--navy2));
  color: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rubric-score-display {
  font-size: 64px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin: 16px 0 8px;
  font-family: 'Outfit', sans-serif;
}

/* FAQ Accordion */
.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
}

.faq-question:hover {
  background: var(--soft);
}

.faq-icon {
  font-size: 18px;
  color: var(--teal);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Form Styles & Stepper Wizard */
.form-page {
  padding-top: 40px;
}

/* Contenedor Procesos con Scroll */
.contenedor-procesos {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 10px 8px 18px;
  margin-bottom: 30px;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) #e2e8f0;
}

.contenedor-procesos::-webkit-scrollbar {
  height: 6px;
}

.contenedor-procesos::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.contenedor-procesos::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 10px;
}

.contenedor-procesos::-webkit-scrollbar-thumb:hover {
  background: var(--teal2);
}

.stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  min-width: 760px;
  padding: 0 10px;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--line);
  z-index: 1;
}

.stepper-progress {
  position: absolute;
  top: 22px;
  left: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #059669);
  z-index: 2;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-indicator {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: transparent;
  padding: 0 4px;
  transition: transform 0.2s ease;
  user-select: none;
}

.step-indicator:hover {
  transform: translateY(-2px);
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.step-indicator.active .step-circle {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
  box-shadow: 0 0 0 6px var(--teal-glow);
}

.step-indicator.done .step-circle {
  border-color: #059669;
  background: #ecfdf5;
  color: #059669;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.15);
}

.step-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.step-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.step-indicator.active .step-label {
  color: var(--navy);
  font-weight: 800;
}

.step-indicator.done .step-label {
  color: #065f46;
}

.step-status-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f1f5f9;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}

.step-status-tag.active {
  background: rgba(13, 148, 136, 0.12);
  color: var(--teal);
  border: 1px solid rgba(13, 148, 136, 0.25);
}

.step-status-tag.finalized {
  background: #d1fae5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.step-status-tag.pending {
  background: #f8fafc;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
}

/* =========================================================
   STAGE CURRENT HUB & DYNAMIC COLOR THEMES
   ========================================================= */
.stage-current-hub {
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  background: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stage-current-hub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--stage-gradient, linear-gradient(90deg, #0284c7, #0d9488));
  transition: background 0.4s ease;
}

.stage-hub-content {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.stage-hub-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
  background: var(--stage-icon-bg, linear-gradient(135deg, #0284c7, #0d9488));
  color: white;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.stage-hub-text {
  flex: 1;
}

.stage-hub-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.stage-hub-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--stage-tag-bg, #e0f2fe);
  color: var(--stage-tag-color, #0369a1);
  border: 1px solid var(--stage-tag-border, #bae6fd);
  transition: all 0.3s ease;
}

.stage-hub-progress-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

.stage-hub-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  transition: color 0.3s ease;
}

.stage-hub-desc {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.stage-hub-bar-wrap {
  width: 100%;
  height: 7px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.stage-hub-bar-fill {
  height: 100%;
  background: var(--stage-gradient, linear-gradient(90deg, #0284c7, #0d9488));
  border-radius: 10px;
  transition: width 0.4s ease, background 0.4s ease;
}

.stage-hub-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stage-pill {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.stage-pill:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}

.stage-pill.active {
  background: var(--stage-pill-active-bg, #f0f9ff);
  border-color: var(--stage-pill-active-border, #0284c7);
  box-shadow: 0 4px 12px var(--stage-pill-shadow, rgba(2, 132, 199, 0.12));
}

.stage-pill.done {
  background: #f0fdf4;
  border-color: #86efac;
}

.pill-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.stage-pill.active .pill-dot {
  background: var(--stage-color, #0284c7);
  color: white;
}

.stage-pill.done .pill-dot {
  background: #16a34a;
  color: white;
}

.pill-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.pill-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
}

.stage-pill.active .pill-badge {
  color: var(--stage-color, #0284c7);
  font-weight: 800;
}

.stage-pill.done .pill-badge {
  color: #15803d;
}

/* THEME 1: Azul / Teal (Iniciativa) */
.stage-theme-1 {
  --stage-color: #0284c7;
  --stage-gradient: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  --stage-icon-bg: linear-gradient(135deg, #0284c7, #0d9488);
  --stage-tag-bg: #e0f2fe;
  --stage-tag-color: #0369a1;
  --stage-tag-border: #bae6fd;
  --stage-pill-active-bg: #f0f9ff;
  --stage-pill-active-border: #0284c7;
  --stage-pill-shadow: rgba(2, 132, 199, 0.18);
  border-color: rgba(2, 132, 199, 0.25);
  box-shadow: 0 10px 28px -6px rgba(2, 132, 199, 0.12);
}

/* THEME 2: Índigo / Púrpura (Equipo) */
.stage-theme-2 {
  --stage-color: #6366f1;
  --stage-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --stage-icon-bg: linear-gradient(135deg, #6366f1, #8b5cf6);
  --stage-tag-bg: #ede9fe;
  --stage-tag-color: #5b21b6;
  --stage-tag-border: #ddd6fe;
  --stage-pill-active-bg: #f5f3ff;
  --stage-pill-active-border: #6366f1;
  --stage-pill-shadow: rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 10px 28px -6px rgba(99, 102, 241, 0.12);
}

/* THEME 3: Naranja / Ámbar (Documentación) */
.stage-theme-3 {
  --stage-color: #ea580c;
  --stage-gradient: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  --stage-icon-bg: linear-gradient(135deg, #ea580c, #d97706);
  --stage-tag-bg: #ffedd5;
  --stage-tag-color: #9a3412;
  --stage-tag-border: #fed7aa;
  --stage-pill-active-bg: #fff7ed;
  --stage-pill-active-border: #ea580c;
  --stage-pill-shadow: rgba(234, 88, 12, 0.18);
  border-color: rgba(234, 88, 12, 0.25);
  box-shadow: 0 10px 28px -6px rgba(234, 88, 12, 0.12);
}

/* THEME 4: Esmeralda / Verde Éxito (Radicación) */
.stage-theme-4 {
  --stage-color: #059669;
  --stage-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --stage-icon-bg: linear-gradient(135deg, #059669, #10b981);
  --stage-tag-bg: #d1fae5;
  --stage-tag-color: #065f46;
  --stage-tag-border: #a7f3d0;
  --stage-pill-active-bg: #f0fdf4;
  --stage-pill-active-border: #059669;
  --stage-pill-shadow: rgba(5, 150, 105, 0.18);
  border-color: rgba(5, 150, 105, 0.25);
  box-shadow: 0 10px 28px -6px rgba(5, 150, 105, 0.14);
}

.btn-stage-action {
  background: var(--stage-gradient, var(--teal));
  color: white;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-stage-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  filter: brightness(1.06);
}

.step-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.step-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
}

.step-card-badge.done {
  background: #d1fae5;
  color: #047857;
}

/* =========================================================
   ENHANCED MULTI-STEP WIZARD UI & SUMMARY COMPONENTS
   ========================================================= */
.autosave-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}

.summary-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 16px;
  transition: all 0.25s ease;
}

.summary-box:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.summary-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e2e8f0;
}

.summary-box-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-edit-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: transparent;
  border: 1px solid rgba(13, 148, 136, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.summary-edit-btn:hover {
  background: var(--teal);
  color: white;
}

.summary-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 14px;
  font-size: 14px;
  line-height: 1.5;
}

.summary-label {
  color: var(--muted);
  font-weight: 600;
}

.summary-val {
  color: #1e293b;
  font-weight: 500;
  word-break: break-word;
}

.summary-files-list {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

.summary-file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background: white;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.summary-file-item.done {
  border-color: #86efac;
  color: #166534;
}

.summary-file-item.missing {
  border-color: #fca5a5;
  color: #991b1b;
}

/* Inline Field Errors */
.input-invalid {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.field-error-msg {
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* Toast Alerts */
.wizard-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.wizard-toast {
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  animation: slideInUp 0.3s ease;
  border-left: 5px solid var(--teal);
}

.wizard-toast.error {
  border-left-color: #ef4444;
}

.wizard-toast.success {
  border-left-color: #10b981;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;

  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.two {
  grid-template-columns: 1fr 1fr;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.full {
  grid-column: 1 / -1;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

input, select, textarea {
  width: 100%;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14.5px;
  background: white;
  color: var(--ink);
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-glow);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.counter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* File Upload Drag & Drop Zones */
.dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  background: var(--soft);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.dropzone:hover, .dropzone.dragover {
  border-color: var(--teal);
  background: #f0fdfa;
}

.dropzone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.dropzone-text {
  pointer-events: none;
}

.dropzone-icon {
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 6px;
}

.file-selected {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--teal);
  font-weight: 700;
}

/* Dynamic Member Rows */
.member-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 14px;
}

.member-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  font-weight: 500;
  line-height: 1.5;
  color: #334155;
}

.check input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--teal);
}

/* Alerts & Notifications */
.alert {
  width: min(1220px, 92%);
  margin: 16px auto;
  padding: 14px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14.5px;
}

.alert.error {
  background: var(--danger-bg);
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert.success {
  background: var(--success-bg);
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert.info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* Receipts & Success */
.success-card {
  text-align: center;
  padding: 50px 30px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--success-bg);
  color: var(--success);
  font-size: 34px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.receipt {
  background: var(--soft);
  border: 1.5px dashed var(--line-strong);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 28px 0;
  text-align: left;
}

.receipt strong {
  font-size: 28px;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
}

/* Admin Dashboard, Evaluations & Ranking */
.admin-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-title h1 {
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--navy2);
  margin: 4px 0 0;
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0 34px;
}

.stat-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
}

.stat-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-card .stat-value {
  display: block;
  color: var(--navy);
  font-size: 38px;
  font-weight: 900;
  margin-top: 6px;
  line-height: 1.1;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

th {
  color: #475569;
  background: #f8fafc;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-top: 1px solid var(--line);
}

tr:hover td {
  background: #f8fafc;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 5px 12px;
  background: #f1f5f9;
  color: #475569;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.status-radicada { background: #e0f2fe; color: #0369a1; }
.status-habilitada { background: #e8f7ef; color: #166534; }
.status-finalista { background: #fef3c7; color: #92400e; }
.status-ganadora { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.status-no_habilitada, .status-descalificada { background: var(--danger-bg); color: #991b1b; }
.status-subsanacion { background: var(--warning-bg); color: #b45309; }
.status-evaluacion { background: #f3e8ff; color: #6b21a8; }

/* Podium in Leaderboard / Ranking */
.ranking-podium {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  margin: 30px 0 40px;
  align-items: flex-end;
}

.podium-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.podium-box.rank-1 {
  border-color: #fde68a;
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 100%);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
  transform: translateY(-10px);
}

.podium-box.rank-2 {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.podium-box.rank-3 {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.podium-crown {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: -50px auto 14px;
  box-shadow: var(--shadow-md);
}

.podium-box.rank-1 .podium-crown { background: #fef3c7; color: #d97706; border: 2px solid #f59e0b; }
.podium-box.rank-2 .podium-crown { background: #f1f5f9; color: #475569; border: 2px solid #94a3b8; }
.podium-box.rank-3 .podium-crown { background: #ffedd5; color: #c2410c; border: 2px solid #ea580c; }

.podium-score {
  font-size: 34px;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  margin: 10px 0;
}

.podium-prize {
  display: inline-block;
  background: var(--gold-glow);
  color: #b45309;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Score Progress Meter */
.score-meter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.score-bar-wrap {
  flex: 1;
  height: 9px;
  background: var(--soft-alt);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.score-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
}

.score-bar-fill.high { background: linear-gradient(90deg, #10b981, #059669); }
.score-bar-fill.mid { background: linear-gradient(90deg, #f59e0b, #d97706); }
.score-bar-fill.low { background: linear-gradient(90deg, #ef4444, #dc2626); }

/* Split View for Evaluation */
.split-eval {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: 100px;
}

.rubric-eval-card {
  background: white;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.rubric-criterion {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 14px;
  transition: all 0.2s ease;
}

.rubric-criterion:focus-within, .rubric-criterion:hover {
  background: #f0fdfa;
  border-color: var(--teal-light);
}

.criterion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.criterion-header b {
  color: var(--navy);
  font-size: 14.5px;
}

.criterion-header span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.criterion-slider-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.criterion-slider-row input[type="range"] {
  flex: 1;
  padding: 0;
  accent-color: var(--teal);
  height: 6px;
}

.criterion-slider-row input[type="number"] {
  width: 75px;
  padding: 6px 10px;
  text-align: center;
  font-weight: 800;
  font-size: 15px;
}

/* History Cards */
.eval-history-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}

.eval-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13.5px;
}

/* Footer */
footer {
  background: var(--navy2);
  color: #cbd5e1;
  padding: 50px 0 35px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 35px;
}

footer h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

footer a {
  color: #94a3b8;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

footer a:hover {
  color: var(--teal-light);
}

footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
}

/* Print Styles for Official Acta de Resultados */
@media print {
  .top, footer, .btn, .filters, .actions, .no-print {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
  .card, .wrap {
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .print-header {
    display: block !important;
    margin-bottom: 30px;
    text-align: center;
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .split-eval, .rubric-grid, .area-content-box, .tracker-inner {
    grid-template-columns: 1fr;
  }
  .sticky-panel {
    position: static;
  }
  .steps, .stats, .cards.four, .timeline-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .ranking-podium {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .podium-box.rank-1 {
    transform: none;
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav nav a:not(.btn) {
    display: none;
  }
  .cards.three, .cards.two, .grid.two, .steps, .stats, .timeline-track, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 50px 0;
  }
  .podium {
    grid-template-columns: 1fr;
  }
  .countdown-digits {
    flex-wrap: wrap;
  }
  .contenedor-procesos .stepper {
    display: flex;
    flex-direction: row;
    min-width: 760px;
    gap: 0;
  }
  .contenedor-procesos .stepper::before, 
  .contenedor-procesos .stepper-progress {
    display: block;
  }
  .stage-hub-pills {
    grid-template-columns: repeat(2, 1fr);
  }
  .stage-hub-content {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .stage-hub-pills {
    grid-template-columns: 1fr;
  }
}


