/* ==========================================================================
   1. CONFIGURAÇÕES BASE & VARIÁVEIS
   ========================================================================== */
:root {
    --bronze: #d1a686;
    --bg-dark: #050505;
    --card-bg: #0a0a0a;
    --border-light: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--bg-dark);
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Espaçamento para páginas internas */
/* Forçar o conteúdo para baixo em todas as situações */
body.pt-large main, 
main.pt-large, 
.pt-large {
    padding-top: 180px !important;
    margin-top: 0 !important;
    display: block !important;
}

/* Ajuste específico para garantir que a seção interna não suba */
.pt-large .section-padding {
    padding-top: 20px !important;
}

@media (max-width: 992px) {
    body.pt-large main, .pt-large {
        padding-top: 140px !important;
    }
}

/* ==========================================================================
   2. HEADER & NAVEGAÇÃO
   ========================================================================== */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10000;
    display: flex;
    align-items: center !important; 
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper { display: flex; align-items: flex-start; gap: 15px; text-decoration: none; }
.logo-img { height: 30px; }
.brand-meta { border-left: 1px solid rgba(211, 166, 134, 0.3); padding-left: 15px; }
.brand-name { display: block; color: #fff; font-weight: 800; font-size: 14px; letter-spacing: 1px; }
.brand-status { color: var(--bronze); font-size: 8px; letter-spacing: 2px; font-weight: 700; }

/* Menu Nav */
.nav-links { display: flex; align-items: center; gap: 30px; }

.nav-links a, .dropdown-trigger {
    color: #71717a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
}

.nav-links a:hover, .dropdown-trigger:hover { color: var(--bronze); }
.bronze-text { color: var(--bronze) !important; }

/* Dropdown */
.dropdown { position: relative; }
.arrow { font-size: 10px; margin-left: 5px; transition: 0.3s; }
.dropdown:hover .arrow { transform: rotate(180deg); }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    border: 1px solid var(--border-light);
    min-width: 260px;
    padding: 10px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.dropdown-content::before {
    content: ""; position: absolute; top: -20px; left: 0; right: 0; height: 20px;
}

.dropdown:hover .dropdown-content { display: block; animation: slideUp 0.3s forwards; }

.dropdown-item {
    display: flex; align-items: center; gap: 15px; padding: 12px;
    border-radius: 8px; text-decoration: none; transition: 0.3s;
}
.dropdown-item:hover { background: rgba(255,255,255,0.05); }
.item-text strong { display: block; color: #fff; font-size: 13px; }
.item-text span { color: #71717a; font-size: 11px; }

/* Botão Header */
.btn-access {
background-color: transparent;
    color: #d1a686; /* Cor Bronze */
    border: 1px solid #d1a686;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-access:hover { background-color: #d1a686;
    color: #000;
    box-shadow: 0 0 15px rgba(209, 166, 134, 0.3);
}

/* ==========================================================================
   3. HERO SECTION (HOME)
   ========================================================================== */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Altura do header */
    padding-bottom: 40px;
    background: radial-gradient(circle at 80% 20%, rgba(209, 166, 134, 0.1), transparent 50%);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    align-items: center;
}

.hero-title { font-size: 4rem; line-height: 1.1; font-weight: 800; margin-bottom: 20px; }
.bronze-gradient { background: linear-gradient(90deg, var(--bronze), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-description { color: #a1a1aa; font-size: 1.2rem; margin-bottom: 40px; max-width: 500px; }

/* Botões */
.hero-cta-group { display: flex; gap: 20px; margin-bottom: 50px; }

.btn-shiny {
    display: inline-block;
    background: var(--bronze);
    color: #000 !important;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 13px; font-weight: 800; text-transform: uppercase; text-decoration: none; letter-spacing: 1px;
    transition: 0.4s;
    border: 1px solid var(--bronze);
    cursor: pointer;
}
.btn-shiny:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(209, 166, 134, 0.3); }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 13px; font-weight: 700; text-transform: uppercase; text-decoration: none; letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.4s;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.05); border-color: #fff; transform: translateY(-3px); }

/* Stats */
.hero-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-value { font-size: 2rem; font-weight: 800; display: block; }
.stat-label { font-size: 10px; color: #71717a; text-transform: uppercase; letter-spacing: 1px; }

/* Visual do Terminal na Home */
.hero-visual { display: flex; justify-content: center; position: relative; }
.terminal-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    width: 100%; max-width: 400px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}
.terminal-notify {
    position: absolute; top: -20px; right: -20px;
    background: #000; border: 1px solid var(--bronze);
    padding: 12px 18px; border-radius: 12px;
    display: flex; gap: 12px; align-items: center;
    box-shadow: 0 10px 30px rgba(209, 166, 134, 0.3);
}
.pulse-dot { width: 8px; height: 8px; background: var(--bronze); border-radius: 50%; box-shadow: 0 0 10px var(--bronze); }
.notify-info small { color: var(--bronze); font-size: 8px; font-weight: 800; display: block; }
.notify-info p { margin: 0; font-size: 11px; font-weight: 500; }

.visual-graph { display: flex; align-items: flex-end; gap: 10px; height: 80px; margin: 20px 0; }
.bar { flex: 1; background: linear-gradient(to top, var(--bronze), transparent); border-radius: 4px; opacity: 0.6; }
.positive-growth { color: #10b981; margin-top: 5px; font-size: 1.2rem; }

/* ==========================================================================
   4. SEÇÕES GERAIS (SOLUÇÕES, METODOLOGIA, FEEDBACK)
   ========================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 3rem; margin-top: 20px; font-weight: 800; color: #fff; }
.badge {
    color: var(--bronze); font-size: 10px; letter-spacing: 3px; font-weight: 800;
    text-transform: uppercase; border: 1px solid rgba(209, 166, 134, 0.3);
    padding: 5px 15px; border-radius: 20px;
}

/* Solutions Grid */
.solutions-section { padding: 100px 0; background: #050505; }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.sol-card {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px; border-radius: 24px; transition: 0.4s;
}
.sol-card:hover { border-color: var(--bronze); transform: translateY(-10px); }
.sol-card.highlight { background: linear-gradient(145deg, rgba(209, 166, 134, 0.1), transparent); border-color: rgba(209, 166, 134, 0.3); }
.sol-icon { font-size: 14px; font-weight: 900; color: var(--bronze); margin-bottom: 20px; opacity: 0.6; }
.sol-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #fff; }
.sol-card p { color: #a1a1aa; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }
.sol-footer { font-size: 12px; font-weight: 700; color: var(--bronze); text-transform: uppercase; }

/* Metodologia */
.method-section { padding: 150px 0; border-top: 1px solid var(--border-light); }
.method-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 100px; align-items: start; }
.method-intro { position: sticky; top: 150px; }
.method-p { color: #a1a1aa; margin: 30px 0; line-height: 1.8; }
.step-item {
    background: rgba(255, 255, 255, 0.02); padding: 40px; border-radius: 20px;
    border: 1px solid var(--border-light); margin-bottom: 30px;
}
.step-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.step-num {
    font-size: 12px; font-weight: 800; color: var(--bronze); border: 1px solid var(--bronze);
    width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.step-item.active { border-color: rgba(209, 166, 134, 0.4); background: rgba(209, 166, 134, 0.03); }
.active-tag { font-size: 9px; background: var(--bronze); color: #000; padding: 4px 10px; border-radius: 10px; font-weight: 800; text-transform: uppercase; }

/* Feedback */
.feedback-section { padding: 100px 0; }
.feedback-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.feedback-card {
    background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-light);
    padding: 40px; border-radius: 24px; transition: 0.3s;
}
.feedback-card:hover { border-color: rgba(209, 166, 134, 0.3); }
.quote-icon { font-size: 60px; color: var(--bronze); line-height: 1; opacity: 0.4; }
.feedback-text { color: #d1d1d6; font-style: italic; margin-bottom: 30px; }
.client-info { display: flex; gap: 15px; align-items: center; }
.client-avatar { width: 45px; height: 45px; background: var(--bronze); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.client-meta strong { display: block; color: #fff; font-size: 14px; }
.client-meta small { color: #71717a; font-size: 11px; text-transform: uppercase; }

/* Contato */
.contact-section { padding: 120px 0; background: linear-gradient(180deg, #050505 0%, #0a0a0b 100%); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-form-container {
    background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-light);
    padding: 50px; border-radius: 30px; backdrop-filter: blur(20px);
}
.form-group { margin-bottom: 25px; }
.form-group label { display: block; color: #fff; font-size: 12px; font-weight: 600; margin-bottom: 10px; }
.form-group input, .form-group select {
    width: 100%; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px; border-radius: 10px; color: #fff; transition: 0.3s; box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus { border-color: var(--bronze); outline: none; background: rgba(255, 255, 255, 0.06); }
.nodo-form .btn-shiny { width: 100%; margin-top: 10px; }

/* ==========================================================================
   5. CALCULADORA (FERRAMENTAS)
   ========================================================================== */
.tool-main-content { padding-top: 120px; /* Isso garante que o título comece abaixo do header */}
.calc-hero { text-align: center; padding: 40px 0 60px; }
.tool-title { font-size: 3rem; font-weight: 800; margin: 0 0 15px; color: #fff; }
.tool-subtitle { color: #a1a1aa; max-width: 600px; margin: 0 auto; line-height: 1.6; }

.calc-container-section { padding-bottom: 100px; }
.calc-card-main {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    background: #050505; padding: 50px; border-radius: 40px; border: 1px solid var(--border-light);
    align-items: start;
}

/* Coluna Esquerda */
.column-title { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #52525b; margin-bottom: 30px; font-weight: 700; }
.input-grid-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.input-field-premium { display: flex; flex-direction: column; gap: 10px; }
.input-field-premium label { font-size: 10px; color: var(--bronze); text-transform: uppercase; letter-spacing: 1px; }
.input-field-premium input {
    background: #0a0a0a; border: 1px solid #1f1f1f; padding: 18px; border-radius: 12px; color: #fff; font-size: 16px; width: 100%; box-sizing: border-box;
}
.input-field-premium input:focus { border-color: var(--bronze); outline: none; background: #0f0f0f; }

/* Coluna Direita (Widget) */
.calc-results-wrapper {
    background: rgba(15, 15, 15, 0.6); backdrop-filter: blur(20px);
    border: 1px solid rgba(209, 166, 134, 0.15); padding: 50px 40px;
    border-radius: 30px; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    min-height: 250px; display: flex; flex-direction: column; justify-content: center;
}
.widget-title { font-size: 1.8rem; line-height: 1.2; margin-bottom: 15px; color: #fff; }
.widget-desc { color: #71717a; font-size: 14px; margin-bottom: 35px; line-height: 1.5; }

/* Fancy Inputs */
.terminal-form { margin-top: 20px; }
.fancy-group { position: relative; margin-bottom: 30px; }
.fancy-group input { width: 100%; padding: 12px 0; background: transparent; border: none; border-bottom: 1px solid #333; color: #fff; font-size: 16px; }
.fancy-group label { position: absolute; left: 0; top: 12px; color: #52525b; font-size: 11px; text-transform: uppercase; pointer-events: none; transition: 0.3s; }
.fancy-group input:focus ~ label, .fancy-group input:not(:placeholder-shown) ~ label { top: -12px; color: var(--bronze); font-size: 9px; }
.fancy-group input:focus { border-bottom: 1px solid var(--bronze); outline: none; }

.btn-shiny-terminal {
    width: 100%; background: var(--bronze); color: #000; border: none; padding: 18px;
    border-radius: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: 0.3s; display: flex; justify-content: center; gap: 10px;
}
.btn-shiny-terminal:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(209, 166, 134, 0.2); }
.btn-shiny-terminal:disabled { background: #333; color: #555; cursor: not-allowed; }

/* Chart e Resultados */
.result-state { display: none; }
.result-state.active { display: flex; flex-direction: column; animation: fadeIn 0.5s ease; }
.chart-container-premium { width: 100%; height: 250px; margin: 20px 0; background: rgba(255, 255, 255, 0.02); border-radius: 15px; padding: 10px; position: relative; }
.data-grid-premium { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.data-card { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 12px; }
.data-card small { display: block; font-size: 9px; text-transform: uppercase; color: #71717a; margin-bottom: 5px; }
.data-card p { font-size: 1.1rem; font-weight: 600; margin: 0; }
.btn-restart { background: none; border: none; color: #555; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-top: 20px; cursor: pointer; text-decoration: underline; }
/* Ajuste do container do gráfico dentro da calculadora */
.neon-chart-container {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
/* Garante que o canvas não "estoure" o layout */
canvas#evolutionChart {
    width: 100% !important;
    height: 100% !important;
}
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 11px;
    color: #71717a;
    text-transform: uppercase;
}

/* ==========================================================================
   6. ECOSSISTEMA
   ========================================================================== */
   
/* --- HERO CLEAN & PREMIUM --- */
.eco-hero-clean {
    padding: 180px 0 100px;
    background: #050505; /* Fundo puro para destacar o brilho */
    text-align: center;
    overflow: hidden; /* Garante que o brilho não vaze a tela */
}

.hero-text-content {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.badge-pill {
    border: 1px solid rgba(209, 166, 134, 0.3);
    color: var(--bronze);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(209, 166, 134, 0.05);
}

.clean-title {
    font-size: 4rem;
    margin: 20px 0;
    line-height: 1.1;
    font-weight: 700;
}

.clean-desc {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* --- O PAINEL DE VIDRO (A MÁGICA) --- */
.glass-dashboard-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
}

/* O brilho dourado atrás do painel */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--bronze);
    filter: blur(120px); /* O segredo do brilho suave */
    opacity: 0.25;
    z-index: 0;
    border-radius: 50%;
    animation: pulseGlow 5s infinite alternate;
}

.glass-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; /* Card | Linha | Card... */
    align-items: center;
    
    background: rgba(20, 20, 20, 0.6); /* Escuro mas transparente */
    backdrop-filter: blur(20px); /* Desfoque do fundo */
    -webkit-backdrop-filter: blur(20px);
    
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Topo mais claro simula luz */
    border-radius: 24px;
    padding: 40px 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Os Itens Individuais */
.pillar-card {
    padding: 10px;
    transition: 0.3s;
    cursor: default;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    font-family: 'Courier New', monospace; /* Fonte técnica */
    font-size: 12px;
    color: var(--bronze);
    margin-bottom: 15px;
    opacity: 0.7;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin: 0 0 5px 0;
    color: #fff;
}

.pillar-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Linhas divisórias verticais */
.vertical-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

/* Estilo para "Em Breve" */
.pillar-card.inactive {
    opacity: 0.5;
}

.coming-soon-text {
    color: var(--bronze) !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulseGlow {
    0% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1.1); }
}

/* --- SECÇÃO ESCURA PADRÃO --- */
.eco-section-dark {
    padding: 100px 0;
    background-color: #080808; /* Um pouco mais claro que o preto puro da Hero */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Tipografia da Secção */
.section-tag {
    color: var(--bronze);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.8;
}

.section-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
}

.section-desc {
    color: #a1a1aa;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 90%;
}

/* Botão com Seta */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--bronze);
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-arrow:hover {
    color: var(--bronze);
    gap: 15px; /* A seta anda para a direita */
}

/* --- CARDS DE CARACTERÍSTICAS (LADO DIREITO) --- */
.eco-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px); /* Move levemente para a direita */
    border-color: rgba(209, 166, 134, 0.2);
}

.feature-card.highlight {
    background: linear-gradient(90deg, rgba(209, 166, 134, 0.05), transparent);
    border-left: 2px solid var(--bronze);
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: var(--bronze);
    opacity: 0.5;
    font-weight: 700;
}

.card-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #eee;
}

.card-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.5;
}

/* --- RESEARCH SECTION --- */
.eco-section-light {
    padding: 100px 0;
    background-color: #0a0a0a;
    position: relative;
}

/* Inverte a ordem das colunas no desktop */
.split-layout.reverse {
    direction: ltr;
}

.split-layout.reverse .eco-text-content {
    order: 2;
}

.split-layout.reverse .research-visual {
    order: 1;
}

/* Visual do Scanner */
.research-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.analysis-box {
    width: 280px;
    padding: 30px;
    background: rgba(209, 166, 134, 0.03);
    border: 1px solid rgba(209, 166, 134, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bronze);
    box-shadow: 0 0 15px var(--bronze);
    animation: scanMove 3s infinite ease-in-out;
}

.data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
}

.status { color: #4ade80; }
.status-alt { color: var(--bronze); }

/* Tags Flutuantes */
.floating-tag {
    position: absolute;
    padding: 8px 16px;
    background: #000;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    animation: float 4s infinite ease-in-out;
}

.t1 { top: 20%; left: 10%; animation-delay: 0s; }
.t2 { top: 50%; right: 5%; animation-delay: 1s; }
.t3 { bottom: 20%; left: 15%; animation-delay: 2s; }

/* Check-list elegante */
.check-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.check-list li {
    color: #a1a1aa;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: 900;
}

/* --- TOOLS SECTION --- */
.tools-bg {
    background: linear-gradient(to bottom, #080808, #050505);
    padding-bottom: 120px;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tool-preview-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool-preview-card:hover {
    background: rgba(209, 166, 134, 0.02);
    border-color: rgba(209, 166, 134, 0.3);
    transform: translateY(-10px);
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.tool-preview-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.tool-preview-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tool-features {
    list-style: none;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.tool-features li {
    font-size: 0.8rem;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* --- TERMINAL SECTION --- */
.eco-terminal-section {
    padding: 120px 0;
    background: #030303;
    position: relative;
}

.terminal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.t-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.t-icon {
    color: var(--bronze);
    font-size: 1.2rem;
    font-weight: bold;
}

.t-item h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.t-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mockup de Software Minimalista */
.terminal-mockup-wrapper {
    position: relative;
}

.software-frame {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    overflow: hidden;
}

.frame-header {
    background: #151515;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dots { display: flex; gap: 6px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.frame-title { font-family: 'Courier New', monospace; font-size: 10px; color: #555; }

.frame-content {
    padding: 30px;
    height: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.f-line { height: 4px; background: rgba(209, 166, 134, 0.2); border-radius: 2px; }
.l-1 { width: 80%; }
.l-2 { width: 60%; background: var(--bronze); }
.l-3 { width: 90%; }

.early-access-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #000;
    border: 1px solid var(--bronze);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    color: var(--bronze);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */

.main-footer { padding: 80px 0 40px; background: #050505; border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-tagline { color: #52525b; font-size: 13px; line-height: 1.6; margin-top: 20px; max-width: 300px; }

.footer-nav h4 { color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a { color: #71717a; text-decoration: none; font-size: 13px; transition: 0.3s; }
.footer-nav ul li a:hover { color: var(--bronze); }

.footer-social { display: flex; gap: 15px; margin-bottom: 20px; }
.footer-social a {
    color: var(--bronze); text-decoration: none; font-weight: 800; font-size: 12px;
    border: 1px solid rgba(209, 166, 134, 0.3); width: 35px; height: 35px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.4s;
}
.footer-social a:hover { background: var(--bronze); color: #000; }
.footer-email { font-size: 13px; color: #fff; }

.footer-bottom { border-top: 1px solid var(--border-light); padding-top: 30px; display: flex; justify-content: space-between; color: #333; font-size: 11px; }
.footer-legal, .legal-links { display: flex; gap: 20px; }
.legal-links a { color: #333; text-decoration: none; }

/* =========================================================
   NODO RESEARCH - THE VAULT (ULTRA PREMIUM)
   ========================================================= */

.nodo-vault {
    background-color: var(--bg-dark);
}

/* 1. O MANIFESTO (HERO) */
.research-manifesto {
    padding: 60px 0 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.manifesto-inner {
    max-width: 1000px;
}

.eyebrow-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--bronze);
    text-transform: uppercase;
    display: block;
    margin-bottom: 40px;
}

.monumental-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    font-weight: 300; /* Fonte mais fina dá ar de luxo */
    letter-spacing: -1.5px;
    margin-bottom: 40px;
    color: #fff;
}

.bronze-italic {
    color: var(--bronze);
    font-style: italic; /* Toque editorial clássico */
    font-weight: 400;
}

.manifesto-text-block {
    max-width: 600px;
    border-left: 1px solid var(--bronze);
    padding-left: 30px;
}

.manifesto-text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #888;
}

/* 2. MASTER THESIS (DESTAQUE) */
.master-thesis {
    padding: 120px 0;
}

.thesis-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* A "Capa" da Tese */
.thesis-visual {
    background: #0a0a0a;
    height: 600px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    padding: 40px;
    overflow: hidden;
}

/* Brilho sutil de fundo para dar profundidade */
.bronze-glow {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(209, 166, 134, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.thesis-badge {
    position: relative;
    z-index: 2;
    font-family: monospace;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 2px;
}

/* Conteúdo da Tese */
.thesis-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.tag-bronze { color: var(--bronze); }
.time { color: #666; }

.thesis-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

.thesis-excerpt {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 50px;
}

.thesis-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Botão Monumental */
.btn-monumental {
    background: var(--bronze);
    color: #000;
    border: none;
    padding: 18px 36px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-monumental .arrow {
    transition: transform 0.3s ease;
}

.btn-monumental:hover {
    background: #fff;
}

.btn-monumental:hover .arrow {
    transform: translateX(5px);
}

.publish-date {
    font-size: 0.8rem;
    color: #555;
}

/* Responsividade Ultra Premium */
@media (max-width: 1024px) {
    .thesis-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .thesis-visual { height: 400px; }
}
@media (max-width: 768px) {
    .thesis-action { flex-direction: column; align-items: flex-start; gap: 20px; }
    .btn-monumental { width: 100%; justify-content: space-between; }
}

/* =========================================================
   3. O COFRE (PREMIUM VAULT)
   ========================================================= */
.premium-vault {
    padding: 80px 0 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vault-header {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.vault-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: #fff;
}

.vault-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 400px;
    text-align: right;
}

.vault-list {
    display: flex;
    flex-direction: column;
}

/* O item da lista - Design Minimalista */
.vault-item {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 40px;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    opacity: 0.8; /* Levemente opaco para indicar "restrito" */
}

.vault-item:hover {
    opacity: 1;
    border-top-color: var(--bronze);
    padding-left: 15px; /* Efeito de deslize subtil */
}

.item-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vault-date {
    font-family: monospace;
    font-size: 0.8rem;
    color: #555;
}

.vault-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--bronze);
    letter-spacing: 1px;
}

.item-title {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #ddd;
    line-height: 1.3;
}

.item-excerpt {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    max-width: 800px;
}

.item-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

.lock-icon {
    font-size: 1.2rem;
    opacity: 0.5;
}

.btn-text-vault {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.btn-text-vault:hover {
    color: var(--bronze);
    border-bottom-color: var(--bronze);
}

.vault-footer {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.btn-outline-bronze {
    background: transparent;
    border: 1px solid var(--bronze);
    color: var(--bronze);
    padding: 15px 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline-bronze:hover {
    background: var(--bronze);
    color: #000;
}

/* =========================================================
   4. CONVITE B2B (CARTA AOS ASSESSORES)
   ========================================================= */
.b2b-invitation {
    padding-bottom: 120px;
}

.invitation-box {
    background: linear-gradient(135deg, #0a0a0a 0%, #030303 100%);
    border: 1px solid rgba(209, 166, 134, 0.2);
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.invitation-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.invitation-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.2;
}

.invitation-content p {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 40px;
}

.small-margin {
    display: inline-flex; /* Adapta o botão monumental para esta secção */
}

/* O "Selo" decorativo à direita */
.invitation-seal {
    position: relative;
    z-index: 1;
    opacity: 0.05;
}

.seal-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid var(--bronze);
    display: flex;
    align

/* ==========================================================================
   OTIMIZAÇÃO MOBILE - NODO WEALTH (FORÇADA)
   ========================================================================== */

@media (max-width: 992px) {
    /* 1. Header & Menu */
    .header-container {
        padding: 15px 20px !important;
        justify-content: space-between !important;
    }

    .mobile-menu-icon {
        display: flex !important; /* Força o ícone a aparecer */
        flex-direction: column;
        gap: 6px;
        z-index: 10001;
        cursor: pointer;
    }

    .mobile-menu-icon span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--bronze);
        transition: 0.3s;
    }

    /* Transformação da Nav em Overlay */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Escondido */
        width: 100% !important;
        height: 100vh !important;
        background: #050505 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
        transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0) !important;
        z-index: 10000 !important;
    }

    .nav-links.active {
        right: 0 !important; /* Desliza para dentro */
    }

    .nav-links a {
        font-size: 20px !important;
        letter-spacing: 2px;
    }

    /* 2. Hero Section (Home) */
    .hero-wrapper {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        padding-top: 120px !important;
    }

    .hero-title {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
    }

    .hero-cta-group {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .btn-shiny, .btn-outline {
        width: 100% !important;
        justify-content: center;
    }

    /* 3. Grids de Conteúdo (Ecossistema/Cards) */
    .solutions-grid, .tools-grid, .terminal-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .section-padding {
        padding: 60px 20px !important;
    }

    /* 4. Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .footer-social {
        justify-content: center !important;
    }
}

/* Ajuste Extra para Telemóveis Pequenos */
@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem !important; }
    .brand-name { font-size: 1.2rem !important; }
}