:root {
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --bg: #050505;
    --card-bg: #0a0a0a;
    --border: #1a1a1a;
    --border-subtle: #111;
    --text-main: #ccc;
    --text-dim: #555;
    --text-accent: #444;
    --green: #22c55e;
    --red: #ef4444;
    --orange: #f59e0b;
}

/* Reset e Base */
* { box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Tipografia */
h1, h2, h3, .logo, .rajdhani {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.logo span { color: var(--primary); }

/* Layout Estrutural */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 10;
}

.container {
    padding: 40px;
    max-width: 1400px;
    margin: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Card */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: 0.2s;
}

/* Formulários */
input, select {
    width: 100%;
    padding: 14px 16px;
    background: #050505;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #ccc;
    text-align: center;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: 0.2s;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 12px;
}

input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.08);
}

/* Botões */
.btn {
    width: 100%;
    padding: 12px 18px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

.btn:hover { background: var(--primary-hover); }

.btn-secondary {
    background: #111;
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
    color: #fff;
}

/* Botão WhatsApp */
.btn-whatsapp {
    background: var(--green) !important;
    color: #000 !important;
    margin-bottom: 15px;
}

.btn-whatsapp:hover { background: #16a34a !important; }

/* Badges de Status */
.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid transparent;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Utilitários */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* Rodapé */
.rodape {
    text-align: center;
    padding: 14px 20px;
    font-size: 10px;
    color: var(--text-dim);
    border-top: 1px solid var(--border-subtle);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
    margin-top: auto;
}
