/*
Theme Name: Full Marketing
Theme URI: https://fullmarketing.com/
Description: Tema avançado com sistema de personalização modular e painel de marketing integrado.
Author: Antigravity AI
Author URI: https://github.com/antigravity
Version: 1.0.0
Text Domain: full-marketing
*/

/* Reset e Variáveis Globais */
:root {
    --primary-color: #0073aa;
    --secondary-color: #23282d;
    --text-color: #333;
    --bg-color: #fff;
    --header-bg: #fff;
    --footer-bg: #23282d;
    --accent-color: #ff4500;
}

[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #f1f1f1;
    --header-bg: #1a1a1a;
    --footer-bg: #000;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
