/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (ASIMOV BRAND REDESIGN)
   ========================================================================== */
:root {
    /* Color Palette - Deep Black & Electric Cyan/Petrol Blue */
    --bg-dark: #000000;
    --bg-deep: #020608;
    --bg-section: #030b0f;
    --bg-surface: #071116;
    --bg-surface-hover: #0a1820;
    --border-color: rgba(80, 230, 255, 0.08);
    --border-color-hover: rgba(80, 230, 255, 0.4);
    
    --primary: #45DFF5; /* Electric Cyan */
    --primary-glow: rgba(69, 223, 245, 0.15);
    --primary-bright: #50e6ff;
    
    --secondary-blue: #00AFCB;
    --secondary-purple: #8b5cf6;
    
    --accent-red: #ef4444;
    --accent-orange: #f97316;
    
    /* Green reserved only for status/online indicators */
    --status-green: #55C038;
    --status-green-glow: rgba(85, 192, 56, 0.2);
    
    /* Neutral Text */
    --text-primary: #F6F8FA;
    --text-secondary: #A8B3BD;
    --text-muted: #6F7C86;
    
    /* Font Stacks */
    --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #0f242e;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #193c4d;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ==========================================================================
   GRID & SPOTLIGHT BACKGROUNDS
   ========================================================================== */
.ambient-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(80, 230, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(80, 230, 255, 0.015) 1px, transparent 1px);
    pointer-events: none;
    z-index: 1;
}

/* Ambient Radial Glow Fields (Cyan/Blue Theme) */
.glow-field {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}
.glow-1 {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}
.glow-2 {
    bottom: -150px;
    left: -200px;
    background: radial-gradient(circle, var(--secondary-blue) 0%, transparent 70%);
}

/* Spotlight Cursor Tracer (Cyan glow) */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(69, 223, 245, 0.05), transparent 80%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ==========================================================================
   TYPOGRAPHY & STRUCTURAL UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

.container-narrow {
    max-width: 860px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    font-family: var(--font-body);
    color: var(--text-secondary);
}

.highlight {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), var(--primary-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text {
    color: var(--primary-bright);
}

.font-mono {
    font-family: var(--font-mono);
}

.font-large {
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Helper flex layout names */
.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.text-center { text-align: center; }
.text-start { text-align: left; }
.position-relative { position: relative; }

/* ==========================================================================
   PROGRESS BAR & HEADER
   ========================================================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-blue) 0%, var(--primary) 100%);
    width: 0%;
    z-index: 9999;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: width 0.1s ease;
}

.site-header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-asimov {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    text-transform: lowercase;
}

.logo-dot {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.4rem;
}

.logo-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(69, 223, 245, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(69, 223, 245, 0.25);
    margin-left: 6px;
    vertical-align: middle;
}

.header-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 99px;
}

.pulse-icon {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(69, 223, 245, 0.7);
    animation: pulse 1.8s infinite;
}

.tag-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

/* ==========================================================================
   CARDS COMMON HOVER EFFECTS
   ========================================================================== */
.card-hover-effect {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: transform var(--transition-normal), 
                border-color var(--transition-normal), 
                box-shadow var(--transition-normal),
                background-color var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card-hover-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.015) 25%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.015) 75%,
        transparent
    );
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.card-hover-effect:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-hover);
    background-color: var(--bg-surface-hover);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7), 0 0 18px -3px rgba(69, 223, 245, 0.12);
}

.card-hover-effect:hover::after {
    transform: translateX(100%);
}

.highlighted-border {
    border: 1px solid rgba(69, 223, 245, 0.25) !important;
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(69, 223, 245, 0.02) 100%);
}
.highlighted-border:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.8), 0 0 20px -3px rgba(69, 223, 245, 0.2) !important;
}

.highlighted-border-subtle {
    border: 1px solid rgba(0, 175, 203, 0.25) !important;
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(0, 175, 203, 0.02) 100%);
}
.highlighted-border-subtle:hover {
    border-color: var(--secondary-blue) !important;
    box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.8), 0 0 20px -3px rgba(0, 175, 203, 0.2) !important;
}

/* Pulse Dot (Success/Status indicator only) */
.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 6px;
}
.pulse-dot.green {
    background-color: var(--status-green);
    box-shadow: 0 0 0 0 rgba(85, 192, 56, 0.5);
    animation: pulse-green 2s infinite;
}
.pulse-dot.green-bright {
    background-color: var(--status-green);
    box-shadow: 0 0 0 0 rgba(85, 192, 56, 0.6);
    animation: pulse-green-bright 2s infinite;
}

/* ==========================================================================
   SEÇÃO 1 — HERO
   ========================================================================== */
.section-hero {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 24px;
}

.eyebrow-accent {
    color: var(--primary);
}

.eyebrow .divider {
    color: var(--text-muted);
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 40px auto;
    font-weight: 500;
}

/* Premium Terminal Simulator (Ciano Theme) */
.terminal-wrapper {
    background: #020608;
    border: 1px solid rgba(80, 230, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(69, 223, 245, 0.04);
    margin: 0 auto 60px auto;
    overflow: hidden;
    max-width: 680px;
}

.terminal-header {
    background: #050c10;
    border-bottom: 1px solid rgba(80, 230, 255, 0.12);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dot-btn.red { background-color: #ef4444; }
.dot-btn.yellow { background-color: #f59e0b; }
.dot-btn.green { background-color: var(--status-green); }
.dot-btn.green-solid { background-color: var(--status-green); }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.terminal-lang {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #3b505c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.terminal-body {
    padding: 20px 24px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #e2e8f0;
    overflow-x: auto;
}

.terminal-body pre {
    white-space: pre-wrap;
    word-break: break-all;
    line-height: 1.7;
}

/* Syntax Highlighting IDE Style */
.terminal-body .c1 { color: #6f7c86; font-style: italic; } /* Comments */
.terminal-body .k { color: #f43f5e; font-weight: bold; } /* Keywords (e.g. import, as) */
.terminal-body .s { color: #45DFF5; } /* Strings (Cyan) */
.terminal-body .n { color: #F6F8FA; } /* Variables/Names */
.terminal-body .nb { color: #38bdf8; } /* Functions (Cyan Blue) */

.terminal-output-line {
    border-top: 1px solid rgba(80, 230, 255, 0.12);
    padding-top: 12px;
    margin-top: 12px;
    color: var(--primary-bright);
    min-height: 38px;
}

.output-prefix {
    color: #506575;
    margin-right: 8px;
}

.cursor {
    animation: blink 1s step-end infinite;
}

/* Hero Cards Grid */
.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.hero-card {
    text-align: left;
    padding: 20px;
}

.hero-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.hero-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.card-status-bar {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.card-status-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* ==========================================================================
   SEÇÕES FORMATOS GERAIS
   ========================================================================== */
section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(69, 223, 245, 0.08);
    border: 1px solid rgba(69, 223, 245, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

section h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto;
}

/* ==========================================================================
   SEÇÃO 2 — O QUE A VAGA REALMENTE REVELA
   ========================================================================== */
.section-vaga {
    background-color: var(--bg-deep);
}

.vaga-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vaga-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vaga-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.log-indicator {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.log-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.tag-observed {
    color: var(--primary-bright);
    background: rgba(69, 223, 245, 0.08);
    border: 1px solid rgba(69, 223, 245, 0.15);
}

.tag-strategic {
    color: var(--secondary-purple);
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.tag-opportunity {
    color: var(--primary);
    background: rgba(69, 223, 245, 0.08);
    border: 1px solid rgba(69, 223, 245, 0.15);
}

.vaga-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.vaga-card-content p {
    font-size: 0.92rem;
    line-height: 1.6;
}

.card-decoration-line {
    height: 2px;
    width: 40px;
    background: var(--border-color);
    margin-top: auto;
    padding-top: 0;
    transition: width var(--transition-normal), background-color var(--transition-normal);
}

.vaga-card:hover .card-decoration-line {
    width: 100%;
    background-color: var(--primary);
}

.vaga-card.highlighted-border-subtle:hover .card-decoration-line {
    background-color: var(--secondary-blue);
}

/* ==========================================================================
   SEÇÃO 3 — JULIANO COMO ATIVO DE CRESCIMENTO
   ========================================================================== */
.section-expert {
    background-color: var(--bg-section);
}

.expert-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.expert-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-description {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.expert-subtext {
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Connected Flow Diagram - Cyan Active States */
.expert-flow-container {
    display: flex;
    align-items: center;
    background: rgba(69, 223, 245, 0.01);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
}

.flow-step {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    position: relative;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.flow-step .step-num {
    color: var(--text-muted);
    font-size: 0.65rem;
}

.flow-step .step-label {
    color: var(--text-primary);
    font-weight: 600;
}

.flow-connector {
    flex-grow: 1;
    height: 1px;
    background: var(--border-color);
    margin: 0 8px;
    min-width: 16px;
    position: relative;
}

.flow-dot {
    position: absolute;
    top: -2.5px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    filter: drop-shadow(0 0 3px var(--primary));
    animation: flow-run 2.5s infinite linear;
}

/* Flow Step highlights */
.flow-step[data-step="1"] { animation: flash-highlight 5s infinite; }
.flow-step[data-step="2"] { animation: flash-highlight 5s infinite 1s; }
.flow-step[data-step="3"] { animation: flash-highlight 5s infinite 2s; }
.flow-step[data-step="4"] { animation: flash-highlight 5s infinite 3s; }
.flow-step[data-step="5"] { animation: flash-highlight 5s infinite 4s; }

/* Right Column: Photo frame themed Cyan */
.expert-frame-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    max-width: 420px;
    margin: 0 auto;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.expert-frame-container:hover {
    border-color: rgba(80, 230, 255, 0.25);
    box-shadow: 0 20px 45px rgba(0,0,0,0.8), 0 0 20px rgba(69, 223, 245, 0.08);
}

.expert-frame-header {
    background: #020608;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.frame-status {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--status-green);
    display: flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.expert-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.expert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.expert-frame-container:hover .expert-image-wrapper img {
    transform: scale(1.03);
}

/* Fallback SVG representation if physical image fails (Themed Cyan) */
.expert-fallback-svg {
    position: absolute;
    inset: 0;
    background: #020608;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.expert-avatar-svg {
    width: 60%;
    height: 60%;
}

.expert-avatar-svg circle {
    stroke: var(--primary);
}

.expert-avatar-svg path {
    stroke: var(--primary);
}

.expert-avatar-svg text {
    fill: var(--primary);
}

/* ==========================================================================
   SEÇÃO 4 — O GAP PRINCIPAL
   ========================================================================== */
.section-gap {
    background-color: var(--bg-dark);
}

.gap-matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.gap-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.col-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.col-icon-wrapper.red-theme {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
}
.col-icon-wrapper.green-theme {
    background: rgba(69, 223, 245, 0.08);
    border: 1px solid rgba(69, 223, 245, 0.15);
    color: var(--primary);
}

.gap-col h3 {
    font-size: 1.35rem;
}

.col-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.col-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.matrix-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform var(--transition-fast), 
                border-color var(--transition-fast), 
                background-color var(--transition-fast);
}

.item-bullet {
    font-size: 0.6rem;
    font-family: var(--font-mono);
}
.item-bullet.red { color: var(--accent-red); }
.item-bullet.green { color: var(--primary); }

.item-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Col 1 - Isolated states: disconnected feel */
.col-isolated .matrix-item {
    opacity: 0.55;
    border-color: rgba(239, 68, 68, 0.08);
}
.col-isolated .matrix-item:hover {
    opacity: 0.95;
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.02);
}

/* Col 2 - System states: highly integrated feel */
.col-system .matrix-item {
    border-left: 3px solid var(--border-color);
}

/* Hover behaviors for system items */
.system-interactive-list:hover .matrix-item {
    border-color: var(--primary);
    background: rgba(69, 223, 245, 0.03);
    border-left-color: var(--primary-bright);
    transform: translateX(4px);
}

.system-interactive-list .matrix-item:nth-child(1) { transition-delay: 0ms; }
.system-interactive-list .matrix-item:nth-child(2) { transition-delay: 50ms; }
.system-interactive-list .matrix-item:nth-child(3) { transition-delay: 100ms; }
.system-interactive-list .matrix-item:nth-child(4) { transition-delay: 150ms; }
.system-interactive-list .matrix-item:nth-child(5) { transition-delay: 200ms; }

.active-badge {
    margin-left: auto;
    font-size: 0.65rem;
    color: var(--primary);
    background: rgba(69, 223, 245, 0.08);
    border: 1px solid rgba(69, 223, 245, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.05em;
    animation: blink 1.5s infinite;
}

.gap-footer-phrase {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

/* ==========================================================================
   SEÇÃO 5 — MÉTODO FORJA
   ========================================================================== */
.section-forja {
    background-color: var(--bg-deep);
}

.forja-pipeline-wrapper {
    position: relative;
    margin: 60px 0;
    padding: 20px 0;
}

/* Horizontal Connector Line for Desktop (Cyan Theme) */
.pipeline-progress-line {
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.pipeline-line-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-blue) 0%, var(--primary) 100%);
    box-shadow: 0 0 10px var(--primary-bright);
    transition: width 1.5s ease-in-out;
}

.forja-cards-pipeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.forja-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    background: var(--bg-surface);
}

.step-badge {
    width: 36px;
    height: 36px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 20px;
    transition: border-color var(--transition-normal), color var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.forja-card:hover .step-badge {
    border-color: var(--primary);
    color: var(--bg-dark);
    background-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.card-sub-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--primary-bright);
    display: block;
    margin-bottom: 10px;
}

.forja-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.forja-card p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Specialized theme cards */
/* Minério: Deep petroleum black */
.forja-step-1 {
    background: #040d12;
}

/* Heat Glow theme for Calor step (Subtle Amber hover glow) */
.forja-theme-heat:hover {
    border-color: var(--accent-orange) !important;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7), 0 0 20px -3px rgba(249, 115, 22, 0.25) !important;
}
.forja-theme-heat:hover .step-badge {
    border-color: var(--accent-orange);
    background-color: var(--accent-orange);
}
.forja-theme-heat:hover .card-sub-title {
    color: var(--accent-orange);
}

/* Impact hover shift for Martelo step (Cyan glow) */
.forja-theme-impact:hover {
    animation: impact-shiver 0.25s linear;
    border-color: var(--primary) !important;
}

/* Têmpera: Deep blue */
.forja-step-4 {
    background: #020f18;
}
.forja-step-4:hover {
    border-color: var(--secondary-blue) !important;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7), 0 0 20px -3px rgba(0, 175, 203, 0.25) !important;
}

/* Crisp blade hover style */
.forja-theme-blade:hover {
    border-color: #ffffff !important;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.7), 0 0 20px -3px rgba(255, 255, 255, 0.2) !important;
}
.forja-theme-blade:hover .step-badge {
    border-color: #ffffff;
    background-color: #ffffff;
}
.forja-theme-blade:hover .card-sub-title {
    color: #ffffff;
}

/* Output JSON Console block (Cyan theme) */
.forja-impact-block {
    margin-top: 60px;
}

.forja-impact-phrase {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    max-width: 680px;
    margin: 0 auto 32px auto;
}

.output-console {
    max-width: 500px;
    margin: 0 auto;
    background: #020608;
    border: 1px solid rgba(80, 230, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.console-title-bar {
    background: #050c10;
    border-bottom: 1px solid rgba(80, 230, 255, 0.12);
    padding: 8px 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.output-console pre {
    padding: 16px 20px;
    font-size: 0.8rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.output-console .k { color: #f43f5e; }
.output-console .s { color: var(--primary); }

/* ==========================================================================
   SEÇÃO 6 — ROADMAP DE 30 DIAS
   ========================================================================== */
.section-roadmap {
    background-color: var(--bg-section);
}

.roadmap-timeline-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 42px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-blue) 0%, var(--primary) 100%);
    box-shadow: 0 0 8px var(--primary-bright);
    transition: width 1s ease-out;
}

.roadmap-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.roadmap-step-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.week-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(69, 223, 245, 0.08);
    border: 1px solid rgba(69, 223, 245, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

.step-status {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.roadmap-step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.roadmap-step-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.step-deliverable {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
}

.deliverable-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--primary-bright);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.step-deliverable p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Roadmap Hover Focus Opacity Fade */
.roadmap-steps:hover .roadmap-step-card:not(:hover) {
    opacity: 0.35;
    transform: translateY(0);
}

/* ==========================================================================
   SEÇÃO 7 — RECOMENDAÇÃO FINAL
   ========================================================================== */
.section-final {
    background-color: var(--bg-dark);
}

.final-card {
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
}

.insider-seal {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: rgba(69, 223, 245, 0.08);
    border: 1px solid rgba(69, 223, 245, 0.15);
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-weight: 700;
}

.final-card h2 {
    font-size: 2.25rem;
    margin-bottom: 30px;
}

.final-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.final-main-text {
    color: var(--text-primary);
    font-weight: 500;
}

.final-sub-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.final-quote-block {
    background: rgba(255, 255, 255, 0.005);
    border-left: 3px solid var(--primary);
    padding: 24px 30px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.quote-phrase {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    text-align: left;
}

.final-cta-block {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.cta-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.cta-description {
    font-size: 0.9rem;
    max-width: 580px;
    margin: 0 auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
    background: #000000;
}

.footer-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.footer-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-decoration .dot {
    width: 4px;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 50%;
}

.footer-decoration .line {
    width: 60px;
    height: 1px;
    background-color: var(--border-color);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero reveal classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 150ms; }
.delay-2 { animation-delay: 300ms; }
.delay-3 { animation-delay: 450ms; }
.delay-4 { animation-delay: 600ms; }

@keyframes reveal-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(69, 223, 245, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(69, 223, 245, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(69, 223, 245, 0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(85, 192, 56, 0.5);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(85, 192, 56, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(85, 192, 56, 0);
    }
}

@keyframes pulse-green-bright {
    0% {
        box-shadow: 0 0 0 0 rgba(85, 192, 56, 0.6);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(85, 192, 56, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(85, 192, 56, 0);
    }
}

@keyframes blink {
    from, to { color: transparent }
    50% { color: var(--primary-bright) }
}

@keyframes flow-run {
    0% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

@keyframes flash-highlight {
    0%, 100% {
        border-color: var(--border-color);
        box-shadow: none;
    }
    20%, 50% {
        border-color: var(--border-color-hover);
        box-shadow: 0 0 8px rgba(69, 223, 245, 0.08);
    }
}

@keyframes impact-shiver {
    0% { transform: translateY(-6px) rotate(0deg); }
    15% { transform: translateY(-6px) rotate(-1deg); }
    30% { transform: translateY(-6px) rotate(1.5deg); }
    45% { transform: translateY(-6px) rotate(-1.5deg); }
    60% { transform: translateY(-6px) rotate(1deg); }
    75% { transform: translateY(-6px) rotate(-0.5deg); }
    100% { transform: translateY(-6px) rotate(0deg); }
}

/* ==========================================================================
   ACCESSIBILITY & PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    .pulse-icon, .pulse-dot.green, .pulse-dot.green-bright {
        animation: none !important;
    }
    .flow-dot {
        display: none !important;
    }
    .flow-step {
        animation: none !important;
    }
    .forja-theme-impact:hover {
        animation: none !important;
    }
    .spotlight {
        display: none !important;
    }
    .pipeline-line-fill, .timeline-progress-fill {
        transition: none !important;
        width: 100% !important;
    }
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE-FIRST REFINEMENTS)
   ========================================================================== */
@media (max-width: 1200px) {
    /* Tablet structures */
    .vaga-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .vaga-cards-grid .vaga-card:nth-child(3) {
        grid-column: span 2;
    }
    .forja-cards-pipeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .pipeline-progress-line {
        display: none;
    }
    .roadmap-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    section {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 1.95rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-cards-grid {
        grid-template-columns: 1fr;
    }
    
    /* Section 2 */
    .vaga-cards-grid {
        grid-template-columns: 1fr;
    }
    .vaga-cards-grid .vaga-card:nth-child(3) {
        grid-column: span 1;
    }
    
    /* Section 3 (Juliano) */
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .expert-visual-col {
        order: 2; /* Photo below text */
    }
    .expert-text-col {
        order: 1;
    }
    
    /* Section 4 (Gap) */
    .gap-matrix-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Section 5 (Forja) */
    .forja-cards-pipeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Section 6 (Roadmap) */
    .roadmap-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Vertical Timeline styling for mobile */
    .roadmap-timeline-wrapper {
        padding-left: 20px;
    }
    .roadmap-timeline-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 4px;
        width: 2px;
        background: var(--border-color);
        z-index: 1;
    }
    .roadmap-step-card {
        position: relative;
        padding-left: 20px;
    }
    .roadmap-step-card::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 8px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--bg-dark);
        border: 2px solid var(--primary);
        z-index: 2;
    }
    
    /* Section 7 */
    .final-card {
        padding: 30px 20px;
    }
    .final-card h2 {
        font-size: 1.75rem;
    }
    .quote-phrase {
        font-size: 1.1rem;
    }
}
