@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/**
 * Converts a hexadecimal color into its HSL hue value.
 *
 * Returns only the Hue channel as a degree value.
 * Useful when a theme needs to preserve the brand hue while generating
 * derived colors through HSL-based formulas.
 *
 * Example:
 * hex-to-hue(#8bc34a) => 88deg approximately
 */
/**
 * Converts an sRGB channel value into its linear RGB equivalent.
 *
 * This is an internal helper used by the relative luminance calculation.
 * Input must be normalized between 0 and 1.
 */
/**
 * Calculates the relative luminance of a color according to WCAG.
 *
 * Relative luminance is used to determine contrast ratios between
 * foreground and background colors.
 *
 * This is an internal helper for contrast-related functions.
 */
/**
 * Calculates the WCAG contrast ratio between two colors.
 *
 * The order of the arguments does not matter for the result, but the names
 * follow the common foreground/background convention.
 *
 * This is an internal helper used by fg-contrast() and safe-fg().
 */
/**
 * Public WCAG contrast-ratio helper.
 *
 * Both arguments must be concrete Sass colors. CSS custom properties cannot be
 * evaluated at compile time and should not be passed to this function.
 */
/**
 * Returns the most readable foreground color for a given background.
 *
 * Compares a light candidate and a dark candidate using WCAG contrast ratio,
 * then returns the one with the highest contrast.
 *
 * Useful when the system only knows the background color and must decide
 * whether the text should be light or dark.
 */
/**
 * Builds a 50–900 color scale from a base color.
 *
 * The 500 value is the original base color.
 * Lower steps are progressively lighter and slightly desaturated.
 * Higher steps are progressively darker and slightly more saturated.
 *
 * Useful for generating company/brand palettes from a single primary color.
 */
/**
 * Mixes a color towards white or black.
 *
 * This is a controlled helper for generating lighter or darker tones,
 * typically for hover, active and pressed states.
 *
 * $direction must be:
 * - light: mix the color towards white
 * - dark: mix the color towards black
 */
/**
 * Generates a button hover background from a base color.
 *
 * In light mode, the color is darkened.
 * In dark mode, the color is lightened.
 *
 * This keeps hover feedback visible against the surrounding UI mode.
 */
/**
 * Generates a button active background from a base color.
 *
 * Uses a stronger transformation than btn-hover-bg() so the active/pressed
 * state is visually distinguishable from hover.
 */
/**
 * Returns a CSS color-mix() expression in OKLCH as a string.
 *
 * Useful to derive hover, active or soft colors at runtime when the color
 * value may be a CSS variable and Sass cannot evaluate it with color.scale()
 * or color.mix().
 *
 * $from / $to can be:
 * - raw colors, e.g. black
 * - CSS variables, e.g. var(--bg-2)
 */
/**
 * Mixes two concrete Sass colors in OKLCH at compile time.
 *
 * `$amount` is the percentage of `$to` in the resulting color. Unlike
 * mix-oklch(), this returns a Sass color, so contrast can be measured before
 * emitting CSS custom properties.
 *
 * Requires Dart Sass >= 1.79.0.
 */
/**
 * Creates a theme-aware interactive state while preserving text contrast.
 *
 * Light themes initially move the background towards black; dark themes move
 * it towards white. If that produces no visible change (for example, a white
 * brand in dark mode), the opposite direction is tried. The requested amount
 * is reduced in 1% steps until the supplied foreground still meets `$min`.
 */
/**
 * Builds a subtle brand surface by mixing a percentage of brand into a theme
 * surface. The result is a concrete Sass color and can therefore be paired
 * with safe-fg().
 */
/**
 * Adjusts a brand color until it reaches the requested contrast against a
 * theme surface.
 *
 * This is intended for brand-colored text, icons, borders and focus rings that
 * sit directly on the page surface. The original brand color remains untouched
 * for filled brand backgrounds.
 */
/**
 * Resolves the foreground ink color from a semantic color mode.
 *
 * In this system:
 * - 'lightness' means the background is light, so dark ink is required.
 * - 'darkness' means the background is dark, so light ink is required.
 *
 * Useful when theme configuration stores a mode instead of a concrete text
 * color. Falls back to dark ink if the mode is unknown.
 */
/**
 * Generates a state background by mixing the base background towards
 * its foreground color.
 *
 * This works well for generic hover states:
 * - light background + dark foreground => slightly darker background
 * - dark background + light foreground => slightly lighter background
 *
 * Useful for nav links, dropdown items, cards and other interactive surfaces.
 */
/**
 * Generates an accent background by mixing a base color with an accent color.
 *
 * Useful when a component surface is based on the primary color but a selected
 * or active state should introduce the secondary/accent color.
 *
 * A high default amount is intentional so the accent color is visually dominant
 * enough to work as a real active state.
 */
/**
 * Returns a safe foreground color for a background.
 *
 * If a preferred foreground is provided and meets the minimum contrast ratio,
 * it is returned. Otherwise, the function falls back to the best contrast
 * between white and near-black.
 *
 * Useful for generated theme tokens where the preferred brand foreground may
 * not always be accessible on derived backgrounds.
 */
/**
 * PALETTE TOKENS
 * -----------------------------------------------------------------------------
 * Objetivo:
 * - Emitir “primitivos” (colores crudos) como CSS variables en :root.
 * - Evitar que light/dark “cocinen” colores con Sass (color.scale/mix).
 * - Servir de base única para themes y componentes.
 *
 * Convenciones de naming:
 * - neutrals: neutral-50..900 (+ neutral-950 como alias temporal)
 * - absolutos: black, white
 * - escalas compat: white-900..50 y black-900..50 (muy usadas en tu legacy)
 * - alphas: white-aXX / black-aXX (overlays, separadores, sombras)
 * - brand lanes: brand-primary-* / brand-secondary-* / brand-tertiary-*
 *
 * Notas importantes:
 * - Tu c.grey() actualmente soporta steps 50..900. NO existe 950.
 *   Por eso neutral-950 es un alias temporal a neutral-900.
 * - Si en el futuro amplías la escala a 950, cambias SOLO este alias.
 */
@layer tokens {
  :root {
    --black: #000000;
    --white: #ffffff;
    --white-900: rgba(255, 255, 255, 0.9);
    --white-800: rgba(255, 255, 255, 0.8);
    --white-700: rgba(255, 255, 255, 0.7);
    --white-600: rgba(255, 255, 255, 0.6);
    --white-500: rgba(255, 255, 255, 0.5);
    --white-400: rgba(255, 255, 255, 0.4);
    --white-300: rgba(255, 255, 255, 0.3);
    --white-200: rgba(255, 255, 255, 0.2);
    --white-100: rgba(255, 255, 255, 0.1);
    --white-50: rgba(255, 255, 255, 0.05);
    --black-900: rgba(0, 0, 0, 0.9);
    --black-800: rgba(0, 0, 0, 0.8);
    --black-700: rgba(0, 0, 0, 0.7);
    --black-600: rgba(0, 0, 0, 0.6);
    --black-500: rgba(0, 0, 0, 0.5);
    --black-400: rgba(0, 0, 0, 0.4);
    --black-300: rgba(0, 0, 0, 0.3);
    --black-200: rgba(0, 0, 0, 0.2);
    --black-100: rgba(0, 0, 0, 0.1);
    --black-75: rgba(0, 0, 0, 0.07);
    --black-50: rgba(0, 0, 0, 0.05);
    --black-25: rgba(0, 0, 0, 0.02);
    --black-15: rgba(0, 0, 0, 0.01);
    --black-a05: rgba(0, 0, 0, 0.05);
    --black-a10: rgba(0, 0, 0, 0.1);
    --black-a15: rgba(0, 0, 0, 0.15);
    --black-a20: rgba(0, 0, 0, 0.2);
    --black-a30: rgba(0, 0, 0, 0.3);
    --black-a40: rgba(0, 0, 0, 0.4);
    --black-a50: rgba(0, 0, 0, 0.5);
    --black-a60: rgba(0, 0, 0, 0.6);
    --black-a70: rgba(0, 0, 0, 0.7);
    --black-a80: rgba(0, 0, 0, 0.8);
    --black-a90: rgba(0, 0, 0, 0.9);
    --white-a05: rgba(255, 255, 255, 0.05);
    --white-a10: rgba(255, 255, 255, 0.1);
    --white-a15: rgba(255, 255, 255, 0.15);
    --white-a20: rgba(255, 255, 255, 0.2);
    --white-a30: rgba(255, 255, 255, 0.3);
    --white-a40: rgba(255, 255, 255, 0.4);
    --white-a50: rgba(255, 255, 255, 0.5);
    --white-a60: rgba(255, 255, 255, 0.6);
    --white-a70: rgba(255, 255, 255, 0.7);
    --white-a80: rgba(255, 255, 255, 0.8);
    --white-a90: rgba(255, 255, 255, 0.9);
    --neutral-50: #FAFBFB;
    --neutral-100: #F7F7F7;
    --neutral-200: #E1E1E1;
    --neutral-300: #CFCFCF;
    --neutral-400: #B1B1B1;
    --neutral-500: #9E9E9E;
    --neutral-600: #7E7E7E;
    --neutral-700: #626262;
    --neutral-800: #515151;
    --neutral-900: #3B3B3B;
    --neutral-950: #1b1b1b;
    --brand-primary-50: rgb(85.8192844148%, 39.8277744087%, 46.5731958763%);
    --brand-primary-100: rgb(85.5573883162%, 30.1759450172%, 38.298556701%);
    --brand-primary-200: rgb(85.6787548009%, 20.1408530422%, 29.7530786335%);
    --brand-primary-300: rgb(83.1761067314%, 12.7297756216%, 23.0619041844%);
    --brand-primary-400: rgb(76.2404689711%, 9.7516878917%, 19.5033757833%);
    --brand-primary-500: #AC162C;
    --brand-primary-600: rgb(63.4039215686%, 8.1098039216%, 16.2196078431%);
    --brand-primary-700: rgb(59.3568627451%, 7.5921568627%, 15.1843137255%);
    --brand-primary-800: rgb(55.6635294118%, 6.7207843137%, 13.8990535948%);
    --brand-primary-900: rgb(51.9184313725%, 5.9011764706%, 12.6503738562%);
    --brand-secondary-50: rgb(88.7260504202%, 52.4952380952%, 50.5680672269%);
    --brand-secondary-100: rgb(88.5742857143%, 44.9463492063%, 42.6257142857%);
    --brand-secondary-200: rgb(88.7405042017%, 37.1115966387%, 34.3653781513%);
    --brand-secondary-300: rgb(89.2247058824%, 28.9909803922%, 25.7870588235%);
    --brand-secondary-400: rgb(90.0268907563%, 20.5845004669%, 16.8907563025%);
    --brand-secondary-500: #E1251B;
    --brand-secondary-600: rgb(82.9411764706%, 13.6392156863%, 9.9529411765%);
    --brand-secondary-700: rgb(77.6470588235%, 12.768627451%, 9.3176470588%);
    --brand-secondary-800: rgb(72.7870588235%, 11.507771836%, 8.2482352941%);
    --brand-secondary-900: rgb(67.8635294118%, 10.3040285205%, 7.2423529412%);
    --brand-tertiary-50: rgb(43.3882352941%, 84.6117647059%, 79.8117647059%);
    --brand-tertiary-100: rgb(34.38%, 84.02%, 78.24%);
    --brand-tertiary-200: rgb(25.0282352941%, 83.7717647059%, 76.9317647059%);
    --brand-tertiary-300: rgb(15.8768627451%, 83.3231372549%, 75.4698039216%);
    --brand-tertiary-400: rgb(12.737254902%, 76.862745098%, 69.3960784314%);
    --brand-tertiary-500: #1daf9e;
    --brand-tertiary-600: rgb(10.6901960784%, 64.5098039216%, 58.2431372549%);
    --brand-tertiary-700: rgb(10.0078431373%, 60.3921568627%, 54.5254901961%);
    --brand-tertiary-800: rgb(8.8592156863%, 56.7407843137%, 51.1655331722%);
    --brand-tertiary-900: rgb(7.7788235294%, 53.0211764706%, 47.7532312651%);
    --radius-none: 0;
    --radius-xs: var(--size-0_5);
    --radius-sm: var(--size-1);
    --radius-md: calc(var(--size-1) * 1.5);
    --radius-lg: var(--size-2);
    --radius-xl: var(--size-3);
    --radius-2xl: var(--size-4);
    --radius-3xl: var(--size-6);
    --radius-full: 9999px;
    --z-hide: -1;
    --z-auto: auto;
    --z-0: 0;
    --z-10: 10;
    --z-20: 20;
    --z-30: 30;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-skip-link: 600;
    --z-toast: 700;
    --z-debug: 999;
    --z-max: 2147483647;
    --color-company: #AC162C;
    --color-company-fg: #ffffff;
    --color-company-secondary: #E1251B;
    --color-company-secondary-fg: #ffffff;
    --color-company-tertiary: #1daf9e;
    --color-company-tertiary-fg: #111111;
    --color-company-hover: rgb(58.4490753866%, 6.8841711641%, 14.4470237834%);
    --color-company-active: rgb(51.4243982353%, 5.5237949008%, 12.2558833899%);
    --color-company-contrast: 7.2282568579;
    --brand-font-family-main-header: roboto;
    --brand-font-weight-main-header: 700;
    --brand-font-size-main-header: 2rem;
    --brand-font-family-headers: Roboto;
    --brand-font-weight-headers: 700;
    --brand-font-size-headers: 1.5rem;
    --brand-font-family-text: Roboto;
    --brand-font-weight-text: 400;
    --brand-font-size-text: 1rem;
    --brand-card-radius: 24px;
    --brand-button-radius: 24px;
    --article-card-mx-width: 384px;
    --shadow-sm: 0 0 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 0 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 0 12px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 0 16px rgba(0, 0, 0, 0.24);
    --shadow-2xl: 0 0 24px rgba(0, 0, 0, 0.32);
    --shadow-base: var(--shadow-lg);
    --shadow-base-hover: var(--shadow-xl);
    --space-unit: 8px;
    --space-0_25: calc(var(--size-unit) * 0.25);
    --space-0_5: calc(var(--size-unit) * 0.5);
    --space-1: calc(var(--size-unit) * 1);
    --space-2: calc(var(--size-unit) * 2);
    --space-3: calc(var(--size-unit) * 3);
    --space-4: calc(var(--size-unit) * 4);
    --space-5: calc(var(--size-unit) * 5);
    --space-6: calc(var(--size-unit) * 6);
    --space-7: calc(var(--size-unit) * 7);
    --space-8: calc(var(--size-unit) * 8);
    --space-9: calc(var(--size-unit) * 9);
    --space-10: calc(var(--size-unit) * 10);
    --space-12: calc(var(--size-unit) * 12);
    --space-14: calc(var(--size-unit) * 14);
    --space-16: calc(var(--size-unit) * 16);
    --space-level-1: var(--size-5);
    --space-level-2: var(--size-4);
    --space-level-3: var(--size-3);
    --space-level-4: var(--size-2);
    --space-level-5: var(--size-1);
    --size-unit: 8px;
    --size-0_25: calc(var(--size-unit) * 0.25);
    --size-0_5: calc(var(--size-unit) * 0.5);
    --size-1: calc(var(--size-unit) * 1);
    --size-1_5: calc(var(--size-unit) * 1.5);
    --size-2: calc(var(--size-unit) * 2);
    --size-3: calc(var(--size-unit) * 3);
    --size-4: calc(var(--size-unit) * 4);
    --size-5: calc(var(--size-unit) * 5);
    --size-6: calc(var(--size-unit) * 6);
    --size-7: calc(var(--size-unit) * 7);
    --size-8: calc(var(--size-unit) * 8);
    --size-9: calc(var(--size-unit) * 9);
    --size-10: calc(var(--size-unit) * 10);
    --size-12: calc(var(--size-unit) * 12);
    --size-14: calc(var(--size-unit) * 14);
    --size-16: calc(var(--size-unit) * 16);
    --size-18: calc(var(--size-unit) * 18);
    --size-20: calc(var(--size-unit) * 20);
    --size-24: calc(var(--size-unit) * 24);
    --size-28: calc(var(--size-unit) * 28);
    --size-32: calc(var(--size-unit) * 32);
    --size-36: calc(var(--size-unit) * 36);
    --size-40: calc(var(--size-unit) * 40);
    --size-44: calc(var(--size-unit) * 44);
    --size-48: calc(var(--size-unit) * 48);
    --size-50: calc(var(--size-unit) * 50);
    --duration-fast: 120ms;
    --duration-base: 200ms;
    --duration-slow: 300ms;
    --duration-slower: 500ms;
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-sharp: cubic-bezier(0.4, 0, 0.6, 1);
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 21px;
    --font-size-h6: 1rem;
    --font-size-h5: 1.125rem;
    --font-size-h4: 1.25rem;
    --font-size-h3: 2.5rem;
    --font-size-h2: 1.875rem;
    --font-size-h1: 2.25rem;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --radius-card: var(--brand-card-radius);
    --radius-button: var(--brand-button-radius);
    --radius-control: var(--radius-sm);
    --radius-panel: var(--radius-lg);
    --radius-modal: var(--radius-lg);
    --font-family-body: var(--brand-font-family-text);
    --font-family-heading: var(--brand-font-family-headers);
    --font-family-display: var(--brand-font-family-main-header);
    --font-weight-body: var(--brand-font-weight-text);
    --font-weight-heading: var(--brand-font-weight-headers);
    --font-size-body: var(--brand-font-size-text);
    --font-size-heading: var(--brand-font-size-headers);
    --notification-bg-light: var(--brand-primary-300);
  }
  html.light,
  html[class~=light],
  html[data-theme~=light],
  [data-theme=light] {
    --home-bg-light: #ffffff;
    --home-bg-grey: #eeeff0;
    --bg-layer-0: #ffffff;
    --bg-layer-1: rgba(33, 37, 41, 0.05);
    --bg-layer-2: rgba(33, 37, 41, 0.1);
    --bg-layer-3: rgba(33, 37, 41, 0.15);
    --fg-layer-0: #000000;
    --fg-layer-1: #212529;
    --fg-layer-2: #212529;
    --fg-layer-3: #212529;
    --text-link: var(--brand-primary-700);
    --text-link-hover: var(--brand-primary-800);
    --text-link-visited: var(--brand-primary-800);
    --text-link-ring: color-mix(in oklch, var(--brand-primary-700), var(--neutral-900) 20%);
    --text-link-bg: color-mix(in oklch, var(--brand-primary-100), white 40%);
    --text-link-bg-hover: color-mix(in oklch, var(--brand-primary-100), var(--neutral-900) 6%);
    --text-link-border: var(--brand-primary-200);
    --text-link-border-hover: var(--brand-primary-300);
    --bg-base-color: var(--bg-0);
    --bg-base-color-action: var(--bg-1);
    --text-base-color: var(--text-1);
    --link-base-color: var(--text-link);
    --link-base-color-action: var(--text-link-hover);
    --border-base-color: var(--bg-3);
    --border-base-color-action: var(--bg-4);
    --color-active: var(--neutral-900);
    --color-active-fg: var(--white-900);
    --color-pending: #744AEC;
    --color-started: #165C26;
    --color-locked: #515151;
    --color-comingsoon: #79B8FF;
    --color-completedsuspended: #D73A49;
    --color-hours-left: #633BD4;
    --color-suspendedwithattempts: #D35608;
    --color-essential: #CB2431;
    --color-suggested: #D35608;
    --color-other: #515151;
    --fg-completed: #28A745;
    --border-color-completed: color-mix(in oklch, #22863A, var(--layout-content-bg) 75%);
    --bg-completed: color-mix(in oklch, #22863A, var(--layout-content-bg) 95%);
    --fg-incompleted: #D73A49;
    --border-color-incompleted: color-mix(in oklch, #CB2431, var(--layout-content-bg) 75%);
    --bg-incompleted: color-mix(in oklch, #CB2431, var(--layout-content-bg) 95%);
    --color-face-sad: #CB2431;
    --color-face-neutral: #F26B0C;
    --color-face-happy: #22863A;
    --fg-info: #05264C;
    --border-color-info: #C8E1FF;
    --bg-info: #DBEDFF;
    --bg-error: #FFDCE0;
    --fg-error: #86181D;
    --border-error: #FDAEB7;
    --bg-success: #DCFFE4;
    --fg-success: #144620;
    --border-success: #BEF5CB;
    --bg-warning: #FFECDC;
    --border-warning: #FFD3AE;
    --fg-warning: #933705;
    --color-status-online: #22863A;
    --color-status-offline: #9E9E9E;
    --illustration-line-color: var(--neutral-300);
    --illustration-light-color: var(--neutral-100);
    --illustration-black-color: var(--neutral-600);
    --illustration-featured-color: var(--brand-primary-600);
    --illustration-color-sweet: #F7F7F7;
    --illustration-color-bitter: #1b1b1b;
    --illustration-color-company: var(--company);
    --slider--backdrop: rgba(0, 0, 0, 0.4);
    --banner-gradient--top: rgba(0, 0, 0, 0.2);
    --banner-gradient--bottom: rgba(0, 0, 0, 0.7);
    --banner-fg: var(--white);
    --bg-0: #FCFCFC;
    --bg-1: #FAFAFA;
    --bg-2: #F7F7F7;
    --bg-3: #F5F5F5;
    --bg-4: #F2F2F2;
    --bg-5: #EDEDED;
    --overlay-1: var(--black-a10);
    --overlay-2: var(--black-a20);
    --header-1: var(--neutral-900);
    --header-2: var(--neutral-800);
    --header-3: var(--neutral-700);
    --header-4: var(--neutral-600);
    --text-1: var(--neutral-800);
    --text-2: var(--neutral-700);
    --text-3: var(--neutral-600);
    --text-4: var(--neutral-500);
    --text-muted: var(--neutral-600);
    --text-disabled: var(--neutral-400);
    --border-1: var(--neutral-200);
    --border-2: var(--neutral-300);
    --border-3: var(--neutral-400);
    --border-4: var(--neutral-500);
    --shadow-1: var(--black-a05);
    --shadow-2: var(--black-a10);
    --shadow-3: var(--black-a15);
    --shadow-4: var(--black-a20);
    --icon-1: var(--neutral-800);
    --icon-2: var(--neutral-700);
    --icon-3: var(--neutral-600);
    --icon-4: var(--neutral-500);
    --icon-disabled: var(--neutral-400);
    --bg-inverse-1: var(--neutral-950);
    --bg-inverse-2: var(--neutral-900);
    --bg-inverse-3: var(--neutral-800);
    --bg-inverse-4: var(--neutral-700);
    --bg-inverse-subtle: var(--neutral-900);
    --text-inverse-1: var(--white-900);
    --text-inverse-2: var(--white-800);
    --text-inverse-3: var(--white-600);
    --text-inverse-4: var(--white-400);
    --text-inverse-disabled: var(--white-300);
    --border-inverse-1: var(--neutral-700);
    --border-inverse-2: var(--white-200);
    --border-inverse-3: var(--white-100);
    --border-inverse-4: var(--white-a10);
    --shadow-inverse-1: var(--white-a10);
    --shadow-inverse-2: var(--white-a20);
    --shadow-inverse-3: var(--white-a30);
    --shadow-inverse-4: var(--white-a40);
    --icon-inverse-1: var(--white-900);
    --icon-inverse-2: var(--white-800);
    --icon-inverse-3: var(--white-600);
    --icon-inverse-4: var(--white-400);
    --icon-inverse-disabled: var(--white-300);
    --ring-focus: color-mix(in oklch, var(--brand-primary-500), var(--neutral-900) 28%);
    --shadow-focus-inset: color-mix(in oklch, var(--neutral-900), transparent 92%);
    --company: var(--brand-primary-500);
    --company-dark: rgb(51.4243982353%, 5.5237949008%, 12.2558833899%);
    --company-hover: rgb(58.4490753866%, 6.8841711641%, 14.4470237834%);
    --company-active: rgb(46.2664189896%, 4.5249173181%, 10.6470042299%);
    --company-soft: rgb(97.0958349277%, 88.1265851156%, 87.6436727054%);
    --company-muted: rgb(98.4107436022%, 93.1999472361%, 92.9070524057%);
    --text-on-company: #ffffff;
    --text-on-company-hover: #ffffff;
    --text-on-company-active: #ffffff;
    --text-on-company-soft: #111111;
    --text-on-company-muted: #111111;
    --company-text-contrast: 7.2282568579;
    --company-on-surface: #AC162C;
    --company-ui-on-surface: #AC162C;
    --border-company: #AC162C;
    --icon-company: #AC162C;
    --ring-company: #AC162C;
    --gradient-company-soft: linear-gradient(-225deg, var(--bg-company) 20%, var(--bg-company-secondary) 100%);
    --gradient-company-45: linear-gradient(45deg, var(--bg-company) 20%, var(--bg-company-secondary) 100%);
    --gradient-company: linear-gradient(10deg, var(--bg-company) 20%, var(--bg-company-secondary) 100%);
    --gradient-company-hover: linear-gradient(10deg, var(--bg-company-hover) 20%, var(--bg-company-secondary) 100%);
    --color-bg-canvas: var(--bg-0);
    --color-bg-surface: var(--bg-1);
    --color-bg-surface-muted: var(--bg-2);
    --color-bg-surface-raised: var(--bg-0);
    --color-text-primary: var(--text-1);
    --color-text-secondary: var(--text-2);
    --color-text-muted: var(--text-muted);
    --color-border-subtle: var(--border-1);
    --color-border-default: var(--border-2);
    --color-border-strong: var(--border-3);
    --layout-content-bg: #FCFCFC;
    --button-primary-bg: var(--company);
    --button-primary-fg: var(--text-on-company);
    --button-primary-border: var(--border-company);
    --button-primary-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-600), transparent 93%);
    --button-primary-hover-bg: var(--company-hover);
    --button-primary-hover-fg: var(--text-on-company-hover);
    --button-primary-hover-border: var(--company-hover);
    --button-primary-hover-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-600), transparent 90%);
    --button-primary-active-bg: var(--company-active);
    --button-primary-active-fg: var(--text-on-company-active);
    --button-primary-active-border: var(--company-active);
    --button-primary-active-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-600), transparent 90%);
    --button-primary-disabled-bg: var(--neutral-200);
    --button-primary-disabled-fg: var(--neutral-500);
    --button-primary-disabled-border: var(--neutral-200);
    --button-primary-disabled-shadow: none;
    --button-secondary-bg: var(--brand-primary-400);
    --button-secondary-fg: var(--white-900);
    --button-secondary-border: var(--brand-primary-400);
    --button-secondary-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-400), transparent 93%);
    --button-secondary-hover-bg: color-mix(in oklch, var(--brand-primary-400), white 85%);
    --button-secondary-hover-fg: var(--brand-primary-400);
    --button-secondary-hover-border: color-mix(in oklch, var(--brand-primary-400), white 10%);
    --button-secondary-hover-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-400), transparent 90%);
    --button-secondary-active-bg: color-mix(in oklch, var(--brand-primary-400), white 14%);
    --button-secondary-active-fg: var(--white-900);
    --button-secondary-active-border: color-mix(in oklch, var(--brand-primary-400), white 14%);
    --button-secondary-active-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-400), transparent 90%);
    --button-secondary-disabled-bg: var(--neutral-700);
    --button-secondary-disabled-fg: var(--white-300);
    --button-secondary-disabled-border: var(--neutral-700);
    --button-secondary-disabled-shadow: none;
    --button-tertiary-bg: transparent;
    --button-tertiary-fg: var(--brand-tertiary-700);
    --button-tertiary-border: transparent;
    --button-tertiary-shadow: none;
    --button-tertiary-hover-bg: color-mix(in oklch, var(--bg-2), black 4%);
    --button-tertiary-hover-fg: var(--brand-tertiary-700);
    --button-tertiary-hover-border: transparent;
    --button-tertiary-hover-shadow: none;
    --button-tertiary-active-bg: color-mix(in oklch, var(--bg-2), black 8%);
    --button-tertiary-active-fg: var(--brand-tertiary-700);
    --button-tertiary-active-border: transparent;
    --button-tertiary-active-shadow: none;
    --button-tertiary-disabled-bg: transparent;
    --button-tertiary-disabled-fg: var(--neutral-400);
    --button-tertiary-disabled-border: transparent;
    --button-tertiary-disabled-shadow: none;
    --bg-card: var(--white-a90);
    --bg-card-hover: var(--white-a80);
    --card-bg: var(--bg-card);
    --card-bg-hover: var(--bg-card-hover);
    --card-fg: var(--text-1);
    --card-border: var(--border-1);
    --card-radius: var(--radius-card);
    --card-shadow: var(--shadow-1);
    --header-bg: #ffffff;
    --header-fg: #111111;
    --header-link-fg: #111111;
    --header-link-hover-fg: #111111;
    --header-link-hover-bg: color-mix(in oklch, var(--header-bg), black 4%);
    --header-link-contrast-fg: #111111;
    --header-link-state-bg: color-mix(in oklch, var(--header-bg), black 6%);
    --header-user-bg: #FAFBFB;
    --header-user-fg: #111111;
    --header-user-link-fg: #111111;
    --bg-nav__inverse--active: var(--black-50);
    --fg-nav__inverse--active: var(--black);
    --border-nav__inverse--active: #111111;
    --header-link-active-fg: #111111;
    --header-link-active-bg: color-mix(in oklch, var(--header-bg), black 8%);
    --header-link-submenu-bg: color-mix(in oklch, var(--header-bg), black 12%);
    --header-submenu-bg: color-mix(in oklch, var(--header-bg), black 4%);
    --header-submenu-fg: #111111;
    --header-submenu-hover-fg: #111111;
    --header-submenu-hover-bg: color-mix(in oklch, var(--header-submenu-bg), black 8%);
    --header-submenu-active-fg: #111111;
    --header-submenu-active-bg: color-mix(in oklch, var(--header-submenu-bg), black 8%);
    --header-icon-fg: #111111;
    --header-icon-hover-fg: #111111;
    --footer-fg: #111111;
    --footer-smoothed-details-fg: rgba(0, 0, 0, 0.3);
    --prefooter-bg: #FAFBFB;
    --footer-bg: #ffffff;
    --footer-link-fg: color-mix(in oklch, #111111, white 4%);
    --footer-link-hover-fg: #111111;
    --footer-link-active-fg: #111111;
    --footer-link-hover-bg: color-mix(in oklch, var(--footer-bg), black 4%);
    --footer-link-active-bg: color-mix(in oklch, var(--footer-bg), black 8%);
    --preheader-bg: #FAFBFB;
    --preheader-fg: #111111;
    --preheader-brand-fg: var(--text-on-company);
    --preheader-brand-fg-outline: var(--company-on-surface);
    --preheader-brand-bg: var(--company);
    --preheader-brand-border: var(--text-on-company);
    --preheader-brand-border-outline: var(--border-company);
    --preheader-brand-fg--hover: var(--text-on-company-hover);
    --preheader-brand-fg-outline--hover: var(--company-on-surface);
    --preheader-brand-bg--hover: var(--company-hover);
    --preheader-brand-border--hover: var(--text-on-company-hover);
    --preheader-brand-border-outline--hover: var(--border-company);
    --preheader-notification-bg: var(--notification-bg-light, var(--brand-primary-300));
    --preheader-hover-bg: color-mix(in oklch, var(--preheader-bg), black 4%);
    --preheader-hover-border: var(--text-on-company-hover);
    --preheader-hover-border-outline: var(--border-company);
    --preheader-brand-bg-border--hover: var(--text-on-company-hover);
    --preheader-brand-bg-border-outline--hover: var(--border-company);
    --preheader-link-fg: #111111;
    --preheader-link-hover-fg: #111111;
    --preheader-link-contrast-fg: #111111;
    --preheader-link-static-fg: #111111;
    --preheader-link-inverse-fg: #ffffff;
    --preheader-link-hover-bg: color-mix(in oklch, var(--preheader-bg), black 4%);
    --preheader-link-hover-emphasis-bg: color-mix(in oklch, var(--preheader-bg), black 12%);
    --preheader-link-state-bg: color-mix(in oklch, var(--preheader-bg), black 6%);
    --preheader-header-link-soft-bg: color-mix(in oklch, var(--preheader-bg), black 6%);
    --preheader-before-border-bg: var(--black-a05);
    --preheader-progress-bg: rgba(0, 0, 0, 0.08);
    --preheader-progress-fill: var(--brand-primary-300);
    --preheader-icon-fg: #111111;
    --preheader-icon-hover-fg: #111111;
    --preheader-scrollbar-thumb: rgba(51, 51, 51, 0.22) rgba(51, 51, 51, 0);
    --preheader-scrollbar-track: transparent;
    --preheader-link-active-fg: #111111;
    --preheader-link-active-bg: color-mix(in oklch, var(--preheader-bg), black 8%);
    --preheader-user-menu-bg: #FAFBFB;
    --preheader-user-menu-fg: #111111;
    --preheader-mobile-logo-position: static;
    --preheader-mobile-logo-bg: transparent;
    --preheader-mobile-logo-radius: 0;
    --preheader-mobile-logo-padding: 0;
    --preheader-mobile-logo-display: inline;
    --preheader-mobile-logo-width: auto;
    --bg-nav: #ffffff;
    --fg-nav: #111111;
    --bg-nav--hover: color-mix(in oklch, var(--bg-nav), black 6%);
    --fg-nav--hover: #111111;
    --bg-nav--active: color-mix(in oklch, var(--bg-nav), black 10%);
    --fg-nav--active: #111111;
    --border-nav--active: var(--company);
    --bg-nav__dropdown: color-mix(in oklch, var(--bg-nav), black 3%);
    --fg-nav__dropdown: #111111;
    --border-nav__dropdown: rgba(0, 0, 0, 0.12);
    --bg-nav__dropdown--hover: color-mix(in oklch, var(--bg-nav__dropdown), black 6%);
    --fg-nav__dropdown--hover: #111111;
    --bg-nav__dropdown--active: color-mix(in oklch, var(--bg-nav__dropdown), black 10%);
    --fg-nav__dropdown--active: #111111;
    --bg-nav__inverse: transparent;
    --fg-nav__inverse: var(--white);
    --fg-nav__inverse--hover: #111111;
    --bg-nav__inverse-dropdown: color-mix(in oklch, var(--bg-nav), black 3%);
    --fg-nav__inverse-dropdown: #111111;
    --border-nav__inverse-dropdown: rgba(0, 0, 0, 0.12);
    --bg-nav__inverse-dropdown--hover: color-mix(in oklch, var(--bg-nav__inverse-dropdown), black 6%);
    --fg-nav__inverse-dropdown--hover: #111111;
    --bg-pannel-form: #f7f8f9;
    --form-text-color: var(--black-700);
    --input: var(--bg-2);
    --input-border: var(--border-2);
    --textarea: var(--bg-2);
    --textarea-border: var(--border-2);
    --select: var(--bg-2);
    --select-border: var(--border-2);
    --bg-radio: #ffffff;
    --bg-radio--active: var(--company);
    --bg-border-radio: #cccccc;
    --select-active: var(--neutral-900);
    --check: var(--neutral-600);
    --check-active: var(--brand-primary-600);
    --check-active-fg: var(--white-900);
    --form-color-disabled: var(--neutral-400);
    --loader-color: var(--neutral-600);
    --bg-swal2-popup: #ededed;
    --fg-swal2-popup: #414345;
    --bg-modal__header: #fafafa;
    --bg-modal__body: #fafafa;
    --bg-modal__footer: #fafafa;
    --fg-modal__header: #2e3338;
    --fg-modal__body: #2e3338;
    --fg-modal__footer: #2e3338;
    --tab__container-bg: var(--bg-layer-3);
    --tab__item--active-bg: var(--bg-layer-0);
    --tab__item--active-fg: var(--fg-layer-0);
    --tab__item--inactive-bg: var(--bg-layer-2);
    --tab__item--inactive-fg: var(--fg-layer-2);
    --tab__item--hover-bg: var(--bg-layer-1);
    --tab__item--hover-fg: var(--fg-layer-1);
    --tabs__solid: #ebecee;
    --tabs__solid--bg-tab-item: #ebecee;
    --tabs__solid--fg-tab-item: #1f2124;
    --tabs__solid--bg-tab-item-shadow: #757575;
    --tabs__solid--bg-tab-item-hover: #f5f5f5;
    --tabs__solid--fg-tab-item-active: #000000;
    --tabs__solid--bg-tab-item-active: #fdfeff;
    --tabs__solid--bg-tab-item-active-hover: #ffffff;
    --bg-tab-active: var(--white-a90);
    --table-light-bg: #FCFCFC;
    --table-light-bg-hover: #ffffff;
    --table-light-fg: var(--text-1);
    --table-dark-bg: #F7F7F7;
    --table-dark-bg-hover: #FAFAFA;
    --table-dark-fg: var(--text-1);
    --table-dark-border: #EDEDED;
    --progress__bg: var(--neutral-200);
    --bg-related: #ededed;
    --bg-course-header: #f7f8f9;
    --bg-course-hero: #eeeff0;
    --fg-course: #222222;
    --course__tab__aria-expanded-false: #f7f8f9;
    --bg-course-tab-active: #f7f8f9;
    --bg-course-progress-container: #fdfeff;
    --bg-task-container: #ffffff;
    --fg-task: #2e3338;
    --color-course-tab: #4d5053;
    --color-course-tab-active: #f7f8f9;
    --border-bottom-course-tab-active: #f7f8f9;
    --course__tab__border-bottom: 1px solid #dddddd;
    --course-content-resource-item-type: var(--company);
    --course-content-resource-item-type-icon: var(--text-on-company);
    --course-content-resource-item-border-left: var(--company);
    --course-content-resource-item-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
    --course-content-resource-item: #fdfeff;
    --bg-faq: #eeeff0;
    --bg-faq--hover: #e4e4e4;
    --fg-faq: #222222;
    --bg-glossary: #eeeff0;
    --bg-glossary--hover: #e4e4e4;
    --fg-glossary: #222222;
    --border-bottom-glossary: #cccccc;
    --bg-profile: var(--bg-pannel-form);
    --fg-profile: var(--neutral-900);
    --bg-resource-action-block: #f1f1f1;
    --bg-resource-action-block-link: var(--company);
    --bg-company: var(--company);
    --bg-company-secondary: var(--color-company-secondary);
    --bg-company-hover: var(--company-hover);
  }
  html.dark,
  html[class~=dark],
  html[data-theme~=dark],
  [data-theme=dark] {
    --home-bg-light: #1f2124;
    --home-bg-grey: #17181a;
    --bg-layer-0: rgba(33, 37, 41, 0.7);
    --bg-layer-1: rgba(33, 37, 41, 0.9);
    --bg-layer-2: #212529;
    --bg-layer-3: #17191C;
    --fg-layer-0: var(--white-900);
    --fg-layer-1: rgba(33, 37, 41, 0.05);
    --fg-layer-2: rgba(33, 37, 41, 0.05);
    --fg-layer-3: rgba(33, 37, 41, 0.05);
    --text-link: var(--white-900);
    --text-link-hover: var(--white-900);
    --text-link-visited: var(--white-900);
    --text-link-ring: var(--white-900);
    --text-link-bg: var(--white-900);
    --text-link-bg-hover: var(--white-900);
    --text-link-border: var(--white-900);
    --text-link-border-hover: var(--white-900);
    --bg-base-color: var(--bg-2);
    --bg-base-color-action: var(--bg-3);
    --text-base-color: var(--text-1);
    --link-base-color: var(--text-link);
    --link-base-color-action: var(--text-link-hover);
    --border-base-color: var(--bg-3);
    --border-base-color-action: var(--bg-4);
    --color-active: var(--white-900);
    --color-active-fg: var(--black);
    --color-pending: #744AEC;
    --color-started: #165C26;
    --color-locked: #515151;
    --color-comingsoon: #79B8FF;
    --color-completedsuspended: #D73A49;
    --color-hours-left: #633BD4;
    --color-suspendedwithattempts: #D35608;
    --color-essential: #CB2431;
    --color-suggested: #D35608;
    --color-other: #515151;
    --fg-completed: #28A745;
    --border-color-completed: color-mix(in oklch, #22863A, var(--layout-content-bg) 75%);
    --bg-completed: color-mix(in oklch, #22863A, var(--layout-content-bg) 95%);
    --fg-incompleted: #D73A49;
    --border-color-incompleted: color-mix(in oklch, #CB2431, var(--layout-content-bg) 75%);
    --bg-incompleted: color-mix(in oklch, #CB2431, var(--layout-content-bg) 95%);
    --color-face-sad: #EA4A5A;
    --color-face-neutral: #FF9E51;
    --color-face-happy: #34D058;
    --fg-info: #DBEDFF;
    --border-info: #2188FF;
    --bg-info: #005CC5;
    --bg-error: #EA4A5A;
    --fg-error: #FFDCE0;
    --border-error: #CB2431;
    --bg-success: #34D058;
    --fg-success: #DCFFE4;
    --border-success: #22863A;
    --bg-warning: #FF9E51;
    --border-warning: #F26B0C;
    --fg-warning: #FFECDC;
    --color-status-online: #34D058;
    --color-status-offline: #B1B1B1;
    --illustration-line-color: var(--neutral-700);
    --illustration-light-color: var(--neutral-800);
    --illustration-black-color: var(--neutral-600);
    --illustration-featured-color: var(--brand-primary-400);
    --illustration-color-sweet: #F7F7F7;
    --illustration-color-bitter: #9E9E9E;
    --illustration-color-company: var(--company-dark);
    --slider--backdrop: rgba(0, 0, 0, 0.4);
    --banner-gradient--top: rgba(0, 0, 0, 0.2);
    --banner-gradient--bottom: rgba(0, 0, 0, 0.7);
    --banner-fg: var(--white);
    --bg-0: var(--neutral-950);
    --bg-1: var(--neutral-900);
    --bg-2: var(--neutral-800);
    --bg-3: var(--neutral-700);
    --bg-4: var(--neutral-600);
    --bg-5: var(--neutral-500);
    --overlay-1: var(--white-a10);
    --overlay-2: var(--white-a20);
    --header-1: var(--white-900);
    --header-2: var(--white-800);
    --header-3: var(--white-700);
    --header-4: var(--white-600);
    --text-1: var(--white-800);
    --text-2: var(--white-700);
    --text-3: var(--white-600);
    --text-4: var(--white-500);
    --text-muted: var(--white-600);
    --text-disabled: var(--white-300);
    --border-1: var(--neutral-800);
    --border-2: var(--neutral-700);
    --border-3: var(--neutral-600);
    --border-4: var(--neutral-500);
    --shadow-1: var(--white-a10);
    --shadow-2: var(--white-a20);
    --shadow-3: var(--white-a30);
    --shadow-4: var(--white-a40);
    --icon-1: var(--white-900);
    --icon-2: var(--white-800);
    --icon-3: var(--white-600);
    --icon-4: var(--white-400);
    --icon-disabled: var(--white-300);
    --bg-inverse-1: var(--neutral-50);
    --bg-inverse-2: var(--neutral-100);
    --bg-inverse-3: var(--neutral-200);
    --bg-inverse-4: var(--neutral-300);
    --bg-inverse-subtle: var(--neutral-100);
    --text-inverse-1: var(--neutral-900);
    --text-inverse-2: var(--neutral-800);
    --text-inverse-3: var(--neutral-700);
    --text-inverse-4: var(--neutral-600);
    --text-inverse-disabled: var(--neutral-400);
    --border-inverse-1: var(--neutral-200);
    --border-inverse-2: var(--neutral-300);
    --border-inverse-3: var(--neutral-400);
    --border-inverse-4: var(--black-a10);
    --shadow-inverse-1: var(--shadow-1);
    --shadow-inverse-2: var(--shadow-2);
    --shadow-inverse-3: var(--shadow-3);
    --shadow-inverse-4: var(--shadow-4);
    --icon-inverse-1: var(--neutral-900);
    --icon-inverse-2: var(--neutral-800);
    --icon-inverse-3: var(--neutral-700);
    --icon-inverse-4: var(--neutral-600);
    --icon-inverse-disabled: var(--neutral-400);
    --ring-focus: color-mix(in oklch, var(--brand-primary-500), var(--neutral-50) 40%);
    --shadow-focus-inset: color-mix(in oklch, var(--neutral-900), transparent 92%);
    --company: var(--brand-primary-500);
    --company-dark: rgb(56.6776742065%, 6.5411273393%, 13.8944875465%);
    --company-hover: rgb(71.9103473273%, 22.195143493%, 25.2135429243%);
    --company-active: rgb(75.2851895173%, 30.2015324558%, 31.4897096956%);
    --company-soft: rgb(17.4017360557%, 18.1408918689%, 29.2511456763%);
    --company-muted: rgb(14.2412370771%, 17.0806101763%, 23.8863243388%);
    --text-on-company: #ffffff;
    --text-on-company-hover: #ffffff;
    --text-on-company-active: #ffffff;
    --text-on-company-soft: #ffffff;
    --text-on-company-muted: #ffffff;
    --company-text-contrast: 7.2282568579;
    --company-on-surface: rgb(81.5269277114%, 44.4640709062%, 44.1515807916%);
    --company-ui-on-surface: rgb(74.4574216231%, 28.2908524515%, 29.9206770114%);
    --border-company: rgb(74.4574216231%, 28.2908524515%, 29.9206770114%);
    --icon-company: rgb(74.4574216231%, 28.2908524515%, 29.9206770114%);
    --ring-company: rgb(74.4574216231%, 28.2908524515%, 29.9206770114%);
    --gradient-company-soft: linear-gradient(-225deg, var(--bg-company) 20%, var(--bg-company-secondary) 100%);
    --gradient-company-45: linear-gradient(45deg, var(--bg-company) 20%, var(--bg-company-secondary) 100%);
    --gradient-company: linear-gradient(10deg, var(--bg-company) 20%, var(--bg-company-secondary) 100%);
    --gradient-company-hover: linear-gradient(10deg, var(--bg-company-hover) 20%, var(--bg-company-secondary) 100%);
    --color-bg-canvas: var(--bg-0);
    --color-bg-surface: var(--bg-1);
    --color-bg-surface-muted: var(--bg-2);
    --color-bg-surface-raised: var(--bg-0);
    --color-text-primary: var(--text-1);
    --color-text-secondary: var(--text-2);
    --color-text-muted: var(--text-muted);
    --color-border-subtle: var(--border-1);
    --color-border-default: var(--border-2);
    --color-border-strong: var(--border-3);
    --layout-content-bg: #1e2124;
    --button-primary-bg: var(--company);
    --button-primary-fg: var(--text-on-company);
    --button-primary-border: var(--border-company);
    --button-primary-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-400), transparent 93%);
    --button-primary-hover-bg: var(--company-hover);
    --button-primary-hover-fg: var(--text-on-company-hover);
    --button-primary-hover-border: var(--company-hover);
    --button-primary-hover-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-400), transparent 90%);
    --button-primary-active-bg: var(--company-active);
    --button-primary-active-fg: var(--text-on-company-active);
    --button-primary-active-border: var(--company-active);
    --button-primary-active-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-400), transparent 90%);
    --button-primary-disabled-bg: var(--neutral-700);
    --button-primary-disabled-fg: var(--white-300);
    --button-primary-disabled-border: var(--neutral-700);
    --button-primary-disabled-shadow: none;
    --button-secondary-bg: var(--brand-primary-400);
    --button-secondary-fg: var(--white-900);
    --button-secondary-border: var(--brand-primary-400);
    --button-secondary-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-400), transparent 93%);
    --button-secondary-hover-bg: color-mix(in oklch, var(--brand-primary-400), black 80%);
    --button-secondary-hover-fg: var(--brand-primary-400);
    --button-secondary-hover-border: color-mix(in oklch, var(--brand-primary-400), white 10%);
    --button-secondary-hover-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-400), transparent 90%);
    --button-secondary-active-bg: color-mix(in oklch, var(--brand-primary-400), white 14%);
    --button-secondary-active-fg: var(--white-900);
    --button-secondary-active-border: color-mix(in oklch, var(--brand-primary-400), white 14%);
    --button-secondary-active-shadow: 0 0 10px color-mix(in oklch, var(--brand-primary-400), transparent 90%);
    --button-secondary-disabled-bg: var(--neutral-700);
    --button-secondary-disabled-fg: var(--white-300);
    --button-secondary-disabled-border: var(--neutral-700);
    --button-secondary-disabled-shadow: none;
    --button-tertiary-bg: transparent;
    --button-tertiary-fg: var(--brand-tertiary-400);
    --button-tertiary-border: transparent;
    --button-tertiary-shadow: none;
    --button-tertiary-hover-bg: color-mix(in oklch, var(--bg-2), white 6%);
    --button-tertiary-hover-fg: var(--brand-tertiary-400);
    --button-tertiary-hover-border: transparent;
    --button-tertiary-hover-shadow: none;
    --button-tertiary-active-bg: color-mix(in oklch, var(--bg-2), white 10%);
    --button-tertiary-active-fg: var(--brand-tertiary-400);
    --button-tertiary-active-border: transparent;
    --button-tertiary-active-shadow: none;
    --button-tertiary-disabled-bg: transparent;
    --button-tertiary-disabled-fg: var(--white-300);
    --button-tertiary-disabled-border: transparent;
    --button-tertiary-disabled-shadow: none;
    --bg-card: var(--white-a10);
    --bg-card-hover: var(--white-a20);
    --card-bg: var(--bg-card);
    --card-bg-hover: var(--bg-card-hover);
    --card-fg: var(--text-1);
    --card-border: var(--border-1);
    --card-radius: var(--radius-card);
    --card-shadow: var(--shadow-1);
    --header-bg: #ffffff;
    --header-fg: #111111;
    --header-link-fg: #111111;
    --header-link-hover-fg: #111111;
    --header-link-hover-bg: color-mix(in oklch, var(--header-bg), black 4%);
    --header-link-contrast-fg: #111111;
    --header-link-state-bg: color-mix(in oklch, var(--header-bg), black 6%);
    --header-user-bg: #FAFBFB;
    --header-user-fg: #111111;
    --header-user-link-fg: #111111;
    --bg-nav__inverse--active: var(--black-50);
    --fg-nav__inverse--active: var(--black);
    --border-nav__inverse--active: #111111;
    --header-link-active-fg: #111111;
    --header-link-active-bg: color-mix(in oklch, var(--header-bg), black 8%);
    --header-link-submenu-bg: color-mix(in oklch, var(--header-bg), black 12%);
    --header-submenu-bg: color-mix(in oklch, var(--header-bg), black 4%);
    --header-submenu-fg: #111111;
    --header-submenu-hover-fg: #111111;
    --header-submenu-hover-bg: color-mix(in oklch, var(--header-submenu-bg), black 8%);
    --header-submenu-active-fg: #111111;
    --header-submenu-active-bg: color-mix(in oklch, var(--header-submenu-bg), black 8%);
    --header-icon-fg: #111111;
    --header-icon-hover-fg: #111111;
    --footer-fg: #111111;
    --footer-smoothed-details-fg: rgba(0, 0, 0, 0.3);
    --prefooter-bg: #FAFBFB;
    --footer-bg: #ffffff;
    --footer-link-fg: color-mix(in oklch, #111111, white 4%);
    --footer-link-hover-fg: #111111;
    --footer-link-active-fg: #111111;
    --footer-link-hover-bg: color-mix(in oklch, var(--footer-bg), black 4%);
    --footer-link-active-bg: color-mix(in oklch, var(--footer-bg), black 8%);
    --preheader-bg: #FAFBFB;
    --preheader-fg: #111111;
    --preheader-brand-fg: var(--text-on-company);
    --preheader-brand-fg-outline: var(--company-on-surface);
    --preheader-brand-bg: var(--company);
    --preheader-brand-border: var(--text-on-company);
    --preheader-brand-border-outline: var(--border-company);
    --preheader-brand-fg--hover: var(--text-on-company-hover);
    --preheader-brand-fg-outline--hover: var(--company-on-surface);
    --preheader-brand-bg--hover: var(--company-hover);
    --preheader-brand-border--hover: var(--text-on-company-hover);
    --preheader-brand-border-outline--hover: var(--border-company);
    --preheader-notification-bg: var(--notification-bg-light, var(--brand-primary-300));
    --preheader-hover-bg: color-mix(in oklch, var(--preheader-bg), black 4%);
    --preheader-hover-border: var(--text-on-company-hover);
    --preheader-hover-border-outline: var(--border-company);
    --preheader-brand-bg-border--hover: var(--text-on-company-hover);
    --preheader-brand-bg-border-outline--hover: var(--border-company);
    --preheader-link-fg: #111111;
    --preheader-link-hover-fg: #111111;
    --preheader-link-contrast-fg: #111111;
    --preheader-link-static-fg: #111111;
    --preheader-link-inverse-fg: #ffffff;
    --preheader-link-hover-bg: color-mix(in oklch, var(--preheader-bg), black 4%);
    --preheader-link-hover-emphasis-bg: color-mix(in oklch, var(--preheader-bg), black 12%);
    --preheader-link-state-bg: color-mix(in oklch, var(--preheader-bg), black 6%);
    --preheader-header-link-soft-bg: color-mix(in oklch, var(--preheader-bg), black 6%);
    --preheader-before-border-bg: var(--black-a05);
    --preheader-progress-bg: rgba(0, 0, 0, 0.08);
    --preheader-progress-fill: var(--brand-primary-300);
    --preheader-icon-fg: #111111;
    --preheader-icon-hover-fg: #111111;
    --preheader-scrollbar-thumb: rgba(51, 51, 51, 0.22) rgba(51, 51, 51, 0);
    --preheader-scrollbar-track: transparent;
    --preheader-link-active-fg: #111111;
    --preheader-link-active-bg: color-mix(in oklch, var(--preheader-bg), black 8%);
    --preheader-user-menu-bg: #FAFBFB;
    --preheader-user-menu-fg: #111111;
    --preheader-mobile-logo-position: static;
    --preheader-mobile-logo-bg: transparent;
    --preheader-mobile-logo-radius: 0;
    --preheader-mobile-logo-padding: 0;
    --preheader-mobile-logo-display: inline;
    --preheader-mobile-logo-width: auto;
    --bg-nav: #ffffff;
    --fg-nav: #111111;
    --bg-nav--hover: color-mix(in oklch, var(--bg-nav), black 6%);
    --fg-nav--hover: #111111;
    --bg-nav--active: color-mix(in oklch, var(--bg-nav), black 10%);
    --fg-nav--active: #111111;
    --border-nav--active: var(--company);
    --bg-nav__dropdown: color-mix(in oklch, var(--bg-nav), black 3%);
    --fg-nav__dropdown: #111111;
    --border-nav__dropdown: rgba(0, 0, 0, 0.12);
    --bg-nav__dropdown--hover: color-mix(in oklch, var(--bg-nav__dropdown), black 6%);
    --fg-nav__dropdown--hover: #111111;
    --bg-nav__dropdown--active: color-mix(in oklch, var(--bg-nav__dropdown), black 10%);
    --fg-nav__dropdown--active: #111111;
    --bg-nav__inverse: transparent;
    --fg-nav__inverse: var(--white);
    --fg-nav__inverse--hover: #111111;
    --bg-nav__inverse-dropdown: color-mix(in oklch, var(--bg-nav), black 3%);
    --fg-nav__inverse-dropdown: #111111;
    --border-nav__inverse-dropdown: rgba(0, 0, 0, 0.12);
    --bg-nav__inverse-dropdown--hover: color-mix(in oklch, var(--bg-nav__inverse-dropdown), black 6%);
    --fg-nav__inverse-dropdown--hover: #111111;
    --bg-pannel-form: #2e3338;
    --form-text-color: var(--white-700);
    --input: var(--bg-0);
    --input-border: var(--border-1);
    --textarea: var(--bg-0);
    --textarea-border: var(--border-1);
    --select: var(--bg-0);
    --select-border: var(--border-1);
    --bg-radio: #2e3338;
    --bg-radio--active: #2e3338;
    --bg-border-radio: #ffffff;
    --select-active: var(--white-900);
    --check: var(--white-600);
    --check-active: var(--brand-primary-400);
    --check-active-fg: var(--black);
    --form-color-disabled: var(--white-200);
    --loader-color: var(--white-600);
    --bg-swal2-popup: #414345;
    --fg-swal2-popup: #ededed;
    --bg-modal__header: #2e3338;
    --bg-modal__body: #2e3338;
    --bg-modal__footer: #2e3338;
    --fg-modal__header: #dee0e1;
    --fg-modal__body: #dee0e1;
    --fg-modal__footer: #dee0e1;
    --tab__container-bg: var(--bg-layer-3);
    --tab__item--active-bg: var(--bg-layer-0);
    --tab__item--active-fg: var(--fg-layer-0);
    --tab__item--inactive-bg: var(--bg-layer-2);
    --tab__item--inactive-fg: var(--fg-layer-2);
    --tab__item--hover-bg: var(--bg-layer-1);
    --tab__item--hover-fg: var(--fg-layer-1);
    --tabs__solid: #181a1c;
    --tabs__solid--bg-tab-item: #181a1c;
    --tabs__solid--fg-tab-item: #f7f8f9;
    --tabs__solid--bg-tab-item-shadow: #000000;
    --tabs__solid--bg-tab-item-hover: #1f2023;
    --tabs__solid--fg-tab-item-active: #ffffff;
    --tabs__solid--bg-tab-item-active: #2e3338;
    --tabs__solid--bg-tab-item-active-hover: #373e45;
    --bg-tab-active: var(--white-a10);
    --table-light-bg: var(--white-50);
    --table-light-bg-hover: color-mix(in oklch, var(--white-50), white 6%);
    --table-light-fg: var(--white-900);
    --table-dark-bg: var(--white-100);
    --table-dark-bg-hover: color-mix(in oklch, var(--white-100), white 6%);
    --table-dark-fg: var(--white-900);
    --table-dark-border: var(--white-300);
    --progress__bg: var(--neutral-800);
    --bg-related: #151719;
    --bg-course-header: #1e2124;
    --bg-course-hero: #17181a;
    --fg-course: #ededed;
    --course__tab__aria-expanded-false: #1e2124;
    --bg-course-tab-active: var(--company);
    --bg-course-progress-container: #2e3338;
    --bg-task-container: #393e43;
    --fg-task: #ededed;
    --color-course-tab: #ededed;
    --color-course-tab-active: #ededed;
    --border-bottom-course-tab-active: lime;
    --course__tab__border-bottom: 1px solid #4d5255;
    --course-content-resource-item-type: var(--company);
    --course-content-resource-item-type-icon: var(--text-on-company);
    --course-content-resource-item-border-left: var(--company);
    --course-content-resource-item-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    --course-content-resource-item: #2e3338;
    --bg-faq: #17181a;
    --bg-faq--hover: #17181a;
    --fg-faq: #ededed;
    --bg-glossary: #17181a;
    --bg-glossary--hover: #17181a;
    --fg-glossary: #ededed;
    --border-bottom-glossary: #373232;
    --bg-profile: var(--bg-pannel-form);
    --fg-profile: #ededed;
    --bg-resource-action-block: #17181a;
    --bg-resource-action-block-link: var(--company);
    --bg-company: var(--company);
    --bg-company-secondary: var(--color-company-secondary);
    --bg-company-hover: var(--company-hover);
  }
  /* Ejemplo multi-company: overrides por atributo Alejandria 8.0 */
  /* :root[data-company="company-1"] { @include emit-tokens($brand-company-1); } */
}
/* Height of Alejandria header in mobile */
@layer components {
  .c-badge {
    --mc-badge-icon-image: url("../../../../../../../custom-theme/companies/company-base/maps/map-classic-example/images/icon-badge.svg");
    margin-bottom: 0;
    padding: 0;
    width: 15%;
    height: auto;
    display: flex;
    overflow: hidden;
  }
  @media (min-width: 768px) {
    .c-badge {
      width: 14%;
    }
  }
  .c-badge__icon {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-image: var(--mc-badge-icon-image);
    background-position: center;
    background-size: 200% auto;
    /* Icono diamante cuando completas el itinerario */
  }
  .c-badge__icon--0 {
    background-position: 0 0;
  }
  .c-badge__icon--0.isCompleted {
    background-position: 100% 0;
  }
  .c-badge--modal .c-badge__icon--0 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge__icon {
    /* Iconos para cada step del itinario */
  }
  .c-badge__icon--1 {
    background-position: 0 calc(-1 * 100%);
  }
  .c-badge__icon--1.isCompleted {
    background-position: 100% calc(-1 * 100%);
  }
  .c-badge--modal .c-badge__icon--1 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge__icon--2 {
    background-position: 0 calc(-2 * 100%);
  }
  .c-badge__icon--2.isCompleted {
    background-position: 100% calc(-2 * 100%);
  }
  .c-badge--modal .c-badge__icon--2 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge__icon--3 {
    background-position: 0 calc(-3 * 100%);
  }
  .c-badge__icon--3.isCompleted {
    background-position: 100% calc(-3 * 100%);
  }
  .c-badge--modal .c-badge__icon--3 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge__icon--4 {
    background-position: 0 calc(-4 * 100%);
  }
  .c-badge__icon--4.isCompleted {
    background-position: 100% calc(-4 * 100%);
  }
  .c-badge--modal .c-badge__icon--4 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge__icon--5 {
    background-position: 0 calc(-5 * 100%);
  }
  .c-badge__icon--5.isCompleted {
    background-position: 100% calc(-5 * 100%);
  }
  .c-badge--modal .c-badge__icon--5 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge__icon--6 {
    background-position: 0 calc(-6 * 100%);
  }
  .c-badge__icon--6.isCompleted {
    background-position: 100% calc(-6 * 100%);
  }
  .c-badge--modal .c-badge__icon--6 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge--modal {
    width: 100%;
  }
  .c-badge--modal .c-badge__icon--0 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge--modal .c-badge__icon--1 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge--modal .c-badge__icon--2 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge--modal .c-badge__icon--3 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge--modal .c-badge__icon--4 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge--modal .c-badge__icon--5 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  .c-badge--modal .c-badge__icon--6 {
    animation: scaling 3s alternate infinite ease-in-out;
  }
  @keyframes scaling {
    0% {
      transform: scale(0.95);
    }
    100% {
      transform: scale(1);
    }
  }
}
/****************************
 * help
 ****************************/
@layer components {
  .help {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 76, 146, 0.5);
    width: 100%;
    height: 100%;
  }
  @media (min-width: 480px) {
    .help {
      display: none;
    }
  }
  .help .js-is-closing {
    animation-name: helpClose-anim;
    animation-duration: 1s;
    animation-delay: 0.7s;
    animation-fill-mode: forwards;
  }
  .help__close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    width: 20px;
  }
  .help__close .glyphicon {
    font-size: 24px;
  }
  .help--map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
  }
  .help--map .help__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-duration: 1.5s;
    animation-name: helpMap-anim;
  }
  .js-map-is-hidden {
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 0.5s, opacity 0.5s ease-in-out;
  }
  @keyframes helpClose-anim {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  @keyframes helpMap-anim {
    0% {
      transform: translate(-65%, -50%);
    }
    100% {
      transform: translate(-35%, -50%);
    }
  }
}
@layer components {
  .c-map--container {
    padding-bottom: 32px;
    background: var(--map-background);
  }
  .c-map__header {
    margin: 30px 0 15px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
  }
  @media (min-width: 768px) {
    .c-map__header {
      margin: 40px 0 20px;
      flex-direction: row;
      align-items: flex-start;
    }
  }
  .c-map__info {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    margin: 0 0 20px 0;
  }
  @media (min-width: 480px) {
    .c-map__info {
      width: 100%;
    }
  }
  @media (min-width: 768px) {
    .c-map__info {
      width: 54%;
      margin: 0 2% 0 0;
    }
  }
  @media (min-width: 1024px) {
    .c-map__info {
      width: 50%;
      margin: 0 3% 0 0;
    }
  }
  .c-map__tit {
    flex: 0 0 auto;
    margin: 0 0 10px 0;
    font-size: 2.4rem;
  }
  @media (min-width: 360px) {
    .c-map__tit {
      font-size: 2.6rem;
    }
  }
  @media (min-width: 768px) {
    .c-map__tit {
      margin: -2px 0 5px 0;
      font-size: 3.2rem;
    }
  }
  .c-map__subtitle {
    align-items: center;
    display: flex;
  }
  @media (min-width: 768px) {
    .c-map__subtitle {
      margin-top: 4px;
    }
  }
  .c-map__points {
    align-items: center;
    display: flex;
    font-size: 1.4rem;
  }
  div + .c-map__points {
    margin-left: 35px;
  }
  .c-map__points-icon {
    fill: var(--text-1);
    height: 25px;
    margin-right: 5px;
    width: 25px;
  }
  .c-map__progress {
    flex-grow: 1;
  }
  .c-map__extra-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-map__certificate {
    display: flex;
    align-items: center;
  }
  @media (min-width: 768px) {
    .c-map__certificate {
      margin: 10px 0 0;
    }
  }
  .c-map__badges {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding-left: 0;
    list-style: none;
  }
  @media (min-width: 360px) {
    .c-map__badges {
      max-width: 500px;
    }
  }
  @media (min-width: 768px) {
    .c-map__badges {
      justify-content: flex-end;
      width: 44%;
      max-width: none;
    }
  }
  @media (min-width: 1024px) {
    .c-map__badges {
      width: 47%;
    }
  }
  .c-map__wrapper {
    width: auto;
    height: calc(100vh - 200px);
    overflow-x: scroll;
    overflow-y: hidden;
    position: relative;
    border-radius: 10px;
    background-color: #156f9c; /* If map has video header */
  }
  @media screen and (min-width: 480px), screen and (orientation: landscape) {
    .c-map__wrapper {
      height: auto;
      overflow-x: hidden;
    }
  }
  .c-map__video-header {
    left: 10px;
    position: absolute;
    top: 10px;
    z-index: 1;
  }
  .c-map__video-icon {
    fill: #ffffff;
    margin: 0 10px 0 0;
  }
  .c-map__video-link {
    display: flex;
    align-items: center;
  }
  .c-map__video-tit {
    display: inline-block;
    font-size: 2rem;
    line-height: normal;
    color: #ffffff;
    vertical-align: middle;
  }
  .c-map__bg {
    --mc-map-bg-image: url("../../../../../../../custom-theme/companies/company-base/maps/map-classic-example/images/map-bg.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-image: var(--mc-map-bg-image);
    background-size: cover;
    width: calc(calc(100vh - 200px) / 0.5789473684);
    height: calc(100vh - 200px);
    pointer-events: none;
  }
  @media screen and (min-width: 480px), screen and (orientation: landscape) {
    .c-map__bg {
      width: 100%;
      height: 0;
      padding-top: 57.8947368421%;
      overflow-x: hidden;
    }
  }
  .c-map__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: calc(calc(100vh - 200px) / 0.5789473684);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  @media screen and (min-width: 480px), screen and (orientation: landscape) {
    .c-map__list {
      width: 100%;
    }
  }
  .c-map__item {
    flex: 0 0 calc(100% / 3);
    width: calc(100% / 3);
    padding-top: calc(100% / 2 * 0.5789473684);
    position: relative;
  }
}
/****************************
 * steps
 ****************************/
@layer components {
  .step {
    --mc-step-state-image: url("../../../../../../../custom-theme/companies/company-base/maps/map-classic-example/images/step-state.svg");
    position: absolute;
    display: block;
    min-width: 100px;
    max-width: 120px;
    border-radius: 5px;
    border-color: #ffffff;
    padding: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
  }
  @media (min-width: 480px) {
    .step {
      min-width: 80px;
      max-width: 130px;
      padding: 8px;
      border-radius: 3px;
      font-size: 1rem;
    }
  }
  @media (min-width: 768px) {
    .step {
      min-width: 100px;
      max-width: 160px;
      padding: 14px;
      border-radius: 5px;
      font-size: 1.4rem;
    }
  }
  @media (min-width: 1024px) {
    .step {
      min-width: 100px;
      max-width: 200px;
      padding: 14px;
      border-radius: 5px;
      font-size: 1.5rem;
    }
  }
  .step:hover {
    border-color: var(--company);
    background-color: var(--company);
    color: #ffffff;
  }
  .step::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
  }
  .step::after {
    content: "";
    position: absolute;
    top: calc(24px / -2);
    width: 24px;
    height: 24px;
    background-image: var(--mc-step-state-image);
    background-size: 100% auto;
    background-position: 0 0;
    border-radius: 50%;
    zoom: 1.1;
  }
  @media (min-width: 480px) {
    .step::after {
      top: calc(24px / -2);
      width: 24px;
      height: 24px;
    }
  }
  @media (min-width: 768px) {
    .step::after {
      top: calc(32px / -2);
      width: 32px;
      height: 32px;
    }
  }
  @media (min-width: 1024px) {
    .step::after {
      top: calc(34px / -2);
      width: 34px;
      height: 34px;
    }
  }
  .step__index {
    position: absolute;
  }
  .step.isLocked {
    border-color: var(--company);
    background-color: var(--company);
    color: var(--text-on-company);
    pointer-events: none;
  }
  .step.isLocked::after {
    background-color: #515151;
    background-position: 0 -200%;
    border: 2px solid #ffffff;
  }
  .step.isCompleted {
    border-color: var(--company);
    background-color: var(--company);
    color: #ffffff;
  }
  .step.isCompleted::after {
    background-color: #28A745;
    background-position: 0 -100%;
    border: 2px solid #ffffff;
  }
  .step.isCompletedAndSuspended {
    border-color: var(--company);
    background-color: var(--company);
    color: #ffffff;
  }
  .step.isCompletedAndSuspended::after {
    background-color: #CB2431;
    background-position: 0 -300%;
    border: 2px solid #ffffff;
  }
  .step.isComingSoon {
    border-color: var(--company);
    background-color: var(--company);
    color: #ffffff;
  }
  .step.isComingSoon::after {
    background-color: #515151;
    background-position: 0 -400%;
    border: 2px solid #ffffff;
  }
  .step--1 {
    top: 75%;
    background-color: var(--company);
    right: 10%;
    justify-content: flex-end;
  }
  .step--1::after {
    left: calc(24px / -2);
  }
  @media (min-width: 480px) {
    .step--1::after {
      left: calc(24px / -2);
    }
  }
  @media (min-width: 768px) {
    .step--1::after {
      left: calc(32px / -2);
    }
  }
  @media (min-width: 1024px) {
    .step--1::after {
      left: calc(34px / -2);
    }
  }
  .step--2 {
    top: 21%;
    background-color: var(--company);
    right: 45%;
    justify-content: flex-end;
  }
  .step--2::after {
    left: calc(24px / -2);
  }
  @media (min-width: 480px) {
    .step--2::after {
      left: calc(24px / -2);
    }
  }
  @media (min-width: 768px) {
    .step--2::after {
      left: calc(32px / -2);
    }
  }
  @media (min-width: 1024px) {
    .step--2::after {
      left: calc(34px / -2);
    }
  }
  .step--3 {
    top: 17%;
    background-color: var(--company);
    right: 42%;
    justify-content: flex-end;
  }
  .step--3::after {
    left: calc(24px / -2);
  }
  @media (min-width: 480px) {
    .step--3::after {
      left: calc(24px / -2);
    }
  }
  @media (min-width: 768px) {
    .step--3::after {
      left: calc(32px / -2);
    }
  }
  @media (min-width: 1024px) {
    .step--3::after {
      left: calc(34px / -2);
    }
  }
  .step--4 {
    top: 75%;
    background-color: var(--company);
    left: 4%;
    justify-content: flex-start;
  }
  .step--4::after {
    right: calc(24px / -2);
  }
  @media (min-width: 480px) {
    .step--4::after {
      right: calc(24px / -2);
    }
  }
  @media (min-width: 768px) {
    .step--4::after {
      right: calc(32px / -2);
    }
  }
  @media (min-width: 1024px) {
    .step--4::after {
      right: calc(34px / -2);
    }
  }
  .step--5 {
    top: 18%;
    background-color: var(--company);
    right: 62%;
    justify-content: flex-end;
  }
  .step--5::after {
    left: calc(24px / -2);
  }
  @media (min-width: 480px) {
    .step--5::after {
      left: calc(24px / -2);
    }
  }
  @media (min-width: 768px) {
    .step--5::after {
      left: calc(32px / -2);
    }
  }
  @media (min-width: 1024px) {
    .step--5::after {
      left: calc(34px / -2);
    }
  }
  .step--6 {
    top: 15%;
    background-color: var(--company);
    left: 30%;
    justify-content: flex-start;
  }
  .step--6::after {
    right: calc(24px / -2);
  }
  @media (min-width: 480px) {
    .step--6::after {
      right: calc(24px / -2);
    }
  }
  @media (min-width: 768px) {
    .step--6::after {
      right: calc(32px / -2);
    }
  }
  @media (min-width: 1024px) {
    .step--6::after {
      right: calc(34px / -2);
    }
  }
  .step__title {
    display: block;
    padding-left: 16px;
  }
  .step__subtitle {
    color: #ffffff;
    font-weight: 400;
    display: block;
    font-size: 0.9rem;
    margin-top: 3px;
    text-transform: none;
  }
  .isLocked .step__subtitle {
    color: rgba(0, 0, 0, 0.5);
  }
  @media (min-width: 1024px) {
    .step__subtitle {
      font-size: 1rem;
    }
  }
  @media (max-width: calc(1024px - 0.02px)) {
    .step__subtitle-date {
      display: block;
    }
  }
}
@layer components {
  .ui-vertical-map {
    --vm-map-background: #ccff00;
    --vm-map-bg-image-responsive: url("../../../../../custom-theme/companies/company-base/maps/vertical-map-example/images/map-bg.webp");
    --vm-map-bg-image: url("../../../../../custom-theme/companies/company-base/maps/vertical-map-example/images/map-bg.webp");
    --vm-map-bg-image-size-responsive: 700px;
    --vm-map-bg-image-size: 1450px;
    --vm-path-color: #ffffff;
    --vm-item-bg: rgba(0, 0, 0, 0.5);
    --vm-item-color: #ffffff;
    --vm-stroke-heigt-responsive: 1570px;
    --vm-stroke-heigt: 1570px;
    --vm-step-first-height: 540px;
    --vm-step-min-height: 410px;
    --vm-marker-size: 20px;
    --vm-stroke-width-xs: 325px;
    --vm-stroke-width-md: 755px;
    --vm-stroke-width-lg: 750px;
    --vm-content-width-xs: 325px;
    --vm-content-width-md: 755px;
    background: var(--vm-map-background);
  }
  .ui-vertical-map-header {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(var(--size-1));
    padding: var(--size-2);
    width: 100%;
    z-index: var(--z-sticky);
  }
  .ui-vertical-map-header.ui-vertical-map-header--fixed {
    position: fixed;
    top: 50px;
  }
  .ui-vertical-map-header.ui-vertical-map-header--classic {
    margin-bottom: -8px;
    padding-bottom: 32px;
    margin-top: 10px;
  }
  body.b-l-header--topmenu.b-l-header--hidden .ui-vertical-map-header {
    top: 50px;
  }
  @media (min-width: 768px) {
    body.b-l-header--topmenu.b-l-header--hidden .ui-vertical-map-header {
      top: 60px;
    }
  }
  body.b-l-header--topmenu.b-l-header--hidden.b-l-header--fixed .ui-vertical-map-header {
    top: 50px;
  }
  @media (min-width: 480px) {
    body.b-l-header--topmenu.b-l-header--hidden.b-l-header--fixed .ui-vertical-map-header {
      top: 50px;
    }
  }
  @media (min-width: 1200px) {
    body.b-l-header--topmenu.b-l-header--hidden.b-l-header--fixed .ui-vertical-map-header {
      top: 150px;
    }
  }
  body.b-l-header--topmenu.b-l-header--hidden.b-l-header--fixed.b-l-header--is-hidden .ui-vertical-map-header {
    top: 50px;
  }
  @media (min-width: 1200px) {
    body.b-l-header--topmenu.b-l-header--hidden.b-l-header--fixed.b-l-header--is-hidden .ui-vertical-map-header {
      top: 0px;
    }
  }
  body.b-l-header--topmenu.b-l-header--hidden.b-l-header--is-hidden .ui-vertical-map-header {
    top: 0;
  }
  .ui-vertical-map-header {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: var(--size-3);
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 1024px) {
    .ui-vertical-map-header {
      flex-direction: row;
      flex-wrap: nowrap;
      gap: var(--size-2);
      align-items: center;
      justify-content: space-between;
    }
  }
  .ui-vertical-map-header__left {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: var(--size-2);
  }
  .ui-vertical-map-header__left .c-progress-bar__with-text:after {
    color: var(--white) !important;
  }
  .ui-vertical-map-header__right {
    padding-right: var(--size-4);
  }
  .ui-vertical-map-header__right {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--size-2);
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .ui-vertical-map-header__right {
      gap: var(--size-4);
    }
  }
  .ui-vertical-map-progress__title {
    color: var(--white) !important;
    width: 100%;
  }
  @media (min-width: 768px) {
    .ui-vertical-map-progress__title {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
      overflow: hidden;
      min-width: 0;
      text-align: left;
      width: 90%;
      text-align: left;
      width: 450px;
    }
  }
  .ui-vertical-map-progress .progress-bar__container {
    justify-content: start !important;
  }
  .ui-vertical-map-progress .c-progress-bar::-webkit-progress-bar {
    background: rgba(255, 255, 255, 0.2) !important;
  }
  .ui-vertical-map-progress .c-progress-bar::-webkit-progress-value {
    background: rgba(255, 255, 255, 0.8) !important;
  }
  .ui-vertical-map-steps {
    color: var(--white);
  }
  .ui-vertical-map-steps {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--size-1_5);
    align-items: center;
    justify-content: center;
  }
  .ui-vertical-map-steps__status {
    color: var(--white);
  }
  .ui-vertical-map-steps__status {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
    align-items: start;
    justify-content: center;
  }
  .ui-vertical-map-steps__icon {
    height: var(--size-4);
    width: var(--size-4);
  }
  .ui-vertical-map-steps__text {
    font-size: var(--size-1_5);
    line-height: var(--size-1_5);
  }
  .ui-vertical-map-steps__state {
    font-weight: bold;
  }
  .ui-vertical-map-steps__steps {
    margin: 0 !important;
    padding: 0 !important;
  }
  .ui-vertical-map-steps__steps {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--size-0_5);
  }
  .ui-vertical-map-steps__step {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ui-vertical-map-steps-container {
    display: flex;
    align-items: center;
  }
  .ui-vertical-map-points {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--size-1_5);
    align-items: center;
    justify-content: center;
  }
  .ui-vertical-map-points p {
    margin: 0 !important;
    padding: 0 !important;
  }
  .ui-vertical-map-points__status {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: var(--size-0_5);
    align-items: start;
    justify-content: center;
  }
  .ui-vertical-map-points__status {
    color: var(--white);
  }
  .ui-vertical-map-points__icon {
    height: var(--size-4);
    width: var(--size-4);
  }
  .ui-vertical-map-points__icon path {
    fill: var(--white);
  }
  .ui-vertical-map-points__text {
    font-size: var(--size-1_5);
    line-height: var(--size-1_5);
  }
  .ui-vertical-map-points__state {
    line-height: var(--size-2);
  }
  .ui-vertical-map__map-container {
    background-repeat: no-repeat;
    background-position: center top;
    overflow: hidden;
    position: relative;
  }
  @media (max-width: calc(768px - 0.02px)) {
    .ui-vertical-map__map-container {
      background-image: var(--vm-map-bg-image-responsive);
      background-size: var(--vm-map-bg-image-size-responsive);
    }
  }
  @media (min-width: 768px) {
    .ui-vertical-map__map-container {
      background-image: var(--vm-map-bg-image);
      background-size: var(--vm-map-bg-image-size);
    }
  }
  .ui-vertical-map-item-step__title {
    color: var(--white) !important;
  }
  .ui-vertical-map-item__stroke {
    position: absolute;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    top: var(--size-28);
    z-index: var(--z-10);
    overflow: hidden;
  }
  @media (min-width: 360px) {
    .ui-vertical-map-item__stroke {
      width: var(--vm-stroke-width-xs);
    }
  }
  @media (min-width: 768px) {
    .ui-vertical-map-item__stroke {
      width: var(--vm-stroke-width-md);
    }
  }
  @media (min-width: 1024px) {
    .ui-vertical-map-item__stroke {
      width: var(--vm-stroke-width-lg);
    }
  }
  @media (max-width: calc(768px - 0.02px)) {
    .ui-vertical-map-item__stroke {
      height: var(--vm-stroke-heigt-responsive);
    }
  }
  @media (min-width: 768px) {
    .ui-vertical-map-item__stroke {
      height: var(--vm-stroke-heigt);
    }
  }
  .ui-vertical-map-item__list > div:nth-child(odd) a {
    left: var(--size-3);
  }
  .ui-vertical-map-item__list > div:nth-child(odd) a::after {
    left: -30px;
  }
  .ui-vertical-map-item__list > div:nth-child(even) a {
    right: var(--size-3);
  }
  .ui-vertical-map-item__list > div:nth-child(even) a::after {
    right: -30px;
  }
  .ui-vertical-map-item__step {
    background-position: center;
    background-size: cover;
    min-height: var(--vm-step-min-height);
  }
  .ui-vertical-map-item__step.ui-vertical-map-item__step--1 {
    min-height: var(--vm-step-first-height);
  }
  .ui-vertical-map-item__step > div {
    position: relative;
    margin: 0 auto;
  }
  @media (min-width: 360px) {
    .ui-vertical-map-item__step > div {
      width: var(--vm-content-width-xs);
    }
  }
  @media (min-width: 768px) {
    .ui-vertical-map-item__step > div {
      width: var(--vm-content-width-md);
    }
  }
  .ui-vertical-map-item__step--1 {
    --vm-step-image-1: url("../../../../../custom-theme/companies/company-base/maps/vertical-map-example/images/img1.webp");
    background-image: var(--vm-step-image-1);
  }
  .ui-vertical-map-item__step--2 {
    --vm-step-image-2: url("../../../../../custom-theme/companies/company-base/maps/vertical-map-example/images/img2.webp");
    background-image: var(--vm-step-image-2);
  }
  .ui-vertical-map-item__step--3 {
    --vm-step-image-3: url("../../../../../custom-theme/companies/company-base/maps/vertical-map-example/images/img3.webp");
    background-image: var(--vm-step-image-3);
  }
  .ui-vertical-map-item__step-link {
    background: var(--vm-item-bg) !important;
    color: var(--vm-item-color) !important;
    text-decoration: none;
    padding: var(--size-2);
    display: block;
    border-radius: var(--size-3);
    width: fit-content;
    position: absolute;
    z-index: var(--z-10);
    top: var(--vm-step-default-offset, 0px);
  }
  .ui-vertical-map-item__step-link {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--size-1_5);
    align-items: start;
    justify-content: space-between;
  }
  .ui-vertical-map-item__step-link::after {
    content: "";
    height: var(--vm-marker-size);
    width: var(--vm-marker-size);
    border-radius: var(--size-6);
    background: var(--vm-path-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .ui-vertical-map-item__step--1 .ui-vertical-map-item__step-link {
    --vm-step-offset-1: 190px;
    top: var(--vm-step-offset-1);
  }
  .ui-vertical-map-item__step--2 .ui-vertical-map-item__step-link {
    --vm-step-offset-2: 50px;
    top: var(--vm-step-offset-2);
  }
  .ui-vertical-map-item__step--3 .ui-vertical-map-item__step-link {
    --vm-step-offset-3: 50px;
    top: var(--vm-step-offset-3);
  }
  .ui-vertical-map-header__title {
    color: var(--white);
  }
}
.p-certificate__certificate {
  margin-bottom: 40px;
  text-align: center;
}

.p-certificate__image {
  display: block;
  margin: 0 auto 15px;
  max-width: 800px;
  width: 100%;
  object-fit: fill;
  aspect-ratio: 19/15;
}

.p-certificate__sidebar {
  margin-bottom: 40px;
}

.p-certificate__heading {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

.p-certificate-pdf__html-body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.p-certificate-pdf {
  background-size: cover;
  font-size: 16px;
  line-height: 1.2em;
  padding: 10mm;
  page-break-after: always;
  text-align: center;
}
.p-certificate-pdf__wrapper {
  border: 1px solid #AC162C;
  border-radius: 24px;
  height: 220mm;
  padding: 10mm;
  position: relative;
  font-family: "Roboto";
}

.p-certificate-pdf__v-center-wrapper {
  display: table;
  width: 100%;
}

.p-certificate-pdf__v-center {
  display: table-cell;
  vertical-align: middle;
}

.p-certificate-pdf__header {
  height: 18%;
}

.p-certificate-pdf__certificate-title {
  color: #AC162C;
  font-size: 1.1em;
  margin-bottom: 25px;
}

.p-certificate-pdf__company-logo {
  max-height: 125px;
  max-width: 300px;
}

.p-certificate-pdf__body {
  height: 47%;
}

.p-certificate-pdf__person-name {
  color: #AC162C;
  font-size: 3.25em;
  font-weight: 800;
  line-height: 1em;
  margin-bottom: 25px;
  font-family: "roboto";
}

.p-certificate-pdf__itinerary-intro {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.p-certificate-pdf__itinerary-name {
  color: #AC162C;
  font-size: 1.6em;
  font-weight: 800;
  line-height: 1.1em;
  margin-bottom: 15px;
}

.p-certificate-pdf__itinerary-metadata {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.p-certificate-pdf__itinerary-start-end {
  font-size: 0.85em;
  margin: 0;
}

.p-certificate-pdf__itinerary-date {
  font-size: 0.85em;
  margin: 0;
}

.p-certificate-pdf__footer {
  height: 150px;
  margin: 0;
}

.p-certificate-pdf__row {
  display: table;
  width: 100%;
}

.p-certificate-pdf__col {
  display: table-cell;
  width: 33.3333333%;
}

.p-certificate-pdf__footer-img {
  max-height: 100px;
  max-width: 25%;
}

.p-certificate-pdf__footer-text {
  font-size: 0.8em;
  line-height: 1.5em;
  margin: 0;
  padding: 0 15px;
}

.p-certificate-pdf__code {
  bottom: 5px;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-certificate-pdf__code-text {
  color: #aaa;
  font-size: 0.7em;
  line-height: 1.4em;
  margin: 0;
}
.p-certificate-pdf__code-text a {
  color: #aaa;
  text-decoration: underline;
}

.p-certificate-pdf__description {
  margin-bottom: 40px;
}

.p-certificate-pdf__description-title {
  font-weight: 700;
}

.p-certificate-pdf__additionalinfo {
  margin-bottom: 40px;
}

.p-certificate-pdf__additionalinfo-title {
  font-weight: 800;
}

.p-certificate-pdf--back {
  background: none;
  text-align: left;
}

.p-certificate-validate {
  margin: 0 auto;
  max-width: 575px;
}
.p-certificate-validate__label {
  border-bottom: 1px solid #cccccc;
  display: block;
  padding-bottom: 8px;
  margin: 25px 0 20px;
}

.p-certificate-validate__input {
  margin-bottom: 15px;
}

.p-certificate-validate__download {
  margin-bottom: 15px;
}

.p-certificate-validate__search {
  text-align: right;
}

.p-fundae-certificate__page {
  border: 10px solid transparent;
  text-align: center;
  display: block;
  height: 990px;
}
.p-fundae-certificate__page b {
  font-weight: 500;
}

.p-fundae-certificate__wysiwyg {
  text-align: left;
  margin: 100px auto;
  padding-top: 40px;
  height: 400px;
  width: 1000px;
}

.p-fundae-certificate__logo h5 {
  color: #AC162C;
  margin-top: 70px;
  font-weight: 900;
}
.p-fundae-certificate__logo img {
  margin-top: 5px;
  width: 130px;
}

.p-fundae-certificate__name {
  margin: 0;
}
.p-fundae-certificate__name h6 {
  font-size: 19px;
  font-weight: 300;
  margin-top: 35px;
}
.p-fundae-certificate__name h1 {
  font-size: 57px;
  font-weight: 900;
  margin-top: -5px;
  color: #AC162C;
}

.p-fundae-certificate__nif {
  margin: 0;
}
.p-fundae-certificate__nif h6 {
  font-size: 19px;
  font-weight: 300;
  margin-top: -5px;
}
.p-fundae-certificate__nif h3 {
  font-size: 27px;
  font-weight: 500;
  margin-top: 0px;
  color: #AC162C;
}

.p-fundae-certificate__description p {
  font-size: 18px;
  font-weight: 300;
  margin: 10px 0 0 0;
  padding: 0;
}

.p-fundae-certificate__code_group {
  margin: 0px auto;
  width: 600px;
}
.p-fundae-certificate__code_group td {
  padding: 10px 50px;
  font-weight: 300;
  width: 50%;
}

.p-fundae-certificate__name h3 {
  font-size: 30px;
  font-weight: 900;
  margin-top: 30px;
  color: #AC162C;
}

.p-fundae-certificate__formation_details {
  margin: 20px 5px 0;
}
.p-fundae-certificate__formation_details p {
  font-size: 18px;
  font-weight: 300;
  padding: 0;
}

.p-fundae-certificate__sign {
  margin-top: 50px;
}
.p-fundae-certificate__sign table {
  width: 900px;
  margin: 0px auto 30px;
}
.p-fundae-certificate__sign p {
  font-size: 18px;
  font-weight: 300;
  margin: 5px;
  padding: 0;
  height: 50px;
}

.p-fundae-certificate__code_group td {
  width: 50%;
}

.p-fundae-certificate__stamp-image {
  height: 127px;
}

.p-fundae-certificate__signature-frame {
  height: 130px;
}

.p-fundae-certificate__code_group td {
  width: 50%;
}

.filter__result {
  order: 2;
}

.filter__configuration {
  order: 1;
}

/* -------------------------
   Conceptuales (tu caso)
-------------------------- */
/* Base: por defecto ocultos */
.only-mobile,
.only-tablet,
.only-desktop {
  display: none !important;
}

@media (max-width: calc(768px - 0.02px)) {
  .only-mobile {
    display: revert !important;
  }
}

/* Tablet = md..lg-ε */
@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .only-tablet {
    display: revert !important;
  }
}

@media (min-width: 1024px) {
  .only-desktop {
    display: revert !important;
  }
}

/* Hide por rangos conceptuales */
@media (max-width: calc(768px - 0.02px)) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

/* -------------------------
   Por breakpoint exacto
   .only-xs .only-sm .only-md ...
   .hide-xs .hide-sm .hide-md ...
-------------------------- */
/* Genera .only-{key}: visible SOLO en ese tramo */
.only-xs {
  display: none !important;
}
@media (min-width: 360px) and (max-width: calc(480px - 0.02px)) {
  .only-xs {
    display: revert !important;
  }
}

.only-sm {
  display: none !important;
}
@media (min-width: 480px) and (max-width: calc(768px - 0.02px)) {
  .only-sm {
    display: revert !important;
  }
}

.only-md {
  display: none !important;
}
@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .only-md {
    display: revert !important;
  }
}

.only-lg {
  display: none !important;
}
@media (min-width: 1024px) and (max-width: calc(1200px - 0.02px)) {
  .only-lg {
    display: revert !important;
  }
}

.only-xl {
  display: none !important;
}
@media (min-width: 1200px) and (max-width: calc(2xl - 0.02px)) {
  .only-xl {
    display: revert !important;
  }
}

.only-2xl {
  display: none !important;
}
@media (min-width: 2xl) and (max-width: calc(3xl - 0.02px)) {
  .only-2xl {
    display: revert !important;
  }
}

.only-3xl {
  display: none !important;
}
@media (min-width: 3xl) {
  .only-3xl {
    display: revert !important;
  }
}

/* Genera .hide-{key}: oculto SOLO en ese tramo (en el resto visible) */
@media (min-width: 360px) and (max-width: calc(480px - 0.02px)) {
  .hide-xs {
    display: none !important;
  }
}

@media (min-width: 480px) and (max-width: calc(768px - 0.02px)) {
  .hide-sm {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .hide-md {
    display: none !important;
  }
}

@media (min-width: 1024px) and (max-width: calc(1200px - 0.02px)) {
  .hide-lg {
    display: none !important;
  }
}

@media (min-width: 1200px) and (max-width: calc(2xl - 0.02px)) {
  .hide-xl {
    display: none !important;
  }
}

@media (min-width: 2xl) and (max-width: calc(3xl - 0.02px)) {
  .hide-2xl {
    display: none !important;
  }
}

@media (min-width: 3xl) {
  .hide-3xl {
    display: none !important;
  }
}

/* (Opcional) variantes display explícito para casos críticos */
.only-xs--flex,
.only-xs--grid,
.only-xs--block,
.only-xs--inline {
  display: none !important;
}

@media (min-width: 360px) and (max-width: calc(480px - 0.02px)) {
  .only-xs--flex {
    display: flex !important;
  }
}

@media (min-width: 360px) and (max-width: calc(480px - 0.02px)) {
  .only-xs--grid {
    display: grid !important;
  }
}

@media (min-width: 360px) and (max-width: calc(480px - 0.02px)) {
  .only-xs--block {
    display: block !important;
  }
}

@media (min-width: 360px) and (max-width: calc(480px - 0.02px)) {
  .only-xs--inline {
    display: inline !important;
  }
}

.only-sm--flex,
.only-sm--grid,
.only-sm--block,
.only-sm--inline {
  display: none !important;
}

@media (min-width: 480px) and (max-width: calc(768px - 0.02px)) {
  .only-sm--flex {
    display: flex !important;
  }
}

@media (min-width: 480px) and (max-width: calc(768px - 0.02px)) {
  .only-sm--grid {
    display: grid !important;
  }
}

@media (min-width: 480px) and (max-width: calc(768px - 0.02px)) {
  .only-sm--block {
    display: block !important;
  }
}

@media (min-width: 480px) and (max-width: calc(768px - 0.02px)) {
  .only-sm--inline {
    display: inline !important;
  }
}

.only-md--flex,
.only-md--grid,
.only-md--block,
.only-md--inline {
  display: none !important;
}

@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .only-md--flex {
    display: flex !important;
  }
}

@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .only-md--grid {
    display: grid !important;
  }
}

@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .only-md--block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: calc(1024px - 0.02px)) {
  .only-md--inline {
    display: inline !important;
  }
}

.only-lg--flex,
.only-lg--grid,
.only-lg--block,
.only-lg--inline {
  display: none !important;
}

@media (min-width: 1024px) and (max-width: calc(1200px - 0.02px)) {
  .only-lg--flex {
    display: flex !important;
  }
}

@media (min-width: 1024px) and (max-width: calc(1200px - 0.02px)) {
  .only-lg--grid {
    display: grid !important;
  }
}

@media (min-width: 1024px) and (max-width: calc(1200px - 0.02px)) {
  .only-lg--block {
    display: block !important;
  }
}

@media (min-width: 1024px) and (max-width: calc(1200px - 0.02px)) {
  .only-lg--inline {
    display: inline !important;
  }
}

.only-xl--flex,
.only-xl--grid,
.only-xl--block,
.only-xl--inline {
  display: none !important;
}

@media (min-width: 1200px) and (max-width: calc(2xl - 0.02px)) {
  .only-xl--flex {
    display: flex !important;
  }
}

@media (min-width: 1200px) and (max-width: calc(2xl - 0.02px)) {
  .only-xl--grid {
    display: grid !important;
  }
}

@media (min-width: 1200px) and (max-width: calc(2xl - 0.02px)) {
  .only-xl--block {
    display: block !important;
  }
}

@media (min-width: 1200px) and (max-width: calc(2xl - 0.02px)) {
  .only-xl--inline {
    display: inline !important;
  }
}

.only-2xl--flex,
.only-2xl--grid,
.only-2xl--block,
.only-2xl--inline {
  display: none !important;
}

@media (min-width: 2xl) and (max-width: calc(3xl - 0.02px)) {
  .only-2xl--flex {
    display: flex !important;
  }
}

@media (min-width: 2xl) and (max-width: calc(3xl - 0.02px)) {
  .only-2xl--grid {
    display: grid !important;
  }
}

@media (min-width: 2xl) and (max-width: calc(3xl - 0.02px)) {
  .only-2xl--block {
    display: block !important;
  }
}

@media (min-width: 2xl) and (max-width: calc(3xl - 0.02px)) {
  .only-2xl--inline {
    display: inline !important;
  }
}

.only-3xl--flex,
.only-3xl--grid,
.only-3xl--block,
.only-3xl--inline {
  display: none !important;
}

@media (min-width: 3xl) {
  .only-3xl--flex {
    display: flex !important;
  }
}

@media (min-width: 3xl) {
  .only-3xl--grid {
    display: grid !important;
  }
}

@media (min-width: 3xl) {
  .only-3xl--block {
    display: block !important;
  }
}

@media (min-width: 3xl) {
  .only-3xl--inline {
    display: inline !important;
  }
}

body.size,
body.width {
  position: relative;
}
body.size:before,
body.width:before {
  position: fixed;
  content: attr(data-viewport);
  bottom: 50px;
  right: 10px;
  padding: 8px 16px;
  border-radius: 4px;
  background: deeppink;
  z-index: 9999;
  color: #fff;
}

body.media {
  position: relative;
}
body.media:after {
  position: fixed;
  bottom: 100px;
  right: 10px;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 9999;
  content: "0 o nada";
  background: rgb(214, 114, 250);
}
@media (min-width: 360px) {
  body.media:after {
    content: "xs (360px)";
    background: deeppink;
  }
}
@media (min-width: 480px) {
  body.media:after {
    content: "sm (480px)";
    background: deeppink;
  }
}
@media (min-width: 768px) {
  body.media:after {
    content: "md (768px)";
    background: deeppink;
  }
}
@media (min-width: 1024px) {
  body.media:after {
    content: "lg (1024px)";
    background: deeppink;
  }
}
@media (min-width: 1200px) {
  body.media:after {
    content: "xl (1200px)";
    background: deeppink;
  }
}
@media (min-width: 1536px) {
  body.media:after {
    content: "2xl (1536px)";
    background: deeppink;
  }
}
@media (min-width: 1920px) {
  body.media:after {
    content: "3xl (1920px)";
    background: deeppink;
  }
}

.home-bg-light {
  background: var(--home-bg-light);
}

.home-bg-grey {
  background: var(--home-bg-grey);
}

@layer company {
  :root {
    --company-prefooter-padding-desktop: 3em 0;
    --company-prefooter-logo-max-height: 190px;
    --company-prefooter-logo-max-width: 80%;
    --presentation-slide-height: 50vh;
    --presentation-slide-overlay-bg: rgba(0, 26, 22, .5);
    --presentation-benefits-gap: 32px;
    --presentation-benefits-container-margin-block: 50px;
    --presentation-benefits-container-width: 90%;
    --presentation-benefits-container-max-width: 1400px;
    --presentation-feature-width: 90%;
    --presentation-feature-width-small: 250px;
  }
}
@layer company {
  @media (min-width: 768px) {
    .l-footer__prefooter {
      padding: var(--company-prefooter-padding-desktop, 3em 0);
    }
  }
  .l-footer__prefooter-logos li {
    margin-bottom: 0;
  }
  .l-footer__prefooter-logos li img {
    max-height: var(--company-prefooter-logo-max-height, 190px);
    max-width: var(--company-prefooter-logo-max-width, 80%);
  }
}
@layer company {
  .slide__container {
    height: var(--presentation-slide-height, 50vh);
    position: relative;
    z-index: 2;
  }
  .slide__container div {
    position: relative;
    z-index: 2;
  }
  .slide__container::after {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100vw;
    height: 100%;
    z-index: 1;
    content: "";
    background: var(--presentation-slide-overlay-bg, rgba(0, 26, 22, 0.5));
  }
  .c-benefits {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: var(--presentation-benefits-gap, 32px);
    align-items: baseline;
    justify-content: center;
  }
  .c-benefits__container {
    margin: var(--presentation-benefits-container-margin-block, 50px) auto;
    width: var(--presentation-benefits-container-width, 90%);
    max-width: var(--presentation-benefits-container-max-width, 1400px);
  }
  .c-benefits__title {
    color: var(--brand-primary-500, #AC162C);
  }
  .c-benefits__lead {
    color: var(--black, #000000);
  }
  .c-benefits .c-feature {
    list-style: none;
    margin: 0;
    width: var(--presentation-feature-width, 90%);
  }
  @media (min-width: 768px) {
    .c-benefits .c-feature {
      width: var(--presentation-feature-width-small, 250px);
    }
  }
  .c-hero--cover .c-hero__tit,
  .c-hero--cover .c-hero__subtit {
    width: auto;
    text-align: center;
  }
  .c-feature__title,
  .c-feature__text {
    color: var(--black, #000000);
  }
  .presentation-block {
    padding: 48px 0 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  @media (min-width: 980px) {
    .presentation-block {
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 48px;
    }
  }
  .sefac__presentation {
    display: flex;
    flex-direction: column;
  }
  .sefac__presentation .c-benefits__title {
    color: #b81c34;
    font-size: clamp(2.5rem, 2.5vw, 3.85rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .sefac__presentation .c-benefits__lead {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
  }
  .sefac__video {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    background-color: #000;
  }
  .sefac__video > div {
    width: 100%;
    border-radius: inherit;
  }
}
@layer config, tokens, reset, base, components, utilities, company;
