/* ===============================
   TALENT HUB - DESIGN SYSTEM
=============================== */

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

:root {
  /* Brand Colors */
  --primary: #C55B11;     /* Naranja Terracota */
  --accent1: #D32273;     /* Fucsia */
  --accent2: #4A4FA3;     /* Azul violáceo */
  --accent3: #F2C94C;     /* Dorado */
  --base: #FFFFFF;       /* Blanco */

  /* Neutral */
  --text-dark: #1f2933;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg-soft: #f8fafc;

  --radius: 14px;
}

/* Reset tipografía */
body {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  background: var(--bg-soft);
  color: var(--text-dark);
}

/*-----------------*/
:root {
  --primary: #2f3136;
  --secondary: #eaf2fb;
  --text: #1f2933;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Inter, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1f2933;
}


a {
  color: var(--primary);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
  color: #111827;
}

h1 {
  font-size: 40px;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #374151;
}


.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* espacio mínimo, sensación de continuidad */
  line-height: 1.4;
}

.checkbox-inline input {
  margin: 0;
}