:root {
    /* Brand colors */
    --primary: #0B1F3A;
    /* azul corporativo */
    --secondary: #06c;
    --accent: #d4af37;
    /* amarillo industrial */

    /* Backgrounds */
    --background: #FFFFFF;
    --section-bg: #F5F7FA;
    --grey-bg: #F5F7FA;
    --dark-bg: #0B1F3A;

    /* Text */
    --text-light: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #4B5563;
    --text-muted: #a4adbe;
    --text-accent: #06c;

    /* Buttons */
    --button-background: var(--primary);
    --button-hover: #1F3C88;
    --button-active: #09152a;
    /* gold */
    --button-gold-hover: #ac8100;
    --button-gold-active: #997300;

    /* ----- Spacing System ----- */
    --space-xxs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;

    /* ----- Border Radius ----- */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 999px;

    /* ----- Typography ----- */
    --font-family-base: "Inter", sans-serif;
    --font-family-title: "Merriweather", serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --font-size-xxxl: 2.5rem;

    /* ----- Font weights ----- */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* ----- Shadows ----- */
    --shadow-soft: 0 1px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 2px 8px rgba(0, 0, 0, 0.623);

    /* ----- Transition ----- */
    --transition-fast: 150ms ease;
    --transition-medium: 300ms ease;
}