/* ============================================================================
 * DESIGN TOKENS — ORAL ZEN · SABANETA (CAPA 1 de 3)
 * ============================================================================
 * Paleta extraída del logo real (avatar IG @oral.zen): teal profundo #004048
 * con tipografía blanca. Concepto de marca: "comodidad, confianza, calma y
 * relajación" (su propia descripción de Facebook).
 *   - Brand: teal zen profundo (fondo del logo) → calma, confianza clínica
 *   - Accent: aqua claro derivado del teal → frescura, limpieza
 * Logo HD reproducido en vectorial (el original solo existe en 150px).
 * ============================================================================
 */

:root {
  /* ── Color primario: Teal zen profundo ─────────────────────────────── */
  --brand-50:  #eaf4f5;
  --brand-100: #cde4e6;
  --brand-200: #9ac9cd;
  --brand-300: #63a9b0;
  --brand-400: #358a92;
  --brand-500: #0d6e76;  /* Primary action */
  --brand-600: #065a62;
  --brand-700: #004048;  /* Teal exacto del logotipo */
  --brand-800: #00343b;
  --brand-900: #00272d;
  --brand-950: #001a1e;

  /* ── Color de acento: Aqua zen (claro y vivo) ──────────────────────── */
  --accent-50:  #effafb;
  --accent-100: #d0f2f4;
  --accent-200: #a2e5e9;
  --accent-300: #6bd1d8;
  --accent-400: #35bcc5;  /* Vivid accent */
  --accent-500: #1ba3ad;
  --accent-600: #138690;
  --accent-700: #0d6b74;
  --accent-800: #0d545c;
  --accent-900: #0e434a;

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

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

  /* ── Texto ──────────────────────────────────────────────────────────── */
  --text:       #0d2b30;   /* Teal-negro profundo */
  --text-muted: #3f5b60;
  --text-light: #8aa6aa;

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

  /* ── Sombras para botones ────────────────────────────────────────────── */
  --shadow-btn-primary:  0 4px 14px rgba(13, 110, 118, 0.35);
  --shadow-btn-accent:   0 4px 14px rgba(53, 188, 197, 0.35);
  --shadow-btn-whatsapp: 0 4px 14px rgba(37, 211, 102, 0.35);

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