/* DESIGN TOKENS — BOCAX CONSULTORIO ODONTOLÓGICO · MEDELLÍN (CAPA 1 de 3)
 * Paleta extraída del LOGO OFICIAL REAL (facilitado por Jorge, 10-Sep):
 * teal #009090 (primario) + verde lima #60a818 (acento) + gris #606060.
 * Fase 2: recalibrar si la marca oficial cambia.
 */
:root {
  /* ── Color primario: Teal del logo real ─────────────────────────── */
  --brand-50:  #edf7f7;
  --brand-100: #d0eded;
  --brand-200: #a3dbdb;
  --brand-300: #6fc2c2;
  --brand-400: #3aa8a8;
  --brand-500: #129c9c;  /* Hover / primary */
  --brand-600: #009090;  /* Teal del logotipo */
  --brand-700: #007a7a;
  --brand-800: #006363;
  --brand-900: #004d4d;
  --brand-950: #003636;

  /* ── Color de acento: Verde lima del logo real ──────────────────── */
  --accent-50:  #f5faec;
  --accent-100: #e8f2d4;
  --accent-200: #d2e6a8;
  --accent-300: #b2d173;
  --accent-400: #88bd45;
  --accent-500: #60a818;  /* Verde lima del wordmark */
  --accent-600: #4f8c14;
  --accent-700: #406f10;
  --accent-800: #34590c;
  --accent-900: #294707;

  /* ── Superficies limpias con tinte teal muy sutil ───────────────── */
  --surface:       #ffffff;
  --surface-muted: #f3f8f8;
  --surface-soft:  #e9f3f3;
  --surface-card:  #ffffff;

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

  /* ── Texto ───────────────────────────────────────────────────────── */
  --text:       #0f2030;   /* Azul-negro profundo */
  --text-muted: #3c4f5e;
  --text-light: #80919e;

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

  /* ── Sombras para botones ─────────────────────────────────────────── */
  --shadow-btn-primary:  0 4px 14px rgba(0, 144, 144, 0.35);
  --shadow-btn-accent:   0 4px 14px rgba(96, 168, 24, 0.35);
  --shadow-btn-whatsapp: 0 4px 14px rgba(37, 211, 102, 0.35);

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