/* style.css */

:root {
    --primary: #A38048; 
    --primary-hover: #8C6D3D;
    --bg-main: #F4F5F7;
    --bg-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-menu: #4B5563;
    --text-muted: #6B7280;
    --text-gray-light: #9CA3AF;
    --border-color: #E5E7EB;
    
    --up: #10B981; 
    --down: #EF4444; 
    
    --font-family: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-family); background-color: var(--bg-main); color: var(--text-dark); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; outline: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* --- NAVBAR --- */
.navbar { background-color: var(--bg-white); border-bottom: 1px solid var(--border-color); height: 72px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; }
.logo img { display: block; }

.nav-center { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; color: var(--text-menu); }
.nav-search-icon { background: transparent; border: none; font-size: 20px; color: var(--text-menu); cursor: pointer; display: flex; align-items: center; }
.nav-center a { display: flex; align-items: center; gap: 4px; transition: color 0.2s; }
.nav-center a:hover { color: var(--primary); }
.nav-center i { font-size: 12px; color: var(--text-gray-light); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-pro { background-color: var(--primary); color: white; border: none; padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.btn-carteira { background-color: white; color: var(--text-dark); border: 1px solid var(--border-color); padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 6px; }

.user-menu-group { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border-color); padding: 4px 6px 4px 14px; border-radius: 30px; cursor: pointer; margin-left: 4px; }
.menu-icon { font-size: 18px; color: var(--text-menu); }
.user-avatar-wrapper { position: relative; display: flex; align-items: center; }
.avatar-icon { font-size: 28px; color: #D1D5DB; }
.notification-badge { position: absolute; top: -2px; right: -2px; background-color: #EF4444; color: white; font-size: 10px; font-weight: 800; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid white; }

/* --- HERO --- */
.hero { background: linear-gradient(rgba(27, 34, 44, 0.92), rgba(27, 34, 44, 0.92)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat; padding: 90px 0 100px 0; }
.hero-content { text-align: center; }
.hero h1 { color: white; font-size: 34px; font-weight: 600; line-height: 1.4; margin-bottom: 40px; letter-spacing: -0.5px; }

.search-box { max-width: 680px; margin: 0 auto; display: flex; background: white; border-radius: 40px; overflow: hidden; height: 56px; }
.search-box input { flex: 1; border: none; outline: none; padding: 0 24px; font-size: 16px; color: var(--text-dark); }
.search-box input::placeholder { color: #9CA3AF; font-weight: 400; }
.btn-search { background-color: var(--primary); color: white; border: none; padding: 0 36px; font-weight: 700; font-size: 14px; cursor: pointer; letter-spacing: 0.5px; }
.btn-search:hover { background-color: var(--primary-hover); }

.hero-tags { margin-top: 24px; display: flex; justify-content: center; align-items: center; gap: 12px; font-size: 13px; font-weight: 500; }
.tags-label { color: white; font-weight: 600; }
.tag { background-color: rgba(255, 255, 255, 0.2); color: white; padding: 6px 16px; border-radius: 20px; transition: background 0.2s; }
.tag:hover { background-color: rgba(255, 255, 255, 0.3); }
.adv-search-link { color: white; text-decoration: underline; margin-left: 8px; font-weight: 400; }

/* --- TICKER --- */
.ticker-wrapper { background-color: #111827; overflow: hidden; border-bottom: 4px solid var(--primary); }
.ticker-track { display: inline-block; white-space: nowrap; padding: 12px 0; font-size: 13px; font-weight: 700; color: white; animation: tickerScroll 40s linear infinite; }
.ticker-item { margin-right: 48px; display: inline-flex; align-items: center; gap: 8px; }
.ticker-item .up { color: var(--up); font-weight: 600; }
.ticker-item .down { color: var(--down); font-weight: 600; }

@keyframes tickerScroll {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* --- LAYOUTS GERAIS --- */
.section-spacing { margin: 60px auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.flex-col { display: flex; flex-direction: column; }
.gap-24 { gap: 24px; } .gap-10 { gap: 10px; } .gap-4 { gap: 4px; }
.mb-10 { margin-bottom: 10px; } .mb-15 { margin-bottom: 15px; } .ml-2 { margin-left: 2px; } .ml-10 { margin-left: 10px; } .mx-auto { margin-left: auto; margin-right: auto; }
.p-0 { padding: 0 !important; } .p-20 { padding: 20px; } .p-24 { padding: 24px; }
.text-lg { font-size: 18px; } .text-md { font-size: 16px; } .text-sm { font-size: 13px; } .text-xs { font-size: 11px; } .text-3xl { font-size: 32px; }
.font-bold { font-weight: 700; } .font-semibold { font-weight: 600; } .font-medium { font-weight: 500; } .font-normal { font-weight: 400; }
.text-orange { color: #F59E0B; } .text-dark { color: var(--text-dark); }
.border-bottom { border-bottom: 1px solid var(--border-color); }
.card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 8px; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }

.bg-blue { background-color: #1D4ED8; color: white; }
.bg-darkblue { background-color: #1E3A8A; color: white; }
.bg-white.border-gray { background-color: white; border: 1px solid var(--border-color); }
.bg-red { background-color: #DC2626; color: white; }
.bg-green { background-color: #059669; color: white; }
.bg-orange { background-color: #EA580C; color: white; }
.bg-teal { background-color: #0D9488; color: white; }
.bg-yellow { background-color: #EAB308; color: white; }
.bg-purple { background-color: #9333EA; color: white; }

/* --- HEADERS E TABS --- */
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.title-with-icon { display: flex; align-items: center; gap: 12px; }
.icon-circle-outline { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-color); display: flex; justify-content: center; align-items: center; font-size: 20px; color: var(--text-dark); }
.title-with-icon h2 { font-size: 24px; font-weight: 600; color: var(--text-dark); }

.tabs { display: flex; gap: 8px; }
.tab { background: white; border: 1px solid var(--border-color); padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--text-dark); cursor: pointer; transition: 0.2s; }
.tab.active { background: var(--text-dark); color: white; border-color: var(--text-dark); }

.section-header-center { text-align: center; margin-bottom: 32px; }
.section-header-center h2 { font-size: 28px; font-weight: 600; color: var(--text-dark); }
.section-header-center .icon-circle-outline { width: 56px; height: 56px; font-size: 28px; border-color: var(--primary); color: var(--primary); }

/* --- RANKINGS CARDS --- */
.ranking-card { background: white; border: 1px solid var(--border-color); border-radius: 8px; display: flex; flex-direction: column; }
.ranking-header { background: #F9FAFB; padding: 24px; display: flex; flex-direction: column; align-items: center; border-bottom: 1px solid var(--border-color); border-radius: 8px 8px 0 0; }
.ranking-header i { font-size: 28px; color: var(--text-muted); margin-bottom: 12px; }
.ranking-header h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); }
.ranking-body { padding: 0 24px; flex: 1; }
.rank-item { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #F3F4F6; transition: background 0.2s; }
.rank-item:last-child { border-bottom: none; }
.rank-item:hover { background-color: #F9FAFB; }
.rank-num { font-weight: 700; font-size: 13px; width: 24px; }
.rank-asset { flex: 1; display: flex; align-items: center; gap: 12px; }
.asset-logo { width: 36px; height: 36px; border-radius: 4px; display: flex; justify-content: center; align-items: center; font-weight: 700; font-size: 14px; }
.asset-info { display: flex; flex-direction: column; }
.asset-info b { font-size: 14px; color: var(--text-dark); font-weight: 700; }
.asset-info span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; margin-top: 2px; }
.rank-val { font-weight: 600; font-size: 14px; color: var(--text-dark); display: flex; align-items: center; }
.ranking-footer { padding: 24px; }
.btn-outline-block { width: 100%; background: transparent; border: 1px solid var(--border-color); padding: 12px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--text-dark); transition: 0.2s; }
.btn-outline-block:hover { background: #F9FAFB; border-color: #D1D5DB; }

/* --- TABELAS E FIIS --- */
.card-header { padding: 24px; border-bottom: 1px solid var(--border-color); }
.card-header h3 { font-weight: 600; color: var(--text-dark); }
.link-action { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 4px; color: var(--text-dark); }
.link-action:hover { color: var(--primary); }

.table-responsive { overflow-x: auto; }
.table-clean { width: 100%; border-collapse: collapse; text-align: left; }
.table-clean th { padding: 16px 24px; font-size: 11px; font-weight: 600; color: var(--text-muted); border-bottom: 1px solid var(--border-color); white-space: nowrap; }
.table-clean td { padding: 16px 24px; font-size: 14px; border-bottom: 1px solid #F3F4F6; vertical-align: middle; }
.table-clean tr:last-child td { border-bottom: none; }
.table-sm th, .table-sm td { padding: 14px 24px; }
.table-clean tr:hover td { background-color: #F9FAFB; }

.logo-box-fii { width: 44px; height: 44px; background: #F3F4F6; border: 1px solid var(--border-color); border-radius: 6px; display: flex; justify-content: center; align-items: center; font-size: 20px; color: var(--text-gray-light); }

/* --- IFIX DARK CARD --- */
.card-dark-solid { background-color: #1F222A; border-radius: 8px; padding: 28px 24px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.dash-val { font-size: 28px; font-weight: 700; display: flex; align-items: center; }
.badge-outline-green { border: 1px solid var(--up); color: var(--up); padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; background: rgba(16, 185, 129, 0.05); }

/* --- IBOVESPA PANEL --- */
.mb-24 { margin-bottom: 24px; } .text-xl { font-size: 20px; }
.overflow-hidden { overflow: hidden; } .flex-1 { flex: 1; }
.border-right { border-right: 1px solid var(--border-color); }
.ibov-grid { display: grid; grid-template-columns: 1fr 1fr; }
.ibov-left { padding: 32px; }
.ibov-right { display: flex; }
.badge-bg-green { background: #D1FAE5; padding: 4px 12px; border-radius: 16px; }

.ibov-tabs { display: flex; gap: 8px; }
.ibov-tabs button { background: white; border: 1px solid var(--border-color); padding: 4px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--text-dark); cursor: pointer; transition: 0.2s; }
.ibov-tabs button.active { background: var(--text-dark); color: white; border-color: var(--text-dark); }
.ibov-tabs button:hover:not(.active) { background: #F9FAFB; }

.chart-mockup { height: 140px; width: 100%; border-bottom: 1px solid var(--border-color); border-left: 1px solid var(--border-color); padding-left: 4px; padding-bottom: 4px; }

/* --- LISTAS MINI (Altas/Baixas) --- */
.mini-list { display: flex; flex-direction: column; }
.mini-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid #F3F4F6; }
.mini-item:last-child { border-bottom: none; padding-bottom: 0; }
.mini-asset { display: flex; align-items: center; gap: 10px; width: 110px; font-weight: 700; font-size: 14px; color: var(--text-dark); }

/* --- FERRAMENTAS --- */
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.tool-card { background: white; border: 1px solid var(--border-color); border-radius: 8px; padding: 24px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.tool-card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); }
.tool-icon { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--primary); display: flex; justify-content: center; align-items: center; font-size: 24px; color: var(--primary); margin-bottom: 16px; background-color: #F9FAFB; }
.tool-card span { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.3; }

/* --- INTERNACIONAL (ESCURO) --- */
.section-dark { background-color: var(--text-dark); padding: 80px 0; margin-top: 60px; }
.card-dark { background-color: #252A31; border: 1px solid #374151; border-radius: 8px; padding-top: 24px; display: flex; flex-direction: column; }
.border-dark { border-color: #374151 !important; }
.btn-dark-outline { background: transparent; border: 1px solid #374151; padding: 12px; border-radius: 8px; font-weight: 600; font-size: 14px; color: white; cursor: pointer; transition: 0.2s; }
.btn-dark-outline:hover { background: #374151; }
.card-title-center { text-align: center; font-size: 20px; font-weight: 600; display: flex; flex-direction: column; align-items: center; gap: 8px;}

/* --- DIVIDENDOS E CARTEIRA --- */
.flex-center { display: flex; justify-content: center; align-items: center; }
.align-start { align-items: flex-start; }
.pb-80 { padding-bottom: 80px; }
.pt-20 { padding-top: 20px; }
.block { display: block; }
.text-up { color: var(--up); }
.border-top { border-top: 1px solid var(--border-color); }

.dividend-bg { height: 160px; display: flex; justify-content: center; align-items: center; border-radius: 8px 8px 0 0; }
.bg-blue-light { background-color: #EFF6FF; }
.bg-beige { background-color: #FEF3C7; }
.bg-orange-light { background-color: #FFF7ED; }
.py-10 { padding: 10px 0; }

.badge-demo { background-color: #FEF3C7; color: #D97706; padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; margin-left: 8px; vertical-align: middle; text-transform: uppercase; }
.btn-dark { background-color: var(--text-dark); color: white; border: none; padding: 10px 20px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: 0.2s; }
.btn-dark:hover { background-color: #374151; }

.chart-container { display: flex; align-items: center; justify-content: center; gap: 40px; margin-top: 20px; }
.donut-chart-mock { width: 160px; height: 160px; border-radius: 50%; background: conic-gradient(#3B82F6 0% 25%, #EF4444 25% 50%, #10B981 50% 75%, #FBBF24 75% 100%); position: relative; }
.donut-chart-mock::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background-color: white; border-radius: 50%; }
.legend-item { display: flex; align-items: center; font-size: 13px; font-weight: 600; margin-bottom: 12px; color: var(--text-dark); }
.dot { width: 12px; height: 12px; border-radius: 50%; margin-right: 8px; display: inline-block; }

.badge-blue { background-color: #4F46E5; color: white; padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; display: inline-block; }
.badge-green-light { background-color: #D1FAE5; color: #065F46; padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; display: inline-block; }
.risk-bar { width: 100%; height: 4px; background: linear-gradient(to right, #10B981, #FBBF24, #EF4444); border-radius: 2px; position: relative; margin-top: 4px; }
.risk-marker { position: absolute; top: -4px; width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 8px solid var(--text-dark); }
.mt-auto { margin-top: auto; }

.ir-banner { background-color: #FCF8F3; border-radius: 12px; padding: 60px 20px; text-align: center; }
.ir-text-primary { color: #D97706; font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.ir-title { font-size: 32px; font-weight: 600; color: var(--text-dark); max-width: 800px; margin: 0 auto 32px auto; line-height: 1.3; }
.ir-buttons { display: flex; justify-content: center; align-items: center; gap: 16px; }
.btn-outline-bg-white { background: white; border: 1px solid var(--border-color); padding: 12px 24px; border-radius: 24px; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--text-dark); transition: 0.2s; }
.btn-outline-bg-white:hover { border-color: #D1D5DB; }

.badge-fundo-blue { background-color: #DBEAFE; color: #1D4ED8; padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; display: inline-block; }
.badge-fundo-blue-light { background-color: #E0F2FE; color: #2563EB; padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; display: inline-block; }
.badge-fundo-purple { background-color: #F3E8FF; color: #7E22CE; padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; display: inline-block; }

.icon-circle-solid { width: 56px; height: 56px; border-radius: 50%; background-color: #2B3139; display: flex; justify-content: center; align-items: center; font-size: 24px; color: var(--primary); }
.coverage-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.coverage-card { background-color: #252A31; border: 1px solid #374151; border-radius: 8px; padding: 24px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 120px; transition: border-color 0.2s; cursor: pointer; }
.coverage-card:hover { border-color: var(--primary); }
.cov-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #474D57; display: flex; justify-content: center; align-items: center; color: var(--primary); font-size: 18px; margin-bottom: 12px; }
.coverage-card span { font-size: 13px; font-weight: 500; color: #E5E7EB; line-height: 1.3; }

/* --- MEGA MENU --- */
.nav-item-dropdown { 
    position: relative; 
    display: flex; 
    align-items: center; 
    height: 72px;
}

.mega-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
    
    position: absolute;
    top: 72px;
    background: #F4F5F7;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 1100px;
    padding: 32px;
    z-index: 2000;
    border: 1px solid var(--border-color);
}

.mega-triangle-wrapper {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(calc(-50% - 7px)) translateY(15px);
    transition: all 0.3s ease;
    z-index: 2001;
}

.mega-menu-triangle {
    width: 16px;
    height: 16px;
    background: #F4F5F7;
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
    margin-top: -8px;
}

.mega-menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }

.mega-col h4 { font-size: 16px; color: var(--text-dark); margin-bottom: 24px; font-weight: 700; }
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin-bottom: 16px; }

.mega-col a { display: flex; align-items: center; font-size: 14px; color: #4B5563; font-weight: 600; gap: 8px; transition: 0.2s; }
.mega-col a:hover { color: var(--primary); }
.mega-col a i.ph-caret-right { font-size: 12px; color: var(--primary); }

.badge-novo { background-color: #D1FAE5; color: #059669; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; margin-left: 6px; }

.btn-mega-todos { width: 100%; margin-top: 10px; background: transparent; border: 1px solid #D1D5DB; color: #6B7280; font-size: 12px; font-weight: 600; padding: 8px 0; border-radius: 20px; cursor: pointer; transition: 0.2s; }
.btn-mega-todos:hover { background-color: white; border-color: var(--primary); color: var(--primary); }

.nav-item-dropdown.active .mega-menu { 
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.nav-item-dropdown.active .mega-triangle-wrapper { 
    visibility: visible;
    opacity: 1;
    transform: translateX(calc(-50% - 7px)) translateY(0);
}
.nav-item-dropdown.active .dropdown-trigger { color: var(--primary); }

@media (max-width: 992px) {
    .ibov-grid { grid-template-columns: 1fr; }
    .ibov-left { border-right: none; border-bottom: 1px solid var(--border-color); }
    .ibov-right { flex-direction: column; }
    .ibov-right .border-right { border-right: none; border-bottom: 1px solid var(--border-color); }
    .chart-container { flex-direction: column; gap: 20px; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .ir-buttons { flex-direction: column; }
    .nav-item-dropdown:hover .mega-menu { display: none; }
}
@media (max-width: 576px) {
    .coverage-grid { grid-template-columns: 1fr; }
    /* --- PÁGINA DO ATIVO --- */
.breadcrumb { font-size: 13px; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb b { color: var(--text-dark); font-weight: 700; }

.asset-header-card { display: flex; justify-content: space-between; align-items: center; padding: 24px 32px; }
.asset-header-left { display: flex; align-items: center; gap: 20px; flex: 1; }
.asset-big-logo { width: 56px; height: 56px; border-radius: 8px; background: var(--text-dark); color: white; display: flex; justify-content: center; align-items: center; font-size: 24px; font-weight: 800; }
.asset-title-info h1 { font-size: 28px; font-weight: 800; color: var(--text-dark); line-height: 1.1; margin-bottom: 4px; }
.asset-title-info span { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.asset-actions { margin-left: auto; padding-right: 24px; }

.pl-24 { padding-left: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.indicator-top-card { background: white; border: 1px solid var(--border-color); border-radius: 8px; padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.02); transition: 0.2s;}
.indicator-top-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.indicator-top-card .ind-title { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; }
.indicator-top-card .ind-val { font-size: 22px; font-weight: 800; color: var(--text-dark); }
.indicator-top-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background-color: var(--primary); border-radius: 4px 0 0 4px; }

/* Grid Fundamentalista Completo */
.indicators-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.ind-grid-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid #F3F4F6; border-right: 1px solid #F3F4F6; }
.ind-grid-item:nth-child(even) { border-right: none; }
.ind-grid-title { font-size: 14px; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.ind-grid-val { font-size: 15px; font-weight: 700; color: var(--text-dark); }

/* Checklist do Investidor */
.checklist-body { display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #F9FAFB; border-radius: 8px; border: 1px solid var(--border-color); }
.check-text { font-size: 14px; font-weight: 600; color: var(--text-dark); flex: 1; }
.check-status { display: flex; justify-content: center; align-items: center; width: 28px; height: 28px; border-radius: 50%; font-size: 16px; font-weight: bold; }
.check-pass { background-color: #D1FAE5; color: #059669; }
.check-fail { background-color: #FEE2E2; color: #DC2626; }
.bg-gray-lightest { background-color: #F9FAFB; }

@media (max-width: 992px) {
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .asset-header-card { flex-direction: column; align-items: flex-start; gap: 20px; }
    .asset-header-right.border-left { border-left: none; padding-left: 0; border-top: 1px solid var(--border-color); padding-top: 20px; width: 100%; }
    .asset-actions { display: none; }
    .indicators-grid { grid-template-columns: 1fr; }
    .ind-grid-item { border-right: none; }
}
}