/*
Theme Name: RN 24 Horas
Theme URI: https://seusite.com.br
Author: Seu Nome / Desenvolvedor
Description: Tema profissional otimizado para SEO, PageSpeed e modo escuro/claro automático.
Version: 1.0
Text Domain: rn-24-horas
*/

:root {
    --bg-color: #f8f9fa;
    --text-color: #212529;
    --card-bg: #ffffff;
    --border-color: #dee2e6;
    --primary-color: #0d6efd;
    --header-bg: #ffffff;
}

[data-theme="dark"] {
    --bg-color: #0f1115;
    --text-color: #e9ecef;
    --card-bg: #161b22;
    --border-color: #30363d;
    --primary-color: #3b82f6;
    --header-bg: #111418;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}