/* ============================================================================
 * DESIGN TOKENS — ODONTO MASTER · SABANETA (CAPA 1 de 3)
 * ============================================================================
 * Paleta extraída del logo real (cian #10B0D0 · navy #1E408C).
 *   - Brand: navy profundo (tipografía "MASTER" del logo) → confianza clínica
 *   - Accent: cian del isotipo y del texto "ODONTO" → estética, frescura
 * Fuente: análisis de píxeles de logo-completo.png (Brief/assets-cliente)
 * ============================================================================
 */

:root {
  /* ── Color primario: Navy profundo (texto del logo) ────────────────── */
  --brand-50:  #eef3fb;
  --brand-100: #d9e4f6;
  --brand-200: #b3c8ec;
  --brand-300: #86a5de;
  --brand-400: #4f77c8;
  --brand-500: #2c58ae;  /* Primary action */
  --brand-600: #1e408c;  /* Navy exacto del logotipo */
  --brand-700: #1a3572;
  --brand-800: #162c5c;
  --brand-900: #10204a;
  --brand-950: #0d1a3d;

  /* ── Color de acento: Cian del logo (claro y vivo) ─────────────────── */
  --accent-50:  #eefbfe;
  --accent-100: #d0f4fb;
  --accent-200: #a2e8f7;
  --accent-300: #67d9f2;
  --accent-400: #2bc3e8;  /* Vivid accent */
  --accent-500: #10b0d0;  /* Cian exacto del logotipo */
  --accent-600: #0b93b3;
  --accent-700: #0d7690;
  --accent-800: #125d73;
  --accent-900: #14495c;

  /* ── Superficies limpias con tinte azul muy sutil ──────────────────── */
  --surface:       #ffffff;
  --surface-muted: #f3f8fb;
  --surface-soft:  #e5f2f8;
  --surface-card:  #ffffff;

  /* ── Fondo oscuro (para secciones de contraste) ────────────────────── */
  --dark-bg:       #0d1a3d;

  /* ── Texto ──────────────────────────────────────────────────────────── */
  --text:       #14243c;   /* Navy-negro profundo */
  --text-muted: #44566e;
  --text-light: #8ba0b8;

  /* ── Semantic colors ────────────────────────────────────────────────── */
  --success: #16a34a;
  --warning: #f59e0b;
  --danger:  #dc2626;

  /* ── Tipografía ─────────────────────────────────────────────────────── */
  --font-display: 'Fraunces', 'Georgia', serif;      /* Serif moderna premium */
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* ── Radios de borde ────────────────────────────────────────────────── */
  --radius-sm:   0.4375rem;
  --radius-md:   0.625rem;
  --radius-lg:   0.875rem;
  --radius-xl:   1.125rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* ── Sombras Premium (tinte navy) ───────────────────────────────────── */
  --shadow-sm:   0 2px 8px rgba(13, 26, 61, 0.04);
  --shadow-md:   0 8px 24px rgba(13, 26, 61, 0.06);
  --shadow-lg:   0 16px 48px rgba(13, 26, 61, 0.09);
  --shadow-xl:   0 24px 64px rgba(13, 26, 61, 0.13);
  --shadow-2xl:  0 32px 80px rgba(13, 26, 61, 0.16);
  --shadow-glow: 0 12px 40px rgba(44, 88, 174, 0.22);

  /* ── Sombras para botones ────────────────────────────────────────────── */
  --shadow-btn-primary:  0 4px 14px rgba(44, 88, 174, 0.35);
  --shadow-btn-accent:   0 4px 14px rgba(43, 195, 232, 0.35);
  --shadow-btn-whatsapp: 0 4px 14px rgba(37, 211, 102, 0.35);

  /* ── Focus ring accesible ────────────────────────────────────────────── */
  --focus-ring: 0 0 0 3px rgba(44, 88, 174, 0.15);

  /* ── Transiciones ────────────────────────────────────────────────────── */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:   150ms;
  --duration-normal: 300ms;
  --duration-slow:   600ms;

  /* ── Z-index scale ────────────────────────────────────────────────────── */
  --z-below:   -1;
  --z-base:    0;
  --z-content: 10;
  --z-sticky-cta: 50;
  --z-header:  100;
  --z-overlay: 199;
  --z-menu:    200;
  --z-wa-float: 90;
  --z-toast:   300;
}
