/* DESIGN TOKENS — ODONTOLOGÍA ANA MARÍA MARTÍNEZ · MEDELLÍN (CAPA 1 de 3)
 * Paleta extraída de la marca real (IG @odontologia.anamariamartinez):
 * baya/rosa profundo #904848 + coral #c07878 (brand) + durazno #d8a890 (accent).
 * Fase 2: pedir logo oficial en alta y recalibrar si aplica.
 */
:root {
  /* ── Color primario: Baya/rosa coral profundo (estética dental femenina) */
  --brand-50:  #fdf3f4;
  --brand-100: #f8e3e6;
  --brand-200: #efc6cb;
  --brand-300: #e0a0a8;
  --brand-400: #cf7c86;
  --brand-500: #b86068;  /* Primary action */
  --brand-600: #9e4f58;  /* Baya del logo */
  --brand-700: #85414a;
  --brand-800: #6c343c;
  --brand-900: #54282f;
  --brand-950: #3f1e24;

  /* ── Color de acento: Durazno/coral cálido */
  --accent-50:  #fdf5ef;
  --accent-100: #f9e9da;
  --accent-200: #f0d5b8;
  --accent-300: #e4bc96;
  --accent-400: #d8a279;  /* Vivid accent */
  --accent-500: #cc8b62;
  --accent-600: #b8734e;
  --accent-700: #9a5c3d;
  --accent-800: #7d492e;
  --accent-900: #633723;

  /* ── Superficies limpias con tinte cálido muy sutil */
  --surface:       #ffffff;
  --surface-muted: #fbf6f3;
  --surface-soft:  #f7ece9;
  --surface-card:  #ffffff;

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

  /* ── Texto */
  --text:       #2d1c22;   /* Marrón-baya profundo */
  --text-muted: #5c4650;
  --text-light: #9a8b8f;

  /* ── 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 baya) */
  --shadow-sm:   0 2px 8px rgba(63, 30, 36, 0.04);
  --shadow-md:   0 8px 24px rgba(63, 30, 36, 0.06);
  --shadow-lg:   0 16px 48px rgba(63, 30, 36, 0.09);
  --shadow-xl:   0 24px 64px rgba(63, 30, 36, 0.13);
  --shadow-2xl:  0 32px 80px rgba(63, 30, 36, 0.16);
  --shadow-glow: 0 12px 40px rgba(184, 96, 104, 0.22);

  /* ── Sombras para botones */
  --shadow-btn-primary:  0 4px 14px rgba(184, 96, 104, 0.35);
  --shadow-btn-accent:   0 4px 14px rgba(216, 162, 121, 0.35);
  --shadow-btn-whatsapp: 0 4px 14px rgba(37, 211, 102, 0.35);

  /* ── Focus ring accesible */
  --focus-ring: 0 0 0 3px rgba(184, 96, 104, 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;
}
