/* =====================================================================
 * SISTEMA DESIGN: ATIVO DIGITAL (HOLDING)
 * ===================================================================== */

:root {
  /* Cores Principais */
  --ad-orange-primary: #FF5A00;
  --ad-black-secondary: #161618;
  --ad-gray-tertiary: #8E8E93;

  /* Cores de Apoio */
  --ad-blue-support: #252A61;
  --ad-yellow-support: #F0B829;
  --ad-cyan-support: #116967;

  /* Tons Neutros Base */
  --ad-gray-dark: #222222;
  --ad-gray-light: #A1A1A1;
  --ad-white: #FFFFFF;
  --ad-bg-offwhite: #F8FAFC;

  /* Semântica */
  --bg-page: var(--ad-white);
  --bg-surface: var(--ad-bg-offwhite);
  --text-primary: var(--ad-gray-dark);
  --text-muted: var(--ad-gray-light);
  --border-color: #E2E8F0;

  /* Destaques e Ações */
  --accent-action: var(--ad-orange-primary);
  --accent-growth: var(--ad-yellow-support);
  --accent-trust: var(--ad-black-secondary);

  /* Tipografia (Hostinger-friendly: sem fontes locais) */
  --font-institucional: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-titulos: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
}

