/* Tema Escuro (Padrão) */
:root {
    --primary-color: #00ff7f;
    --primary-hover: #00e673;
    --secondary-color: #00bfff;
    --secondary-hover: #00a8e6;
    --bg-color: #121212;
    --text-color: #ffffff;
    --btn-text: #121212;
    --header-bg: rgba(18, 18, 18, 0.9);
    --nav-text: rgba(255, 255, 255, 0.8);
    --card-bg: #1e1e1e;
    --section-bg: #1a1a1a;
    --footer-bg: #0d0d0d;
    --footer-text: rgba(255, 255, 255, 0.7);
    --input-bg: #2a2a2a;
    --input-border: #3a3a3a;
    --border-color: #333333;
}

/* Tema Claro */
.light-theme {
    --primary-color: #007a3d;
    --primary-hover: #006633;
    --secondary-color: #0066cc;
    --secondary-hover: #0055aa;
    --bg-color: #f5f5f5;
    --text-color: #333333;
    --btn-text: #ffffff;
    --header-bg: rgba(245, 245, 245, 0.9);
    --nav-text: rgba(51, 51, 51, 0.8);
    --card-bg: #ffffff;
    --section-bg: #eaeaea;
    --footer-bg: #dddddd;
    --footer-text: rgba(51, 51, 51, 0.7);
    --input-bg: #ffffff;
    --input-border: #cccccc;
    --border-color: #e0e0e0;
}