@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: #0f172a;
  --exec-navy-mid: #1e293b;
  /* Marca / chrome (azul royal) */
  --exec-brand-navy: #4f4b68;
  --exec-brand-navy-mid: #716a9c;
  --exec-brand-navy-deep: #383457;
  /* Paleta 1 — Noturno Premium */
  --pap-bg-deep: #070b14;
  --pap-surface: #111827;
  --exec-blue: #e11d48;
  --exec-blue-deep: #be123c;
  --exec-blue-bright: #fb7185;
  --exec-link: #38bdf8;
  --exec-link-muted: #7dd3fc;
  --exec-success: #10b981;
  /* 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: #f1f5f9;
  --exec-navy-mid: #e2e8f0;
  --exec-border: #334155;
  --exec-border-strong: #475569;
  --exec-surface: #0f172a;
  --exec-surface-elevated: #4f4b68;
  --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: #0f172a;
  color: #e2e8f0;
}
