/* ElPulsoMexicano - Base (reset + variables) */
/* Style: Cartel Maximalista */

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

    --bg-acid: #EAFF00;
    --text-heavy: #000000;
    --accent-magenta: #FF00FF;
    --border-thick: 6px solid #000000;

    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Impact', 'Arial Black', sans-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: #FF00FF;
    --secondary-color: #333333;
    --accent-color: #FF00FF;
    --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); }
}