/* Economia Section */
.economia {
    background: var(--bg-primary);
    position: relative;
}

.economics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.chart-container, .crypto-container {
    background: var(--bg-secondary);
    padding: 2rem;
    position: relative;
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}

.chart-bg, .crypto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.chart-bg {
    background-image: url('stock-chart.png');
}

.crypto-bg {
    background-image: url('crypto-chart.png');
}

.chart-container h3, .crypto-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--text-primary);
}

.indicators, .crypto-list {
    position: relative;
    z-index: 2;
}

.indicator, .crypto-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.indicator:last-child, .crypto-item:last-child {
    border-bottom: none;
}

.label, .crypto-name {
    font-weight: 600;
    color: var(--text-primary);
}

.value, .crypto-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.change, .crypto-change {
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
}

.positive {
    color: #2d5a27;
    background: rgba(45, 90, 39, 0.1);
}

.negative {
    color: #8b1a1a;
    background: rgba(139, 26, 26, 0.1);
}

.crypto-icon {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 1rem;
}

.crypto-icon.btc {
    background-image: url('bitcoin-icon.png');
}

.crypto-icon.eth {
    background-image: url('ethereum-icon.png');
}

