:root{
    --max-content-width: 1024px;

    /* Paleta de colores */
    --orange-primary-color: #FF9203;
    --semi-dark-blue-primary: #015D93;
    --blue-light-primary: #e8e6e6;
    --white-secondary-color: #FFFF;
    --beige-secondary-color: #efebe2;
    --gray-very-light: #F8F9FA;
    --gray-light: #DEE2E6;
    --gray-dark: #848d95;
    --gray-soft: #E9ECEF;
    --gray-very-dark: #343A40;
    --orange-brown-secondary-color: #c57100;
    --warning-color: #CA0D0D;
    --warning-color-light: #FEEDED;
    --warning-color-active: #FDC3C3;
}

*,*::after,*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dd, ol, ul, figure, hr, fieldset, legend {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    width: 100%;
    min-height: 100vh;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TITULOS - IBM Plex Sans Hebrew Bold */
h1, .title {
    font-family: 'IBM Plex Sans Hebrew', sans-serif;
    font-weight: bold;
    font-size: 2.5rem; /* ~40px */
    color: #000; /* Ajusta según necesidad */
}

/* SUBTÍTULOS - IBM Plex Sans */
h2, .subtitle {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: normal;
    font-size: 2rem; /* ~32px */
    color: #000;
}

/* CUERPO - IBM Plex Sans Thai */
body, p {
    font-family: 'IBM Plex Sans Thai', sans-serif;
    font-weight: normal;
    font-size: 1.6rem; /* ~25.6px */
    color: #000;
}

a {
    color: black;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.4s ease, text-decoration 0.4s ease;
}

a:hover{
    text-decoration: underline;
    color: var(--orange-primary-color);
    cursor: pointer;
}

li {
    list-style: none;
}

.container {
    max-width: var(--max-content-width);
}

body > main.container {
    width: 100%;
    min-height: 30rem;
    height: 100%;
    margin: 3rem 0;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
}

.txt-warning {
    color: var(--warning-color);
}

.txt-center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.overflow-x {
    overflow-x: scroll;
}