/* =============== CSS VARIABLES - DESIGN TOKENS =============== */

:root {
  /* =============== COLORES =============== */
  --primary-color: #6fa388;
  --primary-hover: #5a8a6f;
  --primary-light: #8bb8a0;
  --primary-dark: #4a7a5f;
  --secondary-color: #2c3e50;
  --accent-color: #eeeeee;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --border-color: #dee2e6;
  --border-light: #e9ecef;
  --border-width-thin: 1px;
  --border-width-thick: 2px;
  --overlay-dark: rgba(0, 0, 0, 0.5);

  /* =============== TIPOGRAFÍA MODERNA =============== */
  --font-family-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-secondary: "Poppins", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-display: "Montserrat", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-mono: "JetBrains Mono", "Fira Code", "Consolas", "Monaco",
    "Courier New", monospace;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 5rem;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;

  /* =============== ESPACIADO =============== */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* =============== BORDES =============== */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 0.75rem;
  --border-radius-2xl: 1rem;
  --border-radius-full: 9999px;

  /* =============== SOMBRAS =============== */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-button: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-button-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  /* =============== TRANSICIONES =============== */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* =============== Z-INDEX =============== */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-whatsapp: 1080;
  --z-social: 1090;
  --z-chatbot: 1100;
  --z-background: 1;
  --z-content: 10;
  --z-hero-content: 20;

  /* =============== LAYOUT =============== */
  --container-width: 100%;
  --hero-height: 80vh;
  --hero-min-height: 700px;
  --navbar-height: 100px;
  --footer-height: 100px;

  /* =============== COMPONENT SPECIFIC =============== */
  --carousel-width: 50%;
  --carousel-max-width: 800px;
  --carousel-control-width: 5%;
  --kpi-container-padding: 60px 40px;
  --chatbot-width: 450px;
  --chatbot-height: 500px;
  --chatbot-toggle-size: 50px;
  --chatbot-toggle-height: 40px;
}
