/* Base: variables, reset y utilidades globales */

:root {
  --navy: #003b95;
  --navy-deep: #001d47;
  --navy-ink: #001133;
  --accent: #febb02;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #1f2937;
  --muted: #667085;
  --border: #d7e2f1;
  --shadow: 0 1px 4px rgba(0, 31, 84, 0.04);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(254, 187, 2, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.hidden {
  display: none !important;
}

.route-hidden {
  display: none !important;
}
