/* =========================================================
   TALENT MATCH PRO — Sistema de diseño
   Paleta ITmedios + acentos tech (coherente con Operaciones PRO)
   ========================================================= */

#tmp-wrap {
  --tmp-bg:        #070b14;
  --tmp-bg-card:   #0e1526;
  --tmp-bg-card-2: #121a30;
  --tmp-border:    rgba(129, 140, 248, .16);
  --tmp-text:      #eef1fb;
  --tmp-text-dim:  #9aa4c4;
  --tmp-cyan:      #22d3ee;
  --tmp-indigo:    #818cf8;
  --tmp-violet:    #a78bfa;
  --tmp-crimson:   #fb2056;
  --tmp-green:     #82ff1f;
  --tmp-radius:    16px;
  --tmp-font-d:    'Space Grotesk', sans-serif;
  --tmp-font-b:    'Inter', sans-serif;
  --tmp-font-m:    'JetBrains Mono', monospace;

  background: var(--tmp-bg);
  color: var(--tmp-text);
  font-family: var(--tmp-font-b);
  position: relative;
  overflow-x: hidden;
  isolation: isolate;
  padding: 0;
}

#tmp-wrap * { box-sizing: border-box; }

#tmp-wrap h1, #tmp-wrap h2, #tmp-wrap h3, #tmp-wrap h4, #tmp-wrap h5, #tmp-wrap h6 {
  color: var(--tmp-text) !important;
  font-family: var(--tmp-font-d);
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}

#tmp-wrap a { color: inherit; text-decoration: none; }
#tmp-wrap p { color: var(--tmp-text-dim); line-height: 1.6; }

/* =========================================================
   HEADER FIJO
   ========================================================= */
#tmp-wrap #tmp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(7,11,20,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--tmp-border);
  transition: background .2s ease, border-color .2s ease;
}
#tmp-wrap .tmp-header-spacer { height: 68px; }
#tmp-wrap .tmp-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
#tmp-wrap .tmp-logo {
  font-family: var(--tmp-font-d);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
}
#tmp-wrap .tmp-logo-accent {
  background: linear-gradient(90deg, var(--tmp-cyan), var(--tmp-indigo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-left: 5px;
}
#tmp-wrap .tmp-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  color: var(--tmp-text-dim);
}
#tmp-wrap .tmp-nav a:hover { color: var(--tmp-cyan); }
#tmp-wrap .tmp-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
#tmp-wrap .tmp-header-actions .tmp-btn { padding: 9px 18px; font-size: 13.5px; }
#tmp-wrap .tmp-nav-cta-mobile { display: none; }

/* Botón hamburguesa (oculto en desktop) */
#tmp-wrap #tmp-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--tmp-border);
  border-radius: 9px;
  cursor: pointer;
  padding: 0;
}
#tmp-wrap #tmp-nav-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  margin: 0 auto;
  background: var(--tmp-text);
  transition: transform .25s ease, opacity .25s ease;
}
#tmp-wrap #tmp-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#tmp-wrap #tmp-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
#tmp-wrap #tmp-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 860px) {
  #tmp-wrap .tmp-header-actions .tmp-btn.tmp-header-desktop-only { display: none; }
  #tmp-wrap #tmp-nav-toggle { display: flex; }

  #tmp-wrap .tmp-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7,11,20,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--tmp-border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .25s ease;
  }
  #tmp-wrap .tmp-nav.tmp-nav-open {
    max-height: 420px;
    opacity: 1;
  }
  #tmp-wrap .tmp-nav a {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,.05);
    font-size: 15px;
  }
  #tmp-wrap .tmp-nav-cta-mobile { display: block; color: var(--tmp-cyan); }
}

/* ---- Fondo grid animado (decorativo, respeta el patrón anti doble-scroll) ---- */
#tmp-wrap .tmp-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(129,140,248,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129,140,248,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: tmpGridPan 40s linear infinite;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
@keyframes tmpGridPan {
  0%   { background-position: 0 0; }
  100% { background-position: 420px 420px; }
}

#tmp-wrap .tmp-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 380px at 15% 0%, rgba(34,211,238,.14), transparent 60%),
    radial-gradient(600px 380px at 85% 20%, rgba(167,139,250,.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

#tmp-wrap .tmp-section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px;
}

/* ---- Eyebrow tag estilo ITmedios: < LABEL /> ---- */
#tmp-wrap .tmp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tmp-font-m);
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--tmp-cyan);
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.25);
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  animation: tmpEyebrowGlow 3.2s ease-in-out infinite;
}
#tmp-wrap .tmp-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tmp-green);
  box-shadow: 0 0 0 0 rgba(130,255,31,.6);
  animation: tmpEyebrowPulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes tmpEyebrowPulse {
  0%   { box-shadow: 0 0 0 0 rgba(130,255,31,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(130,255,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(130,255,31,0); }
}
@keyframes tmpEyebrowGlow {
  0%, 100% { border-color: rgba(34,211,238,.25); box-shadow: 0 0 0 rgba(34,211,238,0); }
  50%      { border-color: rgba(34,211,238,.55); box-shadow: 0 0 16px rgba(34,211,238,.12); }
}

/* =========================================================
   HERO — con visual de "matching" animado (elemento firma)
   ========================================================= */
#tmp-wrap .tmp-hero {
  position: relative;
  z-index: 1;
  padding: 56px 24px 60px;
  text-align: center;
}
#tmp-wrap .tmp-hero > * {
  opacity: 0;
  animation: tmpFadeUp .7s cubic-bezier(.16,1,.3,1) forwards;
}
#tmp-wrap .tmp-hero > .tmp-eyebrow    { animation-delay: .05s; }
#tmp-wrap .tmp-hero > h1              { animation-delay: .15s; }
#tmp-wrap .tmp-hero > .tmp-sub        { animation-delay: .25s; }
#tmp-wrap .tmp-hero > .tmp-hero-ctas  { animation-delay: .35s; }
#tmp-wrap .tmp-hero > .tmp-match-stage{ animation-delay: .45s; }
#tmp-wrap .tmp-hero > .tmp-stats      { animation-delay: .55s; }
@keyframes tmpFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
#tmp-wrap .tmp-hero h1 {
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.05;
  max-width: 920px;
  margin: 0 auto 18px;
}
#tmp-wrap .tmp-hero h1 .tmp-accent {
  background: linear-gradient(90deg, var(--tmp-cyan), var(--tmp-indigo) 60%, var(--tmp-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#tmp-wrap .tmp-hero .tmp-sub {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 17px;
}
#tmp-wrap .tmp-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Elemento firma: constelación de matching (candidato <-> empresa) */
#tmp-wrap .tmp-match-stage {
  position: relative;
  max-width: 720px;
  height: 220px;
  margin: 0 auto;
}
#tmp-wrap .tmp-match-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--tmp-font-m);
  font-size: 11px;
  color: var(--tmp-text-dim);
}
#tmp-wrap .tmp-match-node .tmp-dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--tmp-cyan);
  border: 1px solid var(--tmp-border);
  background: linear-gradient(145deg, var(--tmp-bg-card-2), var(--tmp-bg-card));
  box-shadow: 0 0 24px rgba(34,211,238,.15);
  animation: tmpFloat 5s ease-in-out infinite;
}
#tmp-wrap .tmp-match-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
#tmp-wrap .tmp-match-svg path {
  stroke: url(#tmpLineGrad);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 6 8;
  animation: tmpDash 3s linear infinite;
  opacity: .7;
}
#tmp-wrap .tmp-match-score {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--tmp-font-m);
  font-size: 13px;
  color: var(--tmp-green);
  background: rgba(7,11,20,.85);
  border: 1px solid rgba(130,255,31,.35);
  padding: 5px 12px;
  border-radius: 999px;
  animation: tmpFloat 5s ease-in-out infinite reverse;
}
@keyframes tmpDash { to { stroke-dashoffset: -140; } }
@keyframes tmpFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Contadores animados */
#tmp-wrap .tmp-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 50px;
}
#tmp-wrap .tmp-stat-num {
  font-family: var(--tmp-font-d);
  font-size: 34px;
  background: linear-gradient(90deg, var(--tmp-cyan), var(--tmp-indigo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
#tmp-wrap .tmp-stat-label {
  font-family: var(--tmp-font-m);
  font-size: 11.5px;
  color: var(--tmp-text-dim);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* =========================================================
   BOTONES
   ========================================================= */
#tmp-wrap .tmp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--tmp-font-b);
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
#tmp-wrap .tmp-btn-primary {
  background: linear-gradient(90deg, var(--tmp-cyan), var(--tmp-indigo));
  color: #061018;
  box-shadow: 0 8px 28px rgba(34,211,238,.25);
}
#tmp-wrap .tmp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(34,211,238,.35); }
#tmp-wrap .tmp-btn-ghost {
  background: rgba(255,255,255,.03);
  border-color: var(--tmp-border);
  color: var(--tmp-text);
}
#tmp-wrap .tmp-btn-ghost:hover { border-color: var(--tmp-cyan); }

/* =========================================================
   CARDS DE RUBRO
   ========================================================= */
#tmp-wrap .tmp-rubros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
/* Grid fijo de 10 fichas: 5 arriba + 5 abajo en desktop, responsivo hacia abajo */
#tmp-wrap .tmp-rubros-grid-8 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1080px) {
  #tmp-wrap .tmp-rubros-grid-8 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  #tmp-wrap .tmp-rubros-grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  #tmp-wrap .tmp-rubros-grid-8 { grid-template-columns: 1fr; }
}
#tmp-wrap .tmp-rubro-card {
  position: relative;
  background: linear-gradient(160deg, var(--tmp-bg-card-2), var(--tmp-bg-card));
  border: 1px solid var(--tmp-border);
  border-radius: var(--tmp-radius);
  padding: 26px 20px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
#tmp-wrap .tmp-rubro-card:hover {
  transform: translateY(-4px);
  border-color: var(--tmp-cyan);
}
#tmp-wrap .tmp-rubro-card .tmp-rubro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 11px;
  margin-bottom: 14px;
  color: var(--tmp-cyan);
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.2);
  transition: transform .3s ease, background .3s ease;
}
#tmp-wrap .tmp-rubro-card:hover .tmp-rubro-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(34,211,238,.16);
}
#tmp-wrap .tmp-rubro-card h4 { font-size: 16.5px; margin-bottom: 6px; }
#tmp-wrap .tmp-rubro-card .tmp-rubro-desc {
  font-size: 13px;
  color: var(--tmp-text-dim);
  line-height: 1.45;
  margin: 0 0 16px;
}
#tmp-wrap .tmp-rubro-card .tmp-rubro-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--tmp-font-m); font-size: 11.5px; color: var(--tmp-cyan);
}
#tmp-wrap .tmp-rubro-card .tmp-rubro-link svg { transition: transform .25s ease; }
#tmp-wrap .tmp-rubro-card:hover .tmp-rubro-link svg { transform: translateX(4px); }

/* =========================================================
   GLASS CARD genérica (planes, formularios, dashboard)
   ========================================================= */
#tmp-wrap .tmp-card {
  background: rgba(14,21,38,.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--tmp-border);
  border-radius: var(--tmp-radius);
  padding: 28px;
}

/* Borde con gradiente animado al hover (usa @property, degrada bien si no soportado) */
@property --tmp-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
#tmp-wrap .tmp-card-glow {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--tmp-bg-card), var(--tmp-bg-card)) padding-box,
    conic-gradient(from var(--tmp-angle), var(--tmp-cyan), var(--tmp-violet), var(--tmp-cyan)) border-box;
  animation: tmpAngle 6s linear infinite paused;
}
#tmp-wrap .tmp-card-glow:hover { animation-play-state: running; }
@keyframes tmpAngle { to { --tmp-angle: 360deg; } }

/* =========================================================
   FILTROS / BUSCADOR
   ========================================================= */
#tmp-wrap .tmp-filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
#tmp-wrap .tmp-filtros select,
#tmp-wrap .tmp-filtros input[type="text"] {
  background: var(--tmp-bg-card);
  border: 1px solid var(--tmp-border);
  color: var(--tmp-text);
  padding: 11px 14px;
  border-radius: 9px;
  font-family: var(--tmp-font-b);
  font-size: 14px;
}

/* =========================================================
   LISTADO VACANTES
   ========================================================= */
#tmp-wrap .tmp-vacante-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--tmp-bg-card);
  border: 1px solid var(--tmp-border);
  border-radius: var(--tmp-radius);
  padding: 22px 24px;
  margin-bottom: 14px;
  transition: border-color .2s ease;
}
#tmp-wrap .tmp-vacante-card:hover { border-color: var(--tmp-indigo); }
#tmp-wrap .tmp-vacante-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
#tmp-wrap .tmp-tag {
  font-family: var(--tmp-font-m);
  font-size: 11px;
  color: var(--tmp-text-dim);
  border: 1px solid var(--tmp-border);
  padding: 4px 10px;
  border-radius: 999px;
}
#tmp-wrap .tmp-tag-rubro { color: var(--tmp-cyan); border-color: rgba(34,211,238,.3); }

/* Barra de score de matching */
#tmp-wrap .tmp-score-bar {
  width: 120px;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
}
#tmp-wrap .tmp-score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--tmp-cyan), var(--tmp-green));
  border-radius: 999px;
  transition: width 1s ease;
}

/* =========================================================
   PLANES
   ========================================================= */
#tmp-wrap .tmp-planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
#tmp-wrap .tmp-plan-card {
  background: var(--tmp-bg-card);
  border: 1px solid var(--tmp-border);
  border-radius: var(--tmp-radius);
  padding: 30px 26px;
  text-align: left;
  position: relative;
}
#tmp-wrap .tmp-plan-card.tmp-plan-destacado {
  border-color: var(--tmp-cyan);
  box-shadow: 0 0 40px rgba(34,211,238,.15);
}
#tmp-wrap .tmp-plan-card.tmp-plan-destacado::before {
  content: 'MÁS ELEGIDO';
  position: absolute; top: -12px; left: 26px;
  font-family: var(--tmp-font-m);
  font-size: 10.5px;
  background: var(--tmp-cyan);
  color: #061018;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .06em;
}
#tmp-wrap .tmp-plan-precio { font-family: var(--tmp-font-d); font-size: 36px; margin: 14px 0 4px; }
#tmp-wrap .tmp-plan-precio small { font-family: var(--tmp-font-b); font-size: 13px; color: var(--tmp-text-dim); }
#tmp-wrap .tmp-plan-features { list-style: none; padding: 0; margin: 20px 0; }
#tmp-wrap .tmp-plan-features li { padding: 7px 0; font-size: 14px; color: var(--tmp-text-dim); border-top: 1px solid rgba(255,255,255,.06); }
#tmp-wrap .tmp-plan-features li:first-child { border-top: none; }

/* =========================================================
   DASHBOARD (empresa / candidato)
   ========================================================= */
#tmp-wrap .tmp-dash-header {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  margin-bottom: 30px;
}
#tmp-wrap .tmp-dash-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}
#tmp-wrap .tmp-kpi { background: var(--tmp-bg-card); border: 1px solid var(--tmp-border); border-radius: 12px; padding: 18px 20px; }
#tmp-wrap .tmp-kpi .tmp-kpi-num { font-family: var(--tmp-font-d); font-size: 26px; }
#tmp-wrap .tmp-kpi .tmp-kpi-label { font-family: var(--tmp-font-m); font-size: 11px; color: var(--tmp-text-dim); text-transform: uppercase; }

#tmp-wrap form.tmp-form { display: flex; flex-direction: column; gap: 16px; }
#tmp-wrap form.tmp-form label { font-size: 13px; color: var(--tmp-text-dim); margin-bottom: 6px; display: block; }
#tmp-wrap form.tmp-form input,
#tmp-wrap form.tmp-form select,
#tmp-wrap form.tmp-form textarea {
  width: 100%;
  background: var(--tmp-bg-card-2);
  border: 1px solid var(--tmp-border);
  color: var(--tmp-text);
  padding: 12px 14px;
  border-radius: 9px;
  font-family: var(--tmp-font-b);
  font-size: 14.5px;
}
#tmp-wrap form.tmp-form textarea { min-height: 120px; resize: vertical; }

#tmp-wrap .tmp-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
#tmp-wrap .tmp-checkbox-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--tmp-bg-card-2);
  border: 1px solid var(--tmp-border);
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--tmp-text-dim);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
#tmp-wrap .tmp-checkbox-item:has(input:checked) {
  border-color: var(--tmp-cyan);
  color: var(--tmp-text);
}
#tmp-wrap .tmp-checkbox-item input[type="checkbox"] {
  width: auto;
  accent-color: var(--tmp-cyan);
  margin: 0;
}
#tmp-wrap .tmp-checkbox-item svg { color: var(--tmp-cyan); flex-shrink: 0; }

#tmp-wrap .tmp-badge-ok { color: var(--tmp-green); font-family: var(--tmp-font-m); font-size: 12px; }
#tmp-wrap .tmp-badge-warn { color: #fbbf24; font-family: var(--tmp-font-m); font-size: 12px; }
#tmp-wrap .tmp-badge-off { color: var(--tmp-crimson); font-family: var(--tmp-font-m); font-size: 12px; }
#tmp-wrap .tmp-notice {
  border: 1px solid var(--tmp-border);
  border-left: 3px solid var(--tmp-cyan);
  background: rgba(34,211,238,.06);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ---- Aparición al hacer scroll (fichas de rubro, tarjetas destacadas) ---- */
#tmp-wrap .tmp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
#tmp-wrap .tmp-reveal.tmp-revealed { opacity: 1; transform: translateY(0); }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(1) { transition-delay: .02s; }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(2) { transition-delay: .08s; }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(3) { transition-delay: .14s; }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(4) { transition-delay: .20s; }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(5) { transition-delay: .26s; }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(6) { transition-delay: .32s; }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(7) { transition-delay: .38s; }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(8) { transition-delay: .44s; }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(9) { transition-delay: .50s; }
#tmp-wrap .tmp-rubros-grid-8 .tmp-reveal:nth-child(10){ transition-delay: .56s; }
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 680px) {
  #tmp-wrap .tmp-section { padding: 46px 18px; }
  #tmp-wrap .tmp-hero { padding: 40px 18px; }
  #tmp-wrap .tmp-match-stage { height: 170px; }
  #tmp-wrap .tmp-stats { gap: 28px; }
  #tmp-wrap .tmp-vacante-card { flex-direction: column; align-items: flex-start; }
}

/* Foco visible para accesibilidad de teclado */
#tmp-wrap a:focus-visible,
#tmp-wrap button:focus-visible,
#tmp-wrap input:focus-visible,
#tmp-wrap select:focus-visible {
  outline: 2px solid var(--tmp-cyan);
  outline-offset: 2px;
}
