@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap");

:root {
  --font-base: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-cta: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  /* Texto */
  --exec-navy: #1f2937;
  --exec-navy-mid: #374151;
  /* Marca / chrome (Noturno Âmbar) */
  --exec-brand-navy: #151922;
  --exec-brand-navy-mid: #1E2430;
  --exec-brand-navy-deep: #0F1319;
  /* Alt 1 — Noturno Âmbar */
  --pap-bg-deep: #0A0C10;
  --pap-surface: #151922;
  --exec-blue: #F59E0B;
  --exec-blue-deep: #D97706;
  --exec-blue-bright: #FBBF24;
  --exec-link: #FBBF24;
  --exec-link-muted: #FCD34D;
  --exec-success: #22C55E;
  --pap-muted: #9AA3B2;
  --pap-white: #F5F7FA;
  /* Superfícies neutras */
  --exec-border: #e2e8f0;
  --exec-border-strong: #cbd5e1;
  --exec-surface: #f8fafc;
  --exec-surface-elevated: #ffffff;
  --exec-radius-sm: 10px;
  --exec-radius-md: 14px;
  --exec-radius-lg: 18px;
  --exec-shadow: 0 4px 22px rgba(15, 23, 42, 0.07);
  --exec-shadow-hover: 0 12px 40px rgba(15, 23, 42, 0.12);
  font-family: var(--font-base);
  line-height: 1.5;
  font-weight: 300;
  color: var(--exec-navy-mid);
  background-color: var(--exec-surface);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--exec-surface);
  color: var(--exec-navy-mid);
  font-weight: 300;
}

/* Modo escuro global — variáveis e body (complementa .app-theme-dark) */
html.theme-dark {
  color-scheme: dark;
  --exec-navy: #F5F7FA;
  --exec-navy-mid: #9AA3B2;
  --exec-border: #2A3140;
  --exec-border-strong: #3A4354;
  --exec-surface: #0A0C10;
  --exec-surface-elevated: #151922;
  --exec-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
  --exec-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.45);
}

html.theme-dark body {
  background-color: #0A0C10;
  color: #F5F7FA;
}
