/* ===== SLIDER CAPTCHA — Componente reutilizable INYMO ===== */
.pc-captcha-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.captcha-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.captcha-header i {
  font-size: 1.1rem;
  color: #f59e0b;
}
.captcha-header span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
}
.captcha-slider-wrap {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.captcha-track {
  position: relative;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}
.captcha-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(139,198,63,0.15), rgba(139,198,63,0.3));
  border-radius: 24px 0 0 24px;
  transition: none;
  pointer-events: none;
}
.captcha-text {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
  pointer-events: none;
}
.captcha-text i {
  font-size: 1rem;
  animation: captcha-arrow 1.5s ease-in-out infinite;
}
@keyframes captcha-arrow {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(6px); opacity: 1; }
}
.captcha-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #8CC63F, #6ba832);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(140,198,63,0.3);
  transition: box-shadow 0.2s;
}
.captcha-thumb:active { cursor: grabbing; }
.captcha-thumb i {
  font-size: 1.2rem;
  color: #0f172a;
  font-weight: 700;
}
.captcha-thumb:hover {
  box-shadow: 0 4px 16px rgba(140,198,63,0.5);
}
.captcha-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(139,198,63,0.1);
  border: 1px solid rgba(139,198,63,0.3);
  border-radius: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8CC63F;
}
.captcha-success i {
  font-size: 1.3rem;
}
.pc-captcha-box.captcha-done {
  border-color: rgba(139,198,63,0.3);
  background: rgba(139,198,63,0.04);
}
.pc-captcha-box.captcha-error {
  border-color: rgba(239,68,68,0.4);
  background: rgba(239,68,68,0.06);
  animation: captcha-shake 0.5s ease;
}
.captcha-error-msg {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #ef4444;
  font-family: 'Barlow', sans-serif;
}
.pc-captcha-box.captcha-error .captcha-error-msg {
  display: flex;
}
@keyframes captcha-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
