/* ============================================================================
 * DESIGN TOKENS — DENT SONRISAS · BELLO + ITAGÜÍ (CAPA 1 de 3)
 * ============================================================================
 * Paleta extraída del logo real (IG @dentsonrisasitagui) y del letrero de la
 * fachada Bello: "DENT" navy #1B2E7A + "SONRISAS" verde #3AA05A + arco de
 * sonrisa. Toldo real de la fachada: azul acero (#6FB5C8).
 *   - Brand: navy del logotipo → confianza clínica
 *   - Accent: verde de "SONRISAS" → salud, sonrisa
 * ============================================================================
 */

:root {
  /* ── Color primario: Navy del logotipo ─────────────────────────────── */
  --brand-50:  #eef1fa;
  --brand-100: #d9e0f3;
  --brand-200: #b4c1e5;
  --brand-300: #889bd4;
  --brand-400: #5670bf;
  --brand-500: #2439b8;  /* Primary action */
  --brand-600: #041590;  /* Navy exacto del logotipo real */
  --brand-700: #03116e;
  --brand-800: #020c4a;
  --brand-900: #020835;
  --brand-950: #01041f;

  /* ── Color de acento: Verde "SONRISAS" ─────────────────────────────── */
  --accent-50:  #effaf2;
  --accent-100: #d4f3e0;
  --accent-200: #abe5c3;
  --accent-300: #77d1a1;
  --accent-400: #0cc2b3;
  --accent-500: #01a698;  /* Teal exacto del logotipo real */
  --accent-600: #01867b;
  --accent-700: #016a62;
  --accent-800: #01524c;
  --accent-900: #01423d;

  /* ── Superficies limpias con tinte azul muy sutil ──────────────────── */
  --surface:       #ffffff;
  --surface-muted: #f2f5fa;
  --surface-soft:  #e6ecf6;
  --surface-card:  #ffffff;

  /* ── Fondo oscuro (para secciones de contraste) ────────────────────── */
  --dark-bg:       #020835;

  /* ── Texto ──────────────────────────────────────────────────────────── */
  --text:       #141c33;
  --text-muted: #465067;
  --text-light: #8f98ad;

  /* ── Semantic colors ────────────────────────────────────────────────── */
  --success: #16a34a;
  --warning: #f59e0b;
  --danger:  #dc2626;

  /* ── Tipografía ─────────────────────────────────────────────────────── */
  --font-display: 'Fraunces', 'Georgia', serif;
  --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(14, 22, 56, 0.04);
  --shadow-md:   0 8px 24px rgba(14, 22, 56, 0.06);
  --shadow-lg:   0 16px 48px rgba(14, 22, 56, 0.09);
  --shadow-xl:   0 24px 64px rgba(14, 22, 56, 0.13);
  --shadow-2xl:  0 32px 80px rgba(14, 22, 56, 0.16);
  --shadow-glow: 0 12px 40px rgba(51, 73, 164, 0.22);

  /* ── Sombras para botones ────────────────────────────────────────────── */
  --shadow-btn-primary:  0 4px 14px rgba(51, 73, 164, 0.35);
  --shadow-btn-accent:   0 4px 14px rgba(58, 160, 90, 0.35);
  --shadow-btn-whatsapp: 0 4px 14px rgba(37, 211, 102, 0.35);

  /* ── Focus ring accesible ────────────────────────────────────────────── */
  --focus-ring: 0 0 0 3px rgba(51, 73, 164, 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;
}
