/* Laboratório Campo Largo: Ouro 4.0 — estilos da página web/laboratorio_campo_largo.html */

:root {
    --bg-dark: #0d0f12;
    --bg-card: #161a1f;
    --bg-elevated: #1e2329;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --accent-gold: #d4a853;
    --accent-amber: #f59e0b;
    --accent-blue: #58a6ff;
    --border: #373e47;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-dark);
    min-height: 100vh;
    padding: 0 20px 48px;
}

.wrapper { max-width: 720px; margin: 0 auto; }

header {
    padding: 56px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

header .badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-amber);
    margin-bottom: 16px;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.25;
}

header .impact {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

header .impact strong { color: var(--accent-gold); }

.hero-img {
    margin: 32px auto 0;
    text-align: center;
}

.hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.hero-img .caption {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.section {
    margin: 40px 0;
}

.section h2 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.bullets {
    list-style: none;
}

.bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-amber);
}

.bullets li strong { color: var(--text-primary); }

.topic {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 20px;
}

.topic h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.topic p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

.topic p + p { margin-top: 10px; }

.topic .tagline {
    color: var(--text-primary);
    font-weight: 600;
}

.section-horizon {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.section-horizon .section-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

/* ---- Download Central — Dashboard de Controle ---- */
.download-central {
    margin-top: 48px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.download-central-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-central-title .icon-gear,
.download-central-title .icon-svg {
    color: var(--accent-amber);
    flex-shrink: 0;
}

.download-central-title .icon-gear.icon-svg {
    opacity: 0.95;
}

.download-central-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.download-central-panel.dashboard-panel {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.download-central-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.download-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.download-status .build-badge {
    height: 22px;
    width: auto;
}

.download-status .status-label {
    font-size: 0.85rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.download-status .icon-check,
.download-status .icon-svg.icon-check {
    color: #3fb950;
    flex-shrink: 0;
}

.build-badge-link {
    display: inline-flex;
    transition: opacity 0.2s;
}
.build-badge-link:hover {
    opacity: 0.9;
}

.btn-download-stable {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--accent-amber);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.3);
}

.btn-download-stable:hover {
    background: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.btn-download-stable .icon-check,
.btn-download-stable .icon-svg.icon-check {
    color: var(--bg-dark);
    flex-shrink: 0;
}

.download-hint {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.artefatos-confianca.dashboard-panel {
    background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-left: 4px solid #3fb950;
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.artefatos-confianca {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: 4px solid #3fb950;
    border-radius: 8px;
    padding: 20px 24px;
}

.artefatos-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.artefatos-title .icon-gear,
.artefatos-title .icon-svg {
    color: var(--accent-amber);
    flex-shrink: 0;
    opacity: 0.9;
}

.artefatos-list {
    list-style: none;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.artefatos-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.artefatos-list .icon-check,
.artefatos-list .icon-svg.icon-check {
    color: #3fb950;
    flex-shrink: 0;
    margin-top: 2px;
}

.artefatos-list code {
    background: var(--bg-card);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.82em;
    color: var(--accent-blue);
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
    padding: 28px 32px;
    margin-top: 48px;
}

.cta-box h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.65;
}

.cta-box .links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-box a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.cta-box a.primary {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.cta-box a.primary:hover {
    background: var(--accent-amber);
    color: #fff;
}

.cta-box a.secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--border);
}

.cta-box a.secondary:hover {
    border-color: var(--accent-blue);
    background: rgba(88, 166, 255, 0.08);
}

.back {
    margin-top: 40px;
    font-size: 0.9rem;
}

.back a {
    color: var(--accent-blue);
    text-decoration: none;
}

.back a:hover { text-decoration: underline; }

/* ---- A Janela do Visionário ---- */
.section-visionario {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    position: relative;
}

.section-visionario::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(88, 166, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    border-radius: 8px;
}

.vision-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.vision-intro strong { color: var(--accent-amber); }

.vision-img {
    margin: 24px 0 32px;
    text-align: center;
}

.vision-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.vision-img .caption {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.topic-vision {
    border-left: 3px solid var(--accent-amber);
}

/* ---- Timeline do Futuro (2025 → 2030 → 2040) ---- */
.timeline-futuro {
    margin: 40px 0 32px;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
}

.timeline-futuro::before {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-gold), var(--accent-amber));
    opacity: 0.6;
    border-radius: 1px;
}

.timeline-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-amber);
    margin-bottom: 24px;
    text-align: center;
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.timeline-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.timeline-node:hover {
    border-color: var(--accent-amber);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

.timeline-node .year {
    display: inline-block;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
    padding: 4px 10px;
    background: rgba(212, 168, 83, 0.12);
    border-radius: 4px;
}

.timeline-node .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .timeline-track { flex-direction: column; }
    .timeline-futuro::before {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
        right: auto;
        transform: translateX(-1px);
        background: linear-gradient(180deg, var(--accent-amber), var(--accent-gold), var(--accent-amber));
    }
}

/* ---- Manifesto do Visionário (neon âmbar, fundo translúcido) ---- */
.manifesto-visionario {
    margin: 0;
    padding: 28px 32px;
    background: rgba(13, 15, 18, 0.82);
    backdrop-filter: blur(8px);
    border: 2px solid var(--accent-amber);
    border-radius: 8px;
    box-shadow:
        0 0 24px rgba(245, 158, 11, 0.35),
        0 0 48px rgba(245, 158, 11, 0.12),
        inset 0 0 60px rgba(245, 158, 11, 0.04);
    position: relative;
}

.manifesto-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-amber);
    margin-bottom: 14px;
}

.manifesto-visionario p:last-child {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
}

.manifesto-visionario strong { color: var(--accent-gold); }

/* ---- Nível 0: Iniciando o Sistema (Terminal) ---- */
.nivel0 {
    margin-top: 48px;
    padding: 0;
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.terminal-window {
    background: #0d1117;
}

.terminal-title-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #161b22;
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #484f58;
}

.terminal-dots .dot:nth-child(1) { background: #ff5f56; }
.terminal-dots .dot:nth-child(2) { background: #ffbd2e; }
.terminal-dots .dot:nth-child(3) { background: #27c93f; }

.terminal-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.terminal-title .typing-cursor {
    color: var(--accent-amber);
    animation: blink 0.9s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.terminal-body {
    padding: 24px 28px 32px;
}

.terminal-prompt {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #3fb950;
    margin-bottom: 20px;
}

.terminal-label {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 20px 0 10px;
}

.terminal-label:first-of-type { margin-top: 0; }

/* Syntax highlighting (terminal/code) */
.code-block {
    margin: 0 0 16px;
    padding: 18px 20px;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e6edf3;
}

.code-block code { display: block; }

.code-comment { color: #8b949e; }
.code-keyword { color: #ff7b72; }
.code-string { color: #a5d6ff; }
.code-number { color: #79c0ff; }
.code-name { color: #7ee787; }

.roadmap-checklist {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.roadmap-checklist li {
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.roadmap-checklist .checkbox {
    position: absolute;
    left: 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    color: var(--accent-amber);
    font-size: 0.9rem;
}

.roadmap-checklist a {
    color: var(--accent-blue);
    text-decoration: none;
}

.roadmap-checklist a:hover { text-decoration: underline; }

.nivel0-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn-manual,
.btn-mentor {
    display: inline-block;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-manual {
    background: var(--accent-amber);
    color: #0d1117;
}

.btn-manual:hover {
    background: var(--accent-gold);
    color: #0d1117;
}

.btn-mentor {
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid #30363d;
}

.btn-mentor:hover {
    border-color: var(--accent-blue);
    background: rgba(88, 166, 255, 0.1);
}

/* ---- The Blueprint (Ficha Técnica / Dossiê) ---- */
.blueprint {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.blueprint-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-amber);
    margin-bottom: 8px;
}

.blueprint-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.blueprint-dossie {
    background: #1a1d22;
    border: 1px solid #2d323a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.dossie-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #161a1f;
    border-bottom: 1px solid #2d323a;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.dossie-icon {
    color: var(--accent-amber);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dossie-icon svg { flex-shrink: 0; }

.equivalencia-table-wrap {
    overflow-x: auto;
}

.equivalencia-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.equivalencia-table thead {
    background: #161a1f;
}

.equivalencia-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--accent-amber);
    border-bottom: 1px solid #2d323a;
}

.equivalencia-table th .th-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    vertical-align: middle;
    color: var(--accent-amber);
}

.equivalencia-table td {
    padding: 14px 20px;
    color: var(--text-primary);
    border-bottom: 1px solid #2d323a;
}

.equivalencia-table tbody tr:last-child td { border-bottom: 0; }

.equivalencia-table tbody tr:hover td {
    background: rgba(245, 158, 11, 0.04);
}

.equivalencia-table td:first-child {
    color: var(--text-secondary);
}

.equivalencia-table td:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.blueprint-ementa-img {
    padding: 20px 20px 0;
    border-top: 1px solid #2d323a;
    text-align: center;
}

.blueprint-ementa-img a {
    display: inline-block;
}

.blueprint-ementa-img img {
    max-width: 100%;
    width: 400px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #2d323a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.blueprint-ementa-img img:hover {
    border-color: rgba(245, 158, 11, 0.5);
}

.blueprint-actions {
    padding: 20px 20px 16px;
}

.btn-ementa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--accent-amber);
    color: #0d1117;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.btn-ementa:hover {
    background: var(--accent-gold);
    color: #0d1117;
}

.btn-ementa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0d1117;
}

.blueprint-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    margin: 0 20px 20px;
    background: #161a1f;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
}

.badge-icon {
    color: var(--accent-amber);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-content {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.badge-content strong { color: var(--accent-amber); }

.badge-mec {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ---- O Oráculo (Glassmorphism, gauges, neon) ---- */
.oraculo {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.oraculo-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-amber);
    margin-bottom: 8px;
}

.oraculo-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Glassmorphism base */
.oraculo .glass {
    background: rgba(22, 26, 31, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.oraculo-dashboard {
    padding: 24px 28px;
    margin-bottom: 20px;
}

.gauge-item {
    margin-bottom: 22px;
}

.gauge-item:last-child { margin-bottom: 0; }

.gauge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.gauge-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.gauge-value {
    font-size: 0.9rem;
    font-weight: 700;
}

.gauge-value-success { color: #3fb950; }
.gauge-value-amber { color: var(--accent-amber); }

.gauge-bar-wrap {
    height: 8px;
    background: rgba(48, 54, 61, 0.6);
    border-radius: 4px;
    overflow: hidden;
}

.gauge-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease-out;
}

.gauge-bar-success {
    background: linear-gradient(90deg, #238636, #3fb950);
    box-shadow: 0 0 12px rgba(63, 185, 80, 0.4);
}

.gauge-bar-amber {
    background: linear-gradient(90deg, #9a6700, var(--accent-amber));
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.35);
}

.gauge-bar-live {
    background: linear-gradient(90deg, #238636, #3fb950);
    box-shadow: 0 0 12px rgba(63, 185, 80, 0.4);
}

.gauge-pulse .gauge-bar-live {
    animation: oraculo-pulse 2s ease-in-out infinite;
}

@keyframes oraculo-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(63, 185, 80, 0.4); }
    50% { opacity: 0.92; box-shadow: 0 0 18px rgba(63, 185, 80, 0.55); }
}

.gauge-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.oraculo-whatif {
    padding: 20px 24px;
    margin-bottom: 20px;
}

.whatif-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-amber);
    margin-bottom: 10px;
}

.oraculo-whatif p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.65;
    margin: 0;
}

.oraculo-dados {
    padding: 16px 24px;
}

.oraculo-dados p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.oraculo-dados a {
    color: #3fb950;
    text-decoration: none;
    font-weight: 600;
}

.oraculo-dados a:hover {
    text-decoration: underline;
    color: #56d364;
}

/* ---- The Skill Tree: Cyberpunk Dashboard ---- */
.skill-tree {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.skill-tree-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-amber);
    margin-bottom: 8px;
}

.skill-tree-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.skill-tree-img {
    margin-bottom: 24px;
    text-align: center;
}

.skill-tree-img img {
    max-width: 100%;
    width: 560px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #30363d;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.skill-tree-img img:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

.skill-progress-wrap {
    position: relative;
    height: 28px;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 8px;
    margin-bottom: 28px;
    overflow: hidden;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.skill-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #9a6700, var(--accent-amber));
    border-radius: 6px;
    transition: width 0.4s ease-out;
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
}

.skill-progress-label {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.skill-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-card {
    background: rgba(13, 17, 23, 0.9);
    border: 2px dashed #30363d;
    border-radius: 10px;
    padding: 20px 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.skill-card.completed {
    border-style: solid;
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.skill-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.skill-card-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-amber);
    background: rgba(245, 158, 11, 0.12);
    padding: 4px 10px;
    border-radius: 6px;
}

.skill-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.skill-checklist li {
    margin-bottom: 12px;
}

.skill-checklist li:last-child { margin-bottom: 0; }

.skill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.skill-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skill-check-icon {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #484f58;
    border-radius: 4px;
    background: #161b22;
    transition: border-color 0.2s, background 0.2s;
}

.skill-item:hover .skill-check-icon {
    border-color: rgba(245, 158, 11, 0.5);
}

.skill-checkbox:checked + .skill-check-icon {
    border-color: var(--accent-amber);
    background: var(--accent-amber);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.skill-checkbox:checked + .skill-check-icon::after {
    content: '';
    display: block;
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #0d1117;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.skill-checkbox:focus + .skill-check-icon {
    outline: 2px solid var(--accent-amber);
    outline-offset: 2px;
}

/* ---- Dedicatória e Inspiração (Placa de Bronze Digital) ---- */
.dedicatoria {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.dedicatoria-placa {
    position: relative;
    padding: 28px 36px 36px;
    background: linear-gradient(145deg, #1c1912 0%, #161510 50%, #1a1712 100%);
    background-image:
        linear-gradient(180deg, rgba(212, 168, 83, 0.03) 0%, transparent 50%),
        linear-gradient(90deg, transparent 0%, rgba(88, 166, 255, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, transparent 0%, rgba(88, 166, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 24px 24px, 24px 24px;
    border: double 3px rgba(212, 168, 83, 0.5);
    border-radius: 4px;
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.2), 0 4px 24px rgba(0, 0, 0, 0.25);
}

.dedicatoria-img {
    text-align: center;
    margin-bottom: 20px;
}

.dedicatoria-img img {
    max-width: 100%;
    width: 320px;
    height: auto;
    border-radius: 6px;
    border: 1px solid rgba(212, 168, 83, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dedicatoria-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(212, 168, 83, 0.95);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.dedicatoria-texto {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #e0dcd4;
    margin-bottom: 20px;
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.dedicatoria-texto strong {
    color: rgba(212, 168, 83, 0.95);
    font-weight: 600;
}

.dedicatoria-citacao {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.65;
    color: rgba(212, 168, 83, 0.9);
    text-align: center;
    margin: 24px auto 20px;
    padding: 0 20px;
    max-width: 480px;
    border-left: none;
}

.dedicatoria-link {
    text-align: center;
    margin: 0;
}

.dedicatoria-link a {
    font-size: 0.8rem;
    color: rgba(212, 168, 83, 0.75);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.dedicatoria-link a:hover {
    color: rgba(212, 168, 83, 1);
    text-decoration: underline;
}

/* ---- Footer: Campo Largo Tech Hub ---- */
.footer-tech-hub {
    margin-top: 56px;
    padding-top: 0;
    background: #0a0c0e;
}

.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.35) 20%, rgba(212, 168, 83, 0.5) 50%, rgba(245, 158, 11, 0.35) 80%, transparent 100%);
    margin-bottom: 32px;
}

.footer-inner {
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    display: block;
    opacity: 0.95;
}

.footer-brand {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-amber);
    margin-bottom: 24px;
}

.footer-poder-local {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 24px;
}

.selo {
    display: inline-block;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.2s, color 0.2s;
}

.selo:hover {
    color: var(--text-primary);
    border-color: rgba(245, 158, 11, 0.4);
}

.selo-educacao { border-left: 3px solid var(--accent-blue); }
.selo-aplicacao { border-left: 3px solid var(--accent-amber); }
.selo-inteligencia { border-left: 3px solid #3fb950; }

.footer-convite {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 28px;
}

.footer-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
}

.counter-value {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-amber);
}

.counter-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
