/* SCG Hiring — Styles guiados por brand guidelines */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: #061021;
  color: #ffffff;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography brand hierarchy ──────────────────────────────────────────────
   Primary font  : Good Times Regular  → headings / display
   Secondary font: Poppins SemiBold    → body / labels / UI
   ──────────────────────────────────────────────────────────────────────────── */

h1, h2, h3, .font-display-brand {
  font-family: 'Good Times', 'Poppins', system-ui, sans-serif;
  font-weight: 400; /* Good Times is Regular weight */
  letter-spacing: -0.01em;
}

/* Body text uses Poppins SemiBold as per brand spec */
p, label, li, input, select, textarea, button, a {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 500;
}

/* Label caps — matches brand's letter-spaced utility text */
.label-caps {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #738CB4;
}

/* ── Scrollbar ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0B2041; }
::-webkit-scrollbar-thumb { background: #163F82; border-radius: 3px; }

/* ── Reveal on scroll ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Form inputs ─────────────────────────────────────────────────────────── */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(22, 63, 130, 0.30);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23738CB4'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* ── Resume drop zone ────────────────────────────────────────────────────── */
#resume-drop.drag-over {
  border-color: #45659B;
  background: rgba(22, 63, 130, 0.08);
}

/* ── Thin brand divider line ─────────────────────────────────────────────── */
.brand-rule {
  height: 2px;
  width: 40px;
  background: #163F82;
  margin: 0.75rem 0 1.25rem;
}
