/*Fuentes personalizadas */
@font-face {
  font-family: 'head_custom_font';
  src: url('../fonts/HankenGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'body_custom_font';
  src: url('../fonts/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {

  /*==================== COLORES BASE ====================*/
  --color-primary: #006699;
  --color-accent: #F5C701;
  --color-secondary: #2C4C8E;
  --color-shadow: #7DBBF9;
  --color-white: #ffffff;
  --color-dark-blue: #14284B;
  --color-black: #0b0c0c;
  --color-gray-light: #F4F6F6;
  --color-gray-dark: #2e2e2e;

 /*==================== FUENTES ====================*/
  --font-heading: 'head_custom_font', sans-serif;
  --font-body: 'body_custom_font', sans-serif;

  /*==================== TAMAÑOS DE TEXTO ====================*/
  --font-xs: 0.75rem;     /* 12px */
  --font-sm: 0.875rem;    /* 14px */
  --font-base: 1.2rem;      /* 16px */
  --font-lg: 1.125rem;    /* 18px */
  --font-xl: 1.25rem;     /* 20px */
  --font-2xl: 1.5rem;     /* 24px */
  --font-3xl: 2rem;       /* 32px */
  --font-4xl: 2.5rem;     /* 40px */
  --font-5xl: 3rem;       /* 48px */
  --font-6xl: 3.5rem;     /* 56px */

/*==================== SOMBRAS ====================*/
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);

  /*==================== Z-INDEX ====================*/
  --z-dropdown: 1000;
  --z-modal: 1050;
  --z-tooltip: 1100;
}
  
  html,body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: #212529;
    background-color: var(--color-white);
    overflow-x: hidden;
  
  }

/* Tipografía de encabezados */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: var(--font-6xl);
  line-height: 4.563rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
}

h2 {
  font-size: var(--font-5xl);
  line-height: 2.75rem;
  font-weight: 600;
}

h3 {
  font-size: var(--font-4xl);
  font-weight: 400;
}

h4 {
  font-size: var(--font-3xl);
  font-weight: 400;
}

h5 {
  font-size: var(--font-2xl);
  font-weight: 400;
}

h6 {
  font-size: 0.875rem;
  font-weight: 400;
}

/* Enlaces */
a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--color-accent);
  text-decoration: none;
}