/* CSS CONSOLIDADO CONVERTUS RUBI */
#conv-fin-root {
	--fin-primary: #9b1c31; --fin-secondary: #1e293b; --fin-bg: #f8fafc;
	--fin-card: #ffffff; --fin-text: #334155; --fin-border: #e2e8f0;
	font-family: 'Inter', system-ui, sans-serif; background: var(--fin-bg);
	color: var(--fin-text); padding: 20px;
}
#conv-fin-root .container { max-width: 1200px; margin: auto; }
#conv-fin-root .header-fin { text-align: center; margin-bottom: 30px; }
#conv-fin-root .title-fin { color: var(--fin-primary); font-size: 2rem; font-weight: 800; margin: 0; }

#conv-fin-root .grid-main { display: grid; grid-template-columns: 420px 1fr; gap: 25px; }
#conv-fin-root .card { 
	background: var(--fin-card); border-radius: 16px; padding: 20px; 
	border: 1px solid var(--fin-border); box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* FORMULÁRIO */
#conv-fin-root h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--fin-primary); margin: 20px 0 10px 0; border-bottom: 1px solid #fee2e2; padding-bottom: 5px; }
#conv-fin-root label { display: block; font-size: 0.7rem; font-weight: 700; color: #475569; margin-bottom: 3px; }
#conv-fin-root input, #conv-fin-root select { 
	width: 100%; padding: 10px; margin-bottom: 12px; border-radius: 8px; 
	border: 1px solid var(--fin-border); font-size: 0.9rem; box-sizing: border-box;
}
#conv-fin-root .row-input { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

#conv-fin-root .btn-calc { 
	width: 100%; background: var(--fin-primary); color: #fff; border: 0; padding: 15px; 
	font-size: 1rem; font-weight: 800; border-radius: 10px; cursor: pointer; transition: 0.3s;
}
#conv-fin-root .btn-calc:hover { background: #7a1526; transform: translateY(-2px); }

/* RESULTADOS */
#conv-fin-root .rank-item { display: flex; justify-content: space-between; padding: 12px; border-bottom: 1px solid var(--fin-border); }
#conv-fin-root .rank-item:first-child { background: #fff1f2; border-radius: 8px; border-bottom: none; font-weight: bold; }
#conv-fin-root .table-wrapper { overflow-x: auto; margin-top: 20px; }
#conv-fin-root table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
#conv-fin-root th { background: #f1f5f9; padding: 12px; text-align: left; }
#conv-fin-root td { padding: 12px; border-bottom: 1px solid var(--fin-border); }

@media (max-width: 900px) { 
	#conv-fin-root .grid-main { grid-template-columns: 1fr; }
	#conv-fin-root input, #conv-fin-root select { font-size: 16px; }
}