/* ReporteDiario - Base (reset + variables) */
/* Style: Modern Broadsheet */

:root {
    --reportediario-primary: #800020;
    --reportediario-secondary: #333333;
    --reportediario-accent: #800020;
    --reportediario-dark: #1A1A1A;
    --reportediario-light: #FFFFFF;
    --reportediario-text: #1A1A1A;
    --reportediario-text-light: #666666;

    --bg-paper: #FCFAF8;
    --text-ink: #111111;
    --text-gray: #444444;
    --accent-burgundy: #800020;
    --border-ink: 1px solid #111111;
    --border-thick: 4px solid #111111;
    --border-light: 1px solid #CCCCCC;

    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Times New Roman', Times, 'Georgia', serif;

    --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem;
    --space-lg: 1.5rem;  --space-xl: 2rem;   --space-2xl: 3rem;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);

    --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px;

    --primary-color: #800020;
    --secondary-color: #333333;
    --accent-color: #800020;
    --background-color: #FFFFFF;
    --card-bg: #FFFFFF;
    --text-color: #1A1A1A;
    --text-muted: #666666;
    --border-color: rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-secondary); background: #FFFFFF; color: #1A1A1A; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--space-lg); }

@media (max-width: 768px) {
    .container { padding: 0 var(--space-md); }
}