/* =========================================================================
   CITEM — Base & Reset: "Blockout Suizo" (Standalone Theme Folder)
   Brutalismo tipográfico. Sin adornos, sin suavidades.
   ========================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background-color: var(--c-cream);
    color: var(--c-navy);
    line-height: 1.4; /* Más apretado que conservatorio */
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- Tipografía Base --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: var(--letter-spacing-heading);
    color: var(--c-navy);
    text-transform: uppercase;
}

p {
    font-size: var(--text-p);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: inherit;  /* Hereda del padre — las secciones navy usan cream, las cream usan black */
}

strong, b {
    font-weight: 900;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: none; /* Blockout: sin transiciones */
}

ul, ol {
    list-style: none;
}

img, video, svg {
    max-width: 100%;
    display: block;
}

/* --- Utilidades --- */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--spacing-md); }
.hidden { display: none !important; }

