/*
Theme Name: Smart-R Reclutamiento
Description: Tema clásico convertido desde la aplicación React Vite.
Author: Antigravity
Version: 1.0
Text Domain: smart-r
*/

/* --- Funciones y Tipografia Importada --- */
@import url('https://fonts.loli.net/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #0a0a0f;
  color: #fafafa;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: #5BA3B3;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4A92A2;
}

/* Selection color */
::selection {
  background: rgba(91, 163, 179, 0.3);
  color: white;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid #5BA3B3;
  outline-offset: 2px;
}

/* Gradient text utility */
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover lift effect */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
