/* =============================================================================
   LEADZ SOFTWARE - Sistema de Estilos
   =============================================================================
   Estrutura:
   1. Variáveis CSS
   2. Reset e Base
   3. Tipografia
   4. Canvas (Background)
   5. Glass Panels
   6. Navegação
   7. Botões
   8. Hero Section
   9. Card Particles
   10. Utilitários
   11. Responsivo
   ============================================================================= */

/* =============================================================================
   1. VARIÁVEIS CSS
   ============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Light Mode (Padrão) */

    /* Cores de fundo */
    --bg-deep: #ffffff;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0efe9;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: rgba(255, 255, 255, 1);

    /* Cores de texto */
    --text-main: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b6b6b;
    --text-subtle: #888888;

    /* Cores de destaque - Preto/Neutro */
    --accent-primary: #1a1a1a;
    --accent-secondary: #000000;
    --accent-cream: #1a1a1a;

    /* Bordas */
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.2);
    --border-strong: rgba(0, 0, 0, 0.15);

    /* Glass panels light mode */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.08);

    /* Footer dark section */
    --footer-bg: #111827;
    --footer-text: #ffffff;

    /* [MERGE] Variables for Mission/Receipt Section (from new/prisma.css) */
    --color-surface: #FFFFFF;
    --color-bg: #FAFAF9;
    --color-border: #E7E5E4;
    --color-border-light: #F5F5F4;
    --color-text-muted: #57534E;
    --color-text-light: #78716C;
    --color-secondary: #B45309;
    /* Orange accent */
    --color-success: #65A30D;

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    --space-2: 0.5rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;

    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* =============================================================================
   2. RESET E BASE
   ============================================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

/* Smooth scroll para âncoras */
a[href^="#"] {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100%;
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: clip;
}

/* Classe utilitária para texto accent */
.text-accent {
    color: var(--accent-primary);
}

::selection {
    background: var(--accent-cream);
    color: #000;
}

/* =============================================================================
   3. TIPOGRAFIA
   ============================================================================= */
h1,
h2,
h3,
.tech-font {
    font-family: 'Space Grotesk', sans-serif;
}

/* =============================================================================
   4. CANVAS (BACKGROUND)
   ============================================================================= */
#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    background: var(--bg-deep);
}

/* =============================================================================
   5. GLASS PANELS
   ============================================================================= */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}

.glass-panel:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 247, 244, 0.8) 100%);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(4px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 247, 244, 0.95) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* =============================================================================
   6. NAVEGAÇÃO
   ============================================================================= */
.page-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

.header {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-size: 18px;
    font-weight: 500;
    color: #2d2d2d;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-main);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 10px;
    opacity: 0.6;
}

/* Navbar Glass Effect */
.nav-blur {
    background: rgba(5, 5, 5, 0.0);
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav-blur.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 20;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #2d2d2d;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =============================================================================
   7. BOTÕES
   ============================================================================= */
.btn-primary {
    background-color: var(--accent-primary);
    color: #fff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #333333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--accent-cream);
    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary {
    background: #fff;
    color: #2d2d2d;
    border: 1px solid #d0d0d0;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: #999;
    background: #f9f9f9;
}

.btn-cream {
    background-color: var(--accent-cream);
    color: #000;
    transition: all 0.3s ease;
}

.btn-cream:hover {
    background-color: #fff;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(242, 240, 233, 0.2);
}

/* =============================================================================
   8. HERO SECTION
   ============================================================================= */
.hero {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 20px 20px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 32px;
    position: relative;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.logo-icon-large {
    width: 32px;
    height: 32px;
}

.logo-text-large {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 24px;
    color: #fff;
    margin: 0 0 48px 0;
    font-weight: 400;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-main), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* =============================================================================
   9. CARD PARTICLES - Sistema de partículas magnéticas nos cards
   ============================================================================= */
.particle-card {
    position: relative;
    isolation: isolate;
}

.particle-card .particle-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
    border-radius: inherit;
    overflow: hidden;
}

.particle-card .particle-layer canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Overlay sutil - permite as partículas brilharem */
.particle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(5, 5, 5, 0.15) 0%,
            rgba(5, 5, 5, 0.05) 50%,
            rgba(5, 5, 5, 0.2) 100%);
    border-radius: inherit;
    pointer-events: none;
}

/* Conteúdo acima das partículas e overlay */
.particle-card>div:not(.particle-layer) {
    position: relative;
    z-index: 3;
}

/* Pointer events para interação com partículas */
.particle-card .pointer-events-none {
    pointer-events: none;
}

.particle-card .pointer-events-auto {
    pointer-events: auto;
}

/* =============================================================================
   10. UTILITÁRIOS
   ============================================================================= */
.text-cream {
    color: var(--accent-primary);
}

.text-gradient-cream {
    background: linear-gradient(to right, var(--text-main), var(--accent-primary), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Seção com fundo escuro (para contraste - CTA e Footer) */
.section-dark {
    background-color: var(--footer-bg);
    color: var(--footer-text);
}

.section-dark .text-cream {
    color: #F2F0E9;
}

/* Background utilities */
.bg-primary {
    background-color: var(--bg-deep);
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

.bg-tertiary {
    background-color: var(--bg-tertiary);
}

/* =============================================================================
   11. RESPONSIVO
   ============================================================================= */

/* Tablet */
@media (max-width: 1024px) {
    .header-content {
        padding: 14px 24px;
    }

    .nav {
        gap: 24px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-subtitle {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-content {
        padding: 12px 16px;
    }

    .logo-text {
        font-size: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 15;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 16px;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-logo {
        margin-bottom: 32px;
    }

    .logo-text-large {
        font-size: 20px;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-content {
        padding: 10px 12px;
    }

    .logo-text {
        font-size: 15px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-logo {
        margin-bottom: 24px;
    }

    .logo-text-large {
        font-size: 18px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 11px 20px;
        font-size: 14px;
    }
}

/* Large Desktop */
@media (min-width: 1920px) {
    .hero-title {
        font-size: 84px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-content {
        max-width: 1000px;
    }
}

/* =============================================================================
   12. MOCKUP STYLES - Show, Don't Tell Section
   ============================================================================= */

/* Mockup Container with Floating Effect */
.mockup-container {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mockup-container:hover {
    transform: translateY(-8px);
}

/* Soft Shadow Effect */
.mockup-shadow {
    position: absolute;
    inset: -16px;
    background: rgba(0, 0, 0, 0.08);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.mockup-container:hover .mockup-shadow {
    opacity: 0.8;
}

/* Responsive adjustments for mockups */
@media (max-width: 768px) {
    .mockup-container {
        margin-bottom: 2rem;
    }

    .mockup-shadow {
        inset: -8px;
        filter: blur(20px);
    }
}

/* =============================================================================
   13. CUSTOM MODULES (Mission, Receipt) - Merged from new/prisma.css
   ============================================================================= */

.mission-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    text-align: left;
}

.mission-box h3 {
    margin-bottom: var(--space-5);
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: var(--space-4);
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-text-muted);
}

.mission-list__number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.receipt-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    margin: 0 auto var(--space-6);
    padding: var(--space-8);
    text-align: left;
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.receipt-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.receipt-tag {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-light);
    background: var(--color-bg);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.receipt-meta {
    margin-bottom: var(--space-6);
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.receipt-label {
    color: var(--color-text-muted);
}

.receipt-value {
    font-weight: 600;
    color: var(--color-text);
}

.receipt-status {
    color: var(--color-success);
}

.receipt-price-box {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
}

.receipt-price-box .receipt-value.highlight {
    font-size: var(--text-lg);
    color: var(--color-primary);
}

.receipt-divider {
    height: 1px;
    background: var(--color-border-light);
    margin: var(--space-2) 0;
}

.receipt-benefits {
    list-style: none;
    margin-bottom: var(--space-8);
}

.receipt-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.receipt-benefits li svg {
    width: 16px;
    height: 16px;
    color: var(--color-success);
    flex-shrink: 0;
}

/* =============================================================================
   14. DEMO COMPONENT - Prisma-style SAC vs PRICE Comparison (from app CSS)
   ============================================================================= */

/* Container */
.demo-container {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Header */
.demo-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.demo-subtitle {
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

.demo-ref {
    font-size: 0.6875rem;
    color: #9CA3AF;
    background: #F3F4F6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

/* Content */
.demo-content {
    padding: 1.5rem;
}

/* System Cards Grid */
.demo-systems {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 480px) {
    .demo-systems {
        grid-template-columns: 1fr;
    }
}

/* System Card Base */
.demo-system-card {
    padding: 1.25rem;
    border-radius: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

/* PRICE Card */
.demo-system-price {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
}

/* SAC Card */
.demo-system-sac {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 1px solid #A7F3D0;
}

/* Badge */
.demo-system-badge {
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.demo-system-price .demo-system-badge {
    background: #3B82F6;
    color: #ffffff;
}

.demo-system-sac .demo-system-badge {
    background: #10B981;
    color: #ffffff;
}

.demo-system-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #6B7280;
}

/* Value Display */
.demo-value-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.demo-value-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.demo-system-price .demo-value-amount {
    color: #1E40AF;
}

.demo-system-sac .demo-value-amount {
    color: #065F46;
}

.demo-arrow {
    display: inline-block;
    margin: 0 0.25rem;
    font-size: 1rem;
    color: #9CA3AF;
}

/* Meta Row */
.demo-system-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
}

.demo-system-price .demo-system-meta span {
    color: #6B7280;
}

.demo-system-price .demo-system-meta strong {
    color: #1E40AF;
}

.demo-system-sac .demo-system-meta span {
    color: #065F46;
}

.demo-system-sac .demo-system-meta strong {
    color: #047857;
}

/* Comparison Bars */
.demo-comparison {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 0.875rem;
    padding: 1rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.demo-comparison::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10;
    pointer-events: none;
}

.demo-comparison-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
    margin: 0 0 0.875rem;
}

.demo-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-bar-row {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 0.75rem;
}

.demo-bar-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #374151;
}

.demo-bar-track {
    height: 1rem;
    background: #F3F4F6;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
}

.demo-bar-principal {
    height: 100%;
    background: #9CA3AF;
}

.demo-bar-juros-price {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6 0%, #1D4ED8 100%);
}

.demo-bar-juros-sac {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.demo-bar-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    min-width: 90px;
    text-align: right;
}

.demo-bar-legend {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #F3F4F6;
}

.demo-legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    color: #6B7280;
}

.demo-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.demo-legend-dot-principal {
    background: #9CA3AF;
}

.demo-legend-dot-juros {
    background: #3B82F6;
}

/* Economy Banner */
.demo-economy {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #064E3B 0%, #065F46 100%);
    border-radius: 0.875rem;
}

.demo-economy-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0.625rem;
    flex-shrink: 0;
}

.demo-economy-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #A7F3D0;
}

.demo-economy-content {
    flex: 1;
}

.demo-economy-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #D1FAE5;
    margin: 0 0 0.125rem;
}

.demo-economy-title strong {
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.demo-economy-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #A7F3D0;
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .demo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .demo-value-amount {
        font-size: 1.25rem;
    }

    .demo-bar-row {
        grid-template-columns: 45px 1fr;
        gap: 0.5rem;
    }

    .demo-bar-value {
        grid-column: 1 / -1;
        text-align: left;
        font-size: 0.6875rem;
    }

    .demo-economy {
        flex-direction: column;
        text-align: center;
    }
}