/*
Theme Name: Tema Limpio
Description: Tema a medida sin Elementor, editable via el plugin Nexora Editor. Primera implementacion para Pla Taller.
Author: NexoraSuite
Version: 1.0.0
Text Domain: tema-limpio
*/

:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-text-muted: #6b6b6b;
    --color-accent: #000000;
    --color-border: #e5e5e5;
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}