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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #dcefeb 0%, #ffffff 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            background: #ffffff;
            padding: 40px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 40px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .header h1 {
            color: #014a43;
            font-size: 3em;
            margin-bottom: 15px;
        }

        .header p {
            color: #5a6c7d;
            font-size: 1.3em;
            max-width: 600px;
            margin: 0 auto;
        }

        .market-sections {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .market-card {
            background: #ffffff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .market-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--accent-color);
        }

        .market-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        /* Cores de destaque */
        .bull-market { --accent-color: linear-gradient(90deg, #2ecc71, #27ae60); }
        .bear-market { --accent-color: linear-gradient(90deg, #e74c3c, #c0392b); }
        .sideways-market { --accent-color: linear-gradient(90deg, #f39c12, #e67e22);}

        .market-card h2 {
            color: #014a43;
            font-size: 2.2em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .market-icon {
            font-size: 1.2em;
        }

        .market-description {
            color: #5a6c7d;
            margin-bottom: 25px;
            font-size: 1.1em;
        }

        .strategies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .strategy-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--strategy-color);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .strategy-card:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            background: #ffffff;
        }

        .strategy-card h3 {
            color: #014a43;
            margin-bottom: 8px;
            font-size: 1.2em;
        }

        .strategy-card p {
            color: #5a6c7d;
            font-size: 0.95em;
            margin-bottom: 10px;
        }

        .strategy-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        .tag {
            background: #00897B;
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8em;
            font-weight: bold;
        }

        .stats {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        .stats h2 {
            color: #014a43;
            margin-bottom: 20px;
            font-size: 2em;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .stat-item {
            background: #014a43;
            color: white;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 1.1em;
            opacity: 0.9;
        }

        .search-bar {
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .search-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1.1em;
            transition: border-color 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: #00897B;
        }

        .coming-soon {
            opacity: 0.7;
            position: relative;
        }

        .coming-soon::after {
            content: '🚧 Em Breve';
            position: absolute;
            top: 10px;
            right: 10px;
            background: #00897B;
            color: white;
            padding: 5px 10px;
            border-radius: 8px;
            font-size: 0.8em;
            font-weight: bold;
        }

        .available {
            position: relative;
        }

        .available::after {
            content: '✅ Disponível';
            position: absolute;
            top: 10px;
            right: 10px;
            background: #014a43;
            color: white;
            padding: 5px 10px;
            border-radius: 8px;
            font-size: 0.8em;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .container { padding: 10px; }
            .header h1 { font-size: 2.2em; }
            .market-sections { grid-template-columns: 1fr; }
            .strategies-grid { grid-template-columns: 1fr; }
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: white;
            margin: 5% auto;
            padding: 30px;
            border-radius: 8px;
            width: 90%;
            max-width: 600px;
            position: relative;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2em;
            cursor: pointer;
            color: #aaa;
        }

        .close:hover {
            color: #000;
        }
    
