:root { 
    /* Colors */
  --transparent:#00000000;
  --primary:#00cfbe;
  --primary-rgb: 0, 207, 190;
  --black: #373737;
  --dark-grey: #b3b3b3;
  --white: #ffffff;
  --light-white: #ffffff8c;
  --lighter-white: #ffffff36;
  --light-grey: #eff1f7;
  --mid-grey: #e5e5e5;
  --darker-grey: #6e6e6e;
  --pure-black: #101010;
  --pure-black-light: #101010eb;
  --grey-blue: /*#DCE9E7;*/ #D2E3E8;
  --grey-blue-light: #E0E9F0;
  --green: #c6d5d9;
  --blue: #e5efff;
  --yellow:#F9E070;
  --cyan:#BBEBE0;
  /* Negativos */
  --midnight: #9EA9F9;
  --indigo: #A372FF;
  --royal: #4169E1;
  --crimson: #F34664;
  --ember: #9AECAE;
  
  --avoris:#C9405E;
  --mallorca-collection:#00b0ba;
  --triggle:#0A5BCC;
   
  /* Escala de spacing basada en múltiplos de 4/8 */
  --space-0: 0px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-28: 112px;
  --space-32: 128px;
  --space-36: 144px;
  --space-40: 160px;
  --space-44: 176px;
  --space-48: 192px;
  --space-52: 208px;
  --space-56: 224px;

  /* Gaps */
  --gap-0: 0px;
  --gap-1: 4px;
  --gap-2: 8px;
  --gap-3: 12px;
  --gap-4: 16px;
  --gap-5: 20px;
  --gap-6: 24px;
  --gap-8: 32px;
  --gap-10: 40px;
  --gap-12: 48px;
  --gap-16: 64px;
  --gap-20: 80px;

  --full: 100%;

  /* Font families */
  --display: "GT Era Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --text: "GT Era Text", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "baskerville-urw", Baskerville, Georgia, serif;

  /* Font sizes (based on Tailwind scale) */
  --text-xs: 0.75rem;   /* 12px */
  --text-xs--line-height: calc(1 / 0.75);
  --text-sm: 0.875rem;  /* 14px */
  --text-sm--line-height: calc(1.25 / 0.875);
  --text-base: 1rem;    /* 16px */
  --text-base--line-height: calc(1.5 / 1);
  --text-lg: 1.125rem;  /* 18px */
  --text-lg--line-height: calc(1.75 / 1.125);
  --text-xl: 1.25rem;   /* 20px */
  --text-xl--line-height: calc(1.75 / 1.25);
  --text-2xl: 1.5rem;   /* 24px */
  --text-2xl--line-height: calc(2 / 1.5);
  --text-3xl: 1.875rem; /* 30px */
  --text-3xl--line-height: calc(2.25 / 1.875);
  --text-4xl: 2rem;  /* 36px */
  --text-4xl--line-height: calc(2.5 / 2.25);
  --text-5xl: 3rem;     /* 48px */
  --text-5xl--line-height: 1;
  --text-6xl: 3.75rem;  /* 60px */
  --text-6xl--line-height: 1;
  --text-7xl: 4.25rem;   /* 68px */
  --text-7xl--line-height: 1;
  --text-8xl: 4.5rem;     /* 76px */
  --text-8xl--line-height: 1;

  /* Font weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-bold: 700;

  /* Line heights (Tailwind defaults) */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.275;
  --leading-normal: 1.35;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  --radius-none: 0;
  --radius-sm: 0.125rem;   /* 2px */
  --radius: 0.25rem;       /* 4px */
  --radius-md: 0.375rem;   /* 6px */
  --radius-lg: 0.5rem;     /* 8px */
  --radius-xl: 0.75rem;    /* 12px ← la que estás usando */
  --radius-2xl: 1rem;      /* 16px */
  --radius-3xl: 1.5rem;    /* 24px */
  --radius-4xl: 2rem;    /* 24px */
  --radius-full: 9999px;   /* pill / círculo */

}