/* Premium Dark Apple HIG System */
:root {
    --system-ui: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --apple-bg: #0A0A0B;
    --apple-card: #121214;
    --apple-card-hover: #18181B;
    --apple-text: #FFFFFF;
    --apple-text-secondary: rgba(255, 255, 255, 0.6);
    --apple-text-tertiary: rgba(255, 255, 255, 0.3);
    --apple-separator: rgba(255, 255, 255, 0.12);
    --apple-glass: rgba(10, 10, 11, 0.7);
    --apple-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --apple-border: 1px solid rgba(255, 255, 255, 0.12);
    --apple-blue: #0A84FF;
    --apple-brand: #C19E67; /* Um tom dourado confidencia premium */
    --glow: 0 0 40px rgba(193, 158, 103, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    font-family: var(--system-ui);
    background-color: var(--apple-bg);
    color: var(--apple-text);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.015em;
    overflow: hidden;
    line-height: 1.5;
}

/* Layout Geral */
.app-layout { display: flex; height: 100vh; width: 100vw; }

/* Sidebar */
.sidebar {
    width: 280px;
    background-color: var(--apple-bg);
    border-right: var(--apple-border);
    display: flex; flex-direction: column;
    z-index: 100;
}
.sidebar-header { padding: 32px 24px 16px; border-bottom: var(--apple-border); }
.app-logo {
    font-weight: 700; font-size: 20px; letter-spacing: -0.022em; margin-bottom: 4px; color: var(--apple-text);
}
.sidebar-subtitle { font-size: 13px; color: var(--apple-text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }

.sidebar-nav {
    flex: 1; overflow-y: auto; padding: 0 16px; display: flex; flex-direction: column; gap: 4px; margin-top: 16px;
}
.nav-item {
    display: flex; align-items: center; gap: 12px; padding: 12px 14px;
    color: var(--apple-text-secondary); text-decoration: none; border-radius: 12px;
    font-size: 15px; font-weight: 500; transition: all 0.2s;
}
.nav-item i { font-size: 20px; }
.nav-item:hover { background-color: rgba(255,255,255,0.05); color: var(--apple-text); }
.nav-item.active { background-color: rgba(255,255,255,0.08); color: var(--apple-text); font-weight: 600; }
.nav-item.active i { color: var(--apple-brand); }

.sidebar-footer { padding: 24px; border-top: var(--apple-border); }
.confidential-badge {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(193, 158, 103, 0.1); color: var(--apple-brand);
    padding: 12px; border-radius: 12px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
    border: 1px solid rgba(193, 158, 103, 0.2);
}

/* Main Area & SPA */
.main-content {
    flex: 1; position: relative; overflow: hidden; background-color: var(--apple-bg);
}
.page {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow-y: auto; overflow-x: hidden; opacity: 0; pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.32, 0.72, 0, 1), transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    padding-bottom: 60px;
}
.page.active { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Header */
.page-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 32px 40px 16px; position: sticky; top: 0; z-index: 50;
    background-color: var(--apple-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--apple-border);
}
.page-header.transparent { background: transparent; border: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.header-left { display: flex; align-items: center; gap: 16px; }
.header-left h1 { font-size: 24px; font-weight: 600; letter-spacing: -0.022em; }
.menu-toggle { display: none; background: none; border: none; color: var(--apple-text); cursor: pointer; }

/* Content Global */
.content-body { padding: 32px 40px; max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.section-title { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.1; }
.section-desc { font-size: 19px; color: rgba(255, 255, 255, 0.7); line-height: 1.5; font-weight: 400; }

/* Capa Hero */
.hero-page .content-body.center-content {
    height: calc(100% - 80px); display: flex; align-items: center; justify-content: center; max-width: 1000px;
}
.hero-content {
    text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.eyebrow {
    color: var(--apple-brand); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}
.hero-title {
    font-size: 64px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 24px; color: var(--apple-text-secondary); max-width: 600px; line-height: 1.4; }

.hero-metrics {
    display: flex; gap: 40px; margin-top: 40px; padding: 40px;
    background: var(--apple-card); border-radius: 24px; border: var(--apple-border); box-shadow: var(--glow);
    flex-wrap: wrap; justify-content: center;
}
.hero-metric { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-value { font-size: 32px; font-weight: 700; color: var(--apple-text); }
.hero-label { font-size: 14px; color: var(--apple-text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }

/* Blockquote */
.quote-block {
    margin: 40px 0; padding: 40px; border-radius: 24px;
    background: linear-gradient(145deg, var(--apple-card) 0%, rgba(193, 158, 103, 0.05) 100%);
    border: var(--apple-border); position: relative;
}
.quote-block i { font-size: 32px; color: var(--apple-brand); margin-bottom: 16px; display: block; }
.quote-block blockquote { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 16px; }
.quote-block cite { font-size: 16px; color: var(--apple-text-secondary); font-style: normal; }

/* Grids e Cards Base */
.metrics-grid, .card-grid { display: grid; gap: 20px; }
.metrics-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }

.metric-card {
    background: var(--apple-card); border-radius: 20px; padding: 24px;
    border: var(--apple-border); display: flex; flex-direction: column; gap: 16px;
    transition: transform 0.2s, background 0.2s;
}
.metric-card:hover { transform: translateY(-4px); background: var(--apple-card-hover); }
.metric-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; }

/* Cores de ícone genéricas (podemos usar na métrica contextual) */
.sfsymbol-green { background: rgba(52, 199, 89, 0.1); color: #30D158; }
.sfsymbol-blue { background: rgba(10, 132, 255, 0.1); color: #0A84FF; }
.sfsymbol-orange { background: rgba(255, 159, 10, 0.1); color: #FF9F0A; }
.sfsymbol-purple { background: rgba(191, 90, 242, 0.1); color: #BF5AF2; }

/* Dor & Pillar Cards */
.dor-card, .pillar-card {
    background: var(--apple-card); border-radius: 24px; padding: 32px; border: var(--apple-border);
    display: flex; flex-direction: column; gap: 16px;
}
.dor-header { display: flex; flex-direction: column; gap: 12px; }
.dor-badge {
    align-self: flex-start; background: rgba(255, 59, 48, 0.1); color: #FF453A;
    padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
}
.dor-card h3, .pillar-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.dor-card p, .pillar-card p { font-size: 16px; color: var(--apple-text-secondary); line-height: 1.5; flex: 1; }
.dor-consequence {
    margin-top: 16px; padding-top: 16px; border-top: var(--apple-border);
    font-size: 15px; color: #FF453A; font-weight: 500; display: flex; align-items: center; gap: 8px;
}

.pillar-icon {
    width: 64px; height: 64px; border-radius: 16px; background: rgba(193, 158, 103, 0.1);
    color: var(--apple-brand); display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 8px;
}

/* Modulos (Escopo) */
.module-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.module-card {
    display: flex; background: var(--apple-card); border-radius: 20px; border: var(--apple-border);
    padding: 32px; gap: 32px; align-items: center;
}
.module-number {
    font-size: 72px; font-weight: 800; color: rgba(255,255,255,0.05); line-height: 0.8; letter-spacing: -0.05em;
}
.module-content { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.module-content h3 { font-size: 24px; font-weight: 600; }
.module-content p { font-size: 17px; color: var(--apple-text-secondary); }
.module-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.tag {
    background: rgba(255,255,255,0.05); border: var(--apple-border); padding: 6px 14px;
    border-radius: 20px; font-size: 13px; color: var(--apple-text-secondary); font-weight: 500;
}

/* Timeline (Implantação) */
.timeline { display: flex; flex-direction: column; gap: 32px; position: relative; padding-left: 20px; margin-top: 32px; }
.timeline::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, var(--apple-brand) 0%, rgba(193,158,103,0) 100%);
    border-radius: 2px;
}
.phase-card {
    background: var(--apple-card); border-radius: 20px; border: var(--apple-border);
    padding: 32px; position: relative;
}
.phase-card::before {
    content: ''; position: absolute; left: -25px; top: 40px; width: 12px; height: 12px;
    border-radius: 50%; background: var(--apple-brand); border: 4px solid var(--apple-bg);
}
.phase-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.phase-title { display: flex; flex-direction: column; gap: 8px; }
.phase-badge {
    align-self: flex-start; background: rgba(255,255,255,0.08); padding: 4px 10px;
    border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; color: var(--apple-text-secondary);
}
.phase-title h3 { font-size: 24px; font-weight: 600; color: var(--apple-text); }
.phase-meta { font-size: 15px; color: var(--apple-brand); font-weight: 500; }
.phase-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.phase-checklist li { display: flex; gap: 12px; font-size: 16px; color: var(--apple-text-secondary); align-items: flex-start; }
.phase-checklist li::before { content: '—'; color: var(--apple-text-tertiary); font-weight: 600; }
.phase-delivery {
    background: rgba(52, 199, 89, 0.1); color: #30D158; padding: 16px; border-radius: 12px;
    font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 10px;
}
.phase-delivery i { font-size: 20px; }

/* Animations & Observer Classes */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.32, 0.72, 0, 1), transform 0.6s cubic-bezier(0.32, 0.72, 0, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 10px; }

/* Custom Investimento & Proximos Passos */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.compare-card { background: var(--apple-card); padding: 32px; border-radius: 20px; border: var(--apple-border); }
.compare-header { margin-bottom: 24px; padding-bottom: 24px; border-bottom: var(--apple-separator); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--apple-text-secondary); font-size: 15px;}
.compare-list.bad li { color: rgba(255,255,255,0.4); }
.compare-list.bad li i { color: #FF453A; font-size: 20px;}
.compare-list.good li { color: var(--apple-text); }
.compare-list.good li i { color: #30D158; font-size: 20px;}

.invest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px;}
.invest-card { background: var(--apple-card); padding: 32px; border-radius: 20px; border: var(--apple-border); display: flex; flex-direction: column; }
.invest-price { font-size: 40px; font-weight: 800; margin: 16px 0 8px; color: var(--apple-text); }
.invest-subtitle { font-size: 15px; color: var(--apple-text-secondary); margin-bottom: 24px; line-height: 1.5;}
.invest-details { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.invest-details li { display: flex; gap: 12px; font-size: 15px; color: var(--apple-text); font-weight: 500;}
.invest-details li i { color: #30D158; font-size: 20px;}

.tools-cost { background: rgba(255,255,255,0.03); padding: 32px; border-radius: 20px; margin-top: 24px; border: var(--apple-border);}
.tools-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.tools-row:last-child { border-bottom: none; }

.step-card { display: flex; gap: 24px; padding: 32px; background: rgba(255,255,255,0.02); border-left: 3px solid var(--apple-brand); margin-bottom: 16px; border-radius: 0 16px 16px 0; border-top: var(--apple-border); border-right: var(--apple-border); border-bottom: var(--apple-border);}
.step-number { font-size: 32px; font-weight: 800; color: var(--apple-brand); line-height: 1; min-width: 48px;}
.step-content { flex: 1; }
.step-content h3 { font-size: 20px; margin-bottom: 8px; font-weight: 600;}
.step-content p { color: var(--apple-text-secondary); line-height: 1.5; font-size: 16px;}
.step-deadline { margin-top: 16px; font-size: 14px; font-weight: 600; color: #30D158; display: flex; align-items: center; gap: 8px; }

/* --- Modals & Interactive Previews --- */
.interactive-card {
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.interactive-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-container {
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}
.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,0.05);
    border: none; color: white;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); }
.modal-content-area {
    padding: 0;
    overflow-y: auto;
    flex: 1;
}
.modal-content {
    display: none;
    flex-direction: column;
}
.modal-content.active {
    display: flex;
}
.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.modal-header i { font-size: 32px; margin-bottom: 16px; }
.modal-header h2 { font-size: 24px; margin-bottom: 8px; }
.modal-header p { color: var(--apple-text-secondary); font-size: 15px; }
.modal-body {
    padding: 32px;
    background: #0a0a0a;
}

/* CSS UI Mockups */
.mockup-container {
    display: flex;
    justify-content: center;
}
.mockup-kanban {
    display: flex; gap: 16px; width: 100%;
}
.kanban-col {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border-radius: 12px; padding: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}
.kanban-col h4 {
    font-size: 13px; color: var(--apple-text-secondary); margin-bottom: 16px;
    display: flex; justify-content: space-between; text-transform: uppercase; letter-spacing: 0.05em;
}
.kanban-card {
    background: #1a1a1a; padding: 12px; border-radius: 8px; margin-bottom: 8px;
    font-size: 14px; border-left: 3px solid #0A84FF; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.kanban-card.won { border-left-color: #30D158; }
.kanban-card span { display: block; margin-top: 8px; font-weight: 600; color: #30D158; }

.mockup-workflow {
    display: flex; flex-direction: column; align-items: center; width: 100%;
}
.wf-node {
    background: #1a1a1a; padding: 12px 24px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.1);
    font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px;
}
.wf-node.trigger { border-color: #BF5AF2; color: #BF5AF2; }
.wf-node.action { background: rgba(10, 132, 255, 0.1); color: #0A84FF; border-color: rgba(10, 132, 255, 0.3); }
.wf-node.action.whatsapp { color: #30D158; background: rgba(48, 209, 88, 0.1); border-color: rgba(48, 209, 88, 0.3); }
.wf-node.action.alert { color: #FF9F0A; background: rgba(255, 159, 10, 0.1); border-color: rgba(255, 159, 10, 0.3); }
.wf-node.condition { border-radius: 8px; background: rgba(255,255,255,0.05); }
.wf-arrow { color: rgba(255,255,255,0.2); margin: 8px 0; font-size: 16px; }

.mockup-ai { width: 100%; display: flex; flex-direction: column; gap: 16px; }
.ai-insight {
    display: flex; gap: 16px; background: rgba(191, 90, 242, 0.05); border: 1px solid rgba(191, 90, 242, 0.2);
    padding: 24px; border-radius: 12px; align-items: flex-start;
}
.ai-insight.success { background: rgba(48, 209, 88, 0.05); border-color: rgba(48, 209, 88, 0.2); }
.ai-icon { font-size: 24px; color: #BF5AF2; }
.ai-insight.success .ai-icon { color: #30D158; }
.ai-text strong { display: block; margin-bottom: 4px; font-size: 15px; }
.ai-text p { color: var(--apple-text-secondary); font-size: 14px; line-height: 1.5; margin-bottom: 12px; }
.ai-btn { display: inline-block; background: #BF5AF2; color: white; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; }

.mockup-grid-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; }
.logo-box {
    background: #1a1a1a; border: 1px solid rgba(255,255,255,0.05); border-radius: 12px;
    height: 80px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
    font-size: 14px; font-weight: 500;
}
.logo-box i { font-size: 24px; }

.mockup-inbox {
    display: flex; width: 100%; height: 300px; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden;
}
.inbox-sidebar { width: 200px; border-right: 1px solid rgba(255,255,255,0.1); background: #0a0a0a; }
.chat-item { padding: 16px; display: flex; align-items: center; gap: 12px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--apple-text-secondary); }
.chat-item.active { background: rgba(255,255,255,0.05); color: white; border-left: 2px solid #0A84FF; }
.inbox-main { flex: 1; display: flex; flex-direction: column; padding: 24px; position: relative; background: #1a1a1a; }
.chat-bubble { padding: 12px 16px; border-radius: 16px; max-width: 80%; margin-bottom: 16px; font-size: 14px; line-height: 1.4; }
.chat-bubble.left { background: #222; align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-bubble.right { background: #0A84FF; color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-input-mock { position: absolute; bottom: 24px; left: 24px; right: 24px; background: #222; padding: 12px 16px; border-radius: 20px; color: rgba(255,255,255,0.4); font-size: 14px; border: 1px solid rgba(255,255,255,0.1); }

.mockup-chatbot { width: 320px; border: 8px solid #333; border-radius: 36px; background: #111; height: 400px; display: flex; flex-direction: column; position: relative; overflow: hidden; margin: 0 auto; }
.bot-phone { padding: 24px 16px; display: flex; flex-direction: column; height: 100%; font-size: 13px; }
.bot-msg { background: #222; padding: 12px; border-radius: 16px; border-bottom-left-radius: 4px; margin-bottom: 8px; max-width: 85%; align-self: flex-start; line-height: 1.4; }
.user-msg { background: #30D158; color: white; padding: 12px; border-radius: 16px; border-bottom-right-radius: 4px; margin-bottom: 8px; max-width: 85%; align-self: flex-end; }
.bot-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; align-items: flex-start; }
.bot-pill { background: rgba(10, 132, 255, 0.1); color: #0A84FF; border: 1px solid rgba(10, 132, 255, 0.3); padding: 8px 16px; border-radius: 20px; font-weight: 500; cursor: pointer; }

.mockup-profile { width: 100%; display: flex; flex-direction: column; gap: 24px; background: #111; border: 1px solid rgba(255,255,255,0.1); padding: 24px; border-radius: 16px; }
.prof-head { display: flex; align-items: center; gap: 16px; }
.prof-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #BF5AF2, #0A84FF); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; }
.prof-head h4 { font-size: 20px; margin-bottom: 4px; }
.prof-stats { display: flex; gap: 16px; }
.stat-box { flex: 1; background: #1a1a1a; padding: 16px; border-radius: 12px; text-align: center; }
.stat-box span { display: block; font-size: 12px; color: var(--apple-text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-box strong { font-size: 20px; }
.prof-history { display: flex; flex-direction: column; gap: 12px; }
.hist-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--apple-text-secondary); background: #1a1a1a; padding: 12px 16px; border-radius: 8px; }
.hist-item i { font-size: 18px; }

/* Responsive */
@media (max-width: 900px) {
    .sidebar { position: fixed; left: -100%; top: 0; bottom: 0; transition: left 0.4s cubic-bezier(0.32, 0.72, 0, 1); }
    .sidebar.open { left: 0; box-shadow: 20px 0 50px rgba(0,0,0,0.5); }
    .menu-toggle { display: block; font-size: 24px; }
    .page-header { padding: 24px; }
    .content-body { padding: 24px; }
    .hero-title { font-size: 42px; }
    .hero-metrics { flex-direction: column; padding: 24px; gap: 24px; }
    .hero-metric { text-align: center; }
    .module-card { flex-direction: column; gap: 16px; align-items: flex-start; }
    .module-number { font-size: 48px; }
    .compare-grid, .invest-grid { grid-template-columns: 1fr; }
    .step-card { flex-direction: column; gap: 16px; padding: 24px;}
    .card-grid { grid-template-columns: 1fr; }
    .mockup-kanban { flex-direction: column; }
    .mockup-grid-logos { grid-template-columns: repeat(2, 1fr); }
    .mockup-inbox { height: 250px; flex-direction: column; }
    .inbox-sidebar { width: 100%; height: 120px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
